Files
shed/flamegraph.svg

491 lines
820 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2022" onload="init(evt)" viewBox="0 0 1200 2022" 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 = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, 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="2022" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="2005.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="2005.00"> </text><svg id="frames" x="10" width="1180" total_samples="170563042"><g><title>__GI___tunables_init (74,000 samples, 0.04%)</title><rect x="0.0038%" y="1893" width="0.0434%" height="15" fill="rgb(227,0,7)" fg:x="6556" fg:w="74000"/><text x="0.2538%" y="1903.50"></text></g><g><title>brk (127,532 samples, 0.07%)</title><rect x="0.0472%" y="1893" width="0.0748%" height="15" fill="rgb(217,0,24)" fg:x="80556" fg:w="127532"/><text x="0.2972%" y="1903.50"></text></g><g><title>[unknown] (127,532 samples, 0.07%)</title><rect x="0.0472%" y="1877" width="0.0748%" height="15" fill="rgb(221,193,54)" fg:x="80556" fg:w="127532"/><text x="0.2972%" y="1887.50"></text></g><g><title>_dl_lookup_symbol_x (49,527 samples, 0.03%)</title><rect x="0.1220%" y="1877" width="0.0290%" height="15" fill="rgb(248,212,6)" fg:x="208088" fg:w="49527"/><text x="0.3720%" y="1887.50"></text></g><g><title>do_lookup_x (49,527 samples, 0.03%)</title><rect x="0.1220%" y="1861" width="0.0290%" height="15" fill="rgb(208,68,35)" fg:x="208088" fg:w="49527"/><text x="0.3720%" y="1871.50"></text></g><g><title>check_match (49,527 samples, 0.03%)</title><rect x="0.1220%" y="1845" width="0.0290%" height="15" fill="rgb(232,128,0)" fg:x="208088" fg:w="49527"/><text x="0.3720%" y="1855.50"></text></g><g><title>strcmp (49,527 samples, 0.03%)</title><rect x="0.1220%" y="1829" width="0.0290%" height="15" fill="rgb(207,160,47)" fg:x="208088" fg:w="49527"/><text x="0.3720%" y="1839.50"></text></g><g><title>_dl_new_object (111,901 samples, 0.07%)</title><rect x="0.1514%" y="1797" width="0.0656%" height="15" fill="rgb(228,23,34)" fg:x="258223" fg:w="111901"/><text x="0.4014%" y="1807.50"></text></g><g><title>_dl_map_new_object (112,510 samples, 0.07%)</title><rect x="0.1510%" y="1829" width="0.0660%" height="15" fill="rgb(218,30,26)" fg:x="257615" fg:w="112510"/><text x="0.4010%" y="1839.50"></text></g><g><title>_dl_map_object_from_fd (112,510 samples, 0.07%)</title><rect x="0.1510%" y="1813" width="0.0660%" height="15" fill="rgb(220,122,19)" fg:x="257615" fg:w="112510"/><text x="0.4010%" y="1823.50"></text></g><g><title>_dl_map_object_deps (132,090 samples, 0.08%)</title><rect x="0.1510%" y="1877" width="0.0774%" height="15" fill="rgb(250,228,42)" fg:x="257615" fg:w="132090"/><text x="0.4010%" y="1887.50"></text></g><g><title>_dl_catch_exception (132,090 samples, 0.08%)</title><rect x="0.1510%" y="1861" width="0.0774%" height="15" fill="rgb(240,193,28)" fg:x="257615" fg:w="132090"/><text x="0.4010%" y="1871.50"></text></g><g><title>openaux (132,090 samples, 0.08%)</title><rect x="0.1510%" y="1845" width="0.0774%" height="15" fill="rgb(216,20,37)" fg:x="257615" fg:w="132090"/><text x="0.4010%" y="1855.50"></text></g><g><title>_dl_map_object (19,580 samples, 0.01%)</title><rect x="0.2170%" y="1829" width="0.0115%" height="15" fill="rgb(206,188,39)" fg:x="370125" fg:w="19580"/><text x="0.4670%" y="1839.50"></text></g><g><title>_dl_new_object (77,604 samples, 0.05%)</title><rect x="0.2285%" y="1877" width="0.0455%" height="15" fill="rgb(217,207,13)" fg:x="389705" fg:w="77604"/><text x="0.4785%" y="1887.50"></text></g><g><title>dl_main (3,224,078 samples, 1.89%)</title><rect x="0.1220%" y="1893" width="1.8903%" height="15" fill="rgb(231,73,38)" fg:x="208088" fg:w="3224078"/><text x="0.3720%" y="1903.50">d..</text></g><g><title>_dl_relocate_object (2,964,857 samples, 1.74%)</title><rect x="0.2740%" y="1877" width="1.7383%" height="15" fill="rgb(225,20,46)" fg:x="467309" fg:w="2964857"/><text x="0.5240%" y="1887.50"></text></g><g><title>_dl_relocate_object_no_relro (2,964,857 samples, 1.74%)</title><rect x="0.2740%" y="1861" width="1.7383%" height="15" fill="rgb(210,31,41)" fg:x="467309" fg:w="2964857"/><text x="0.5240%" y="1871.50"></text></g><g><title>_dl_lookup_symbol_x (2,314,772 samples, 1.36%)</title><rect x="0.6551%" y="1845" width="1.3571%" height="15" fill="rgb(221,200,47)" fg:x="1117394" fg:w="2314772"/><text x="0.9051%" y="1855.50"></text></g><g><title>do_lookup_x (1,299,666 samples, 0.76%)</title><rect x="1.2503%" y="1829" width="0.7620%" height="15" fill="rgb(226,26,5)" fg:x="2132500" fg:w="1299666"/><text x="1.5003%" y="1839.50"></text></g><g><title>check_match (833,011 samples, 0.49%)</title><rect x="1.5239%" y="1813" width="0.4884%" height="15" fill="rgb(249,33,26)" fg:x="2599155" fg:w="833011"/><text x="1.7739%" y="1823.50"></text></g><g><title>strcmp (619,706 samples, 0.36%)</title><rect x="1.6489%" y="1797" width="0.3633%" height="15" fill="rgb(235,183,28)" fg:x="2812460" fg:w="619706"/><text x="1.8989%" y="1807.50"></text></g><g><title>handle_amd (87,293 samples, 0.05%)</title><rect x="2.0123%" y="1877" width="0.0512%" height="15" fill="rgb(221,5,38)" fg:x="3432166" fg:w="87293"/><text x="2.2623%" y="1887.50"></text></g><g><title>[ (3,542,126 samples, 2.08%)</title><rect x="0.0000%" y="1957" width="2.0767%" height="15" fill="rgb(247,18,42)" fg:x="0" fg:w="3542126"/><text x="0.2500%" y="1967.50">[</text></g><g><title>_start (3,542,126 samples, 2.08%)</title><rect x="0.0000%" y="1941" width="2.0767%" height="15" fill="rgb(241,131,45)" fg:x="0" fg:w="3542126"/><text x="0.2500%" y="1951.50">_..</text></g><g><title>_dl_start (3,542,118 samples, 2.08%)</title><rect x="0.0000%" y="1925" width="2.0767%" height="15" fill="rgb(249,31,29)" fg:x="8" fg:w="3542118"/><text x="0.2500%" y="1935.50">_..</text></g><g><title>_dl_sysdep_start (3,535,570 samples, 2.07%)</title><rect x="0.0038%" y="1909" width="2.0729%" height="15" fill="rgb(225,111,53)" fg:x="6556" fg:w="3535570"/><text x="0.2538%" y="1919.50">_..</text></g><g><title>init_cpu_features.constprop.0 (109,960 samples, 0.06%)</title><rect x="2.0123%" y="1893" width="0.0645%" height="15" fill="rgb(238,160,17)" fg:x="3432166" fg:w="109960"/><text x="2.2623%" y="1903.50"></text></g><g><title>update_active.constprop.0 (22,667 samples, 0.01%)</title><rect x="2.0634%" y="1877" width="0.0133%" height="15" fill="rgb(214,148,48)" fg:x="3519459" fg:w="22667"/><text x="2.3134%" y="1887.50"></text></g><g><title>_dl_debug_change_state (111,926 samples, 0.07%)</title><rect x="2.0767%" y="1877" width="0.0656%" height="15" fill="rgb(232,36,49)" fg:x="3542126" fg:w="111926"/><text x="2.3267%" y="1887.50"></text></g><g><title>_dl_map_object_deps (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1877" width="0.0800%" height="15" fill="rgb(209,103,24)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1887.50"></text></g><g><title>_dl_catch_exception (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1861" width="0.0800%" height="15" fill="rgb(229,88,8)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1871.50"></text></g><g><title>openaux (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1845" width="0.0800%" height="15" fill="rgb(213,181,19)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1855.50"></text></g><g><title>_dl_map_object (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1829" width="0.0800%" height="15" fill="rgb(254,191,54)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1839.50"></text></g><g><title>_dl_lookup_map (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1813" width="0.0800%" height="15" fill="rgb(241,83,37)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1823.50"></text></g><g><title>_dl_name_match_p (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1797" width="0.0800%" height="15" fill="rgb(233,36,39)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1807.50"></text></g><g><title>strcmp (136,399 samples, 0.08%)</title><rect x="2.1423%" y="1781" width="0.0800%" height="15" fill="rgb(226,3,54)" fg:x="3654052" fg:w="136399"/><text x="2.3923%" y="1791.50"></text></g><g><title>cut (1,241,591 samples, 0.73%)</title><rect x="2.0767%" y="1957" width="0.7279%" height="15" fill="rgb(245,192,40)" fg:x="3542126" fg:w="1241591"/><text x="2.3267%" y="1967.50"></text></g><g><title>_start (1,241,591 samples, 0.73%)</title><rect x="2.0767%" y="1941" width="0.7279%" height="15" fill="rgb(238,167,29)" fg:x="3542126" fg:w="1241591"/><text x="2.3267%" y="1951.50"></text></g><g><title>_dl_start (1,241,591 samples, 0.73%)</title><rect x="2.0767%" y="1925" width="0.7279%" height="15" fill="rgb(232,182,51)" fg:x="3542126" fg:w="1241591"/><text x="2.3267%" y="1935.50"></text></g><g><title>_dl_sysdep_start (1,241,591 samples, 0.73%)</title><rect x="2.0767%" y="1909" width="0.7279%" height="15" fill="rgb(231,60,39)" fg:x="3542126" fg:w="1241591"/><text x="2.3267%" y="1919.50"></text></g><g><title>dl_main (1,241,591 samples, 0.73%)</title><rect x="2.0767%" y="1893" width="0.7279%" height="15" fill="rgb(208,69,12)" fg:x="3542126" fg:w="1241591"/><text x="2.3267%" y="1903.50"></text></g><g><title>_dl_relocate_object (993,266 samples, 0.58%)</title><rect x="2.2223%" y="1877" width="0.5823%" height="15" fill="rgb(235,93,37)" fg:x="3790451" fg:w="993266"/><text x="2.4723%" y="1887.50"></text></g><g><title>_dl_relocate_object_no_relro (993,266 samples, 0.58%)</title><rect x="2.2223%" y="1861" width="0.5823%" height="15" fill="rgb(213,116,39)" fg:x="3790451" fg:w="993266"/><text x="2.4723%" y="1871.50"></text></g><g><title>_dl_lookup_symbol_x (993,266 samples, 0.58%)</title><rect x="2.2223%" y="1845" width="0.5823%" height="15" fill="rgb(222,207,29)" fg:x="3790451" fg:w="993266"/><text x="2.4723%" y="1855.50"></text></g><g><title>cmd_diff (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1845" width="2.6581%" height="15" fill="rgb(206,96,30)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1855.50">cm..</text></g><g><title>run_diff_files (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1829" width="2.6581%" height="15" fill="rgb(218,138,4)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1839.50">ru..</text></g><g><title>diff_flush (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1813" width="2.6581%" height="15" fill="rgb(250,191,14)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1823.50">di..</text></g><g><title>compute_diffstat (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1797" width="2.6581%" height="15" fill="rgb(239,60,40)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1807.50">co..</text></g><g><title>builtin_diffstat (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1781" width="2.6581%" height="15" fill="rgb(206,27,48)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1791.50">bu..</text></g><g><title>xdi_diff_outf (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1765" width="2.6581%" height="15" fill="rgb(225,35,8)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1775.50">xd..</text></g><g><title>xdi_diff (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1749" width="2.6581%" height="15" fill="rgb(250,213,24)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1759.50">xd..</text></g><g><title>xdl_diff (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1733" width="2.6581%" height="15" fill="rgb(247,123,22)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1743.50">xd..</text></g><g><title>xdl_do_diff (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1717" width="2.6581%" height="15" fill="rgb(231,138,38)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1727.50">xd..</text></g><g><title>xdl_prepare_env (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1701" width="2.6581%" height="15" fill="rgb(231,145,46)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1711.50">xd..</text></g><g><title>xdl_prepare_ctx (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1685" width="2.6581%" height="15" fill="rgb(251,118,11)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1695.50">xd..</text></g><g><title>xdl_hash_record_verbatim (4,533,803 samples, 2.66%)</title><rect x="2.8047%" y="1669" width="2.6581%" height="15" fill="rgb(217,147,25)" fg:x="4783721" fg:w="4533803"/><text x="3.0547%" y="1679.50">xd..</text></g><g><title>cmd_rev_parse (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1845" width="0.4314%" height="15" fill="rgb(247,81,37)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1855.50"></text></g><g><title>setup_git_directory_gently (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1829" width="0.4314%" height="15" fill="rgb(209,12,38)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1839.50"></text></g><g><title>setup_git_env_internal (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1813" width="0.4314%" height="15" fill="rgb(227,1,9)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1823.50"></text></g><g><title>repo_set_gitdir (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1797" width="0.4314%" height="15" fill="rgb(248,47,43)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1807.50"></text></g><g><title>odb_new (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1781" width="0.4314%" height="15" fill="rgb(221,10,30)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1791.50"></text></g><g><title>xstrfmt (735,838 samples, 0.43%)</title><rect x="5.4628%" y="1765" width="0.4314%" height="15" fill="rgb(210,229,1)" fg:x="9317524" fg:w="735838"/><text x="5.7128%" y="1775.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (6,094,764 samples, 3.57%)</title><rect x="2.8047%" y="1925" width="3.5733%" height="15" fill="rgb(222,148,37)" fg:x="4783721" fg:w="6094764"/><text x="3.0547%" y="1935.50">__li..</text></g><g><title>__libc_start_call_main (6,094,764 samples, 3.57%)</title><rect x="2.8047%" y="1909" width="3.5733%" height="15" fill="rgb(234,67,33)" fg:x="4783721" fg:w="6094764"/><text x="3.0547%" y="1919.50">__li..</text></g><g><title>main (6,094,764 samples, 3.57%)</title><rect x="2.8047%" y="1893" width="3.5733%" height="15" fill="rgb(247,98,35)" fg:x="4783721" fg:w="6094764"/><text x="3.0547%" y="1903.50">main</text></g><g><title>cmd_main (6,094,764 samples, 3.57%)</title><rect x="2.8047%" y="1877" width="3.5733%" height="15" fill="rgb(247,138,52)" fg:x="4783721" fg:w="6094764"/><text x="3.0547%" y="1887.50">cmd_..</text></g><g><title>handle_builtin (6,094,764 samples, 3.57%)</title><rect x="2.8047%" y="1861" width="3.5733%" height="15" fill="rgb(213,79,30)" fg:x="4783721" fg:w="6094764"/><text x="3.0547%" y="1871.50">hand..</text></g><g><title>cmd_status (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1845" width="0.4838%" height="15" fill="rgb(246,177,23)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1855.50"></text></g><g><title>status_init_config (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1829" width="0.4838%" height="15" fill="rgb(230,62,27)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1839.50"></text></g><g><title>sequencer_determine_whence (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1813" width="0.4838%" height="15" fill="rgb(216,154,8)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1823.50"></text></g><g><title>refs_ref_exists (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1797" width="0.4838%" height="15" fill="rgb(244,35,45)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1807.50"></text></g><g><title>refs_resolve_ref_unsafe (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1781" width="0.4838%" height="15" fill="rgb(251,115,12)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1791.50"></text></g><g><title>files_read_raw_ref (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1765" width="0.4838%" height="15" fill="rgb(240,54,50)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1775.50"></text></g><g><title>read_ref_internal (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1749" width="0.4838%" height="15" fill="rgb(233,84,52)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1759.50"></text></g><g><title>packed_read_raw_ref (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1733" width="0.4838%" height="15" fill="rgb(207,117,47)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1743.50"></text></g><g><title>get_snapshot (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1717" width="0.4838%" height="15" fill="rgb(249,43,39)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1727.50"></text></g><g><title>stat_validity_update (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1701" width="0.4838%" height="15" fill="rgb(209,38,44)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1711.50"></text></g><g><title>__fstat64 (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1685" width="0.4838%" height="15" fill="rgb(236,212,23)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1695.50"></text></g><g><title>[unknown] (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1669" width="0.4838%" height="15" fill="rgb(242,79,21)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1679.50"></text></g><g><title>[unknown] (825,123 samples, 0.48%)</title><rect x="5.8942%" y="1653" width="0.4838%" height="15" fill="rgb(211,96,35)" fg:x="10053362" fg:w="825123"/><text x="6.1442%" y="1663.50"></text></g><g><title>__GI___tunables_init (159,599 samples, 0.09%)</title><rect x="6.3794%" y="1893" width="0.0936%" height="15" fill="rgb(253,215,40)" fg:x="10880825" fg:w="159599"/><text x="6.6294%" y="1903.50"></text></g><g><title>__rtld_malloc_init_real (285,880 samples, 0.17%)</title><rect x="6.4729%" y="1877" width="0.1676%" height="15" fill="rgb(211,81,21)" fg:x="11040424" fg:w="285880"/><text x="6.7229%" y="1887.50"></text></g><g><title>lookup_malloc_symbol (285,880 samples, 0.17%)</title><rect x="6.4729%" y="1861" width="0.1676%" height="15" fill="rgb(208,190,38)" fg:x="11040424" fg:w="285880"/><text x="6.7229%" y="1871.50"></text></g><g><title>_dl_lookup_symbol_x (285,880 samples, 0.17%)</title><rect x="6.4729%" y="1845" width="0.1676%" height="15" fill="rgb(235,213,38)" fg:x="11040424" fg:w="285880"/><text x="6.7229%" y="1855.50"></text></g><g><title>do_lookup_x (285,880 samples, 0.17%)</title><rect x="6.4729%" y="1829" width="0.1676%" height="15" fill="rgb(237,122,38)" fg:x="11040424" fg:w="285880"/><text x="6.7229%" y="1839.50"></text></g><g><title>fstatat64 (126,728 samples, 0.07%)</title><rect x="6.6412%" y="1797" width="0.0743%" height="15" fill="rgb(244,218,35)" fg:x="11327443" fg:w="126728"/><text x="6.8912%" y="1807.50"></text></g><g><title>[unknown] (126,728 samples, 0.07%)</title><rect x="6.6412%" y="1781" width="0.0743%" height="15" fill="rgb(240,68,47)" fg:x="11327443" fg:w="126728"/><text x="6.8912%" y="1791.50"></text></g><g><title>_dl_map_object_deps (232,653 samples, 0.14%)</title><rect x="6.6405%" y="1877" width="0.1364%" height="15" fill="rgb(210,16,53)" fg:x="11326304" fg:w="232653"/><text x="6.8905%" y="1887.50"></text></g><g><title>_dl_catch_exception (232,653 samples, 0.14%)</title><rect x="6.6405%" y="1861" width="0.1364%" height="15" fill="rgb(235,124,12)" fg:x="11326304" fg:w="232653"/><text x="6.8905%" y="1871.50"></text></g><g><title>openaux (232,653 samples, 0.14%)</title><rect x="6.6405%" y="1845" width="0.1364%" height="15" fill="rgb(224,169,11)" fg:x="11326304" fg:w="232653"/><text x="6.8905%" y="1855.50"></text></g><g><title>_dl_map_new_object (232,653 samples, 0.14%)</title><rect x="6.6405%" y="1829" width="0.1364%" height="15" fill="rgb(250,166,2)" fg:x="11326304" fg:w="232653"/><text x="6.8905%" y="1839.50"></text></g><g><title>open_path (231,514 samples, 0.14%)</title><rect x="6.6412%" y="1813" width="0.1357%" height="15" fill="rgb(242,216,29)" fg:x="11327443" fg:w="231514"/><text x="6.8912%" y="1823.50"></text></g><g><title>open_verify.constprop.0 (104,786 samples, 0.06%)</title><rect x="6.7155%" y="1797" width="0.0614%" height="15" fill="rgb(230,116,27)" fg:x="11454171" fg:w="104786"/><text x="6.9655%" y="1807.50"></text></g><g><title>__GI___pread64_nocancel (104,786 samples, 0.06%)</title><rect x="6.7155%" y="1781" width="0.0614%" height="15" fill="rgb(228,99,48)" fg:x="11454171" fg:w="104786"/><text x="6.9655%" y="1791.50"></text></g><g><title>[unknown] (104,786 samples, 0.06%)</title><rect x="6.7155%" y="1765" width="0.0614%" height="15" fill="rgb(253,11,6)" fg:x="11454171" fg:w="104786"/><text x="6.9655%" y="1775.50"></text></g><g><title>git (6,811,234 samples, 3.99%)</title><rect x="2.8047%" y="1957" width="3.9934%" height="15" fill="rgb(247,143,39)" fg:x="4783717" fg:w="6811234"/><text x="3.0547%" y="1967.50">git</text></g><g><title>_start (6,811,234 samples, 3.99%)</title><rect x="2.8047%" y="1941" width="3.9934%" height="15" fill="rgb(236,97,10)" fg:x="4783717" fg:w="6811234"/><text x="3.0547%" y="1951.50">_sta..</text></g><g><title>_dl_start (716,466 samples, 0.42%)</title><rect x="6.3780%" y="1925" width="0.4201%" height="15" fill="rgb(233,208,19)" fg:x="10878485" fg:w="716466"/><text x="6.6280%" y="1935.50"></text></g><g><title>_dl_sysdep_start (714,126 samples, 0.42%)</title><rect x="6.3794%" y="1909" width="0.4187%" height="15" fill="rgb(216,164,2)" fg:x="10880825" fg:w="714126"/><text x="6.6294%" y="1919.50"></text></g><g><title>dl_main (554,527 samples, 0.33%)</title><rect x="6.4729%" y="1893" width="0.3251%" height="15" fill="rgb(220,129,5)" fg:x="11040424" fg:w="554527"/><text x="6.7229%" y="1903.50"></text></g><g><title>_dl_receive_error (35,994 samples, 0.02%)</title><rect x="6.7769%" y="1877" width="0.0211%" height="15" fill="rgb(242,17,10)" fg:x="11558957" fg:w="35994"/><text x="7.0269%" y="1887.50"></text></g><g><title>version_check_doit (35,994 samples, 0.02%)</title><rect x="6.7769%" y="1861" width="0.0211%" height="15" fill="rgb(242,107,0)" fg:x="11558957" fg:w="35994"/><text x="7.0269%" y="1871.50"></text></g><g><title>_dl_check_all_versions (35,994 samples, 0.02%)</title><rect x="6.7769%" y="1845" width="0.0211%" height="15" fill="rgb(251,28,31)" fg:x="11558957" fg:w="35994"/><text x="7.0269%" y="1855.50"></text></g><g><title>_dl_check_map_versions (35,994 samples, 0.02%)</title><rect x="6.7769%" y="1829" width="0.0211%" height="15" fill="rgb(233,223,10)" fg:x="11558957" fg:w="35994"/><text x="7.0269%" y="1839.50"></text></g><g><title>strcmp (35,994 samples, 0.02%)</title><rect x="6.7769%" y="1813" width="0.0211%" height="15" fill="rgb(215,21,27)" fg:x="11558957" fg:w="35994"/><text x="7.0269%" y="1823.50"></text></g><g><title>insert_module (2,192,601 samples, 1.29%)</title><rect x="6.7980%" y="1749" width="1.2855%" height="15" fill="rgb(232,23,21)" fg:x="11594951" fg:w="2192601"/><text x="7.0480%" y="1759.50"></text></g><g><title>__strcmp_evex (2,192,601 samples, 1.29%)</title><rect x="6.7980%" y="1733" width="1.2855%" height="15" fill="rgb(244,5,23)" fg:x="11594951" fg:w="2192601"/><text x="7.0480%" y="1743.50"></text></g><g><title>__getdelim (799,929 samples, 0.47%)</title><rect x="8.0836%" y="1733" width="0.4690%" height="15" fill="rgb(226,81,46)" fg:x="13787552" fg:w="799929"/><text x="8.3336%" y="1743.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1925" width="3.1504%" height="15" fill="rgb(247,70,30)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1935.50">__l..</text></g><g><title>__libc_start_call_main (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1909" width="3.1504%" height="15" fill="rgb(212,68,19)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1919.50">__l..</text></g><g><title>main (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1893" width="3.1504%" height="15" fill="rgb(240,187,13)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1903.50">main</text></g><g><title>init_localeinfo (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1877" width="3.1504%" height="15" fill="rgb(223,113,26)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1887.50">ini..</text></g><g><title>rpl_mbrtoc32 (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1861" width="3.1504%" height="15" fill="rgb(206,192,2)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1871.50">rpl..</text></g><g><title>__mbrtowc (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1845" width="3.1504%" height="15" fill="rgb(241,108,4)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1855.50">__m..</text></g><g><title>__wcsmbs_load_conv (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1829" width="3.1504%" height="15" fill="rgb(247,173,49)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1839.50">__w..</text></g><g><title>__gconv_find_transform (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1813" width="3.1504%" height="15" fill="rgb(224,114,35)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1823.50">__g..</text></g><g><title>pthread_once@GLIBC_2.2.5 (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1797" width="3.1504%" height="15" fill="rgb(245,159,27)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1807.50">pth..</text></g><g><title>__pthread_once_slow.isra.0 (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1781" width="3.1504%" height="15" fill="rgb(245,172,44)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1791.50">__p..</text></g><g><title>__gconv_read_conf (5,373,424 samples, 3.15%)</title><rect x="6.7980%" y="1765" width="3.1504%" height="15" fill="rgb(236,23,11)" fg:x="11594951" fg:w="5373424"/><text x="7.0480%" y="1775.50">__g..</text></g><g><title>read_conf_file.isra.0 (3,180,823 samples, 1.86%)</title><rect x="8.0836%" y="1749" width="1.8649%" height="15" fill="rgb(205,117,38)" fg:x="13787552" fg:w="3180823"/><text x="8.3336%" y="1759.50">r..</text></g><g><title>add_module (2,380,894 samples, 1.40%)</title><rect x="8.5525%" y="1733" width="1.3959%" height="15" fill="rgb(237,72,25)" fg:x="14587481" fg:w="2380894"/><text x="8.8025%" y="1743.50"></text></g><g><title>insert_module (2,380,894 samples, 1.40%)</title><rect x="8.5525%" y="1717" width="1.3959%" height="15" fill="rgb(244,70,9)" fg:x="14587481" fg:w="2380894"/><text x="8.8025%" y="1727.50"></text></g><g><title>__strcmp_evex (2,380,894 samples, 1.40%)</title><rect x="8.5525%" y="1701" width="1.3959%" height="15" fill="rgb(217,125,39)" fg:x="14587481" fg:w="2380894"/><text x="8.8025%" y="1711.50"></text></g><g><title>grep (5,788,336 samples, 3.39%)</title><rect x="6.7980%" y="1957" width="3.3937%" height="15" fill="rgb(235,36,10)" fg:x="11594951" fg:w="5788336"/><text x="7.0480%" y="1967.50">grep</text></g><g><title>_start (5,788,336 samples, 3.39%)</title><rect x="6.7980%" y="1941" width="3.3937%" height="15" fill="rgb(251,123,47)" fg:x="11594951" fg:w="5788336"/><text x="7.0480%" y="1951.50">_st..</text></g><g><title>_dl_start (414,912 samples, 0.24%)</title><rect x="9.9484%" y="1925" width="0.2433%" height="15" fill="rgb(221,13,13)" fg:x="16968375" fg:w="414912"/><text x="10.1984%" y="1935.50"></text></g><g><title>_dl_sysdep_start (414,912 samples, 0.24%)</title><rect x="9.9484%" y="1909" width="0.2433%" height="15" fill="rgb(238,131,9)" fg:x="16968375" fg:w="414912"/><text x="10.1984%" y="1919.50"></text></g><g><title>init_cpu_features.constprop.0 (414,912 samples, 0.24%)</title><rect x="9.9484%" y="1893" width="0.2433%" height="15" fill="rgb(211,50,8)" fg:x="16968375" fg:w="414912"/><text x="10.1984%" y="1903.50"></text></g><g><title>handle_amd (414,912 samples, 0.24%)</title><rect x="9.9484%" y="1877" width="0.2433%" height="15" fill="rgb(245,182,24)" fg:x="16968375" fg:w="414912"/><text x="10.1984%" y="1887.50"></text></g><g><title>[libc.so.6] (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1941" width="0.0387%" height="15" fill="rgb(242,14,37)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1951.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1925" width="0.0387%" height="15" fill="rgb(246,228,12)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1935.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1909" width="0.0387%" height="15" fill="rgb(213,55,15)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1919.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1893" width="0.0387%" height="15" fill="rgb(209,9,3)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1903.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1877" width="0.0387%" height="15" fill="rgb(230,59,30)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1887.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1861" width="0.0387%" height="15" fill="rgb(209,121,21)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1871.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1845" width="0.0387%" height="15" fill="rgb(220,109,13)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1855.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1829" width="0.0387%" height="15" fill="rgb(232,18,1)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1839.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1813" width="0.0387%" height="15" fill="rgb(215,41,42)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1823.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1797" width="0.0387%" height="15" fill="rgb(224,123,36)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1807.50"></text></g><g><title>alloc::alloc::dealloc (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1781" width="0.0387%" height="15" fill="rgb(240,125,3)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1765" width="0.0387%" height="15" fill="rgb(205,98,50)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1749" width="0.0387%" height="15" fill="rgb(205,185,37)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1733" width="0.0387%" height="15" fill="rgb(238,207,15)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1743.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1717" width="0.0387%" height="15" fill="rgb(213,199,42)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1701" width="0.0387%" height="15" fill="rgb(235,201,11)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1685" width="0.0387%" height="15" fill="rgb(207,46,11)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1695.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1669" width="0.0387%" height="15" fill="rgb(241,35,35)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1679.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1653" width="0.0387%" height="15" fill="rgb(243,32,47)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1663.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1637" width="0.0387%" height="15" fill="rgb(247,202,23)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1647.50"></text></g><g><title>alloc::alloc::dealloc (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1621" width="0.0387%" height="15" fill="rgb(219,102,11)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1631.50"></text></g><g><title>_int_free_chunk (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1605" width="0.0387%" height="15" fill="rgb(243,110,44)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1615.50"></text></g><g><title>[unknown] (66,068 samples, 0.04%)</title><rect x="10.1917%" y="1589" width="0.0387%" height="15" fill="rgb(222,74,54)" fg:x="17383287" fg:w="66068"/><text x="10.4417%" y="1599.50"></text></g><g><title>[unknown] (878,959 samples, 0.52%)</title><rect x="10.2304%" y="1941" width="0.5153%" height="15" fill="rgb(216,99,12)" fg:x="17449355" fg:w="878959"/><text x="10.4804%" y="1951.50"></text></g><g><title>_int_malloc (870,283 samples, 0.51%)</title><rect x="10.2355%" y="1925" width="0.5102%" height="15" fill="rgb(226,22,26)" fg:x="17458031" fg:w="870283"/><text x="10.4855%" y="1935.50"></text></g><g><title>[unknown] (870,283 samples, 0.51%)</title><rect x="10.2355%" y="1909" width="0.5102%" height="15" fill="rgb(217,163,10)" fg:x="17458031" fg:w="870283"/><text x="10.4855%" y="1919.50"></text></g><g><title>__libc_start_call_main (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1941" width="0.2927%" height="15" fill="rgb(213,25,53)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1951.50"></text></g><g><title>main (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1925" width="0.2927%" height="15" fill="rgb(252,105,26)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1935.50"></text></g><g><title>std::rt::lang_start_internal (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1909" width="0.2927%" height="15" fill="rgb(220,39,43)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1919.50"></text></g><g><title>std::rt::lang_start::{{closure}} (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1893" width="0.2927%" height="15" fill="rgb(229,68,48)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1903.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1877" width="0.2927%" height="15" fill="rgb(252,8,32)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1887.50"></text></g><g><title>core::ops::function::FnOnce::call_once (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1861" width="0.2927%" height="15" fill="rgb(223,20,43)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1871.50"></text></g><g><title>shed::main (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1845" width="0.2927%" height="15" fill="rgb(229,81,49)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1855.50"></text></g><g><title>shed::shed_interactive (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1829" width="0.2927%" height="15" fill="rgb(236,28,36)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1839.50"></text></g><g><title>shed::readline::ShedVi::new (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1813" width="0.2927%" height="15" fill="rgb(249,185,26)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1823.50"></text></g><g><title>shed::readline::Prompt::refresh (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1797" width="0.2927%" height="15" fill="rgb(249,174,33)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1807.50"></text></g><g><title>shed::expand::expand_prompt (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1781" width="0.2927%" height="15" fill="rgb(233,201,37)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1791.50"></text></g><g><title>shed::expand::expand_cmd_sub (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1765" width="0.2927%" height="15" fill="rgb(221,78,26)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1775.50"></text></g><g><title>shed::parse::execute::exec_input (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1749" width="0.2927%" height="15" fill="rgb(250,127,30)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1733" width="0.2927%" height="15" fill="rgb(230,49,44)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1717" width="0.2927%" height="15" fill="rgb(229,67,23)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1701" width="0.2927%" height="15" fill="rgb(249,83,47)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1685" width="0.2927%" height="15" fill="rgb(215,43,3)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1669" width="0.2927%" height="15" fill="rgb(238,154,13)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1653" width="0.2927%" height="15" fill="rgb(219,56,2)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1637" width="0.2927%" height="15" fill="rgb(233,0,4)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1621" width="0.2927%" height="15" fill="rgb(235,30,7)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1605" width="0.2927%" height="15" fill="rgb(250,79,13)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1589" width="0.2927%" height="15" fill="rgb(211,146,34)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1573" width="0.2927%" height="15" fill="rgb(228,22,38)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1557" width="0.2927%" height="15" fill="rgb(235,168,5)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1541" width="0.2927%" height="15" fill="rgb(221,155,16)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1525" width="0.2927%" height="15" fill="rgb(215,215,53)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1509" width="0.2927%" height="15" fill="rgb(223,4,10)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1493" width="0.2927%" height="15" fill="rgb(234,103,6)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1477" width="0.2927%" height="15" fill="rgb(227,97,0)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1461" width="0.2927%" height="15" fill="rgb(234,150,53)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1471.50"></text></g><g><title>shed::builtin::varcmds::local (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1445" width="0.2927%" height="15" fill="rgb(228,201,54)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1455.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1429" width="0.2927%" height="15" fill="rgb(222,22,37)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1439.50"></text></g><g><title>shed::expand::Expander::expand (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1413" width="0.2927%" height="15" fill="rgb(237,53,32)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1423.50"></text></g><g><title>shed::expand::expand_raw (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1397" width="0.2927%" height="15" fill="rgb(233,25,53)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1407.50"></text></g><g><title>shed::expand::expand_var (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1381" width="0.2927%" height="15" fill="rgb(210,40,34)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1391.50"></text></g><g><title>shed::expand::expand_cmd_sub (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1365" width="0.2927%" height="15" fill="rgb(241,220,44)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1375.50"></text></g><g><title>shed::parse::execute::exec_input (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1349" width="0.2927%" height="15" fill="rgb(235,28,35)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1333" width="0.2927%" height="15" fill="rgb(210,56,17)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1317" width="0.2927%" height="15" fill="rgb(224,130,29)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1301" width="0.2927%" height="15" fill="rgb(235,212,8)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1285" width="0.2927%" height="15" fill="rgb(223,33,50)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1269" width="0.2927%" height="15" fill="rgb(219,149,13)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1253" width="0.2927%" height="15" fill="rgb(250,156,29)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1237" width="0.2927%" height="15" fill="rgb(216,193,19)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1221" width="0.2927%" height="15" fill="rgb(216,135,14)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1205" width="0.2927%" height="15" fill="rgb(241,47,5)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1189" width="0.2927%" height="15" fill="rgb(233,42,35)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1173" width="0.2927%" height="15" fill="rgb(231,13,6)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1157" width="0.2927%" height="15" fill="rgb(207,181,40)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1141" width="0.2927%" height="15" fill="rgb(254,173,49)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1125" width="0.2927%" height="15" fill="rgb(221,1,38)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1109" width="0.2927%" height="15" fill="rgb(206,124,46)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1119.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1093" width="0.2927%" height="15" fill="rgb(249,21,11)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1077" width="0.2927%" height="15" fill="rgb(222,201,40)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1061" width="0.2927%" height="15" fill="rgb(235,61,29)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1071.50"></text></g><g><title>shed::builtin::varcmds::local (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1045" width="0.2927%" height="15" fill="rgb(219,207,3)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1055.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1029" width="0.2927%" height="15" fill="rgb(222,56,46)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1039.50"></text></g><g><title>shed::expand::Expander::expand (499,254 samples, 0.29%)</title><rect x="10.7458%" y="1013" width="0.2927%" height="15" fill="rgb(239,76,54)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1023.50"></text></g><g><title>shed::expand::expand_raw (499,254 samples, 0.29%)</title><rect x="10.7458%" y="997" width="0.2927%" height="15" fill="rgb(231,124,27)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="1007.50"></text></g><g><title>shed::expand::expand_var (499,254 samples, 0.29%)</title><rect x="10.7458%" y="981" width="0.2927%" height="15" fill="rgb(249,195,6)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="991.50"></text></g><g><title>shed::expand::expand_cmd_sub (499,254 samples, 0.29%)</title><rect x="10.7458%" y="965" width="0.2927%" height="15" fill="rgb(237,174,47)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="975.50"></text></g><g><title>shed::parse::execute::exec_input (499,254 samples, 0.29%)</title><rect x="10.7458%" y="949" width="0.2927%" height="15" fill="rgb(206,201,31)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="959.50"></text></g><g><title>shed::state::read_logic (499,254 samples, 0.29%)</title><rect x="10.7458%" y="933" width="0.2927%" height="15" fill="rgb(231,57,52)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="943.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (499,254 samples, 0.29%)</title><rect x="10.7458%" y="917" width="0.2927%" height="15" fill="rgb(248,177,22)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="927.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (499,254 samples, 0.29%)</title><rect x="10.7458%" y="901" width="0.2927%" height="15" fill="rgb(215,211,37)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="911.50"></text></g><g><title>shed::state::read_logic::{{closure}} (499,254 samples, 0.29%)</title><rect x="10.7458%" y="885" width="0.2927%" height="15" fill="rgb(241,128,51)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="895.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (499,254 samples, 0.29%)</title><rect x="10.7458%" y="869" width="0.2927%" height="15" fill="rgb(227,165,31)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="879.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="853" width="0.2927%" height="15" fill="rgb(228,167,24)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="837" width="0.2927%" height="15" fill="rgb(228,143,12)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="847.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="821" width="0.2927%" height="15" fill="rgb(249,149,8)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="831.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="805" width="0.2927%" height="15" fill="rgb(243,35,44)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="815.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (499,254 samples, 0.29%)</title><rect x="10.7458%" y="789" width="0.2927%" height="15" fill="rgb(246,89,9)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="799.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (499,254 samples, 0.29%)</title><rect x="10.7458%" y="773" width="0.2927%" height="15" fill="rgb(233,213,13)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="783.50"></text></g><g><title>core::clone::Clone::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="757" width="0.2927%" height="15" fill="rgb(233,141,41)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="767.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="741" width="0.2927%" height="15" fill="rgb(239,167,4)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="751.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="725" width="0.2927%" height="15" fill="rgb(209,217,16)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="709" width="0.2927%" height="15" fill="rgb(219,88,35)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="719.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (499,254 samples, 0.29%)</title><rect x="10.7458%" y="693" width="0.2927%" height="15" fill="rgb(220,193,23)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (499,254 samples, 0.29%)</title><rect x="10.7458%" y="677" width="0.2927%" height="15" fill="rgb(230,90,52)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="687.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="661" width="0.2927%" height="15" fill="rgb(252,106,19)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="671.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="645" width="0.2927%" height="15" fill="rgb(206,74,20)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="655.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="629" width="0.2927%" height="15" fill="rgb(230,138,44)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="639.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (499,254 samples, 0.29%)</title><rect x="10.7458%" y="613" width="0.2927%" height="15" fill="rgb(235,182,43)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="623.50"></text></g><g><title>__libc_malloc2 (499,254 samples, 0.29%)</title><rect x="10.7458%" y="597" width="0.2927%" height="15" fill="rgb(242,16,51)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="607.50"></text></g><g><title>_int_malloc (499,254 samples, 0.29%)</title><rect x="10.7458%" y="581" width="0.2927%" height="15" fill="rgb(248,9,4)" fg:x="18328314" fg:w="499254"/><text x="10.9958%" y="591.50"></text></g><g><title>__readlink (71,537 samples, 0.04%)</title><rect x="11.0385%" y="1941" width="0.0419%" height="15" fill="rgb(210,31,22)" fg:x="18827619" fg:w="71537"/><text x="11.2885%" y="1951.50"></text></g><g><title>[unknown] (71,537 samples, 0.04%)</title><rect x="11.0385%" y="1925" width="0.0419%" height="15" fill="rgb(239,54,39)" fg:x="18827619" fg:w="71537"/><text x="11.2885%" y="1935.50"></text></g><g><title>_int_free_create_chunk (889,625 samples, 0.52%)</title><rect x="11.0805%" y="1941" width="0.5216%" height="15" fill="rgb(230,99,41)" fg:x="18899156" fg:w="889625"/><text x="11.3305%" y="1951.50"></text></g><g><title>[unknown] (889,625 samples, 0.52%)</title><rect x="11.0805%" y="1925" width="0.5216%" height="15" fill="rgb(253,106,12)" fg:x="18899156" fg:w="889625"/><text x="11.3305%" y="1935.50"></text></g><g><title>_int_free_merge_chunk (23,109 samples, 0.01%)</title><rect x="11.6020%" y="1941" width="0.0135%" height="15" fill="rgb(213,46,41)" fg:x="19788781" fg:w="23109"/><text x="11.8520%" y="1951.50"></text></g><g><title>_int_free_create_chunk (23,109 samples, 0.01%)</title><rect x="11.6020%" y="1925" width="0.0135%" height="15" fill="rgb(215,133,35)" fg:x="19788781" fg:w="23109"/><text x="11.8520%" y="1935.50"></text></g><g><title>[unknown] (23,109 samples, 0.01%)</title><rect x="11.6020%" y="1909" width="0.0135%" height="15" fill="rgb(213,28,5)" fg:x="19788781" fg:w="23109"/><text x="11.8520%" y="1919.50"></text></g><g><title>_int_malloc (44,836 samples, 0.03%)</title><rect x="11.6156%" y="1941" width="0.0263%" height="15" fill="rgb(215,77,49)" fg:x="19811890" fg:w="44836"/><text x="11.8656%" y="1951.50"></text></g><g><title>[unknown] (44,836 samples, 0.03%)</title><rect x="11.6156%" y="1925" width="0.0263%" height="15" fill="rgb(248,100,22)" fg:x="19811890" fg:w="44836"/><text x="11.8656%" y="1935.50"></text></g><g><title>exit (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1893" width="0.7541%" height="15" fill="rgb(208,67,9)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1903.50"></text></g><g><title>__run_exit_handlers (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1877" width="0.7541%" height="15" fill="rgb(219,133,21)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1887.50"></text></g><g><title>__call_tls_dtors (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1861" width="0.7541%" height="15" fill="rgb(246,46,29)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1871.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1845" width="0.7541%" height="15" fill="rgb(246,185,52)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1855.50"></text></g><g><title>std::sys::thread_local::abort_on_dtor_unwind (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1829" width="0.7541%" height="15" fill="rgb(252,136,11)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1839.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy::{{closure}} (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1813" width="0.7541%" height="15" fill="rgb(219,138,53)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1823.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_drop (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1797" width="0.7541%" height="15" fill="rgb(211,51,23)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1807.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::Shed&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1781" width="0.7541%" height="15" fill="rgb(247,221,28)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::LogTab&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1765" width="0.7541%" height="15" fill="rgb(251,222,45)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::LogTab&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1749" width="0.7541%" height="15" fill="rgb(217,162,53)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1733" width="0.7541%" height="15" fill="rgb(229,93,14)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1743.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1717" width="0.7541%" height="15" fill="rgb(209,67,49)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1701" width="0.7541%" height="15" fill="rgb(213,87,29)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1685" width="0.7541%" height="15" fill="rgb(205,151,52)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1695.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1669" width="0.7541%" height="15" fill="rgb(253,215,39)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1679.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1653" width="0.7541%" height="15" fill="rgb(221,220,41)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1663.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1637" width="0.7541%" height="15" fill="rgb(218,133,21)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1647.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1621" width="0.7541%" height="15" fill="rgb(221,193,43)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1631.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1605" width="0.7541%" height="15" fill="rgb(240,128,52)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1589" width="0.7541%" height="15" fill="rgb(253,114,12)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1573" width="0.7541%" height="15" fill="rgb(215,223,47)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1557" width="0.7541%" height="15" fill="rgb(248,225,23)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1541" width="0.7541%" height="15" fill="rgb(250,108,0)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;shed::parse::lex::Tk&gt;&gt; (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1525" width="0.7541%" height="15" fill="rgb(228,208,7)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1535.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1509" width="0.7541%" height="15" fill="rgb(244,45,10)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1519.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1493" width="0.7541%" height="15" fill="rgb(207,125,25)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1503.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1477" width="0.7541%" height="15" fill="rgb(210,195,18)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1487.50"></text></g><g><title>alloc::alloc::dealloc (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1461" width="0.7541%" height="15" fill="rgb(249,80,12)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1471.50"></text></g><g><title>_int_free_chunk (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1445" width="0.7541%" height="15" fill="rgb(221,65,9)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1455.50"></text></g><g><title>_int_free_maybe_consolidate.part.0 (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1429" width="0.7541%" height="15" fill="rgb(235,49,36)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1439.50"></text></g><g><title>malloc_consolidate (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1413" width="0.7541%" height="15" fill="rgb(225,32,20)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1423.50"></text></g><g><title>unlink_chunk.isra.0 (1,286,194 samples, 0.75%)</title><rect x="11.6419%" y="1397" width="0.7541%" height="15" fill="rgb(215,141,46)" fg:x="19856728" fg:w="1286194"/><text x="11.8919%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;i8&gt;&gt; (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1525" width="0.0141%" height="15" fill="rgb(250,160,47)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;i8&gt;&gt; (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1509" width="0.0141%" height="15" fill="rgb(216,222,40)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1519.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1493" width="0.0141%" height="15" fill="rgb(234,217,39)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1503.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1477" width="0.0141%" height="15" fill="rgb(207,178,40)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1487.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1461" width="0.0141%" height="15" fill="rgb(221,136,13)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1471.50"></text></g><g><title>alloc::alloc::dealloc (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1445" width="0.0141%" height="15" fill="rgb(249,199,10)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1455.50"></text></g><g><title>cfree@GLIBC_2.2.5 (24,000 samples, 0.01%)</title><rect x="12.3960%" y="1429" width="0.0141%" height="15" fill="rgb(249,222,13)" fg:x="21142922" fg:w="24000"/><text x="12.6460%" y="1439.50"></text></g><g><title>shed::kickstart_lazy_evals (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1797" width="0.0144%" height="15" fill="rgb(244,185,38)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1807.50"></text></g><g><title>shed::state::read_vars (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1781" width="0.0144%" height="15" fill="rgb(236,202,9)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1791.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1765" width="0.0144%" height="15" fill="rgb(250,229,37)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1775.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1749" width="0.0144%" height="15" fill="rgb(206,174,23)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1759.50"></text></g><g><title>core::ops::function::FnOnce::call_once (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1733" width="0.0144%" height="15" fill="rgb(211,33,43)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1743.50"></text></g><g><title>shed::state::SHED::{{constant}}::{{closure}} (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1717" width="0.0144%" height="15" fill="rgb(245,58,50)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1727.50"></text></g><g><title>std::sys::thread_local::native::lazy::Storage&lt;T,D&gt;::get_or_init (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1701" width="0.0144%" height="15" fill="rgb(244,68,36)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1711.50"></text></g><g><title>std::sys::thread_local::native::lazy::Storage&lt;T,D&gt;::get_or_init_slow (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1685" width="0.0144%" height="15" fill="rgb(232,229,15)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1695.50"></text></g><g><title>core::option::Option&lt;T&gt;::unwrap_or_else (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1669" width="0.0144%" height="15" fill="rgb(254,30,23)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1679.50"></text></g><g><title>core::ops::function::FnOnce::call_once (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1653" width="0.0144%" height="15" fill="rgb(235,160,14)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1663.50"></text></g><g><title>shed::state::SHED::__rust_std_internal_init_fn (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1637" width="0.0144%" height="15" fill="rgb(212,155,44)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1647.50"></text></g><g><title>shed::state::Shed::new (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1621" width="0.0144%" height="15" fill="rgb(226,2,50)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1631.50"></text></g><g><title>shed::state::ScopeStack::new (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1605" width="0.0144%" height="15" fill="rgb(234,177,6)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1615.50"></text></g><g><title>shed::state::VarTab::new (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1589" width="0.0144%" height="15" fill="rgb(217,24,9)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1599.50"></text></g><g><title>shed::state::VarTab::init_env (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1573" width="0.0144%" height="15" fill="rgb(220,13,46)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1583.50"></text></g><g><title>nix::unistd::User::from_uid (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1557" width="0.0144%" height="15" fill="rgb(239,221,27)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1567.50"></text></g><g><title>nix::unistd::User::from_anything (24,597 samples, 0.01%)</title><rect x="12.3960%" y="1541" width="0.0144%" height="15" fill="rgb(222,198,25)" fg:x="21142922" fg:w="24597"/><text x="12.6460%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1685" width="0.0281%" height="15" fill="rgb(211,99,13)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1669" width="0.0281%" height="15" fill="rgb(232,111,31)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1653" width="0.0281%" height="15" fill="rgb(245,82,37)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1637" width="0.0281%" height="15" fill="rgb(227,149,46)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1647.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1621" width="0.0281%" height="15" fill="rgb(218,36,50)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1631.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1605" width="0.0281%" height="15" fill="rgb(226,80,48)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1615.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1589" width="0.0281%" height="15" fill="rgb(238,224,15)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1599.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1573" width="0.0281%" height="15" fill="rgb(241,136,10)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1583.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1557" width="0.0281%" height="15" fill="rgb(208,32,45)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1541" width="0.0281%" height="15" fill="rgb(207,135,9)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1525" width="0.0281%" height="15" fill="rgb(206,86,44)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1509" width="0.0281%" height="15" fill="rgb(245,177,15)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1493" width="0.0281%" height="15" fill="rgb(206,64,50)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1477" width="0.0281%" height="15" fill="rgb(234,36,40)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1461" width="0.0281%" height="15" fill="rgb(213,64,8)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1445" width="0.0281%" height="15" fill="rgb(210,75,36)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1429" width="0.0281%" height="15" fill="rgb(229,88,21)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1413" width="0.0281%" height="15" fill="rgb(252,204,47)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1397" width="0.0281%" height="15" fill="rgb(208,77,27)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1381" width="0.0281%" height="15" fill="rgb(221,76,26)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1365" width="0.0281%" height="15" fill="rgb(225,139,18)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1349" width="0.0281%" height="15" fill="rgb(230,137,11)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1333" width="0.0281%" height="15" fill="rgb(212,28,1)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1317" width="0.0281%" height="15" fill="rgb(248,164,17)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1301" width="0.0281%" height="15" fill="rgb(222,171,42)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1285" width="0.0281%" height="15" fill="rgb(243,84,45)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1269" width="0.0281%" height="15" fill="rgb(252,49,23)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1253" width="0.0281%" height="15" fill="rgb(215,19,7)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1237" width="0.0281%" height="15" fill="rgb(238,81,41)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1221" width="0.0281%" height="15" fill="rgb(210,199,37)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::string::String&gt;&gt; (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1205" width="0.0281%" height="15" fill="rgb(244,192,49)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1215.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (47,884 samples, 0.03%)</title><rect x="12.4112%" y="1189" width="0.0281%" height="15" fill="rgb(226,211,11)" fg:x="21168923" fg:w="47884"/><text x="12.6612%" y="1199.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (91,378 samples, 0.05%)</title><rect x="12.4393%" y="1557" width="0.0536%" height="15" fill="rgb(236,162,54)" fg:x="21216807" fg:w="91378"/><text x="12.6893%" y="1567.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (91,378 samples, 0.05%)</title><rect x="12.4393%" y="1541" width="0.0536%" height="15" fill="rgb(220,229,9)" fg:x="21216807" fg:w="91378"/><text x="12.6893%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (91,378 samples, 0.05%)</title><rect x="12.4393%" y="1525" width="0.0536%" height="15" fill="rgb(250,87,22)" fg:x="21216807" fg:w="91378"/><text x="12.6893%" y="1535.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (91,378 samples, 0.05%)</title><rect x="12.4393%" y="1509" width="0.0536%" height="15" fill="rgb(239,43,17)" fg:x="21216807" fg:w="91378"/><text x="12.6893%" y="1519.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_slice (91,378 samples, 0.05%)</title><rect x="12.4393%" y="1493" width="0.0536%" height="15" fill="rgb(231,177,25)" fg:x="21216807" fg:w="91378"/><text x="12.6893%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1685" width="0.0584%" height="15" fill="rgb(219,179,1)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1669" width="0.0584%" height="15" fill="rgb(238,219,53)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1653" width="0.0584%" height="15" fill="rgb(232,167,36)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1637" width="0.0584%" height="15" fill="rgb(244,19,51)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1621" width="0.0584%" height="15" fill="rgb(224,6,22)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1605" width="0.0584%" height="15" fill="rgb(224,145,5)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1589" width="0.0584%" height="15" fill="rgb(234,130,49)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (99,588 samples, 0.06%)</title><rect x="12.4393%" y="1573" width="0.0584%" height="15" fill="rgb(254,6,2)" fg:x="21216807" fg:w="99588"/><text x="12.6893%" y="1583.50"></text></g><g><title>shed::parse::execute::exec_input (465,815 samples, 0.27%)</title><rect x="12.4112%" y="1701" width="0.2731%" height="15" fill="rgb(208,96,46)" fg:x="21168923" fg:w="465815"/><text x="12.6612%" y="1711.50"></text></g><g><title>shed::state::read_logic (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1685" width="0.1866%" height="15" fill="rgb(239,3,39)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1695.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1669" width="0.1866%" height="15" fill="rgb(233,210,1)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1679.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1653" width="0.1866%" height="15" fill="rgb(244,137,37)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1663.50"></text></g><g><title>shed::state::read_logic::{{closure}} (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1637" width="0.1866%" height="15" fill="rgb(240,136,2)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1647.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1621" width="0.1866%" height="15" fill="rgb(239,18,37)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1631.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1605" width="0.1866%" height="15" fill="rgb(218,185,22)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1615.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1589" width="0.1866%" height="15" fill="rgb(225,218,4)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1599.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1573" width="0.1866%" height="15" fill="rgb(230,182,32)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1583.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1557" width="0.1866%" height="15" fill="rgb(242,56,43)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1567.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1541" width="0.1866%" height="15" fill="rgb(233,99,24)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1525" width="0.1866%" height="15" fill="rgb(234,209,42)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1535.50"></text></g><g><title>core::clone::Clone::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1509" width="0.1866%" height="15" fill="rgb(227,7,12)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1519.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1493" width="0.1866%" height="15" fill="rgb(245,203,43)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1503.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1477" width="0.1866%" height="15" fill="rgb(238,205,33)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1487.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1461" width="0.1866%" height="15" fill="rgb(231,56,7)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1471.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1445" width="0.1866%" height="15" fill="rgb(244,186,29)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1455.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1429" width="0.1866%" height="15" fill="rgb(234,111,31)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1439.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1413" width="0.1866%" height="15" fill="rgb(241,149,10)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1423.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1397" width="0.1866%" height="15" fill="rgb(249,206,44)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1407.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1381" width="0.1866%" height="15" fill="rgb(251,153,30)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1365" width="0.1866%" height="15" fill="rgb(239,152,38)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1375.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1349" width="0.1866%" height="15" fill="rgb(249,139,47)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1359.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1333" width="0.1866%" height="15" fill="rgb(244,64,35)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1343.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1317" width="0.1866%" height="15" fill="rgb(216,46,15)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1327.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1301" width="0.1866%" height="15" fill="rgb(250,74,19)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1311.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1285" width="0.1866%" height="15" fill="rgb(249,42,33)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1295.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1269" width="0.1866%" height="15" fill="rgb(242,149,17)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1279.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1253" width="0.1866%" height="15" fill="rgb(244,29,21)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1263.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1237" width="0.1866%" height="15" fill="rgb(220,130,37)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1221" width="0.1866%" height="15" fill="rgb(211,67,2)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1231.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1205" width="0.1866%" height="15" fill="rgb(235,68,52)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1215.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1189" width="0.1866%" height="15" fill="rgb(246,142,3)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1199.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1173" width="0.1866%" height="15" fill="rgb(241,25,7)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1183.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1157" width="0.1866%" height="15" fill="rgb(242,119,39)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1141" width="0.1866%" height="15" fill="rgb(241,98,45)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1151.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1125" width="0.1866%" height="15" fill="rgb(254,28,30)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1135.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1109" width="0.1866%" height="15" fill="rgb(241,142,54)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1119.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1093" width="0.1866%" height="15" fill="rgb(222,85,15)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1103.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1077" width="0.1866%" height="15" fill="rgb(210,85,47)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1087.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1061" width="0.1866%" height="15" fill="rgb(224,206,25)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1045" width="0.1866%" height="15" fill="rgb(243,201,19)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1055.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1029" width="0.1866%" height="15" fill="rgb(236,59,4)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1039.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (318,343 samples, 0.19%)</title><rect x="12.4977%" y="1013" width="0.1866%" height="15" fill="rgb(254,179,45)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1023.50"></text></g><g><title>alloc::alloc::alloc (318,343 samples, 0.19%)</title><rect x="12.4977%" y="997" width="0.1866%" height="15" fill="rgb(226,14,10)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="1007.50"></text></g><g><title>__libc_malloc2 (318,343 samples, 0.19%)</title><rect x="12.4977%" y="981" width="0.1866%" height="15" fill="rgb(244,27,41)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="991.50"></text></g><g><title>_int_malloc (318,343 samples, 0.19%)</title><rect x="12.4977%" y="965" width="0.1866%" height="15" fill="rgb(235,35,32)" fg:x="21316395" fg:w="318343"/><text x="12.7477%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (481,904 samples, 0.28%)</title><rect x="12.4104%" y="1765" width="0.2825%" height="15" fill="rgb(218,68,31)" fg:x="21167519" fg:w="481904"/><text x="12.6604%" y="1775.50"></text></g><g><title>shed::readline::Prompt::new::{{closure}} (481,904 samples, 0.28%)</title><rect x="12.4104%" y="1749" width="0.2825%" height="15" fill="rgb(207,120,37)" fg:x="21167519" fg:w="481904"/><text x="12.6604%" y="1759.50"></text></g><g><title>shed::expand::expand_prompt (481,904 samples, 0.28%)</title><rect x="12.4104%" y="1733" width="0.2825%" height="15" fill="rgb(227,98,0)" fg:x="21167519" fg:w="481904"/><text x="12.6604%" y="1743.50"></text></g><g><title>shed::expand::expand_cmd_sub (481,904 samples, 0.28%)</title><rect x="12.4104%" y="1717" width="0.2825%" height="15" fill="rgb(207,7,3)" fg:x="21167519" fg:w="481904"/><text x="12.6604%" y="1727.50"></text></g><g><title>__libc_malloc2 (22,186 samples, 0.01%)</title><rect x="12.7001%" y="1093" width="0.0130%" height="15" fill="rgb(206,98,19)" fg:x="21661713" fg:w="22186"/><text x="12.9501%" y="1103.50"></text></g><g><title>_int_malloc (22,186 samples, 0.01%)</title><rect x="12.7001%" y="1077" width="0.0130%" height="15" fill="rgb(217,5,26)" fg:x="21661713" fg:w="22186"/><text x="12.9501%" y="1087.50"></text></g><g><title>[unknown] (22,186 samples, 0.01%)</title><rect x="12.7001%" y="1061" width="0.0130%" height="15" fill="rgb(235,190,38)" fg:x="21661713" fg:w="22186"/><text x="12.9501%" y="1071.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1333" width="0.0235%" height="15" fill="rgb(247,86,24)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1343.50"></text></g><g><title>&lt;str as alloc::string::SpecToString&gt;::spec_to_string (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1317" width="0.0235%" height="15" fill="rgb(205,101,16)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1327.50"></text></g><g><title>&lt;alloc::string::String as core::convert::From&lt;&amp;str&gt;&gt;::from (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1301" width="0.0235%" height="15" fill="rgb(246,168,33)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1311.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1285" width="0.0235%" height="15" fill="rgb(231,114,1)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1295.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1269" width="0.0235%" height="15" fill="rgb(207,184,53)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1279.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1253" width="0.0235%" height="15" fill="rgb(224,95,51)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1263.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1237" width="0.0235%" height="15" fill="rgb(212,188,45)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1247.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1221" width="0.0235%" height="15" fill="rgb(223,154,38)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1231.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1205" width="0.0235%" height="15" fill="rgb(251,22,52)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1215.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1189" width="0.0235%" height="15" fill="rgb(229,209,22)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1199.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1173" width="0.0235%" height="15" fill="rgb(234,138,34)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1183.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1157" width="0.0235%" height="15" fill="rgb(212,95,11)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1167.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1141" width="0.0235%" height="15" fill="rgb(240,179,47)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1151.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1125" width="0.0235%" height="15" fill="rgb(240,163,11)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1135.50"></text></g><g><title>alloc::alloc::alloc (40,104 samples, 0.02%)</title><rect x="12.7001%" y="1109" width="0.0235%" height="15" fill="rgb(236,37,12)" fg:x="21661713" fg:w="40104"/><text x="12.9501%" y="1119.50"></text></g><g><title>__rustc::__rust_alloc (17,918 samples, 0.01%)</title><rect x="12.7131%" y="1093" width="0.0105%" height="15" fill="rgb(232,164,16)" fg:x="21683899" fg:w="17918"/><text x="12.9631%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="933" width="0.2986%" height="15" fill="rgb(244,205,15)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (509,334 samples, 0.30%)</title><rect x="12.7261%" y="917" width="0.2986%" height="15" fill="rgb(223,117,47)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="901" width="0.2986%" height="15" fill="rgb(244,107,35)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="885" width="0.2986%" height="15" fill="rgb(205,140,8)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="869" width="0.2986%" height="15" fill="rgb(228,84,46)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="853" width="0.2986%" height="15" fill="rgb(254,188,9)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="837" width="0.2986%" height="15" fill="rgb(206,112,54)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="821" width="0.2986%" height="15" fill="rgb(216,84,49)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (509,334 samples, 0.30%)</title><rect x="12.7261%" y="805" width="0.2986%" height="15" fill="rgb(214,194,35)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="815.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (509,334 samples, 0.30%)</title><rect x="12.7261%" y="789" width="0.2986%" height="15" fill="rgb(249,28,3)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (509,334 samples, 0.30%)</title><rect x="12.7261%" y="773" width="0.2986%" height="15" fill="rgb(222,56,52)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (509,334 samples, 0.30%)</title><rect x="12.7261%" y="757" width="0.2986%" height="15" fill="rgb(245,217,50)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="767.50"></text></g><g><title>alloc::alloc::dealloc (509,334 samples, 0.30%)</title><rect x="12.7261%" y="741" width="0.2986%" height="15" fill="rgb(213,201,24)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="751.50"></text></g><g><title>cfree@GLIBC_2.2.5 (509,334 samples, 0.30%)</title><rect x="12.7261%" y="725" width="0.2986%" height="15" fill="rgb(248,116,28)" fg:x="21706103" fg:w="509334"/><text x="12.9761%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1317" width="0.5298%" height="15" fill="rgb(219,72,43)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1301" width="0.5298%" height="15" fill="rgb(209,138,14)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1285" width="0.5298%" height="15" fill="rgb(222,18,33)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1269" width="0.5298%" height="15" fill="rgb(213,199,7)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1279.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1253" width="0.5298%" height="15" fill="rgb(250,110,10)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1263.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1237" width="0.5298%" height="15" fill="rgb(248,123,6)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1247.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1221" width="0.5298%" height="15" fill="rgb(206,91,31)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1231.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1205" width="0.5298%" height="15" fill="rgb(211,154,13)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1215.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1189" width="0.5298%" height="15" fill="rgb(225,148,7)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1173" width="0.5298%" height="15" fill="rgb(220,160,43)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1157" width="0.5298%" height="15" fill="rgb(213,52,39)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1141" width="0.5298%" height="15" fill="rgb(243,137,7)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1125" width="0.5298%" height="15" fill="rgb(230,79,13)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1109" width="0.5298%" height="15" fill="rgb(247,105,23)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1093" width="0.5298%" height="15" fill="rgb(223,179,41)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1077" width="0.5298%" height="15" fill="rgb(218,9,34)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1061" width="0.5298%" height="15" fill="rgb(222,106,8)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1045" width="0.5298%" height="15" fill="rgb(211,220,0)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1029" width="0.5298%" height="15" fill="rgb(229,52,16)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1039.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (903,595 samples, 0.53%)</title><rect x="12.7261%" y="1013" width="0.5298%" height="15" fill="rgb(212,155,18)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="997" width="0.5298%" height="15" fill="rgb(242,21,14)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="981" width="0.5298%" height="15" fill="rgb(222,19,48)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="965" width="0.5298%" height="15" fill="rgb(232,45,27)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (903,595 samples, 0.53%)</title><rect x="12.7261%" y="949" width="0.5298%" height="15" fill="rgb(249,103,42)" fg:x="21706103" fg:w="903595"/><text x="12.9761%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="933" width="0.2312%" height="15" fill="rgb(246,81,33)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="917" width="0.2312%" height="15" fill="rgb(252,33,42)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (394,261 samples, 0.23%)</title><rect x="13.0248%" y="901" width="0.2312%" height="15" fill="rgb(209,212,41)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="885" width="0.2312%" height="15" fill="rgb(207,154,6)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="869" width="0.2312%" height="15" fill="rgb(223,64,47)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="853" width="0.2312%" height="15" fill="rgb(211,161,38)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (394,261 samples, 0.23%)</title><rect x="13.0248%" y="837" width="0.2312%" height="15" fill="rgb(219,138,40)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="821" width="0.2312%" height="15" fill="rgb(241,228,46)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="805" width="0.2312%" height="15" fill="rgb(223,209,38)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="789" width="0.2312%" height="15" fill="rgb(236,164,45)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="773" width="0.2312%" height="15" fill="rgb(231,15,5)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::string::String&gt;&gt; (394,261 samples, 0.23%)</title><rect x="13.0248%" y="757" width="0.2312%" height="15" fill="rgb(252,35,15)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="767.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (394,261 samples, 0.23%)</title><rect x="13.0248%" y="741" width="0.2312%" height="15" fill="rgb(248,181,18)" fg:x="22215437" fg:w="394261"/><text x="13.2748%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;shed::state::ShFunc&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1189" width="0.0180%" height="15" fill="rgb(233,39,42)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1173" width="0.0180%" height="15" fill="rgb(238,110,33)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1157" width="0.0180%" height="15" fill="rgb(233,195,10)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1141" width="0.0180%" height="15" fill="rgb(254,105,3)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1125" width="0.0180%" height="15" fill="rgb(221,225,9)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1109" width="0.0180%" height="15" fill="rgb(224,227,45)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1093" width="0.0180%" height="15" fill="rgb(229,198,43)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1077" width="0.0180%" height="15" fill="rgb(206,209,35)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1061" width="0.0180%" height="15" fill="rgb(245,195,53)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1045" width="0.0180%" height="15" fill="rgb(240,92,26)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1055.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1029" width="0.0180%" height="15" fill="rgb(207,40,23)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="1013" width="0.0180%" height="15" fill="rgb(223,111,35)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="997" width="0.0180%" height="15" fill="rgb(229,147,28)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="981" width="0.0180%" height="15" fill="rgb(211,29,28)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="965" width="0.0180%" height="15" fill="rgb(228,72,33)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="949" width="0.0180%" height="15" fill="rgb(205,214,31)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="933" width="0.0180%" height="15" fill="rgb(224,111,15)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (30,781 samples, 0.02%)</title><rect x="13.2559%" y="917" width="0.0180%" height="15" fill="rgb(253,21,26)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="901" width="0.0180%" height="15" fill="rgb(245,139,43)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="885" width="0.0180%" height="15" fill="rgb(252,170,7)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="869" width="0.0180%" height="15" fill="rgb(231,118,14)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="853" width="0.0180%" height="15" fill="rgb(238,83,0)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (30,781 samples, 0.02%)</title><rect x="13.2559%" y="837" width="0.0180%" height="15" fill="rgb(221,39,39)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="821" width="0.0180%" height="15" fill="rgb(222,119,46)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="805" width="0.0180%" height="15" fill="rgb(222,165,49)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="789" width="0.0180%" height="15" fill="rgb(219,113,52)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="773" width="0.0180%" height="15" fill="rgb(214,7,15)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::string::String&gt;&gt; (30,781 samples, 0.02%)</title><rect x="13.2559%" y="757" width="0.0180%" height="15" fill="rgb(235,32,4)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="767.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (30,781 samples, 0.02%)</title><rect x="13.2559%" y="741" width="0.0180%" height="15" fill="rgb(238,90,54)" fg:x="22609698" fg:w="30781"/><text x="13.5059%" y="751.50"></text></g><g><title>shed::parse::Node::propagate_context (79,754 samples, 0.05%)</title><rect x="13.2821%" y="1189" width="0.0468%" height="15" fill="rgb(213,208,19)" fg:x="22654385" fg:w="79754"/><text x="13.5321%" y="1199.50"></text></g><g><title>shed::parse::Node::walk_tree (79,754 samples, 0.05%)</title><rect x="13.2821%" y="1173" width="0.0468%" height="15" fill="rgb(233,156,4)" fg:x="22654385" fg:w="79754"/><text x="13.5321%" y="1183.50"></text></g><g><title>shed::parse::Node::walk_tree (79,754 samples, 0.05%)</title><rect x="13.2821%" y="1157" width="0.0468%" height="15" fill="rgb(207,194,5)" fg:x="22654385" fg:w="79754"/><text x="13.5321%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (79,754 samples, 0.05%)</title><rect x="13.2821%" y="1141" width="0.0468%" height="15" fill="rgb(206,111,30)" fg:x="22654385" fg:w="79754"/><text x="13.5321%" y="1151.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (79,754 samples, 0.05%)</title><rect x="13.2821%" y="1125" width="0.0468%" height="15" fill="rgb(243,70,54)" fg:x="22654385" fg:w="79754"/><text x="13.5321%" y="1135.50"></text></g><g><title>shed::parse::Node::get_span (37,822 samples, 0.02%)</title><rect x="13.3289%" y="1157" width="0.0222%" height="15" fill="rgb(242,28,8)" fg:x="22734139" fg:w="37822"/><text x="13.5789%" y="1167.50"></text></g><g><title>shed::parse::lex::Span::range (37,822 samples, 0.02%)</title><rect x="13.3289%" y="1141" width="0.0222%" height="15" fill="rgb(219,106,18)" fg:x="22734139" fg:w="37822"/><text x="13.5789%" y="1151.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (40,323 samples, 0.02%)</title><rect x="13.3607%" y="997" width="0.0236%" height="15" fill="rgb(244,222,10)" fg:x="22788396" fg:w="40323"/><text x="13.6107%" y="1007.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (40,323 samples, 0.02%)</title><rect x="13.3607%" y="981" width="0.0236%" height="15" fill="rgb(236,179,52)" fg:x="22788396" fg:w="40323"/><text x="13.6107%" y="991.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (40,323 samples, 0.02%)</title><rect x="13.3607%" y="965" width="0.0236%" height="15" fill="rgb(213,23,39)" fg:x="22788396" fg:w="40323"/><text x="13.6107%" y="975.50"></text></g><g><title>__memmove_avx512_unaligned_erms (40,323 samples, 0.02%)</title><rect x="13.3607%" y="949" width="0.0236%" height="15" fill="rgb(238,48,10)" fg:x="22788396" fg:w="40323"/><text x="13.6107%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (156,872 samples, 0.09%)</title><rect x="13.3972%" y="693" width="0.0920%" height="15" fill="rgb(251,196,23)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="703.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (156,872 samples, 0.09%)</title><rect x="13.3972%" y="677" width="0.0920%" height="15" fill="rgb(250,152,24)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="687.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (156,872 samples, 0.09%)</title><rect x="13.3972%" y="661" width="0.0920%" height="15" fill="rgb(209,150,17)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (156,872 samples, 0.09%)</title><rect x="13.3972%" y="645" width="0.0920%" height="15" fill="rgb(234,202,34)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (156,872 samples, 0.09%)</title><rect x="13.3972%" y="629" width="0.0920%" height="15" fill="rgb(253,148,53)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (156,872 samples, 0.09%)</title><rect x="13.3972%" y="613" width="0.0920%" height="15" fill="rgb(218,129,16)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (156,872 samples, 0.09%)</title><rect x="13.3972%" y="597" width="0.0920%" height="15" fill="rgb(216,85,19)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (156,872 samples, 0.09%)</title><rect x="13.3972%" y="581" width="0.0920%" height="15" fill="rgb(235,228,7)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (156,872 samples, 0.09%)</title><rect x="13.3972%" y="565" width="0.0920%" height="15" fill="rgb(245,175,0)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="575.50"></text></g><g><title>alloc::alloc::alloc (156,872 samples, 0.09%)</title><rect x="13.3972%" y="549" width="0.0920%" height="15" fill="rgb(208,168,36)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="559.50"></text></g><g><title>malloc (156,872 samples, 0.09%)</title><rect x="13.3972%" y="533" width="0.0920%" height="15" fill="rgb(246,171,24)" fg:x="22850645" fg:w="156872"/><text x="13.6472%" y="543.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (36,326 samples, 0.02%)</title><rect x="13.4892%" y="517" width="0.0213%" height="15" fill="rgb(215,142,24)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="527.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (36,326 samples, 0.02%)</title><rect x="13.4892%" y="501" width="0.0213%" height="15" fill="rgb(250,187,7)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="511.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="485" width="0.0213%" height="15" fill="rgb(228,66,33)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="469" width="0.0213%" height="15" fill="rgb(234,215,21)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="479.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (36,326 samples, 0.02%)</title><rect x="13.4892%" y="453" width="0.0213%" height="15" fill="rgb(222,191,20)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="463.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (36,326 samples, 0.02%)</title><rect x="13.4892%" y="437" width="0.0213%" height="15" fill="rgb(245,79,54)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="447.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="421" width="0.0213%" height="15" fill="rgb(240,10,37)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="431.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="405" width="0.0213%" height="15" fill="rgb(214,192,32)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="415.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="389" width="0.0213%" height="15" fill="rgb(209,36,54)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="399.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (36,326 samples, 0.02%)</title><rect x="13.4892%" y="373" width="0.0213%" height="15" fill="rgb(220,10,11)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="383.50"></text></g><g><title>__libc_malloc2 (36,326 samples, 0.02%)</title><rect x="13.4892%" y="357" width="0.0213%" height="15" fill="rgb(221,106,17)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="367.50"></text></g><g><title>_int_malloc (36,326 samples, 0.02%)</title><rect x="13.4892%" y="341" width="0.0213%" height="15" fill="rgb(251,142,44)" fg:x="23007517" fg:w="36326"/><text x="13.7392%" y="351.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (871,000 samples, 0.51%)</title><rect x="13.3972%" y="773" width="0.5107%" height="15" fill="rgb(238,13,15)" fg:x="22850645" fg:w="871000"/><text x="13.6472%" y="783.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (871,000 samples, 0.51%)</title><rect x="13.3972%" y="757" width="0.5107%" height="15" fill="rgb(208,107,27)" fg:x="22850645" fg:w="871000"/><text x="13.6472%" y="767.50"></text></g><g><title>core::clone::Clone::clone (871,000 samples, 0.51%)</title><rect x="13.3972%" y="741" width="0.5107%" height="15" fill="rgb(205,136,37)" fg:x="22850645" fg:w="871000"/><text x="13.6472%" y="751.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (871,000 samples, 0.51%)</title><rect x="13.3972%" y="725" width="0.5107%" height="15" fill="rgb(250,205,27)" fg:x="22850645" fg:w="871000"/><text x="13.6472%" y="735.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (871,000 samples, 0.51%)</title><rect x="13.3972%" y="709" width="0.5107%" height="15" fill="rgb(210,80,43)" fg:x="22850645" fg:w="871000"/><text x="13.6472%" y="719.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="693" width="0.4187%" height="15" fill="rgb(247,160,36)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="677" width="0.4187%" height="15" fill="rgb(234,13,49)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="687.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (714,128 samples, 0.42%)</title><rect x="13.4892%" y="661" width="0.4187%" height="15" fill="rgb(234,122,0)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="671.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (714,128 samples, 0.42%)</title><rect x="13.4892%" y="645" width="0.4187%" height="15" fill="rgb(207,146,38)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="655.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="629" width="0.4187%" height="15" fill="rgb(207,177,25)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="639.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="613" width="0.4187%" height="15" fill="rgb(211,178,42)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="597" width="0.4187%" height="15" fill="rgb(230,69,54)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="607.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (714,128 samples, 0.42%)</title><rect x="13.4892%" y="581" width="0.4187%" height="15" fill="rgb(214,135,41)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="591.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (714,128 samples, 0.42%)</title><rect x="13.4892%" y="565" width="0.4187%" height="15" fill="rgb(237,67,25)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="575.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="549" width="0.4187%" height="15" fill="rgb(222,189,50)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="559.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (714,128 samples, 0.42%)</title><rect x="13.4892%" y="533" width="0.4187%" height="15" fill="rgb(245,148,34)" fg:x="23007517" fg:w="714128"/><text x="13.7392%" y="543.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (677,802 samples, 0.40%)</title><rect x="13.5105%" y="517" width="0.3974%" height="15" fill="rgb(222,29,6)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="527.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (677,802 samples, 0.40%)</title><rect x="13.5105%" y="501" width="0.3974%" height="15" fill="rgb(221,189,43)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (677,802 samples, 0.40%)</title><rect x="13.5105%" y="485" width="0.3974%" height="15" fill="rgb(207,36,27)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="495.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (677,802 samples, 0.40%)</title><rect x="13.5105%" y="469" width="0.3974%" height="15" fill="rgb(217,90,24)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="479.50"></text></g><g><title>alloc::alloc::alloc (677,802 samples, 0.40%)</title><rect x="13.5105%" y="453" width="0.3974%" height="15" fill="rgb(224,66,35)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="463.50"></text></g><g><title>__libc_malloc2 (677,802 samples, 0.40%)</title><rect x="13.5105%" y="437" width="0.3974%" height="15" fill="rgb(221,13,50)" fg:x="23043843" fg:w="677802"/><text x="13.7605%" y="447.50"></text></g><g><title>shed::parse::execute::exec_input (906,023 samples, 0.53%)</title><rect x="13.3972%" y="933" width="0.5312%" height="15" fill="rgb(236,68,49)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="943.50"></text></g><g><title>shed::state::read_logic (906,023 samples, 0.53%)</title><rect x="13.3972%" y="917" width="0.5312%" height="15" fill="rgb(229,146,28)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="927.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (906,023 samples, 0.53%)</title><rect x="13.3972%" y="901" width="0.5312%" height="15" fill="rgb(225,31,38)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="911.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (906,023 samples, 0.53%)</title><rect x="13.3972%" y="885" width="0.5312%" height="15" fill="rgb(250,208,3)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="895.50"></text></g><g><title>shed::state::read_logic::{{closure}} (906,023 samples, 0.53%)</title><rect x="13.3972%" y="869" width="0.5312%" height="15" fill="rgb(246,54,23)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="879.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (906,023 samples, 0.53%)</title><rect x="13.3972%" y="853" width="0.5312%" height="15" fill="rgb(243,76,11)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="863.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (906,023 samples, 0.53%)</title><rect x="13.3972%" y="837" width="0.5312%" height="15" fill="rgb(245,21,50)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="847.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (906,023 samples, 0.53%)</title><rect x="13.3972%" y="821" width="0.5312%" height="15" fill="rgb(228,9,43)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="831.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (906,023 samples, 0.53%)</title><rect x="13.3972%" y="805" width="0.5312%" height="15" fill="rgb(208,100,47)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="815.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (906,023 samples, 0.53%)</title><rect x="13.3972%" y="789" width="0.5312%" height="15" fill="rgb(232,26,8)" fg:x="22850645" fg:w="906023"/><text x="13.6472%" y="799.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::new_uninitialized (35,023 samples, 0.02%)</title><rect x="13.9078%" y="773" width="0.0205%" height="15" fill="rgb(216,166,38)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="783.50"></text></g><g><title>hashbrown::raw::RawTableInner::new_uninitialized (35,023 samples, 0.02%)</title><rect x="13.9078%" y="757" width="0.0205%" height="15" fill="rgb(251,202,51)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="767.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (35,023 samples, 0.02%)</title><rect x="13.9078%" y="741" width="0.0205%" height="15" fill="rgb(254,216,34)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="751.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (35,023 samples, 0.02%)</title><rect x="13.9078%" y="725" width="0.0205%" height="15" fill="rgb(251,32,27)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="735.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (35,023 samples, 0.02%)</title><rect x="13.9078%" y="709" width="0.0205%" height="15" fill="rgb(208,127,28)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="719.50"></text></g><g><title>alloc::alloc::alloc (35,023 samples, 0.02%)</title><rect x="13.9078%" y="693" width="0.0205%" height="15" fill="rgb(224,137,22)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="703.50"></text></g><g><title>__libc_malloc2 (35,023 samples, 0.02%)</title><rect x="13.9078%" y="677" width="0.0205%" height="15" fill="rgb(254,70,32)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="687.50"></text></g><g><title>_int_malloc (35,023 samples, 0.02%)</title><rect x="13.9078%" y="661" width="0.0205%" height="15" fill="rgb(229,75,37)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="671.50"></text></g><g><title>malloc_consolidate (35,023 samples, 0.02%)</title><rect x="13.9078%" y="645" width="0.0205%" height="15" fill="rgb(252,64,23)" fg:x="23721645" fg:w="35023"/><text x="14.1578%" y="655.50"></text></g><g><title>__memmove_avx512_unaligned_erms (22,236 samples, 0.01%)</title><rect x="13.9378%" y="741" width="0.0130%" height="15" fill="rgb(232,162,48)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="751.50"></text></g><g><title>[unknown] (22,236 samples, 0.01%)</title><rect x="13.9378%" y="725" width="0.0130%" height="15" fill="rgb(246,160,12)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="735.50"></text></g><g><title>[unknown] (22,236 samples, 0.01%)</title><rect x="13.9378%" y="709" width="0.0130%" height="15" fill="rgb(247,166,0)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="719.50"></text></g><g><title>[unknown] (22,236 samples, 0.01%)</title><rect x="13.9378%" y="693" width="0.0130%" height="15" fill="rgb(249,219,21)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="703.50"></text></g><g><title>[unknown] (22,236 samples, 0.01%)</title><rect x="13.9378%" y="677" width="0.0130%" height="15" fill="rgb(205,209,3)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="687.50"></text></g><g><title>[unknown] (22,236 samples, 0.01%)</title><rect x="13.9378%" y="661" width="0.0130%" height="15" fill="rgb(243,44,1)" fg:x="23772819" fg:w="22236"/><text x="14.1878%" y="671.50"></text></g><g><title>shed::procio::IoStack::push_frame (35,448 samples, 0.02%)</title><rect x="13.9303%" y="933" width="0.0208%" height="15" fill="rgb(206,159,16)" fg:x="23760010" fg:w="35448"/><text x="14.1803%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (22,660 samples, 0.01%)</title><rect x="13.9378%" y="917" width="0.0133%" height="15" fill="rgb(244,77,30)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (22,660 samples, 0.01%)</title><rect x="13.9378%" y="901" width="0.0133%" height="15" fill="rgb(218,69,12)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (22,660 samples, 0.01%)</title><rect x="13.9378%" y="885" width="0.0133%" height="15" fill="rgb(212,87,7)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (22,660 samples, 0.01%)</title><rect x="13.9378%" y="869" width="0.0133%" height="15" fill="rgb(245,114,25)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (22,660 samples, 0.01%)</title><rect x="13.9378%" y="853" width="0.0133%" height="15" fill="rgb(210,61,42)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (22,660 samples, 0.01%)</title><rect x="13.9378%" y="837" width="0.0133%" height="15" fill="rgb(211,52,33)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (22,660 samples, 0.01%)</title><rect x="13.9378%" y="821" width="0.0133%" height="15" fill="rgb(234,58,33)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="831.50"></text></g><g><title>alloc::alloc::Global::grow_impl (22,660 samples, 0.01%)</title><rect x="13.9378%" y="805" width="0.0133%" height="15" fill="rgb(220,115,36)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="815.50"></text></g><g><title>alloc::alloc::realloc (22,660 samples, 0.01%)</title><rect x="13.9378%" y="789" width="0.0133%" height="15" fill="rgb(243,153,54)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="799.50"></text></g><g><title>realloc (22,660 samples, 0.01%)</title><rect x="13.9378%" y="773" width="0.0133%" height="15" fill="rgb(251,47,18)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="783.50"></text></g><g><title>_int_realloc (22,660 samples, 0.01%)</title><rect x="13.9378%" y="757" width="0.0133%" height="15" fill="rgb(242,102,42)" fg:x="23772798" fg:w="22660"/><text x="14.1878%" y="767.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1317" width="0.7044%" height="15" fill="rgb(234,31,38)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1301" width="0.7044%" height="15" fill="rgb(221,117,51)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1285" width="0.7044%" height="15" fill="rgb(212,20,18)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1269" width="0.7044%" height="15" fill="rgb(245,133,36)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1253" width="0.7044%" height="15" fill="rgb(212,6,19)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1237" width="0.7044%" height="15" fill="rgb(218,1,36)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1221" width="0.7044%" height="15" fill="rgb(246,84,54)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,201,486 samples, 0.70%)</title><rect x="13.2559%" y="1205" width="0.7044%" height="15" fill="rgb(242,110,6)" fg:x="22609698" fg:w="1201486"/><text x="13.5059%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,077,045 samples, 0.63%)</title><rect x="13.3289%" y="1189" width="0.6315%" height="15" fill="rgb(214,47,5)" fg:x="22734139" fg:w="1077045"/><text x="13.5789%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,077,045 samples, 0.63%)</title><rect x="13.3289%" y="1173" width="0.6315%" height="15" fill="rgb(218,159,25)" fg:x="22734139" fg:w="1077045"/><text x="13.5789%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,039,223 samples, 0.61%)</title><rect x="13.3511%" y="1157" width="0.6093%" height="15" fill="rgb(215,211,28)" fg:x="22771961" fg:w="1039223"/><text x="13.6011%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,039,223 samples, 0.61%)</title><rect x="13.3511%" y="1141" width="0.6093%" height="15" fill="rgb(238,59,32)" fg:x="22771961" fg:w="1039223"/><text x="13.6011%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,039,223 samples, 0.61%)</title><rect x="13.3511%" y="1125" width="0.6093%" height="15" fill="rgb(226,82,3)" fg:x="22771961" fg:w="1039223"/><text x="13.6011%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1109" width="0.5997%" height="15" fill="rgb(240,164,32)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1119.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1093" width="0.5997%" height="15" fill="rgb(232,46,7)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1077" width="0.5997%" height="15" fill="rgb(229,129,53)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1061" width="0.5997%" height="15" fill="rgb(234,188,29)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1045" width="0.5997%" height="15" fill="rgb(246,141,4)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1055.50"></text></g><g><title>shed::builtin::varcmds::local (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1029" width="0.5997%" height="15" fill="rgb(229,23,39)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1039.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,022,788 samples, 0.60%)</title><rect x="13.3607%" y="1013" width="0.5997%" height="15" fill="rgb(206,12,3)" fg:x="22788396" fg:w="1022788"/><text x="13.6107%" y="1023.50"></text></g><g><title>shed::expand::Expander::expand (982,465 samples, 0.58%)</title><rect x="13.3843%" y="997" width="0.5760%" height="15" fill="rgb(252,226,20)" fg:x="22828719" fg:w="982465"/><text x="13.6343%" y="1007.50"></text></g><g><title>shed::expand::expand_raw (982,465 samples, 0.58%)</title><rect x="13.3843%" y="981" width="0.5760%" height="15" fill="rgb(216,123,35)" fg:x="22828719" fg:w="982465"/><text x="13.6343%" y="991.50"></text></g><g><title>shed::expand::expand_var (982,465 samples, 0.58%)</title><rect x="13.3843%" y="965" width="0.5760%" height="15" fill="rgb(212,68,40)" fg:x="22828719" fg:w="982465"/><text x="13.6343%" y="975.50"></text></g><g><title>shed::expand::expand_cmd_sub (982,465 samples, 0.58%)</title><rect x="13.3843%" y="949" width="0.5760%" height="15" fill="rgb(254,125,32)" fg:x="22828719" fg:w="982465"/><text x="13.6343%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1093" width="0.4218%" height="15" fill="rgb(253,97,22)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1103.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1077" width="0.4218%" height="15" fill="rgb(241,101,14)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1087.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1061" width="0.4218%" height="15" fill="rgb(238,103,29)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1071.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1045" width="0.4218%" height="15" fill="rgb(233,195,47)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1055.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1029" width="0.4218%" height="15" fill="rgb(246,218,30)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1039.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (719,363 samples, 0.42%)</title><rect x="13.9603%" y="1013" width="0.4218%" height="15" fill="rgb(219,145,47)" fg:x="23811184" fg:w="719363"/><text x="14.2103%" y="1023.50"></text></g><g><title>&lt;shed::parse::CaseNode as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="805" width="0.3866%" height="15" fill="rgb(243,12,26)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="789" width="0.3866%" height="15" fill="rgb(214,87,16)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="799.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (659,436 samples, 0.39%)</title><rect x="14.3821%" y="773" width="0.3866%" height="15" fill="rgb(208,99,42)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="783.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (659,436 samples, 0.39%)</title><rect x="14.3821%" y="757" width="0.3866%" height="15" fill="rgb(253,99,2)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="767.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="741" width="0.3866%" height="15" fill="rgb(220,168,23)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="751.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="725" width="0.3866%" height="15" fill="rgb(242,38,24)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="709" width="0.3866%" height="15" fill="rgb(225,182,9)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="719.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (659,436 samples, 0.39%)</title><rect x="14.3821%" y="693" width="0.3866%" height="15" fill="rgb(243,178,37)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (659,436 samples, 0.39%)</title><rect x="14.3821%" y="677" width="0.3866%" height="15" fill="rgb(232,139,19)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="687.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="661" width="0.3866%" height="15" fill="rgb(225,201,24)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="671.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="645" width="0.3866%" height="15" fill="rgb(221,47,46)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="655.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (659,436 samples, 0.39%)</title><rect x="14.3821%" y="629" width="0.3866%" height="15" fill="rgb(249,23,13)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="639.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (659,436 samples, 0.39%)</title><rect x="14.3821%" y="613" width="0.3866%" height="15" fill="rgb(219,9,5)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="623.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="597" width="0.3866%" height="15" fill="rgb(254,171,16)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="581" width="0.3866%" height="15" fill="rgb(230,171,20)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="591.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (659,436 samples, 0.39%)</title><rect x="14.3821%" y="565" width="0.3866%" height="15" fill="rgb(210,71,41)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="575.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (659,436 samples, 0.39%)</title><rect x="14.3821%" y="549" width="0.3866%" height="15" fill="rgb(206,173,20)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="559.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="533" width="0.3866%" height="15" fill="rgb(233,88,34)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="543.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="517" width="0.3866%" height="15" fill="rgb(223,209,46)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="527.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="501" width="0.3866%" height="15" fill="rgb(250,43,18)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="511.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (659,436 samples, 0.39%)</title><rect x="14.3821%" y="485" width="0.3866%" height="15" fill="rgb(208,13,10)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="495.50"></text></g><g><title>__rustc::__rust_alloc (659,436 samples, 0.39%)</title><rect x="14.3821%" y="469" width="0.3866%" height="15" fill="rgb(212,200,36)" fg:x="24530547" fg:w="659436"/><text x="14.6321%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,045,282 samples, 0.61%)</title><rect x="14.3821%" y="853" width="0.6128%" height="15" fill="rgb(225,90,30)" fg:x="24530547" fg:w="1045282"/><text x="14.6321%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,045,282 samples, 0.61%)</title><rect x="14.3821%" y="837" width="0.6128%" height="15" fill="rgb(236,182,39)" fg:x="24530547" fg:w="1045282"/><text x="14.6321%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,045,282 samples, 0.61%)</title><rect x="14.3821%" y="821" width="0.6128%" height="15" fill="rgb(212,144,35)" fg:x="24530547" fg:w="1045282"/><text x="14.6321%" y="831.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="805" width="0.2262%" height="15" fill="rgb(228,63,44)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="789" width="0.2262%" height="15" fill="rgb(228,109,6)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="799.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (385,846 samples, 0.23%)</title><rect x="14.7687%" y="773" width="0.2262%" height="15" fill="rgb(238,117,24)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="783.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (385,846 samples, 0.23%)</title><rect x="14.7687%" y="757" width="0.2262%" height="15" fill="rgb(242,26,26)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="767.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="741" width="0.2262%" height="15" fill="rgb(221,92,48)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="751.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="725" width="0.2262%" height="15" fill="rgb(209,209,32)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="735.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="709" width="0.2262%" height="15" fill="rgb(221,70,22)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="719.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (385,846 samples, 0.23%)</title><rect x="14.7687%" y="693" width="0.2262%" height="15" fill="rgb(248,145,5)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="703.50"></text></g><g><title>__libc_malloc2 (385,846 samples, 0.23%)</title><rect x="14.7687%" y="677" width="0.2262%" height="15" fill="rgb(226,116,26)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="687.50"></text></g><g><title>_int_malloc (385,846 samples, 0.23%)</title><rect x="14.7687%" y="661" width="0.2262%" height="15" fill="rgb(244,5,17)" fg:x="25189983" fg:w="385846"/><text x="15.0187%" y="671.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="837" width="0.1548%" height="15" fill="rgb(252,159,33)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="847.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (264,054 samples, 0.15%)</title><rect x="14.9949%" y="821" width="0.1548%" height="15" fill="rgb(206,71,0)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="831.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (264,054 samples, 0.15%)</title><rect x="14.9949%" y="805" width="0.1548%" height="15" fill="rgb(233,118,54)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="815.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="789" width="0.1548%" height="15" fill="rgb(234,83,48)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="799.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="773" width="0.1548%" height="15" fill="rgb(228,3,54)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="757" width="0.1548%" height="15" fill="rgb(226,155,13)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (264,054 samples, 0.15%)</title><rect x="14.9949%" y="741" width="0.1548%" height="15" fill="rgb(241,28,37)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (264,054 samples, 0.15%)</title><rect x="14.9949%" y="725" width="0.1548%" height="15" fill="rgb(233,93,10)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="735.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="709" width="0.1548%" height="15" fill="rgb(225,113,19)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="719.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (264,054 samples, 0.15%)</title><rect x="14.9949%" y="693" width="0.1548%" height="15" fill="rgb(241,2,18)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="703.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (264,054 samples, 0.15%)</title><rect x="14.9949%" y="677" width="0.1548%" height="15" fill="rgb(228,207,21)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="687.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (264,054 samples, 0.15%)</title><rect x="14.9949%" y="661" width="0.1548%" height="15" fill="rgb(213,211,35)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="671.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (264,054 samples, 0.15%)</title><rect x="14.9949%" y="645" width="0.1548%" height="15" fill="rgb(209,83,10)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="655.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (264,054 samples, 0.15%)</title><rect x="14.9949%" y="629" width="0.1548%" height="15" fill="rgb(209,164,1)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="639.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (264,054 samples, 0.15%)</title><rect x="14.9949%" y="613" width="0.1548%" height="15" fill="rgb(213,184,43)" fg:x="25575829" fg:w="264054"/><text x="15.2449%" y="623.50"></text></g><g><title>shed::parse::execute::exec_input (4,383,611 samples, 2.57%)</title><rect x="12.7261%" y="1333" width="2.5701%" height="15" fill="rgb(231,61,34)" fg:x="21706103" fg:w="4383611"/><text x="12.9761%" y="1343.50">sh..</text></g><g><title>shed::state::read_logic (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1317" width="1.3359%" height="15" fill="rgb(235,75,3)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1327.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1301" width="1.3359%" height="15" fill="rgb(220,106,47)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1311.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1285" width="1.3359%" height="15" fill="rgb(210,196,33)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1295.50"></text></g><g><title>shed::state::read_logic::{{closure}} (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1269" width="1.3359%" height="15" fill="rgb(229,154,42)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1279.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1253" width="1.3359%" height="15" fill="rgb(228,114,26)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1263.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1237" width="1.3359%" height="15" fill="rgb(208,144,1)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1221" width="1.3359%" height="15" fill="rgb(239,112,37)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1231.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1205" width="1.3359%" height="15" fill="rgb(210,96,50)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1215.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1189" width="1.3359%" height="15" fill="rgb(222,178,2)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1199.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1173" width="1.3359%" height="15" fill="rgb(226,74,18)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1183.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1157" width="1.3359%" height="15" fill="rgb(225,67,54)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1167.50"></text></g><g><title>core::clone::Clone::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1141" width="1.3359%" height="15" fill="rgb(251,92,32)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1151.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1125" width="1.3359%" height="15" fill="rgb(228,149,22)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1135.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (2,278,530 samples, 1.34%)</title><rect x="13.9603%" y="1109" width="1.3359%" height="15" fill="rgb(243,54,13)" fg:x="23811184" fg:w="2278530"/><text x="14.2103%" y="1119.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1093" width="0.9141%" height="15" fill="rgb(243,180,28)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1077" width="0.9141%" height="15" fill="rgb(208,167,24)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1087.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1061" width="0.9141%" height="15" fill="rgb(245,73,45)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1071.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1045" width="0.9141%" height="15" fill="rgb(237,203,48)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1055.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1029" width="0.9141%" height="15" fill="rgb(211,197,16)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1039.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="1013" width="0.9141%" height="15" fill="rgb(243,99,51)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1023.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="997" width="0.9141%" height="15" fill="rgb(215,123,29)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="1007.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="981" width="0.9141%" height="15" fill="rgb(239,186,37)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="991.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="965" width="0.9141%" height="15" fill="rgb(252,136,39)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="975.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="949" width="0.9141%" height="15" fill="rgb(223,213,32)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="959.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="933" width="0.9141%" height="15" fill="rgb(233,115,5)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="943.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="917" width="0.9141%" height="15" fill="rgb(207,226,44)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="927.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="901" width="0.9141%" height="15" fill="rgb(208,126,0)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="911.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="885" width="0.9141%" height="15" fill="rgb(244,66,21)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="895.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,559,167 samples, 0.91%)</title><rect x="14.3821%" y="869" width="0.9141%" height="15" fill="rgb(222,97,12)" fg:x="24530547" fg:w="1559167"/><text x="14.6321%" y="879.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (513,885 samples, 0.30%)</title><rect x="14.9949%" y="853" width="0.3013%" height="15" fill="rgb(219,213,19)" fg:x="25575829" fg:w="513885"/><text x="15.2449%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="837" width="0.1465%" height="15" fill="rgb(252,169,30)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="847.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (249,831 samples, 0.15%)</title><rect x="15.1498%" y="821" width="0.1465%" height="15" fill="rgb(206,32,51)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (249,831 samples, 0.15%)</title><rect x="15.1498%" y="805" width="0.1465%" height="15" fill="rgb(250,172,42)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="815.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="789" width="0.1465%" height="15" fill="rgb(209,34,43)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="799.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="773" width="0.1465%" height="15" fill="rgb(223,11,35)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="757" width="0.1465%" height="15" fill="rgb(251,219,26)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (249,831 samples, 0.15%)</title><rect x="15.1498%" y="741" width="0.1465%" height="15" fill="rgb(231,119,3)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (249,831 samples, 0.15%)</title><rect x="15.1498%" y="725" width="0.1465%" height="15" fill="rgb(216,97,11)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="735.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="709" width="0.1465%" height="15" fill="rgb(223,59,9)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="719.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (249,831 samples, 0.15%)</title><rect x="15.1498%" y="693" width="0.1465%" height="15" fill="rgb(233,93,31)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="703.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (249,831 samples, 0.15%)</title><rect x="15.1498%" y="677" width="0.1465%" height="15" fill="rgb(239,81,33)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="687.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (249,831 samples, 0.15%)</title><rect x="15.1498%" y="661" width="0.1465%" height="15" fill="rgb(213,120,34)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="671.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (249,831 samples, 0.15%)</title><rect x="15.1498%" y="645" width="0.1465%" height="15" fill="rgb(243,49,53)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="655.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (249,831 samples, 0.15%)</title><rect x="15.1498%" y="629" width="0.1465%" height="15" fill="rgb(247,216,33)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="639.50"></text></g><g><title>alloc::alloc::alloc (249,831 samples, 0.15%)</title><rect x="15.1498%" y="613" width="0.1465%" height="15" fill="rgb(226,26,14)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="623.50"></text></g><g><title>__libc_malloc2 (249,831 samples, 0.15%)</title><rect x="15.1498%" y="597" width="0.1465%" height="15" fill="rgb(215,49,53)" fg:x="25839883" fg:w="249831"/><text x="15.3998%" y="607.50"></text></g><g><title>shed::procio::IoStack::push_frame (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1333" width="0.0175%" height="15" fill="rgb(245,162,40)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1343.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1317" width="0.0175%" height="15" fill="rgb(229,68,17)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1327.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1301" width="0.0175%" height="15" fill="rgb(213,182,10)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1285" width="0.0175%" height="15" fill="rgb(245,125,30)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1295.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1269" width="0.0175%" height="15" fill="rgb(232,202,2)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1279.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1253" width="0.0175%" height="15" fill="rgb(237,140,51)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1263.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1237" width="0.0175%" height="15" fill="rgb(236,157,25)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1247.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1221" width="0.0175%" height="15" fill="rgb(219,209,0)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1231.50"></text></g><g><title>alloc::alloc::Global::grow_impl (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1205" width="0.0175%" height="15" fill="rgb(240,116,54)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1215.50"></text></g><g><title>alloc::alloc::realloc (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1189" width="0.0175%" height="15" fill="rgb(216,10,36)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1199.50"></text></g><g><title>realloc (29,804 samples, 0.02%)</title><rect x="15.2965%" y="1173" width="0.0175%" height="15" fill="rgb(222,72,44)" fg:x="26090222" fg:w="29804"/><text x="15.5465%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1461" width="2.6215%" height="15" fill="rgb(232,159,9)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1471.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1445" width="2.6215%" height="15" fill="rgb(210,39,32)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1455.50">sh..</text></g><g><title>shed::builtin::varcmds::local (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1429" width="2.6215%" height="15" fill="rgb(216,194,45)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1439.50">sh..</text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1413" width="2.6215%" height="15" fill="rgb(218,18,35)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1423.50">sh..</text></g><g><title>shed::expand::Expander::expand (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1397" width="2.6215%" height="15" fill="rgb(207,83,51)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1407.50">sh..</text></g><g><title>shed::expand::expand_raw (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1381" width="2.6215%" height="15" fill="rgb(225,63,43)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1391.50">sh..</text></g><g><title>shed::expand::expand_var (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1365" width="2.6215%" height="15" fill="rgb(207,57,36)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1375.50">sh..</text></g><g><title>shed::expand::expand_cmd_sub (4,471,274 samples, 2.62%)</title><rect x="12.7001%" y="1349" width="2.6215%" height="15" fill="rgb(216,99,33)" fg:x="21661713" fg:w="4471274"/><text x="12.9501%" y="1359.50">sh..</text></g><g><title>shed::readline::Prompt::new (5,253,986 samples, 3.08%)</title><rect x="12.4104%" y="1781" width="3.0804%" height="15" fill="rgb(225,42,16)" fg:x="21167519" fg:w="5253986"/><text x="12.6604%" y="1791.50">she..</text></g><g><title>shed::expand::expand_prompt (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1765" width="2.7978%" height="15" fill="rgb(220,201,45)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1775.50">sh..</text></g><g><title>shed::expand::expand_cmd_sub (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1749" width="2.7978%" height="15" fill="rgb(225,33,4)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1759.50">sh..</text></g><g><title>shed::parse::execute::exec_input (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1733" width="2.7978%" height="15" fill="rgb(224,33,50)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1743.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1717" width="2.7978%" height="15" fill="rgb(246,198,51)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1727.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1701" width="2.7978%" height="15" fill="rgb(205,22,4)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1711.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1685" width="2.7978%" height="15" fill="rgb(206,3,8)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1695.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1669" width="2.7978%" height="15" fill="rgb(251,23,15)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1679.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1653" width="2.7978%" height="15" fill="rgb(252,88,28)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1663.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1637" width="2.7978%" height="15" fill="rgb(212,127,14)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1647.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1621" width="2.7978%" height="15" fill="rgb(247,145,37)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1631.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_func (4,772,082 samples, 2.80%)</title><rect x="12.6929%" y="1605" width="2.7978%" height="15" fill="rgb(209,117,53)" fg:x="21649423" fg:w="4772082"/><text x="12.9429%" y="1615.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1589" width="2.7906%" height="15" fill="rgb(212,90,42)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1599.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1573" width="2.7906%" height="15" fill="rgb(218,164,37)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1583.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1557" width="2.7906%" height="15" fill="rgb(246,65,34)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1567.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1541" width="2.7906%" height="15" fill="rgb(231,100,33)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1551.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1525" width="2.7906%" height="15" fill="rgb(228,126,14)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1535.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1509" width="2.7906%" height="15" fill="rgb(215,173,21)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1519.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1493" width="2.7906%" height="15" fill="rgb(210,6,40)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1503.50">sh..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (4,759,792 samples, 2.79%)</title><rect x="12.7001%" y="1477" width="2.7906%" height="15" fill="rgb(212,48,18)" fg:x="21661713" fg:w="4759792"/><text x="12.9501%" y="1487.50">sh..</text></g><g><title>shed::parse::execute::is_func (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1461" width="0.1692%" height="15" fill="rgb(230,214,11)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1471.50"></text></g><g><title>shed::state::read_logic (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1445" width="0.1692%" height="15" fill="rgb(254,105,39)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1455.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1429" width="0.1692%" height="15" fill="rgb(245,158,5)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1439.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1413" width="0.1692%" height="15" fill="rgb(249,208,11)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1423.50"></text></g><g><title>shed::state::read_logic::{{closure}} (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1397" width="0.1692%" height="15" fill="rgb(210,39,28)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1407.50"></text></g><g><title>shed::parse::execute::is_func::{{closure}} (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1381" width="0.1692%" height="15" fill="rgb(211,56,53)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1391.50"></text></g><g><title>shed::state::LogTab::get_func (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1365" width="0.1692%" height="15" fill="rgb(226,201,30)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1375.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1349" width="0.1692%" height="15" fill="rgb(239,101,34)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1359.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1333" width="0.1692%" height="15" fill="rgb(226,209,5)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1343.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1317" width="0.1692%" height="15" fill="rgb(250,105,47)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1327.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1301" width="0.1692%" height="15" fill="rgb(230,72,3)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1311.50"></text></g><g><title>hashbrown::raw::RawTableInner::find_inner (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1285" width="0.1692%" height="15" fill="rgb(232,218,39)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1295.50"></text></g><g><title>hashbrown::control::group::sse2::Group::match_tag (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1269" width="0.1692%" height="15" fill="rgb(248,166,6)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1279.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (288,518 samples, 0.17%)</title><rect x="15.3216%" y="1253" width="0.1692%" height="15" fill="rgb(247,89,20)" fg:x="26132987" fg:w="288518"/><text x="15.5716%" y="1263.50"></text></g><g><title>&lt;shed::readline::complete::FuzzyCompleter as core::default::Default&gt;::default (24,267 samples, 0.01%)</title><rect x="15.4908%" y="1765" width="0.0142%" height="15" fill="rgb(248,130,54)" fg:x="26421505" fg:w="24267"/><text x="15.7408%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1509" width="0.2321%" height="15" fill="rgb(234,196,4)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1493" width="0.2321%" height="15" fill="rgb(250,143,31)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1477" width="0.2321%" height="15" fill="rgb(211,110,34)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1461" width="0.2321%" height="15" fill="rgb(215,124,48)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1445" width="0.2321%" height="15" fill="rgb(216,46,13)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1429" width="0.2321%" height="15" fill="rgb(205,184,25)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1413" width="0.2321%" height="15" fill="rgb(228,1,10)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1397" width="0.2321%" height="15" fill="rgb(213,116,27)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1381" width="0.2321%" height="15" fill="rgb(241,95,50)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1391.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1365" width="0.2321%" height="15" fill="rgb(238,48,32)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1375.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1349" width="0.2321%" height="15" fill="rgb(235,113,49)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1359.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1333" width="0.2321%" height="15" fill="rgb(205,127,43)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1343.50"></text></g><g><title>alloc::alloc::dealloc (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1317" width="0.2321%" height="15" fill="rgb(250,162,2)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1327.50"></text></g><g><title>_int_free_chunk (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1301" width="0.2321%" height="15" fill="rgb(220,13,41)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1311.50"></text></g><g><title>[unknown] (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1285" width="0.2321%" height="15" fill="rgb(249,221,25)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1295.50"></text></g><g><title>[unknown] (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1269" width="0.2321%" height="15" fill="rgb(215,208,19)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1279.50"></text></g><g><title>[unknown] (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1253" width="0.2321%" height="15" fill="rgb(236,175,2)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1263.50"></text></g><g><title>[unknown] (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1237" width="0.2321%" height="15" fill="rgb(241,52,2)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1247.50"></text></g><g><title>[unknown] (395,957 samples, 0.23%)</title><rect x="15.5057%" y="1221" width="0.2321%" height="15" fill="rgb(248,140,14)" fg:x="26447028" fg:w="395957"/><text x="15.7557%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1701" width="0.4199%" height="15" fill="rgb(253,22,42)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1685" width="0.4199%" height="15" fill="rgb(234,61,47)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1669" width="0.4199%" height="15" fill="rgb(208,226,15)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1653" width="0.4199%" height="15" fill="rgb(217,221,4)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1663.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1637" width="0.4199%" height="15" fill="rgb(212,174,34)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1647.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1621" width="0.4199%" height="15" fill="rgb(253,83,4)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1631.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1605" width="0.4199%" height="15" fill="rgb(250,195,49)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1615.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1589" width="0.4199%" height="15" fill="rgb(241,192,25)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1599.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1573" width="0.4199%" height="15" fill="rgb(208,124,10)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1557" width="0.4199%" height="15" fill="rgb(222,33,0)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1541" width="0.4199%" height="15" fill="rgb(234,209,28)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (716,124 samples, 0.42%)</title><rect x="15.5057%" y="1525" width="0.4199%" height="15" fill="rgb(224,11,23)" fg:x="26447028" fg:w="716124"/><text x="15.7557%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1509" width="0.1877%" height="15" fill="rgb(232,99,1)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1493" width="0.1877%" height="15" fill="rgb(237,95,45)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1477" width="0.1877%" height="15" fill="rgb(208,109,11)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1461" width="0.1877%" height="15" fill="rgb(216,190,48)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1445" width="0.1877%" height="15" fill="rgb(251,171,36)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1429" width="0.1877%" height="15" fill="rgb(230,62,22)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1413" width="0.1877%" height="15" fill="rgb(225,114,35)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1397" width="0.1877%" height="15" fill="rgb(215,118,42)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1381" width="0.1877%" height="15" fill="rgb(243,119,21)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1365" width="0.1877%" height="15" fill="rgb(252,177,53)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1349" width="0.1877%" height="15" fill="rgb(237,209,29)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1333" width="0.1877%" height="15" fill="rgb(212,65,23)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1317" width="0.1877%" height="15" fill="rgb(230,222,46)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::CondNode&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1301" width="0.1877%" height="15" fill="rgb(215,135,32)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1285" width="0.1877%" height="15" fill="rgb(246,101,22)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::CondNode]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1269" width="0.1877%" height="15" fill="rgb(206,107,13)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CondNode&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1253" width="0.1877%" height="15" fill="rgb(250,100,44)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1237" width="0.1877%" height="15" fill="rgb(231,147,38)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1221" width="0.1877%" height="15" fill="rgb(229,8,40)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1205" width="0.1877%" height="15" fill="rgb(221,135,30)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1189" width="0.1877%" height="15" fill="rgb(249,193,18)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1173" width="0.1877%" height="15" fill="rgb(209,133,39)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1157" width="0.1877%" height="15" fill="rgb(232,100,14)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1141" width="0.1877%" height="15" fill="rgb(224,185,1)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1125" width="0.1877%" height="15" fill="rgb(223,139,8)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1109" width="0.1877%" height="15" fill="rgb(232,213,38)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1093" width="0.1877%" height="15" fill="rgb(207,94,22)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1077" width="0.1877%" height="15" fill="rgb(219,183,54)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1061" width="0.1877%" height="15" fill="rgb(216,185,54)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1045" width="0.1877%" height="15" fill="rgb(254,217,39)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1029" width="0.1877%" height="15" fill="rgb(240,178,23)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="1013" width="0.1877%" height="15" fill="rgb(218,11,47)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="997" width="0.1877%" height="15" fill="rgb(218,51,51)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="981" width="0.1877%" height="15" fill="rgb(238,126,27)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="965" width="0.1877%" height="15" fill="rgb(249,202,22)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="949" width="0.1877%" height="15" fill="rgb(254,195,49)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="933" width="0.1877%" height="15" fill="rgb(208,123,14)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="917" width="0.1877%" height="15" fill="rgb(224,200,8)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="901" width="0.1877%" height="15" fill="rgb(217,61,36)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="885" width="0.1877%" height="15" fill="rgb(206,35,45)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (320,167 samples, 0.19%)</title><rect x="15.7379%" y="869" width="0.1877%" height="15" fill="rgb(217,65,33)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="879.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (320,167 samples, 0.19%)</title><rect x="15.7379%" y="853" width="0.1877%" height="15" fill="rgb(222,158,48)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (320,167 samples, 0.19%)</title><rect x="15.7379%" y="837" width="0.1877%" height="15" fill="rgb(254,2,54)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (320,167 samples, 0.19%)</title><rect x="15.7379%" y="821" width="0.1877%" height="15" fill="rgb(250,143,38)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="831.50"></text></g><g><title>alloc::alloc::dealloc (320,167 samples, 0.19%)</title><rect x="15.7379%" y="805" width="0.1877%" height="15" fill="rgb(248,25,0)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="815.50"></text></g><g><title>__rustc::__rust_dealloc (320,167 samples, 0.19%)</title><rect x="15.7379%" y="789" width="0.1877%" height="15" fill="rgb(206,152,27)" fg:x="26842985" fg:w="320167"/><text x="15.9879%" y="799.50"></text></g><g><title>[unknown] (17,238 samples, 0.01%)</title><rect x="15.9370%" y="1285" width="0.0101%" height="15" fill="rgb(240,77,30)" fg:x="27182640" fg:w="17238"/><text x="16.1870%" y="1295.50"></text></g><g><title>nix::unistd::fork (22,876 samples, 0.01%)</title><rect x="15.9348%" y="1317" width="0.0134%" height="15" fill="rgb(231,5,3)" fg:x="27178820" fg:w="22876"/><text x="16.1848%" y="1327.50"></text></g><g><title>__libc_fork (22,876 samples, 0.01%)</title><rect x="15.9348%" y="1301" width="0.0134%" height="15" fill="rgb(207,226,32)" fg:x="27178820" fg:w="22876"/><text x="16.1848%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1301" width="0.5906%" height="15" fill="rgb(222,207,47)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1285" width="0.5906%" height="15" fill="rgb(229,115,45)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1269" width="0.5906%" height="15" fill="rgb(224,191,6)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1253" width="0.5906%" height="15" fill="rgb(230,227,24)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1263.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1237" width="0.5906%" height="15" fill="rgb(228,80,19)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1247.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1221" width="0.5906%" height="15" fill="rgb(247,229,0)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1231.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1205" width="0.5906%" height="15" fill="rgb(237,194,15)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1215.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1189" width="0.5906%" height="15" fill="rgb(219,203,20)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1199.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1173" width="0.5906%" height="15" fill="rgb(234,128,8)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1157" width="0.5906%" height="15" fill="rgb(248,202,8)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1141" width="0.5906%" height="15" fill="rgb(206,104,37)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1125" width="0.5906%" height="15" fill="rgb(223,8,27)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1109" width="0.5906%" height="15" fill="rgb(216,217,28)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1093" width="0.5906%" height="15" fill="rgb(249,199,1)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1077" width="0.5906%" height="15" fill="rgb(240,85,17)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1061" width="0.5906%" height="15" fill="rgb(206,108,45)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1045" width="0.5906%" height="15" fill="rgb(245,210,41)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1029" width="0.5906%" height="15" fill="rgb(206,13,37)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="1013" width="0.5906%" height="15" fill="rgb(250,61,18)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="997" width="0.5906%" height="15" fill="rgb(235,172,48)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="981" width="0.5906%" height="15" fill="rgb(249,201,17)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="991.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="965" width="0.5906%" height="15" fill="rgb(219,208,6)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="949" width="0.5906%" height="15" fill="rgb(248,31,23)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="959.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="933" width="0.5906%" height="15" fill="rgb(245,15,42)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="943.50"></text></g><g><title>alloc::alloc::dealloc (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="917" width="0.5906%" height="15" fill="rgb(222,217,39)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="927.50"></text></g><g><title>_int_free_chunk (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="901" width="0.5906%" height="15" fill="rgb(210,219,27)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="911.50"></text></g><g><title>[unknown] (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="885" width="0.5906%" height="15" fill="rgb(252,166,36)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="895.50"></text></g><g><title>[unknown] (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="869" width="0.5906%" height="15" fill="rgb(245,132,34)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="879.50"></text></g><g><title>[unknown] (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="853" width="0.5906%" height="15" fill="rgb(236,54,3)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="863.50"></text></g><g><title>[unknown] (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="837" width="0.5906%" height="15" fill="rgb(241,173,43)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="847.50"></text></g><g><title>[unknown] (1,007,409 samples, 0.59%)</title><rect x="15.9482%" y="821" width="0.5906%" height="15" fill="rgb(215,190,9)" fg:x="27201696" fg:w="1007409"/><text x="16.1982%" y="831.50"></text></g><g><title>shed::libsh::guards::scope_guard (114,476 samples, 0.07%)</title><rect x="16.5388%" y="1173" width="0.0671%" height="15" fill="rgb(242,101,16)" fg:x="28209105" fg:w="114476"/><text x="16.7888%" y="1183.50"></text></g><g><title>shed::state::write_vars (114,476 samples, 0.07%)</title><rect x="16.5388%" y="1157" width="0.0671%" height="15" fill="rgb(223,190,21)" fg:x="28209105" fg:w="114476"/><text x="16.7888%" y="1167.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (114,476 samples, 0.07%)</title><rect x="16.5388%" y="1141" width="0.0671%" height="15" fill="rgb(215,228,25)" fg:x="28209105" fg:w="114476"/><text x="16.7888%" y="1151.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1125" width="0.0330%" height="15" fill="rgb(225,36,22)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1135.50"></text></g><g><title>shed::state::write_vars::{{closure}} (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1109" width="0.0330%" height="15" fill="rgb(251,106,46)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1119.50"></text></g><g><title>shed::libsh::guards::scope_guard::{{closure}} (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1093" width="0.0330%" height="15" fill="rgb(208,90,1)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1103.50"></text></g><g><title>shed::state::ScopeStack::descend (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1077" width="0.0330%" height="15" fill="rgb(243,10,4)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1087.50"></text></g><g><title>shed::state::VarTab::new (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1061" width="0.0330%" height="15" fill="rgb(212,137,27)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1071.50"></text></g><g><title>shed::state::VarTab::init_env (56,264 samples, 0.03%)</title><rect x="16.5729%" y="1045" width="0.0330%" height="15" fill="rgb(231,220,49)" fg:x="28267317" fg:w="56264"/><text x="16.8229%" y="1055.50"></text></g><g><title>std::env::set_var (42,417 samples, 0.02%)</title><rect x="16.5811%" y="1029" width="0.0249%" height="15" fill="rgb(237,96,20)" fg:x="28281164" fg:w="42417"/><text x="16.8311%" y="1039.50"></text></g><g><title>std::sys::env::unix::setenv (42,417 samples, 0.02%)</title><rect x="16.5811%" y="1013" width="0.0249%" height="15" fill="rgb(239,229,30)" fg:x="28281164" fg:w="42417"/><text x="16.8311%" y="1023.50"></text></g><g><title>std::sys::env::unix::setenv::{{closure}}::{{closure}} (42,417 samples, 0.02%)</title><rect x="16.5811%" y="997" width="0.0249%" height="15" fill="rgb(219,65,33)" fg:x="28281164" fg:w="42417"/><text x="16.8311%" y="1007.50"></text></g><g><title>__add_to_environ (42,417 samples, 0.02%)</title><rect x="16.5811%" y="981" width="0.0249%" height="15" fill="rgb(243,134,7)" fg:x="28281164" fg:w="42417"/><text x="16.8311%" y="991.50"></text></g><g><title>__tfind (42,417 samples, 0.02%)</title><rect x="16.5811%" y="965" width="0.0249%" height="15" fill="rgb(216,177,54)" fg:x="28281164" fg:w="42417"/><text x="16.8311%" y="975.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_if (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1093" width="0.0121%" height="15" fill="rgb(211,160,20)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_if::{{closure}} (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1077" width="0.0121%" height="15" fill="rgb(239,85,39)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1061" width="0.0121%" height="15" fill="rgb(232,125,22)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1045" width="0.0121%" height="15" fill="rgb(244,57,34)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1029" width="0.0121%" height="15" fill="rgb(214,203,32)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (20,685 samples, 0.01%)</title><rect x="16.6059%" y="1013" width="0.0121%" height="15" fill="rgb(207,58,43)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (20,685 samples, 0.01%)</title><rect x="16.6059%" y="997" width="0.0121%" height="15" fill="rgb(215,193,15)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (20,685 samples, 0.01%)</title><rect x="16.6059%" y="981" width="0.0121%" height="15" fill="rgb(232,15,44)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="991.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (20,685 samples, 0.01%)</title><rect x="16.6059%" y="965" width="0.0121%" height="15" fill="rgb(212,3,48)" fg:x="28323581" fg:w="20685"/><text x="16.8559%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (26,387 samples, 0.02%)</title><rect x="16.6181%" y="965" width="0.0155%" height="15" fill="rgb(218,128,7)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (26,387 samples, 0.02%)</title><rect x="16.6181%" y="949" width="0.0155%" height="15" fill="rgb(226,216,39)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (26,387 samples, 0.02%)</title><rect x="16.6181%" y="933" width="0.0155%" height="15" fill="rgb(243,47,51)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="943.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (26,387 samples, 0.02%)</title><rect x="16.6181%" y="917" width="0.0155%" height="15" fill="rgb(241,183,40)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (26,387 samples, 0.02%)</title><rect x="16.6181%" y="901" width="0.0155%" height="15" fill="rgb(231,217,32)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="911.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (26,387 samples, 0.02%)</title><rect x="16.6181%" y="885" width="0.0155%" height="15" fill="rgb(229,61,38)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="895.50"></text></g><g><title>alloc::alloc::dealloc (26,387 samples, 0.02%)</title><rect x="16.6181%" y="869" width="0.0155%" height="15" fill="rgb(225,210,5)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="879.50"></text></g><g><title>_int_free_chunk (26,387 samples, 0.02%)</title><rect x="16.6181%" y="853" width="0.0155%" height="15" fill="rgb(231,79,45)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="863.50"></text></g><g><title>[unknown] (26,387 samples, 0.02%)</title><rect x="16.6181%" y="837" width="0.0155%" height="15" fill="rgb(224,100,7)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="847.50"></text></g><g><title>[unknown] (26,387 samples, 0.02%)</title><rect x="16.6181%" y="821" width="0.0155%" height="15" fill="rgb(241,198,18)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="831.50"></text></g><g><title>[unknown] (26,387 samples, 0.02%)</title><rect x="16.6181%" y="805" width="0.0155%" height="15" fill="rgb(252,97,53)" fg:x="28344266" fg:w="26387"/><text x="16.8681%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ParsedSrc&gt; (1,392,459 samples, 0.82%)</title><rect x="16.6407%" y="901" width="0.8164%" height="15" fill="rgb(220,88,7)" fg:x="28382870" fg:w="1392459"/><text x="16.8907%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::vec_deque::VecDeque&lt;(shed::parse::lex::SpanSource,ariadne::Label&lt;shed::parse::lex::Span&gt;)&gt;&gt; (1,392,459 samples, 0.82%)</title><rect x="16.6407%" y="885" width="0.8164%" height="15" fill="rgb(213,176,14)" fg:x="28382870" fg:w="1392459"/><text x="16.8907%" y="895.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,392,459 samples, 0.82%)</title><rect x="16.6407%" y="869" width="0.8164%" height="15" fill="rgb(246,73,7)" fg:x="28382870" fg:w="1392459"/><text x="16.8907%" y="879.50"></text></g><g><title>alloc::collections::vec_deque::VecDeque&lt;T,A&gt;::as_mut_slices (1,392,459 samples, 0.82%)</title><rect x="16.6407%" y="853" width="0.8164%" height="15" fill="rgb(245,64,36)" fg:x="28382870" fg:w="1392459"/><text x="16.8907%" y="863.50"></text></g><g><title>alloc::collections::vec_deque::VecDeque&lt;T,A&gt;::slice_ranges (1,392,459 samples, 0.82%)</title><rect x="16.6407%" y="837" width="0.8164%" height="15" fill="rgb(245,80,10)" fg:x="28382870" fg:w="1392459"/><text x="16.8907%" y="847.50"></text></g><g><title>shed::parse::execute::exec_input (1,460,822 samples, 0.86%)</title><rect x="16.6407%" y="917" width="0.8565%" height="15" fill="rgb(232,107,50)" fg:x="28382870" fg:w="1460822"/><text x="16.8907%" y="927.50"></text></g><g><title>shed::state::read_logic (68,363 samples, 0.04%)</title><rect x="17.4571%" y="901" width="0.0401%" height="15" fill="rgb(253,3,0)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="911.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (68,363 samples, 0.04%)</title><rect x="17.4571%" y="885" width="0.0401%" height="15" fill="rgb(212,99,53)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="895.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (68,363 samples, 0.04%)</title><rect x="17.4571%" y="869" width="0.0401%" height="15" fill="rgb(249,111,54)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="879.50"></text></g><g><title>shed::state::read_logic::{{closure}} (68,363 samples, 0.04%)</title><rect x="17.4571%" y="853" width="0.0401%" height="15" fill="rgb(249,55,30)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="863.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (68,363 samples, 0.04%)</title><rect x="17.4571%" y="837" width="0.0401%" height="15" fill="rgb(237,47,42)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="847.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (68,363 samples, 0.04%)</title><rect x="17.4571%" y="821" width="0.0401%" height="15" fill="rgb(211,20,18)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="831.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (68,363 samples, 0.04%)</title><rect x="17.4571%" y="805" width="0.0401%" height="15" fill="rgb(231,203,46)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="815.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (68,363 samples, 0.04%)</title><rect x="17.4571%" y="789" width="0.0401%" height="15" fill="rgb(237,142,3)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="799.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (68,363 samples, 0.04%)</title><rect x="17.4571%" y="773" width="0.0401%" height="15" fill="rgb(241,107,1)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="783.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::new_uninitialized (68,363 samples, 0.04%)</title><rect x="17.4571%" y="757" width="0.0401%" height="15" fill="rgb(229,83,13)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="767.50"></text></g><g><title>hashbrown::raw::RawTableInner::new_uninitialized (68,363 samples, 0.04%)</title><rect x="17.4571%" y="741" width="0.0401%" height="15" fill="rgb(241,91,40)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="751.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (68,363 samples, 0.04%)</title><rect x="17.4571%" y="725" width="0.0401%" height="15" fill="rgb(225,3,45)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="735.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (68,363 samples, 0.04%)</title><rect x="17.4571%" y="709" width="0.0401%" height="15" fill="rgb(244,223,14)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="719.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (68,363 samples, 0.04%)</title><rect x="17.4571%" y="693" width="0.0401%" height="15" fill="rgb(224,124,37)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="703.50"></text></g><g><title>alloc::alloc::alloc (68,363 samples, 0.04%)</title><rect x="17.4571%" y="677" width="0.0401%" height="15" fill="rgb(251,171,30)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="687.50"></text></g><g><title>__libc_malloc2 (68,363 samples, 0.04%)</title><rect x="17.4571%" y="661" width="0.0401%" height="15" fill="rgb(236,46,54)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="671.50"></text></g><g><title>_int_malloc (68,363 samples, 0.04%)</title><rect x="17.4571%" y="645" width="0.0401%" height="15" fill="rgb(245,213,5)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="655.50"></text></g><g><title>malloc_consolidate (68,363 samples, 0.04%)</title><rect x="17.4571%" y="629" width="0.0401%" height="15" fill="rgb(230,144,27)" fg:x="29775329" fg:w="68363"/><text x="17.7071%" y="639.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,538,387 samples, 0.90%)</title><rect x="16.6181%" y="1045" width="0.9019%" height="15" fill="rgb(220,86,6)" fg:x="28344266" fg:w="1538387"/><text x="16.8681%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,538,387 samples, 0.90%)</title><rect x="16.6181%" y="1029" width="0.9019%" height="15" fill="rgb(240,20,13)" fg:x="28344266" fg:w="1538387"/><text x="16.8681%" y="1039.50"></text></g><g><title>shed::builtin::varcmds::local (1,538,387 samples, 0.90%)</title><rect x="16.6181%" y="1013" width="0.9019%" height="15" fill="rgb(217,89,34)" fg:x="28344266" fg:w="1538387"/><text x="16.8681%" y="1023.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,538,387 samples, 0.90%)</title><rect x="16.6181%" y="997" width="0.9019%" height="15" fill="rgb(229,13,5)" fg:x="28344266" fg:w="1538387"/><text x="16.8681%" y="1007.50"></text></g><g><title>shed::expand::Expander::expand (1,538,387 samples, 0.90%)</title><rect x="16.6181%" y="981" width="0.9019%" height="15" fill="rgb(244,67,35)" fg:x="28344266" fg:w="1538387"/><text x="16.8681%" y="991.50"></text></g><g><title>shed::expand::expand_raw (1,512,000 samples, 0.89%)</title><rect x="16.6335%" y="965" width="0.8865%" height="15" fill="rgb(221,40,2)" fg:x="28370653" fg:w="1512000"/><text x="16.8835%" y="975.50"></text></g><g><title>shed::expand::expand_var (1,512,000 samples, 0.89%)</title><rect x="16.6335%" y="949" width="0.8865%" height="15" fill="rgb(237,157,21)" fg:x="28370653" fg:w="1512000"/><text x="16.8835%" y="959.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,512,000 samples, 0.89%)</title><rect x="16.6335%" y="933" width="0.8865%" height="15" fill="rgb(222,94,11)" fg:x="28370653" fg:w="1512000"/><text x="16.8835%" y="943.50"></text></g><g><title>shed::procio::IoStack::push_frame (38,233 samples, 0.02%)</title><rect x="17.4976%" y="917" width="0.0224%" height="15" fill="rgb(249,113,6)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (38,233 samples, 0.02%)</title><rect x="17.4976%" y="901" width="0.0224%" height="15" fill="rgb(238,137,36)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (38,233 samples, 0.02%)</title><rect x="17.4976%" y="885" width="0.0224%" height="15" fill="rgb(210,102,26)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (38,233 samples, 0.02%)</title><rect x="17.4976%" y="869" width="0.0224%" height="15" fill="rgb(218,30,30)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (38,233 samples, 0.02%)</title><rect x="17.4976%" y="853" width="0.0224%" height="15" fill="rgb(214,67,26)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (38,233 samples, 0.02%)</title><rect x="17.4976%" y="837" width="0.0224%" height="15" fill="rgb(251,9,53)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (38,233 samples, 0.02%)</title><rect x="17.4976%" y="821" width="0.0224%" height="15" fill="rgb(228,204,25)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (38,233 samples, 0.02%)</title><rect x="17.4976%" y="805" width="0.0224%" height="15" fill="rgb(207,153,8)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="815.50"></text></g><g><title>alloc::alloc::Global::grow_impl (38,233 samples, 0.02%)</title><rect x="17.4976%" y="789" width="0.0224%" height="15" fill="rgb(242,9,16)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="799.50"></text></g><g><title>alloc::alloc::realloc (38,233 samples, 0.02%)</title><rect x="17.4976%" y="773" width="0.0224%" height="15" fill="rgb(217,211,10)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="783.50"></text></g><g><title>realloc (38,233 samples, 0.02%)</title><rect x="17.4976%" y="757" width="0.0224%" height="15" fill="rgb(219,228,52)" fg:x="29844420" fg:w="38233"/><text x="17.7476%" y="767.50"></text></g><g><title>_int_realloc (23,229 samples, 0.01%)</title><rect x="17.5064%" y="741" width="0.0136%" height="15" fill="rgb(231,92,29)" fg:x="29859424" fg:w="23229"/><text x="17.7564%" y="751.50"></text></g><g><title>memcpy@@GLIBC_2.14@plt (23,229 samples, 0.01%)</title><rect x="17.5064%" y="725" width="0.0136%" height="15" fill="rgb(232,8,23)" fg:x="29859424" fg:w="23229"/><text x="17.7564%" y="735.50"></text></g><g><title>[unknown] (23,229 samples, 0.01%)</title><rect x="17.5064%" y="709" width="0.0136%" height="15" fill="rgb(216,211,34)" fg:x="29859424" fg:w="23229"/><text x="17.7564%" y="719.50"></text></g><g><title>[unknown] (23,229 samples, 0.01%)</title><rect x="17.5064%" y="693" width="0.0136%" height="15" fill="rgb(236,151,0)" fg:x="29859424" fg:w="23229"/><text x="17.7564%" y="703.50"></text></g><g><title>[unknown] (23,229 samples, 0.01%)</title><rect x="17.5064%" y="677" width="0.0136%" height="15" fill="rgb(209,168,3)" fg:x="29859424" fg:w="23229"/><text x="17.7564%" y="687.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1301" width="0.9880%" height="15" fill="rgb(208,129,28)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1285" width="0.9880%" height="15" fill="rgb(229,78,22)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1269" width="0.9880%" height="15" fill="rgb(228,187,13)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1253" width="0.9880%" height="15" fill="rgb(240,119,24)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1237" width="0.9880%" height="15" fill="rgb(209,194,42)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1221" width="0.9880%" height="15" fill="rgb(247,200,46)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1205" width="0.9880%" height="15" fill="rgb(218,76,16)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,685,098 samples, 0.99%)</title><rect x="16.5388%" y="1189" width="0.9880%" height="15" fill="rgb(225,21,48)" fg:x="28209105" fg:w="1685098"/><text x="16.7888%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,570,622 samples, 0.92%)</title><rect x="16.6059%" y="1173" width="0.9208%" height="15" fill="rgb(239,223,50)" fg:x="28323581" fg:w="1570622"/><text x="16.8559%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,570,622 samples, 0.92%)</title><rect x="16.6059%" y="1157" width="0.9208%" height="15" fill="rgb(244,45,21)" fg:x="28323581" fg:w="1570622"/><text x="16.8559%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,570,622 samples, 0.92%)</title><rect x="16.6059%" y="1141" width="0.9208%" height="15" fill="rgb(232,33,43)" fg:x="28323581" fg:w="1570622"/><text x="16.8559%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,570,622 samples, 0.92%)</title><rect x="16.6059%" y="1125" width="0.9208%" height="15" fill="rgb(209,8,3)" fg:x="28323581" fg:w="1570622"/><text x="16.8559%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,570,622 samples, 0.92%)</title><rect x="16.6059%" y="1109" width="0.9208%" height="15" fill="rgb(214,25,53)" fg:x="28323581" fg:w="1570622"/><text x="16.8559%" y="1119.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,549,937 samples, 0.91%)</title><rect x="16.6181%" y="1093" width="0.9087%" height="15" fill="rgb(254,186,54)" fg:x="28344266" fg:w="1549937"/><text x="16.8681%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,937 samples, 0.91%)</title><rect x="16.6181%" y="1077" width="0.9087%" height="15" fill="rgb(208,174,49)" fg:x="28344266" fg:w="1549937"/><text x="16.8681%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,549,937 samples, 0.91%)</title><rect x="16.6181%" y="1061" width="0.9087%" height="15" fill="rgb(233,191,51)" fg:x="28344266" fg:w="1549937"/><text x="16.8681%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (73,465 samples, 0.04%)</title><rect x="17.5369%" y="853" width="0.0431%" height="15" fill="rgb(222,134,10)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (73,465 samples, 0.04%)</title><rect x="17.5369%" y="837" width="0.0431%" height="15" fill="rgb(230,226,20)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (73,465 samples, 0.04%)</title><rect x="17.5369%" y="821" width="0.0431%" height="15" fill="rgb(251,111,25)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="831.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (73,465 samples, 0.04%)</title><rect x="17.5369%" y="805" width="0.0431%" height="15" fill="rgb(224,40,46)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="815.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (73,465 samples, 0.04%)</title><rect x="17.5369%" y="789" width="0.0431%" height="15" fill="rgb(236,108,47)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="799.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (73,465 samples, 0.04%)</title><rect x="17.5369%" y="773" width="0.0431%" height="15" fill="rgb(234,93,0)" fg:x="29911401" fg:w="73465"/><text x="17.7869%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (637,250 samples, 0.37%)</title><rect x="17.5799%" y="773" width="0.3736%" height="15" fill="rgb(224,213,32)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="783.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (637,250 samples, 0.37%)</title><rect x="17.5799%" y="757" width="0.3736%" height="15" fill="rgb(251,11,48)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="767.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (637,250 samples, 0.37%)</title><rect x="17.5799%" y="741" width="0.3736%" height="15" fill="rgb(236,173,5)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="751.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (637,250 samples, 0.37%)</title><rect x="17.5799%" y="725" width="0.3736%" height="15" fill="rgb(230,95,12)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="735.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (637,250 samples, 0.37%)</title><rect x="17.5799%" y="709" width="0.3736%" height="15" fill="rgb(232,209,1)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="719.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (637,250 samples, 0.37%)</title><rect x="17.5799%" y="693" width="0.3736%" height="15" fill="rgb(232,6,1)" fg:x="29984866" fg:w="637250"/><text x="17.8299%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (135,804 samples, 0.08%)</title><rect x="17.9914%" y="629" width="0.0796%" height="15" fill="rgb(210,224,50)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="639.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (135,804 samples, 0.08%)</title><rect x="17.9914%" y="613" width="0.0796%" height="15" fill="rgb(228,127,35)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="623.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (135,804 samples, 0.08%)</title><rect x="17.9914%" y="597" width="0.0796%" height="15" fill="rgb(245,102,45)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="607.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (135,804 samples, 0.08%)</title><rect x="17.9914%" y="581" width="0.0796%" height="15" fill="rgb(214,1,49)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="591.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (135,804 samples, 0.08%)</title><rect x="17.9914%" y="565" width="0.0796%" height="15" fill="rgb(226,163,40)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="575.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (135,804 samples, 0.08%)</title><rect x="17.9914%" y="549" width="0.0796%" height="15" fill="rgb(239,212,28)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="559.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (135,804 samples, 0.08%)</title><rect x="17.9914%" y="533" width="0.0796%" height="15" fill="rgb(220,20,13)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="543.50"></text></g><g><title>__libc_malloc2 (135,804 samples, 0.08%)</title><rect x="17.9914%" y="517" width="0.0796%" height="15" fill="rgb(210,164,35)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="527.50"></text></g><g><title>_int_malloc (135,804 samples, 0.08%)</title><rect x="17.9914%" y="501" width="0.0796%" height="15" fill="rgb(248,109,41)" fg:x="30686669" fg:w="135804"/><text x="18.2414%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (916,812 samples, 0.54%)</title><rect x="17.5799%" y="837" width="0.5375%" height="15" fill="rgb(238,23,50)" fg:x="29984866" fg:w="916812"/><text x="17.8299%" y="847.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (916,812 samples, 0.54%)</title><rect x="17.5799%" y="821" width="0.5375%" height="15" fill="rgb(211,48,49)" fg:x="29984866" fg:w="916812"/><text x="17.8299%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (916,812 samples, 0.54%)</title><rect x="17.5799%" y="805" width="0.5375%" height="15" fill="rgb(223,36,21)" fg:x="29984866" fg:w="916812"/><text x="17.8299%" y="815.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (916,812 samples, 0.54%)</title><rect x="17.5799%" y="789" width="0.5375%" height="15" fill="rgb(207,123,46)" fg:x="29984866" fg:w="916812"/><text x="17.8299%" y="799.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (279,562 samples, 0.16%)</title><rect x="17.9535%" y="773" width="0.1639%" height="15" fill="rgb(240,218,32)" fg:x="30622116" fg:w="279562"/><text x="18.2035%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (215,009 samples, 0.13%)</title><rect x="17.9914%" y="757" width="0.1261%" height="15" fill="rgb(252,5,43)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (215,009 samples, 0.13%)</title><rect x="17.9914%" y="741" width="0.1261%" height="15" fill="rgb(252,84,19)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (215,009 samples, 0.13%)</title><rect x="17.9914%" y="725" width="0.1261%" height="15" fill="rgb(243,152,39)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="735.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (215,009 samples, 0.13%)</title><rect x="17.9914%" y="709" width="0.1261%" height="15" fill="rgb(234,160,15)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="719.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (215,009 samples, 0.13%)</title><rect x="17.9914%" y="693" width="0.1261%" height="15" fill="rgb(237,34,20)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="703.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (215,009 samples, 0.13%)</title><rect x="17.9914%" y="677" width="0.1261%" height="15" fill="rgb(229,97,13)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="687.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (215,009 samples, 0.13%)</title><rect x="17.9914%" y="661" width="0.1261%" height="15" fill="rgb(234,71,50)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="671.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (215,009 samples, 0.13%)</title><rect x="17.9914%" y="645" width="0.1261%" height="15" fill="rgb(253,155,4)" fg:x="30686669" fg:w="215009"/><text x="18.2414%" y="655.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (79,205 samples, 0.05%)</title><rect x="18.0710%" y="629" width="0.0464%" height="15" fill="rgb(222,185,37)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (79,205 samples, 0.05%)</title><rect x="18.0710%" y="613" width="0.0464%" height="15" fill="rgb(251,177,13)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="623.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (79,205 samples, 0.05%)</title><rect x="18.0710%" y="597" width="0.0464%" height="15" fill="rgb(250,179,40)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (79,205 samples, 0.05%)</title><rect x="18.0710%" y="581" width="0.0464%" height="15" fill="rgb(242,44,2)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="591.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (79,205 samples, 0.05%)</title><rect x="18.0710%" y="565" width="0.0464%" height="15" fill="rgb(216,177,13)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="575.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (79,205 samples, 0.05%)</title><rect x="18.0710%" y="549" width="0.0464%" height="15" fill="rgb(216,106,43)" fg:x="30822473" fg:w="79205"/><text x="18.3210%" y="559.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="821" width="0.3000%" height="15" fill="rgb(216,183,2)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="831.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (511,615 samples, 0.30%)</title><rect x="18.1175%" y="805" width="0.3000%" height="15" fill="rgb(249,75,3)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="815.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (511,615 samples, 0.30%)</title><rect x="18.1175%" y="789" width="0.3000%" height="15" fill="rgb(219,67,39)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="799.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="773" width="0.3000%" height="15" fill="rgb(253,228,2)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="783.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="757" width="0.3000%" height="15" fill="rgb(235,138,27)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="741" width="0.3000%" height="15" fill="rgb(236,97,51)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="751.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (511,615 samples, 0.30%)</title><rect x="18.1175%" y="725" width="0.3000%" height="15" fill="rgb(240,80,30)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="735.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (511,615 samples, 0.30%)</title><rect x="18.1175%" y="709" width="0.3000%" height="15" fill="rgb(230,178,19)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="719.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="693" width="0.3000%" height="15" fill="rgb(210,190,27)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="703.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="677" width="0.3000%" height="15" fill="rgb(222,107,31)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="687.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (511,615 samples, 0.30%)</title><rect x="18.1175%" y="661" width="0.3000%" height="15" fill="rgb(216,127,34)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="671.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (511,615 samples, 0.30%)</title><rect x="18.1175%" y="645" width="0.3000%" height="15" fill="rgb(234,116,52)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="655.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="629" width="0.3000%" height="15" fill="rgb(222,124,15)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="613" width="0.3000%" height="15" fill="rgb(231,179,28)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="623.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (511,615 samples, 0.30%)</title><rect x="18.1175%" y="597" width="0.3000%" height="15" fill="rgb(226,93,45)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (511,615 samples, 0.30%)</title><rect x="18.1175%" y="581" width="0.3000%" height="15" fill="rgb(215,8,51)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="591.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="565" width="0.3000%" height="15" fill="rgb(223,106,5)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="575.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="549" width="0.3000%" height="15" fill="rgb(250,191,5)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="559.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="533" width="0.3000%" height="15" fill="rgb(242,132,44)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="543.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (511,615 samples, 0.30%)</title><rect x="18.1175%" y="517" width="0.3000%" height="15" fill="rgb(251,152,29)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="527.50"></text></g><g><title>__memmove_avx512_unaligned_erms (511,615 samples, 0.30%)</title><rect x="18.1175%" y="501" width="0.3000%" height="15" fill="rgb(218,179,5)" fg:x="30901678" fg:w="511615"/><text x="18.3675%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="757" width="0.9744%" height="15" fill="rgb(227,67,19)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="741" width="0.9744%" height="15" fill="rgb(233,119,31)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="725" width="0.9744%" height="15" fill="rgb(241,120,22)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="735.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="709" width="0.9744%" height="15" fill="rgb(224,102,30)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="719.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="693" width="0.9744%" height="15" fill="rgb(210,164,37)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="703.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (1,661,950 samples, 0.97%)</title><rect x="18.4174%" y="677" width="0.9744%" height="15" fill="rgb(226,191,16)" fg:x="31413293" fg:w="1661950"/><text x="18.6674%" y="687.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (754,192 samples, 0.44%)</title><rect x="18.9496%" y="661" width="0.4422%" height="15" fill="rgb(214,40,45)" fg:x="32321051" fg:w="754192"/><text x="19.1996%" y="671.50"></text></g><g><title>__libc_malloc2 (754,192 samples, 0.44%)</title><rect x="18.9496%" y="645" width="0.4422%" height="15" fill="rgb(244,29,26)" fg:x="32321051" fg:w="754192"/><text x="19.1996%" y="655.50"></text></g><g><title>_int_malloc (754,192 samples, 0.44%)</title><rect x="18.9496%" y="629" width="0.4422%" height="15" fill="rgb(216,16,5)" fg:x="32321051" fg:w="754192"/><text x="19.1996%" y="639.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (4,042,472 samples, 2.37%)</title><rect x="17.5369%" y="869" width="2.3701%" height="15" fill="rgb(249,76,35)" fg:x="29911401" fg:w="4042472"/><text x="17.7869%" y="879.50">&lt;s..</text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (3,969,007 samples, 2.33%)</title><rect x="17.5799%" y="853" width="2.3270%" height="15" fill="rgb(207,11,44)" fg:x="29984866" fg:w="3969007"/><text x="17.8299%" y="863.50">&lt;..</text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (3,052,195 samples, 1.79%)</title><rect x="18.1175%" y="837" width="1.7895%" height="15" fill="rgb(228,190,49)" fg:x="30901678" fg:w="3052195"/><text x="18.3675%" y="847.50">&lt;..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2,540,580 samples, 1.49%)</title><rect x="18.4174%" y="821" width="1.4895%" height="15" fill="rgb(214,173,12)" fg:x="31413293" fg:w="2540580"/><text x="18.6674%" y="831.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2,540,580 samples, 1.49%)</title><rect x="18.4174%" y="805" width="1.4895%" height="15" fill="rgb(218,26,35)" fg:x="31413293" fg:w="2540580"/><text x="18.6674%" y="815.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (2,540,580 samples, 1.49%)</title><rect x="18.4174%" y="789" width="1.4895%" height="15" fill="rgb(220,200,19)" fg:x="31413293" fg:w="2540580"/><text x="18.6674%" y="799.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (2,540,580 samples, 1.49%)</title><rect x="18.4174%" y="773" width="1.4895%" height="15" fill="rgb(239,95,49)" fg:x="31413293" fg:w="2540580"/><text x="18.6674%" y="783.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="757" width="0.5151%" height="15" fill="rgb(235,85,53)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="741" width="0.5151%" height="15" fill="rgb(233,133,31)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="751.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (878,630 samples, 0.52%)</title><rect x="19.3918%" y="725" width="0.5151%" height="15" fill="rgb(218,25,20)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="735.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (878,630 samples, 0.52%)</title><rect x="19.3918%" y="709" width="0.5151%" height="15" fill="rgb(252,210,38)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="719.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="693" width="0.5151%" height="15" fill="rgb(242,134,21)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="703.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="677" width="0.5151%" height="15" fill="rgb(213,28,48)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="687.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (878,630 samples, 0.52%)</title><rect x="19.3918%" y="661" width="0.5151%" height="15" fill="rgb(250,196,2)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="671.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (878,630 samples, 0.52%)</title><rect x="19.3918%" y="645" width="0.5151%" height="15" fill="rgb(227,5,17)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="655.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="629" width="0.5151%" height="15" fill="rgb(221,226,24)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="639.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="613" width="0.5151%" height="15" fill="rgb(211,5,48)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="597" width="0.5151%" height="15" fill="rgb(219,150,6)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="607.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (878,630 samples, 0.52%)</title><rect x="19.3918%" y="581" width="0.5151%" height="15" fill="rgb(251,46,16)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="591.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (878,630 samples, 0.52%)</title><rect x="19.3918%" y="565" width="0.5151%" height="15" fill="rgb(220,204,40)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="575.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="549" width="0.5151%" height="15" fill="rgb(211,85,2)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="559.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="533" width="0.5151%" height="15" fill="rgb(229,17,7)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="543.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (878,630 samples, 0.52%)</title><rect x="19.3918%" y="517" width="0.5151%" height="15" fill="rgb(239,72,28)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="527.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (878,630 samples, 0.52%)</title><rect x="19.3918%" y="501" width="0.5151%" height="15" fill="rgb(230,47,54)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="511.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="485" width="0.5151%" height="15" fill="rgb(214,50,8)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="495.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="469" width="0.5151%" height="15" fill="rgb(216,198,43)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="453" width="0.5151%" height="15" fill="rgb(234,20,35)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="463.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (878,630 samples, 0.52%)</title><rect x="19.3918%" y="437" width="0.5151%" height="15" fill="rgb(254,45,19)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="447.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (878,630 samples, 0.52%)</title><rect x="19.3918%" y="421" width="0.5151%" height="15" fill="rgb(219,14,44)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="431.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="405" width="0.5151%" height="15" fill="rgb(217,220,26)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="415.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="389" width="0.5151%" height="15" fill="rgb(213,158,28)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="399.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (878,630 samples, 0.52%)</title><rect x="19.3918%" y="373" width="0.5151%" height="15" fill="rgb(252,51,52)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="383.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (878,630 samples, 0.52%)</title><rect x="19.3918%" y="357" width="0.5151%" height="15" fill="rgb(246,89,16)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="367.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="341" width="0.5151%" height="15" fill="rgb(216,158,49)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="351.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::clone::Clone&gt;::clone (878,630 samples, 0.52%)</title><rect x="19.3918%" y="325" width="0.5151%" height="15" fill="rgb(236,107,19)" fg:x="33075243" fg:w="878630"/><text x="19.6418%" y="335.50"></text></g><g><title>shed::parse::execute::exec_input (6,979,823 samples, 4.09%)</title><rect x="15.9482%" y="1317" width="4.0922%" height="15" fill="rgb(228,185,30)" fg:x="27201696" fg:w="6979823"/><text x="16.1982%" y="1327.50">shed..</text></g><g><title>shed::state::read_logic (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1301" width="2.5136%" height="15" fill="rgb(246,134,8)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1311.50">sh..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1285" width="2.5136%" height="15" fill="rgb(214,143,50)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1295.50">st..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1269" width="2.5136%" height="15" fill="rgb(228,75,8)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1279.50">st..</text></g><g><title>shed::state::read_logic::{{closure}} (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1253" width="2.5136%" height="15" fill="rgb(207,175,4)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1263.50">sh..</text></g><g><title>shed::parse::execute::exec_input::{{closure}} (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1237" width="2.5136%" height="15" fill="rgb(205,108,24)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1247.50">sh..</text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1221" width="2.5136%" height="15" fill="rgb(244,120,49)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1231.50">&lt;s..</text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1205" width="2.5136%" height="15" fill="rgb(223,47,38)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1215.50">&lt;s..</text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1189" width="2.5136%" height="15" fill="rgb(229,179,11)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1199.50">&lt;h..</text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1173" width="2.5136%" height="15" fill="rgb(231,122,1)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1183.50">&lt;h..</text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1157" width="2.5136%" height="15" fill="rgb(245,119,9)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1167.50">&lt;h..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1141" width="2.5136%" height="15" fill="rgb(241,163,25)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1151.50">ha..</text></g><g><title>core::clone::Clone::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1125" width="2.5136%" height="15" fill="rgb(217,214,3)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1135.50">co..</text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1109" width="2.5136%" height="15" fill="rgb(240,86,28)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1119.50">&lt;s..</text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1093" width="2.5136%" height="15" fill="rgb(215,47,9)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1103.50">&lt;s..</text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1077" width="2.5136%" height="15" fill="rgb(252,25,45)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1087.50">&lt;s..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1061" width="2.5136%" height="15" fill="rgb(251,164,9)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1071.50">&lt;a..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1045" width="2.5136%" height="15" fill="rgb(233,194,0)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1055.50">al..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1029" width="2.5136%" height="15" fill="rgb(249,111,24)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1039.50">&lt;T..</text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (4,287,316 samples, 2.51%)</title><rect x="17.5268%" y="1013" width="2.5136%" height="15" fill="rgb(250,223,3)" fg:x="29894203" fg:w="4287316"/><text x="17.7768%" y="1023.50">&lt;s..</text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="997" width="2.5035%" height="15" fill="rgb(236,178,37)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="1007.50">&lt;s..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="981" width="2.5035%" height="15" fill="rgb(241,158,50)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="991.50">&lt;a..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="965" width="2.5035%" height="15" fill="rgb(213,121,41)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="975.50">al..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="949" width="2.5035%" height="15" fill="rgb(240,92,3)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="959.50">&lt;T..</text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="933" width="2.5035%" height="15" fill="rgb(205,123,3)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="943.50">&lt;s..</text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="917" width="2.5035%" height="15" fill="rgb(205,97,47)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="927.50">&lt;a..</text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="901" width="2.5035%" height="15" fill="rgb(247,152,14)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="911.50">&lt;T..</text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (4,270,118 samples, 2.50%)</title><rect x="17.5369%" y="885" width="2.5035%" height="15" fill="rgb(248,195,53)" fg:x="29911401" fg:w="4270118"/><text x="17.7869%" y="895.50">&lt;T..</text></g><g><title>core::ptr::write (227,646 samples, 0.13%)</title><rect x="19.9069%" y="869" width="0.1335%" height="15" fill="rgb(226,201,16)" fg:x="33953873" fg:w="227646"/><text x="20.1569%" y="879.50"></text></g><g><title>__memmove_avx512_unaligned_erms (227,646 samples, 0.13%)</title><rect x="19.9069%" y="853" width="0.1335%" height="15" fill="rgb(205,98,0)" fg:x="33953873" fg:w="227646"/><text x="20.1569%" y="863.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1445" width="4.1296%" height="15" fill="rgb(214,191,48)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1455.50">shed..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1429" width="4.1296%" height="15" fill="rgb(237,112,39)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1439.50">shed..</text></g><g><title>shed::builtin::varcmds::local (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1413" width="4.1296%" height="15" fill="rgb(247,203,27)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1423.50">shed..</text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1397" width="4.1296%" height="15" fill="rgb(235,124,28)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1407.50">shed..</text></g><g><title>shed::expand::Expander::expand (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1381" width="4.1296%" height="15" fill="rgb(208,207,46)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1391.50">shed..</text></g><g><title>shed::expand::expand_raw (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1365" width="4.1296%" height="15" fill="rgb(234,176,4)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1375.50">shed..</text></g><g><title>shed::expand::expand_var (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1349" width="4.1296%" height="15" fill="rgb(230,133,28)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1359.50">shed..</text></g><g><title>shed::expand::expand_cmd_sub (7,043,625 samples, 4.13%)</title><rect x="15.9256%" y="1333" width="4.1296%" height="15" fill="rgb(211,137,40)" fg:x="27163152" fg:w="7043625"/><text x="16.1756%" y="1343.50">shed..</text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1701" width="4.1325%" height="15" fill="rgb(254,35,13)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1711.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1685" width="4.1325%" height="15" fill="rgb(225,49,51)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1695.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1669" width="4.1325%" height="15" fill="rgb(251,10,15)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1679.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1653" width="4.1325%" height="15" fill="rgb(228,207,15)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1663.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1637" width="4.1325%" height="15" fill="rgb(241,99,19)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1647.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1621" width="4.1325%" height="15" fill="rgb(207,104,49)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1631.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1605" width="4.1325%" height="15" fill="rgb(234,99,18)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1615.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_func (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1589" width="4.1325%" height="15" fill="rgb(213,191,49)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1599.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1573" width="4.1325%" height="15" fill="rgb(210,226,19)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1583.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1557" width="4.1325%" height="15" fill="rgb(229,97,18)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1567.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1541" width="4.1325%" height="15" fill="rgb(211,167,15)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1551.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1525" width="4.1325%" height="15" fill="rgb(210,169,34)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1535.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1509" width="4.1325%" height="15" fill="rgb(241,121,31)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1519.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1493" width="4.1325%" height="15" fill="rgb(232,40,11)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1503.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1477" width="4.1325%" height="15" fill="rgb(205,86,26)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1487.50">shed:..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (7,048,515 samples, 4.13%)</title><rect x="15.9256%" y="1461" width="4.1325%" height="15" fill="rgb(231,126,28)" fg:x="27163152" fg:w="7048515"/><text x="16.1756%" y="1471.50">shed:..</text></g><g><title>[unknown] (30,042 samples, 0.02%)</title><rect x="20.0581%" y="1669" width="0.0176%" height="15" fill="rgb(219,221,18)" fg:x="34211667" fg:w="30042"/><text x="20.3081%" y="1679.50"></text></g><g><title>[unknown] (30,042 samples, 0.02%)</title><rect x="20.0581%" y="1653" width="0.0176%" height="15" fill="rgb(211,40,0)" fg:x="34211667" fg:w="30042"/><text x="20.3081%" y="1663.50"></text></g><g><title>[unknown] (30,042 samples, 0.02%)</title><rect x="20.0581%" y="1637" width="0.0176%" height="15" fill="rgb(239,85,43)" fg:x="34211667" fg:w="30042"/><text x="20.3081%" y="1647.50"></text></g><g><title>[unknown] (30,042 samples, 0.02%)</title><rect x="20.0581%" y="1621" width="0.0176%" height="15" fill="rgb(231,55,21)" fg:x="34211667" fg:w="30042"/><text x="20.3081%" y="1631.50"></text></g><g><title>[unknown] (30,042 samples, 0.02%)</title><rect x="20.0581%" y="1605" width="0.0176%" height="15" fill="rgb(225,184,43)" fg:x="34211667" fg:w="30042"/><text x="20.3081%" y="1615.50"></text></g><g><title>shed::parse::execute::exec_input (8,402,226 samples, 4.93%)</title><rect x="15.5057%" y="1717" width="4.9262%" height="15" fill="rgb(251,158,41)" fg:x="26447028" fg:w="8402226"/><text x="15.7557%" y="1727.50">shed::..</text></g><g><title>shed::state::read_logic (637,587 samples, 0.37%)</title><rect x="20.0581%" y="1701" width="0.3738%" height="15" fill="rgb(234,159,37)" fg:x="34211667" fg:w="637587"/><text x="20.3081%" y="1711.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (637,587 samples, 0.37%)</title><rect x="20.0581%" y="1685" width="0.3738%" height="15" fill="rgb(216,204,22)" fg:x="34211667" fg:w="637587"/><text x="20.3081%" y="1695.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1669" width="0.3562%" height="15" fill="rgb(214,17,3)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1679.50"></text></g><g><title>shed::state::read_logic::{{closure}} (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1653" width="0.3562%" height="15" fill="rgb(212,111,17)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1663.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1637" width="0.3562%" height="15" fill="rgb(221,157,24)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1647.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1621" width="0.3562%" height="15" fill="rgb(252,16,13)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1631.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1605" width="0.3562%" height="15" fill="rgb(221,62,2)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1615.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1589" width="0.3562%" height="15" fill="rgb(247,87,22)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1599.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1573" width="0.3562%" height="15" fill="rgb(215,73,9)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1583.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1557" width="0.3562%" height="15" fill="rgb(207,175,33)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1567.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1541" width="0.3562%" height="15" fill="rgb(243,129,54)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1551.50"></text></g><g><title>core::clone::Clone::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1525" width="0.3562%" height="15" fill="rgb(227,119,45)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1535.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1509" width="0.3562%" height="15" fill="rgb(205,109,36)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1519.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1493" width="0.3562%" height="15" fill="rgb(205,6,39)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1503.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1477" width="0.3562%" height="15" fill="rgb(221,32,16)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1461" width="0.3562%" height="15" fill="rgb(228,144,50)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1471.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1445" width="0.3562%" height="15" fill="rgb(229,201,53)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1455.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1429" width="0.3562%" height="15" fill="rgb(249,153,27)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1439.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1413" width="0.3562%" height="15" fill="rgb(227,106,25)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1423.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1397" width="0.3562%" height="15" fill="rgb(230,65,29)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1381" width="0.3562%" height="15" fill="rgb(221,57,46)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1391.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1365" width="0.3562%" height="15" fill="rgb(229,161,17)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1375.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1349" width="0.3562%" height="15" fill="rgb(222,213,11)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1359.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1333" width="0.3562%" height="15" fill="rgb(235,35,13)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1343.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1317" width="0.3562%" height="15" fill="rgb(233,158,34)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1327.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1301" width="0.3562%" height="15" fill="rgb(215,151,48)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1311.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1285" width="0.3562%" height="15" fill="rgb(229,84,14)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1295.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1269" width="0.3562%" height="15" fill="rgb(229,68,14)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1253" width="0.3562%" height="15" fill="rgb(243,106,26)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1263.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1237" width="0.3562%" height="15" fill="rgb(206,45,38)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1247.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1221" width="0.3562%" height="15" fill="rgb(226,6,15)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1231.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1205" width="0.3562%" height="15" fill="rgb(232,22,54)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1215.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1189" width="0.3562%" height="15" fill="rgb(229,222,32)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1199.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1173" width="0.3562%" height="15" fill="rgb(228,62,29)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1183.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1157" width="0.3562%" height="15" fill="rgb(251,103,34)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1167.50"></text></g><g><title>__memmove_avx512_unaligned_erms (607,545 samples, 0.36%)</title><rect x="20.0757%" y="1141" width="0.3562%" height="15" fill="rgb(233,12,30)" fg:x="34241709" fg:w="607545"/><text x="20.3257%" y="1151.50"></text></g><g><title>shed::readline::Prompt::refresh (8,404,333 samples, 4.93%)</title><rect x="15.5050%" y="1765" width="4.9274%" height="15" fill="rgb(238,52,0)" fg:x="26445772" fg:w="8404333"/><text x="15.7550%" y="1775.50">shed::..</text></g><g><title>shed::expand::expand_prompt (8,404,333 samples, 4.93%)</title><rect x="15.5050%" y="1749" width="4.9274%" height="15" fill="rgb(223,98,5)" fg:x="26445772" fg:w="8404333"/><text x="15.7550%" y="1759.50">shed::..</text></g><g><title>shed::expand::expand_cmd_sub (8,404,333 samples, 4.93%)</title><rect x="15.5050%" y="1733" width="4.9274%" height="15" fill="rgb(228,75,37)" fg:x="26445772" fg:w="8404333"/><text x="15.7550%" y="1743.50">shed::..</text></g><g><title>shed::readline::ShedVi::print_line (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1765" width="0.0190%" height="15" fill="rgb(205,115,49)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1775.50"></text></g><g><title>shed::readline::ShedVi::line_text (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1749" width="0.0190%" height="15" fill="rgb(250,154,43)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1759.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1733" width="0.0190%" height="15" fill="rgb(226,43,29)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1743.50"></text></g><g><title>&lt;T as alloc::string::SpecToString&gt;::spec_to_string (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1717" width="0.0190%" height="15" fill="rgb(249,228,39)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1727.50"></text></g><g><title>&lt;shed::readline::linebuf::LineBuf as core::fmt::Display&gt;::fmt (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1701" width="0.0190%" height="15" fill="rgb(216,79,43)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1711.50"></text></g><g><title>core::fmt::Formatter::write_fmt (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1685" width="0.0190%" height="15" fill="rgb(228,95,12)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1695.50"></text></g><g><title>core::fmt::write (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1669" width="0.0190%" height="15" fill="rgb(249,221,15)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1679.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (32,430 samples, 0.02%)</title><rect x="20.4324%" y="1653" width="0.0190%" height="15" fill="rgb(233,34,13)" fg:x="34850105" fg:w="32430"/><text x="20.6824%" y="1663.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1701" width="0.0649%" height="15" fill="rgb(214,103,39)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1711.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1685" width="0.0649%" height="15" fill="rgb(251,126,39)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1695.50"></text></g><g><title>&lt;core::str::iter::Lines as core::iter::traits::iterator::Iterator&gt;::next (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1669" width="0.0649%" height="15" fill="rgb(214,216,36)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1679.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1653" width="0.0649%" height="15" fill="rgb(220,221,8)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1663.50"></text></g><g><title>&lt;core::str::iter::SplitInclusive&lt;P&gt; as core::iter::traits::iterator::Iterator&gt;::next (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1637" width="0.0649%" height="15" fill="rgb(240,216,3)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1647.50"></text></g><g><title>core::str::iter::SplitInternal&lt;P&gt;::next_inclusive (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1621" width="0.0649%" height="15" fill="rgb(232,218,17)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1631.50"></text></g><g><title>&lt;core::str::pattern::CharSearcher as core::str::pattern::Searcher&gt;::next_match (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1605" width="0.0649%" height="15" fill="rgb(229,163,45)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1615.50"></text></g><g><title>core::slice::memchr::memchr (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1589" width="0.0649%" height="15" fill="rgb(231,110,42)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1599.50"></text></g><g><title>core::slice::memchr::memchr_aligned (110,699 samples, 0.06%)</title><rect x="20.4514%" y="1573" width="0.0649%" height="15" fill="rgb(208,170,48)" fg:x="34882535" fg:w="110699"/><text x="20.7014%" y="1583.50"></text></g><g><title>alloc::string::String::push (4,131,504 samples, 2.42%)</title><rect x="20.5163%" y="1701" width="2.4223%" height="15" fill="rgb(239,116,25)" fg:x="34993234" fg:w="4131504"/><text x="20.7663%" y="1711.50">al..</text></g><g><title>core::char::methods::encode_utf8_raw_unchecked (4,131,459 samples, 2.42%)</title><rect x="20.5163%" y="1685" width="2.4222%" height="15" fill="rgb(219,200,50)" fg:x="34993279" fg:w="4131459"/><text x="20.7663%" y="1695.50">co..</text></g><g><title>core::char::methods::len_utf8 (4,131,459 samples, 2.42%)</title><rect x="20.5163%" y="1669" width="2.4222%" height="15" fill="rgb(245,200,0)" fg:x="34993279" fg:w="4131459"/><text x="20.7663%" y="1679.50">co..</text></g><g><title>core::str::&lt;impl str&gt;::chars (801,363 samples, 0.47%)</title><rect x="22.9386%" y="1701" width="0.4698%" height="15" fill="rgb(245,119,33)" fg:x="39124738" fg:w="801363"/><text x="23.1886%" y="1711.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::iter (801,363 samples, 0.47%)</title><rect x="22.9386%" y="1685" width="0.4698%" height="15" fill="rgb(231,125,12)" fg:x="39124738" fg:w="801363"/><text x="23.1886%" y="1695.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::new (801,363 samples, 0.47%)</title><rect x="22.9386%" y="1669" width="0.4698%" height="15" fill="rgb(216,96,41)" fg:x="39124738" fg:w="801363"/><text x="23.1886%" y="1679.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (801,363 samples, 0.47%)</title><rect x="22.9386%" y="1653" width="0.4698%" height="15" fill="rgb(248,43,45)" fg:x="39124738" fg:w="801363"/><text x="23.1886%" y="1663.50"></text></g><g><title>shed::readline::ShedVi::new (14,454,553 samples, 8.47%)</title><rect x="15.4908%" y="1781" width="8.4746%" height="15" fill="rgb(217,222,7)" fg:x="26421505" fg:w="14454553"/><text x="15.7408%" y="1791.50">shed::readli..</text></g><g><title>shed::readline::history::History::new (5,993,523 samples, 3.51%)</title><rect x="20.4514%" y="1765" width="3.5140%" height="15" fill="rgb(233,28,6)" fg:x="34882535" fg:w="5993523"/><text x="20.7014%" y="1775.50">she..</text></g><g><title>shed::readline::history::read_hist_file (5,993,523 samples, 3.51%)</title><rect x="20.4514%" y="1749" width="3.5140%" height="15" fill="rgb(231,218,15)" fg:x="34882535" fg:w="5993523"/><text x="20.7014%" y="1759.50">she..</text></g><g><title>core::str::&lt;impl str&gt;::parse (5,993,523 samples, 3.51%)</title><rect x="20.4514%" y="1733" width="3.5140%" height="15" fill="rgb(226,171,48)" fg:x="34882535" fg:w="5993523"/><text x="20.7014%" y="1743.50">cor..</text></g><g><title>&lt;shed::readline::history::HistEntries as core::str::traits::FromStr&gt;::from_str (5,993,523 samples, 3.51%)</title><rect x="20.4514%" y="1717" width="3.5140%" height="15" fill="rgb(235,201,9)" fg:x="34882535" fg:w="5993523"/><text x="20.7014%" y="1727.50">&lt;sh..</text></g><g><title>core::str::&lt;impl str&gt;::parse (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1701" width="0.5570%" height="15" fill="rgb(217,80,15)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1711.50"></text></g><g><title>&lt;shed::readline::history::HistEntry as core::str::traits::FromStr&gt;::from_str (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1685" width="0.5570%" height="15" fill="rgb(219,152,8)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1695.50"></text></g><g><title>alloc::fmt::format (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1669" width="0.5570%" height="15" fill="rgb(243,107,38)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1679.50"></text></g><g><title>core::option::Option&lt;T&gt;::map_or_else (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1653" width="0.5570%" height="15" fill="rgb(231,17,5)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1663.50"></text></g><g><title>alloc::fmt::format::{{closure}} (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1637" width="0.5570%" height="15" fill="rgb(209,25,54)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1647.50"></text></g><g><title>alloc::fmt::format::format_inner (949,957 samples, 0.56%)</title><rect x="23.4084%" y="1621" width="0.5570%" height="15" fill="rgb(219,0,2)" fg:x="39926101" fg:w="949957"/><text x="23.6584%" y="1631.50"></text></g><g><title>malloc (947,779 samples, 0.56%)</title><rect x="23.4097%" y="1605" width="0.5557%" height="15" fill="rgb(246,9,5)" fg:x="39928279" fg:w="947779"/><text x="23.6597%" y="1615.50"></text></g><g><title>shed::readline::ShedVi::print_line (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1781" width="0.4748%" height="15" fill="rgb(226,159,4)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1791.50"></text></g><g><title>shed::readline::ShedVi::get_layout (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1765" width="0.4748%" height="15" fill="rgb(219,175,34)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1775.50"></text></g><g><title>shed::readline::term::Layout::from_parts (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1749" width="0.4748%" height="15" fill="rgb(236,10,46)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1759.50"></text></g><g><title>shed::readline::term::Layout::calc_pos (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1733" width="0.4748%" height="15" fill="rgb(240,211,16)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1743.50"></text></g><g><title>shed::readline::term::width (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1717" width="0.4748%" height="15" fill="rgb(205,3,43)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1727.50"></text></g><g><title>shed::readline::term::width_calculator (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1701" width="0.4748%" height="15" fill="rgb(245,7,22)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1711.50"></text></g><g><title>std::env::var (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1685" width="0.4748%" height="15" fill="rgb(239,132,32)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1695.50"></text></g><g><title>std::env::_var (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1669" width="0.4748%" height="15" fill="rgb(228,202,34)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1679.50"></text></g><g><title>std::sys::env::unix::getenv (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1653" width="0.4748%" height="15" fill="rgb(254,200,22)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1663.50"></text></g><g><title>std::sys::env::unix::getenv::{{closure}} (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1637" width="0.4748%" height="15" fill="rgb(219,10,39)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1647.50"></text></g><g><title>malloc (809,847 samples, 0.47%)</title><rect x="23.9654%" y="1621" width="0.4748%" height="15" fill="rgb(226,210,39)" fg:x="40876058" fg:w="809847"/><text x="24.2154%" y="1631.50"></text></g><g><title>shed::expand::expand_aliases (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1733" width="0.4658%" height="15" fill="rgb(208,219,16)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1717" width="0.4658%" height="15" fill="rgb(216,158,51)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1727.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1701" width="0.4658%" height="15" fill="rgb(233,14,44)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1711.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1685" width="0.4658%" height="15" fill="rgb(237,97,39)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1695.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1669" width="0.4658%" height="15" fill="rgb(218,198,43)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1653" width="0.4658%" height="15" fill="rgb(231,104,20)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1663.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1637" width="0.4658%" height="15" fill="rgb(254,36,13)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1647.50"></text></g><g><title>&lt;shed::parse::lex::LexStream as core::iter::traits::iterator::Iterator&gt;::next (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1621" width="0.4658%" height="15" fill="rgb(248,14,50)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1631.50"></text></g><g><title>shed::parse::lex::LexStream::read_string (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1605" width="0.4658%" height="15" fill="rgb(217,107,29)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1589" width="0.4658%" height="15" fill="rgb(251,169,33)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1573" width="0.4658%" height="15" fill="rgb(217,108,32)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1557" width="0.4658%" height="15" fill="rgb(219,66,42)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1567.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1541" width="0.4658%" height="15" fill="rgb(206,180,7)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1551.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1525" width="0.4658%" height="15" fill="rgb(208,226,31)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1535.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1509" width="0.4658%" height="15" fill="rgb(218,26,49)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1519.50"></text></g><g><title>alloc::alloc::dealloc (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1493" width="0.4658%" height="15" fill="rgb(233,197,48)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1503.50"></text></g><g><title>_int_free_chunk (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1477" width="0.4658%" height="15" fill="rgb(252,181,51)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1487.50"></text></g><g><title>_int_free_merge_chunk (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1461" width="0.4658%" height="15" fill="rgb(253,90,19)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1471.50"></text></g><g><title>_int_free_create_chunk (794,529 samples, 0.47%)</title><rect x="24.4402%" y="1445" width="0.4658%" height="15" fill="rgb(215,171,30)" fg:x="41685905" fg:w="794529"/><text x="24.6902%" y="1455.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1509" width="0.1712%" height="15" fill="rgb(214,222,9)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1519.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1493" width="0.1712%" height="15" fill="rgb(223,3,22)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1503.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1477" width="0.1712%" height="15" fill="rgb(225,196,46)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1487.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1461" width="0.1712%" height="15" fill="rgb(209,110,37)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1471.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1445" width="0.1712%" height="15" fill="rgb(249,89,12)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1455.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1429" width="0.1712%" height="15" fill="rgb(226,27,33)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1439.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1413" width="0.1712%" height="15" fill="rgb(213,82,22)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1423.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (292,048 samples, 0.17%)</title><rect x="24.9060%" y="1397" width="0.1712%" height="15" fill="rgb(248,140,0)" fg:x="42480434" fg:w="292048"/><text x="25.1560%" y="1407.50"></text></g><g><title>shed::parse::ParseStream::parse_case (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1605" width="0.1777%" height="15" fill="rgb(228,106,3)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1615.50"></text></g><g><title>shed::parse::ParseStream::parse_cmd_list (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1589" width="0.1777%" height="15" fill="rgb(209,23,37)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1599.50"></text></g><g><title>shed::parse::ParseStream::parse_block (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1573" width="0.1777%" height="15" fill="rgb(241,93,50)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1583.50"></text></g><g><title>shed::parse::ParseStream::parse_pipeln (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1557" width="0.1777%" height="15" fill="rgb(253,46,43)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1567.50"></text></g><g><title>shed::parse::ParseStream::parse_block (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1541" width="0.1777%" height="15" fill="rgb(226,206,43)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1551.50"></text></g><g><title>shed::parse::ParseStream::parse_cmd (303,082 samples, 0.18%)</title><rect x="24.9060%" y="1525" width="0.1777%" height="15" fill="rgb(217,54,7)" fg:x="42480434" fg:w="303082"/><text x="25.1560%" y="1535.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1509" width="8.9683%" height="15" fill="rgb(223,5,52)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1519.50">&lt;alloc::vec::..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1493" width="8.9683%" height="15" fill="rgb(206,52,46)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1503.50">alloc::slice:..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1477" width="8.9683%" height="15" fill="rgb(253,136,11)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1487.50">&lt;T as alloc::..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1461" width="8.9683%" height="15" fill="rgb(208,106,33)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1471.50">&lt;shed::parse:..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1445" width="8.9683%" height="15" fill="rgb(206,54,4)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1455.50">&lt;shed::parse:..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (15,296,660 samples, 8.97%)</title><rect x="25.0837%" y="1429" width="8.9683%" height="15" fill="rgb(213,3,15)" fg:x="42783516" fg:w="15296660"/><text x="25.3337%" y="1439.50">&lt;shed::parse:..</text></g><g><title>shed::parse::ParseStream::parse_if (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1605" width="14.5940%" height="15" fill="rgb(252,211,39)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1615.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1589" width="14.5940%" height="15" fill="rgb(223,6,36)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1599.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::parse_block (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1573" width="14.5940%" height="15" fill="rgb(252,169,45)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1583.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::parse_pipeln (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1557" width="14.5940%" height="15" fill="rgb(212,48,26)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1567.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::parse_block (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1541" width="14.5940%" height="15" fill="rgb(251,102,48)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1551.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::parse_cmd (24,891,931 samples, 14.59%)</title><rect x="25.0837%" y="1525" width="14.5940%" height="15" fill="rgb(243,208,16)" fg:x="42783516" fg:w="24891931"/><text x="25.3337%" y="1535.50">shed::parse::ParseStre..</text></g><g><title>shed::parse::ParseStream::commit (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1509" width="5.6256%" height="15" fill="rgb(219,96,24)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1519.50">shed::p..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1493" width="5.6256%" height="15" fill="rgb(219,33,29)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1503.50">alloc::..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1477" width="5.6256%" height="15" fill="rgb(223,176,5)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1487.50">alloc::..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1461" width="5.6256%" height="15" fill="rgb(228,140,14)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1471.50">&lt;T as a..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1445" width="5.6256%" height="15" fill="rgb(217,179,31)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1455.50">&lt;shed::..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1429" width="5.6256%" height="15" fill="rgb(230,9,30)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1439.50">&lt;shed::..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (9,595,271 samples, 5.63%)</title><rect x="34.0520%" y="1413" width="5.6256%" height="15" fill="rgb(230,136,20)" fg:x="58080176" fg:w="9595271"/><text x="34.3020%" y="1423.50">&lt;shed::..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1589" width="6.6405%" height="15" fill="rgb(215,210,22)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1599.50">&lt;alloc::v..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1573" width="6.6405%" height="15" fill="rgb(218,43,5)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1583.50">alloc::sl..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1557" width="6.6405%" height="15" fill="rgb(216,11,5)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1567.50">&lt;T as all..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1541" width="6.6405%" height="15" fill="rgb(209,82,29)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1551.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1525" width="6.6405%" height="15" fill="rgb(244,115,12)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1535.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1509" width="6.6405%" height="15" fill="rgb(222,82,18)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1519.50">&lt;shed::pa..</text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1493" width="6.6405%" height="15" fill="rgb(249,227,8)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1503.50">&lt;alloc::s..</text></g><g><title>__libc_malloc2 (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1477" width="6.6405%" height="15" fill="rgb(253,141,45)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1487.50">__libc_ma..</text></g><g><title>_int_malloc (11,326,218 samples, 6.64%)</title><rect x="39.6777%" y="1461" width="6.6405%" height="15" fill="rgb(234,184,4)" fg:x="67675447" fg:w="11326218"/><text x="39.9277%" y="1471.50">_int_mall..</text></g><g><title>shed::parse::ParseStream::parse_loop (16,025,431 samples, 9.40%)</title><rect x="39.6777%" y="1605" width="9.3956%" height="15" fill="rgb(218,194,23)" fg:x="67675447" fg:w="16025431"/><text x="39.9277%" y="1615.50">shed::parse::..</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1589" width="2.7551%" height="15" fill="rgb(235,66,41)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1599.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_block (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1573" width="2.7551%" height="15" fill="rgb(245,217,1)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1583.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_if (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1557" width="2.7551%" height="15" fill="rgb(229,91,1)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1567.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1541" width="2.7551%" height="15" fill="rgb(207,101,30)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1551.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_block (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1525" width="2.7551%" height="15" fill="rgb(223,82,49)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1535.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_pipeln (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1509" width="2.7551%" height="15" fill="rgb(218,167,17)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1519.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_block (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1493" width="2.7551%" height="15" fill="rgb(208,103,14)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1503.50">sh..</text></g><g><title>shed::parse::ParseStream::parse_cmd (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1477" width="2.7551%" height="15" fill="rgb(238,20,8)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1487.50">sh..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1461" width="2.7551%" height="15" fill="rgb(218,80,54)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1471.50">&lt;a..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1445" width="2.7551%" height="15" fill="rgb(240,144,17)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1455.50">al..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1429" width="2.7551%" height="15" fill="rgb(245,27,50)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1439.50">&lt;T..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1413" width="2.7551%" height="15" fill="rgb(251,51,7)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1423.50">&lt;s..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1397" width="2.7551%" height="15" fill="rgb(245,217,29)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1407.50">&lt;s..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (4,699,213 samples, 2.76%)</title><rect x="46.3182%" y="1381" width="2.7551%" height="15" fill="rgb(221,176,29)" fg:x="79001665" fg:w="4699213"/><text x="46.5682%" y="1391.50">&lt;s..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1557" width="6.9157%" height="15" fill="rgb(212,180,24)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1567.50">&lt;alloc::v..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1541" width="6.9157%" height="15" fill="rgb(254,24,2)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1551.50">alloc::sl..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1525" width="6.9157%" height="15" fill="rgb(230,100,2)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1535.50">&lt;T as all..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1509" width="6.9157%" height="15" fill="rgb(219,142,25)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1519.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1493" width="6.9157%" height="15" fill="rgb(240,73,43)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1503.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (11,795,563 samples, 6.92%)</title><rect x="49.0733%" y="1477" width="6.9157%" height="15" fill="rgb(214,114,15)" fg:x="83700878" fg:w="11795563"/><text x="49.3233%" y="1487.50">&lt;shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_func_def (64,478,898 samples, 37.80%)</title><rect x="24.9060%" y="1669" width="37.8036%" height="15" fill="rgb(207,130,4)" fg:x="42480434" fg:w="64478898"/><text x="25.1560%" y="1679.50">shed::parse::ParseStream::parse_func_def</text></g><g><title>shed::parse::ParseStream::parse_brc_grp (64,478,898 samples, 37.80%)</title><rect x="24.9060%" y="1653" width="37.8036%" height="15" fill="rgb(221,25,40)" fg:x="42480434" fg:w="64478898"/><text x="25.1560%" y="1663.50">shed::parse::ParseStream::parse_brc_grp</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (64,478,898 samples, 37.80%)</title><rect x="24.9060%" y="1637" width="37.8036%" height="15" fill="rgb(241,184,7)" fg:x="42480434" fg:w="64478898"/><text x="25.1560%" y="1647.50">shed::parse::ParseStream::parse_cmd_list</text></g><g><title>shed::parse::ParseStream::parse_block (64,478,898 samples, 37.80%)</title><rect x="24.9060%" y="1621" width="37.8036%" height="15" fill="rgb(235,159,4)" fg:x="42480434" fg:w="64478898"/><text x="25.1560%" y="1631.50">shed::parse::ParseStream::parse_block</text></g><g><title>shed::parse::ParseStream::parse_pipeln (23,258,454 samples, 13.64%)</title><rect x="49.0733%" y="1605" width="13.6363%" height="15" fill="rgb(214,87,48)" fg:x="83700878" fg:w="23258454"/><text x="49.3233%" y="1615.50">shed::parse::ParseStr..</text></g><g><title>shed::parse::ParseStream::parse_block (23,258,454 samples, 13.64%)</title><rect x="49.0733%" y="1589" width="13.6363%" height="15" fill="rgb(246,198,24)" fg:x="83700878" fg:w="23258454"/><text x="49.3233%" y="1599.50">shed::parse::ParseStr..</text></g><g><title>shed::parse::ParseStream::parse_cmd (23,258,454 samples, 13.64%)</title><rect x="49.0733%" y="1573" width="13.6363%" height="15" fill="rgb(209,66,40)" fg:x="83700878" fg:w="23258454"/><text x="49.3233%" y="1583.50">shed::parse::ParseStr..</text></g><g><title>shed::parse::ParseStream::commit (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1557" width="6.7206%" height="15" fill="rgb(233,147,39)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1567.50">shed::par..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1541" width="6.7206%" height="15" fill="rgb(231,145,52)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1551.50">alloc::sl..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1525" width="6.7206%" height="15" fill="rgb(206,20,26)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1535.50">alloc::sl..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1509" width="6.7206%" height="15" fill="rgb(238,220,4)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1519.50">&lt;T as all..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1493" width="6.7206%" height="15" fill="rgb(252,195,42)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1503.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1477" width="6.7206%" height="15" fill="rgb(209,10,6)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1487.50">&lt;shed::pa..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (11,462,891 samples, 6.72%)</title><rect x="55.9889%" y="1461" width="6.7206%" height="15" fill="rgb(229,3,52)" fg:x="95496441" fg:w="11462891"/><text x="56.2389%" y="1471.50">&lt;shed::pa..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1621" width="3.8604%" height="15" fill="rgb(253,49,37)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1631.50">&lt;all..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1605" width="3.8604%" height="15" fill="rgb(240,103,49)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1615.50">allo..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1589" width="3.8604%" height="15" fill="rgb(250,182,30)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1599.50">&lt;T a..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1573" width="3.8604%" height="15" fill="rgb(248,8,30)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1583.50">&lt;she..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1557" width="3.8604%" height="15" fill="rgb(237,120,30)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1567.50">&lt;she..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (6,584,345 samples, 3.86%)</title><rect x="62.7096%" y="1541" width="3.8604%" height="15" fill="rgb(221,146,34)" fg:x="106959332" fg:w="6584345"/><text x="62.9596%" y="1551.50">&lt;she..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1605" width="3.7488%" height="15" fill="rgb(242,55,13)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1615.50">allo..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1589" width="3.7488%" height="15" fill="rgb(242,112,31)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1599.50">allo..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1573" width="3.7488%" height="15" fill="rgb(249,192,27)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1583.50">&lt;T a..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1557" width="3.7488%" height="15" fill="rgb(208,204,44)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1567.50">&lt;she..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1541" width="3.7488%" height="15" fill="rgb(208,93,54)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1551.50">&lt;she..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (6,394,010 samples, 3.75%)</title><rect x="66.5699%" y="1525" width="3.7488%" height="15" fill="rgb(242,1,31)" fg:x="113543677" fg:w="6394010"/><text x="66.8199%" y="1535.50">&lt;she..</text></g><g><title>shed::parse::ParsedSrc::parse_src (84,690,082 samples, 49.65%)</title><rect x="24.9060%" y="1733" width="49.6532%" height="15" fill="rgb(241,83,25)" fg:x="42480434" fg:w="84690082"/><text x="25.1560%" y="1743.50">shed::parse::ParsedSrc::parse_src</text></g><g><title>&lt;shed::parse::ParseStream as core::iter::traits::iterator::Iterator&gt;::next (84,690,082 samples, 49.65%)</title><rect x="24.9060%" y="1717" width="49.6532%" height="15" fill="rgb(205,169,50)" fg:x="42480434" fg:w="84690082"/><text x="25.1560%" y="1727.50">&lt;shed::parse::ParseStream as core::iter::traits::iterator::Iterator&gt;::next</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (84,690,082 samples, 49.65%)</title><rect x="24.9060%" y="1701" width="49.6532%" height="15" fill="rgb(239,186,37)" fg:x="42480434" fg:w="84690082"/><text x="25.1560%" y="1711.50">shed::parse::ParseStream::parse_cmd_list</text></g><g><title>shed::parse::ParseStream::parse_block (84,690,082 samples, 49.65%)</title><rect x="24.9060%" y="1685" width="49.6532%" height="15" fill="rgb(205,221,10)" fg:x="42480434" fg:w="84690082"/><text x="25.1560%" y="1695.50">shed::parse::ParseStream::parse_block</text></g><g><title>shed::parse::ParseStream::parse_pipeln (20,211,184 samples, 11.85%)</title><rect x="62.7096%" y="1669" width="11.8497%" height="15" fill="rgb(218,196,15)" fg:x="106959332" fg:w="20211184"/><text x="62.9596%" y="1679.50">shed::parse::Parse..</text></g><g><title>shed::parse::ParseStream::parse_block (20,211,184 samples, 11.85%)</title><rect x="62.7096%" y="1653" width="11.8497%" height="15" fill="rgb(218,196,35)" fg:x="106959332" fg:w="20211184"/><text x="62.9596%" y="1663.50">shed::parse::Parse..</text></g><g><title>shed::parse::ParseStream::parse_cmd (20,211,184 samples, 11.85%)</title><rect x="62.7096%" y="1637" width="11.8497%" height="15" fill="rgb(233,63,24)" fg:x="106959332" fg:w="20211184"/><text x="62.9596%" y="1647.50">shed::parse::Parse..</text></g><g><title>shed::parse::ParseStream::commit (13,626,839 samples, 7.99%)</title><rect x="66.5699%" y="1621" width="7.9893%" height="15" fill="rgb(225,8,4)" fg:x="113543677" fg:w="13626839"/><text x="66.8199%" y="1631.50">shed::parse..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1605" width="4.2406%" height="15" fill="rgb(234,105,35)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1615.50">core:..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;shed::parse::lex::Tk&gt;&gt; (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1589" width="4.2406%" height="15" fill="rgb(236,21,32)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1599.50">core:..</text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1573" width="4.2406%" height="15" fill="rgb(228,109,6)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1583.50">&lt;allo..</text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1557" width="4.2406%" height="15" fill="rgb(229,215,31)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1567.50">alloc..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1541" width="4.2406%" height="15" fill="rgb(221,52,54)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1551.50">&lt;allo..</text></g><g><title>alloc::alloc::dealloc (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1525" width="4.2406%" height="15" fill="rgb(252,129,43)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1535.50">alloc..</text></g><g><title>_int_free_chunk (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1509" width="4.2406%" height="15" fill="rgb(248,183,27)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1519.50">_int_..</text></g><g><title>_int_free_maybe_consolidate.part.0 (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1493" width="4.2406%" height="15" fill="rgb(250,0,22)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1503.50">_int_..</text></g><g><title>malloc_consolidate (7,232,829 samples, 4.24%)</title><rect x="70.3187%" y="1477" width="4.2406%" height="15" fill="rgb(213,166,10)" fg:x="119937687" fg:w="7232829"/><text x="70.5687%" y="1487.50">mallo..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1493" width="3.0938%" height="15" fill="rgb(207,163,36)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1503.50">&lt;al..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1477" width="3.0938%" height="15" fill="rgb(208,122,22)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1487.50">all..</text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1461" width="3.0938%" height="15" fill="rgb(207,104,49)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1471.50">&lt;T ..</text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1445" width="3.0938%" height="15" fill="rgb(248,211,50)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1455.50">&lt;sh..</text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1429" width="3.0938%" height="15" fill="rgb(217,13,45)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1439.50">&lt;sh..</text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (5,276,871 samples, 3.09%)</title><rect x="74.5592%" y="1413" width="3.0938%" height="15" fill="rgb(211,216,49)" fg:x="127170516" fg:w="5276871"/><text x="74.8092%" y="1423.50">&lt;sh..</text></g><g><title>shed::parse::execute::Dispatcher::exec_func_def (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1669" width="6.0337%" height="15" fill="rgb(221,58,53)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1679.50">shed::pa..</text></g><g><title>shed::parse::ParsedSrc::parse_src (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1653" width="6.0337%" height="15" fill="rgb(220,112,41)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1663.50">shed::pa..</text></g><g><title>&lt;shed::parse::ParseStream as core::iter::traits::iterator::Iterator&gt;::next (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1637" width="6.0337%" height="15" fill="rgb(236,38,28)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1647.50">&lt;shed::p..</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1621" width="6.0337%" height="15" fill="rgb(227,195,22)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1631.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_block (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1605" width="6.0337%" height="15" fill="rgb(214,55,33)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1615.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_brc_grp (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1589" width="6.0337%" height="15" fill="rgb(248,80,13)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1599.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_cmd_list (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1573" width="6.0337%" height="15" fill="rgb(238,52,6)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1583.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_block (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1557" width="6.0337%" height="15" fill="rgb(224,198,47)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1567.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_pipeln (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1541" width="6.0337%" height="15" fill="rgb(233,171,20)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1551.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_block (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1525" width="6.0337%" height="15" fill="rgb(241,30,25)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1535.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::parse_cmd (10,291,238 samples, 6.03%)</title><rect x="74.5592%" y="1509" width="6.0337%" height="15" fill="rgb(207,171,38)" fg:x="127170516" fg:w="10291238"/><text x="74.8092%" y="1519.50">shed::pa..</text></g><g><title>shed::parse::ParseStream::commit (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1493" width="2.9399%" height="15" fill="rgb(234,70,1)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1503.50">sh..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1477" width="2.9399%" height="15" fill="rgb(232,178,18)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1487.50">co..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1461" width="2.9399%" height="15" fill="rgb(241,78,40)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1471.50">&lt;a..</text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1445" width="2.9399%" height="15" fill="rgb(222,35,25)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1455.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1429" width="2.9399%" height="15" fill="rgb(207,92,16)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1439.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1413" width="2.9399%" height="15" fill="rgb(216,59,51)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1423.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1397" width="2.9399%" height="15" fill="rgb(213,80,28)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1407.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::string::String&gt;&gt; (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1381" width="2.9399%" height="15" fill="rgb(220,93,7)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1391.50">co..</text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5,014,367 samples, 2.94%)</title><rect x="77.6530%" y="1365" width="2.9399%" height="15" fill="rgb(225,24,44)" fg:x="132447387" fg:w="5014367"/><text x="77.9030%" y="1375.50">&lt;a..</text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (23,335 samples, 0.01%)</title><rect x="80.5929%" y="1509" width="0.0137%" height="15" fill="rgb(243,74,40)" fg:x="137461754" fg:w="23335"/><text x="80.8429%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1477" width="0.4522%" height="15" fill="rgb(228,39,7)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1461" width="0.4522%" height="15" fill="rgb(227,79,8)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1445" width="0.4522%" height="15" fill="rgb(236,58,11)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1429" width="0.4522%" height="15" fill="rgb(249,63,35)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1439.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1413" width="0.4522%" height="15" fill="rgb(252,114,16)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1397" width="0.4522%" height="15" fill="rgb(254,151,24)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1407.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1381" width="0.4522%" height="15" fill="rgb(253,54,39)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1391.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1365" width="0.4522%" height="15" fill="rgb(243,25,45)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1375.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1349" width="0.4522%" height="15" fill="rgb(234,134,9)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1333" width="0.4522%" height="15" fill="rgb(227,166,31)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1317" width="0.4522%" height="15" fill="rgb(245,143,41)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1301" width="0.4522%" height="15" fill="rgb(238,181,32)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1285" width="0.4522%" height="15" fill="rgb(224,113,18)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1269" width="0.4522%" height="15" fill="rgb(240,229,28)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1253" width="0.4522%" height="15" fill="rgb(250,185,3)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1237" width="0.4522%" height="15" fill="rgb(212,59,25)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1221" width="0.4522%" height="15" fill="rgb(221,87,20)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1205" width="0.4522%" height="15" fill="rgb(213,74,28)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1189" width="0.4522%" height="15" fill="rgb(224,132,34)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1173" width="0.4522%" height="15" fill="rgb(222,101,24)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1157" width="0.4522%" height="15" fill="rgb(254,142,4)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1141" width="0.4522%" height="15" fill="rgb(230,229,49)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1125" width="0.4522%" height="15" fill="rgb(238,70,47)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1109" width="0.4522%" height="15" fill="rgb(231,160,17)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1093" width="0.4522%" height="15" fill="rgb(218,68,53)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CondNode&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1077" width="0.4522%" height="15" fill="rgb(236,111,10)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1061" width="0.4522%" height="15" fill="rgb(224,34,41)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1045" width="0.4522%" height="15" fill="rgb(241,118,19)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1029" width="0.4522%" height="15" fill="rgb(238,129,25)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="1013" width="0.4522%" height="15" fill="rgb(238,22,31)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="997" width="0.4522%" height="15" fill="rgb(222,174,48)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="981" width="0.4522%" height="15" fill="rgb(206,152,40)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="965" width="0.4522%" height="15" fill="rgb(218,99,54)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="949" width="0.4522%" height="15" fill="rgb(220,174,26)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="933" width="0.4522%" height="15" fill="rgb(245,116,9)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="917" width="0.4522%" height="15" fill="rgb(209,72,35)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="901" width="0.4522%" height="15" fill="rgb(226,126,21)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="885" width="0.4522%" height="15" fill="rgb(227,192,1)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::CaseNode&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="869" width="0.4522%" height="15" fill="rgb(237,180,29)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="853" width="0.4522%" height="15" fill="rgb(230,197,35)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::CaseNode]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="837" width="0.4522%" height="15" fill="rgb(246,193,31)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CaseNode&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="821" width="0.4522%" height="15" fill="rgb(241,36,4)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="805" width="0.4522%" height="15" fill="rgb(241,130,17)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="789" width="0.4522%" height="15" fill="rgb(206,137,32)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="773" width="0.4522%" height="15" fill="rgb(237,228,51)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="757" width="0.4522%" height="15" fill="rgb(243,6,42)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="741" width="0.4522%" height="15" fill="rgb(251,74,28)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="725" width="0.4522%" height="15" fill="rgb(218,20,49)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="709" width="0.4522%" height="15" fill="rgb(238,28,14)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="693" width="0.4522%" height="15" fill="rgb(229,40,46)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="677" width="0.4522%" height="15" fill="rgb(244,195,20)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="661" width="0.4522%" height="15" fill="rgb(253,56,35)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="645" width="0.4522%" height="15" fill="rgb(210,149,44)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="629" width="0.4522%" height="15" fill="rgb(240,135,12)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="613" width="0.4522%" height="15" fill="rgb(251,24,50)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="597" width="0.4522%" height="15" fill="rgb(243,200,47)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="581" width="0.4522%" height="15" fill="rgb(224,166,26)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="565" width="0.4522%" height="15" fill="rgb(233,0,47)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="549" width="0.4522%" height="15" fill="rgb(253,80,5)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="533" width="0.4522%" height="15" fill="rgb(214,133,25)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="517" width="0.4522%" height="15" fill="rgb(209,27,14)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="501" width="0.4522%" height="15" fill="rgb(219,102,51)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="485" width="0.4522%" height="15" fill="rgb(237,18,16)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="469" width="0.4522%" height="15" fill="rgb(241,85,17)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="453" width="0.4522%" height="15" fill="rgb(236,90,42)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="437" width="0.4522%" height="15" fill="rgb(249,57,21)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="421" width="0.4522%" height="15" fill="rgb(243,12,36)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="405" width="0.4522%" height="15" fill="rgb(253,128,47)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (771,234 samples, 0.45%)</title><rect x="80.6112%" y="389" width="0.4522%" height="15" fill="rgb(207,33,20)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="399.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (771,234 samples, 0.45%)</title><rect x="80.6112%" y="373" width="0.4522%" height="15" fill="rgb(233,215,35)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (771,234 samples, 0.45%)</title><rect x="80.6112%" y="357" width="0.4522%" height="15" fill="rgb(249,188,52)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="367.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (771,234 samples, 0.45%)</title><rect x="80.6112%" y="341" width="0.4522%" height="15" fill="rgb(225,12,32)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="351.50"></text></g><g><title>alloc::alloc::dealloc (771,234 samples, 0.45%)</title><rect x="80.6112%" y="325" width="0.4522%" height="15" fill="rgb(247,98,14)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="335.50"></text></g><g><title>_int_free_chunk (771,234 samples, 0.45%)</title><rect x="80.6112%" y="309" width="0.4522%" height="15" fill="rgb(247,219,48)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="319.50"></text></g><g><title>[unknown] (771,234 samples, 0.45%)</title><rect x="80.6112%" y="293" width="0.4522%" height="15" fill="rgb(253,60,48)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="303.50"></text></g><g><title>[unknown] (771,234 samples, 0.45%)</title><rect x="80.6112%" y="277" width="0.4522%" height="15" fill="rgb(245,15,52)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="287.50"></text></g><g><title>[unknown] (771,234 samples, 0.45%)</title><rect x="80.6112%" y="261" width="0.4522%" height="15" fill="rgb(220,133,28)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="271.50"></text></g><g><title>[unknown] (771,234 samples, 0.45%)</title><rect x="80.6112%" y="245" width="0.4522%" height="15" fill="rgb(217,180,4)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="255.50"></text></g><g><title>[unknown] (771,234 samples, 0.45%)</title><rect x="80.6112%" y="229" width="0.4522%" height="15" fill="rgb(251,24,1)" fg:x="137492983" fg:w="771234"/><text x="80.8612%" y="239.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd::{{closure}} (24,869 samples, 0.01%)</title><rect x="81.0638%" y="1045" width="0.0146%" height="15" fill="rgb(212,185,49)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="1055.50"></text></g><g><title>nix::unistd::execvpe (24,869 samples, 0.01%)</title><rect x="81.0638%" y="1029" width="0.0146%" height="15" fill="rgb(215,175,22)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="1039.50"></text></g><g><title>nix::unistd::to_exec_array (24,869 samples, 0.01%)</title><rect x="81.0638%" y="1013" width="0.0146%" height="15" fill="rgb(250,205,14)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="1023.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (24,869 samples, 0.01%)</title><rect x="81.0638%" y="997" width="0.0146%" height="15" fill="rgb(225,211,22)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (24,869 samples, 0.01%)</title><rect x="81.0638%" y="981" width="0.0146%" height="15" fill="rgb(251,179,42)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (24,869 samples, 0.01%)</title><rect x="81.0638%" y="965" width="0.0146%" height="15" fill="rgb(208,216,51)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (24,869 samples, 0.01%)</title><rect x="81.0638%" y="949" width="0.0146%" height="15" fill="rgb(235,36,11)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="959.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (24,869 samples, 0.01%)</title><rect x="81.0638%" y="933" width="0.0146%" height="15" fill="rgb(213,189,28)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (24,869 samples, 0.01%)</title><rect x="81.0638%" y="917" width="0.0146%" height="15" fill="rgb(227,203,42)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (24,869 samples, 0.01%)</title><rect x="81.0638%" y="901" width="0.0146%" height="15" fill="rgb(244,72,36)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (24,869 samples, 0.01%)</title><rect x="81.0638%" y="885" width="0.0146%" height="15" fill="rgb(213,53,17)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (24,869 samples, 0.01%)</title><rect x="81.0638%" y="869" width="0.0146%" height="15" fill="rgb(207,167,3)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="879.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (24,869 samples, 0.01%)</title><rect x="81.0638%" y="853" width="0.0146%" height="15" fill="rgb(216,98,30)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="863.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (24,869 samples, 0.01%)</title><rect x="81.0638%" y="837" width="0.0146%" height="15" fill="rgb(236,123,15)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="847.50"></text></g><g><title>alloc::alloc::alloc (24,869 samples, 0.01%)</title><rect x="81.0638%" y="821" width="0.0146%" height="15" fill="rgb(248,81,50)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="831.50"></text></g><g><title>malloc (24,869 samples, 0.01%)</title><rect x="81.0638%" y="805" width="0.0146%" height="15" fill="rgb(214,120,4)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="815.50"></text></g><g><title>[unknown] (24,869 samples, 0.01%)</title><rect x="81.0638%" y="789" width="0.0146%" height="15" fill="rgb(208,179,34)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="799.50"></text></g><g><title>[unknown] (24,869 samples, 0.01%)</title><rect x="81.0638%" y="773" width="0.0146%" height="15" fill="rgb(227,140,7)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="783.50"></text></g><g><title>[unknown] (24,869 samples, 0.01%)</title><rect x="81.0638%" y="757" width="0.0146%" height="15" fill="rgb(214,22,6)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="767.50"></text></g><g><title>[unknown] (24,869 samples, 0.01%)</title><rect x="81.0638%" y="741" width="0.0146%" height="15" fill="rgb(207,137,27)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="751.50"></text></g><g><title>[unknown] (24,869 samples, 0.01%)</title><rect x="81.0638%" y="725" width="0.0146%" height="15" fill="rgb(210,8,46)" fg:x="138264908" fg:w="24869"/><text x="81.3138%" y="735.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (716,632 samples, 0.42%)</title><rect x="81.0784%" y="1045" width="0.4202%" height="15" fill="rgb(240,16,54)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="1055.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (716,632 samples, 0.42%)</title><rect x="81.0784%" y="1029" width="0.4202%" height="15" fill="rgb(211,209,29)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="1039.50"></text></g><g><title>shed::expand::Expander::expand (716,632 samples, 0.42%)</title><rect x="81.0784%" y="1013" width="0.4202%" height="15" fill="rgb(226,228,24)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="1023.50"></text></g><g><title>shed::expand::expand_glob (716,632 samples, 0.42%)</title><rect x="81.0784%" y="997" width="0.4202%" height="15" fill="rgb(222,84,9)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="1007.50"></text></g><g><title>&lt;glob::Paths as core::iter::traits::iterator::Iterator&gt;::next (716,632 samples, 0.42%)</title><rect x="81.0784%" y="981" width="0.4202%" height="15" fill="rgb(234,203,30)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="991.50"></text></g><g><title>glob::fill_todo (716,632 samples, 0.42%)</title><rect x="81.0784%" y="965" width="0.4202%" height="15" fill="rgb(238,109,14)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="975.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::and_then (716,632 samples, 0.42%)</title><rect x="81.0784%" y="949" width="0.4202%" height="15" fill="rgb(233,206,34)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="959.50"></text></g><g><title>glob::fill_todo::{{closure}} (716,632 samples, 0.42%)</title><rect x="81.0784%" y="933" width="0.4202%" height="15" fill="rgb(220,167,47)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (716,632 samples, 0.42%)</title><rect x="81.0784%" y="917" width="0.4202%" height="15" fill="rgb(238,105,10)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="927.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter (716,632 samples, 0.42%)</title><rect x="81.0784%" y="901" width="0.4202%" height="15" fill="rgb(213,227,17)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="911.50"></text></g><g><title>core::iter::adapters::try_process (716,632 samples, 0.42%)</title><rect x="81.0784%" y="885" width="0.4202%" height="15" fill="rgb(217,132,38)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="895.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter::{{closure}} (716,632 samples, 0.42%)</title><rect x="81.0784%" y="869" width="0.4202%" height="15" fill="rgb(242,146,4)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (716,632 samples, 0.42%)</title><rect x="81.0784%" y="853" width="0.4202%" height="15" fill="rgb(212,61,9)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (716,632 samples, 0.42%)</title><rect x="81.0784%" y="837" width="0.4202%" height="15" fill="rgb(247,126,22)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (716,632 samples, 0.42%)</title><rect x="81.0784%" y="821" width="0.4202%" height="15" fill="rgb(220,196,2)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (716,632 samples, 0.42%)</title><rect x="81.0784%" y="805" width="0.4202%" height="15" fill="rgb(208,46,4)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::next (716,632 samples, 0.42%)</title><rect x="81.0784%" y="789" width="0.4202%" height="15" fill="rgb(252,104,46)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_for_each (716,632 samples, 0.42%)</title><rect x="81.0784%" y="773" width="0.4202%" height="15" fill="rgb(237,152,48)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (716,632 samples, 0.42%)</title><rect x="81.0784%" y="757" width="0.4202%" height="15" fill="rgb(221,59,37)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (716,632 samples, 0.42%)</title><rect x="81.0784%" y="741" width="0.4202%" height="15" fill="rgb(209,202,51)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (716,632 samples, 0.42%)</title><rect x="81.0784%" y="725" width="0.4202%" height="15" fill="rgb(228,81,30)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="735.50"></text></g><g><title>&lt;std::fs::ReadDir as core::iter::traits::iterator::Iterator&gt;::next (716,632 samples, 0.42%)</title><rect x="81.0784%" y="709" width="0.4202%" height="15" fill="rgb(227,42,39)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="719.50"></text></g><g><title>&lt;std::sys::fs::unix::ReadDir as core::iter::traits::iterator::Iterator&gt;::next (716,632 samples, 0.42%)</title><rect x="81.0784%" y="693" width="0.4202%" height="15" fill="rgb(221,26,2)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="703.50"></text></g><g><title>__GI___readdir64 (716,632 samples, 0.42%)</title><rect x="81.0784%" y="677" width="0.4202%" height="15" fill="rgb(254,61,31)" fg:x="138289777" fg:w="716632"/><text x="81.3284%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="997" width="0.9508%" height="15" fill="rgb(222,173,38)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="981" width="0.9508%" height="15" fill="rgb(218,50,12)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="965" width="0.9508%" height="15" fill="rgb(223,88,40)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="949" width="0.9508%" height="15" fill="rgb(237,54,19)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="933" width="0.9508%" height="15" fill="rgb(251,129,25)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="917" width="0.9508%" height="15" fill="rgb(238,97,19)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="901" width="0.9508%" height="15" fill="rgb(240,169,18)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="885" width="0.9508%" height="15" fill="rgb(230,187,49)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="895.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="869" width="0.9508%" height="15" fill="rgb(209,44,26)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="879.50"></text></g><g><title>shed::parse::execute::ExecArgs::get_envp::{{closure}} (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="853" width="0.9508%" height="15" fill="rgb(244,0,6)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="863.50"></text></g><g><title>alloc::fmt::format (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="837" width="0.9508%" height="15" fill="rgb(248,18,21)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::map_or_else (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="821" width="0.9508%" height="15" fill="rgb(245,180,19)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="831.50"></text></g><g><title>alloc::fmt::format::{{closure}} (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="805" width="0.9508%" height="15" fill="rgb(252,118,36)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="815.50"></text></g><g><title>alloc::fmt::format::format_inner (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="789" width="0.9508%" height="15" fill="rgb(210,224,19)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="799.50"></text></g><g><title>core::fmt::write (1,621,722 samples, 0.95%)</title><rect x="81.4986%" y="773" width="0.9508%" height="15" fill="rgb(218,30,24)" fg:x="139006409" fg:w="1621722"/><text x="81.7486%" y="783.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (807,835 samples, 0.47%)</title><rect x="81.9757%" y="757" width="0.4736%" height="15" fill="rgb(219,75,50)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="767.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (807,835 samples, 0.47%)</title><rect x="81.9757%" y="741" width="0.4736%" height="15" fill="rgb(234,72,50)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="751.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (807,835 samples, 0.47%)</title><rect x="81.9757%" y="725" width="0.4736%" height="15" fill="rgb(219,100,48)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="735.50"></text></g><g><title>realloc (807,835 samples, 0.47%)</title><rect x="81.9757%" y="709" width="0.4736%" height="15" fill="rgb(253,5,41)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="719.50"></text></g><g><title>_int_realloc (807,835 samples, 0.47%)</title><rect x="81.9757%" y="693" width="0.4736%" height="15" fill="rgb(247,181,11)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="703.50"></text></g><g><title>_int_malloc (807,835 samples, 0.47%)</title><rect x="81.9757%" y="677" width="0.4736%" height="15" fill="rgb(222,223,25)" fg:x="139820296" fg:w="807835"/><text x="82.2257%" y="687.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_if (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1189" width="1.8315%" height="15" fill="rgb(214,198,28)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1199.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_if::{{closure}} (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1173" width="1.8315%" height="15" fill="rgb(230,46,43)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1183.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1157" width="1.8315%" height="15" fill="rgb(233,65,53)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1167.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1141" width="1.8315%" height="15" fill="rgb(221,121,27)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1151.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1125" width="1.8315%" height="15" fill="rgb(247,70,47)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1135.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1109" width="1.8315%" height="15" fill="rgb(228,85,35)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1119.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1093" width="1.8315%" height="15" fill="rgb(209,50,18)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1103.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1077" width="1.8315%" height="15" fill="rgb(250,19,35)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1087.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (3,123,897 samples, 1.83%)</title><rect x="81.0634%" y="1061" width="1.8315%" height="15" fill="rgb(253,107,29)" fg:x="138264217" fg:w="3123897"/><text x="81.3134%" y="1071.50">s..</text></g><g><title>shed::parse::execute::ExecArgs::new (2,381,705 samples, 1.40%)</title><rect x="81.4986%" y="1045" width="1.3964%" height="15" fill="rgb(252,179,29)" fg:x="139006409" fg:w="2381705"/><text x="81.7486%" y="1055.50"></text></g><g><title>shed::parse::execute::ExecArgs::from_expanded (2,381,705 samples, 1.40%)</title><rect x="81.4986%" y="1029" width="1.3964%" height="15" fill="rgb(238,194,6)" fg:x="139006409" fg:w="2381705"/><text x="81.7486%" y="1039.50"></text></g><g><title>shed::parse::execute::ExecArgs::get_envp (2,381,705 samples, 1.40%)</title><rect x="81.4986%" y="1013" width="1.3964%" height="15" fill="rgb(238,164,29)" fg:x="139006409" fg:w="2381705"/><text x="81.7486%" y="1023.50"></text></g><g><title>std::env::vars_os (759,983 samples, 0.45%)</title><rect x="82.4494%" y="997" width="0.4456%" height="15" fill="rgb(224,25,9)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="1007.50"></text></g><g><title>std::sys::env::unix::env (759,983 samples, 0.45%)</title><rect x="82.4494%" y="981" width="0.4456%" height="15" fill="rgb(244,153,23)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="991.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (759,983 samples, 0.45%)</title><rect x="82.4494%" y="965" width="0.4456%" height="15" fill="rgb(212,203,14)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (759,983 samples, 0.45%)</title><rect x="82.4494%" y="949" width="0.4456%" height="15" fill="rgb(220,164,20)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="959.50"></text></g><g><title>realloc (759,983 samples, 0.45%)</title><rect x="82.4494%" y="933" width="0.4456%" height="15" fill="rgb(222,203,48)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="943.50"></text></g><g><title>_int_realloc (759,983 samples, 0.45%)</title><rect x="82.4494%" y="917" width="0.4456%" height="15" fill="rgb(215,159,22)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="927.50"></text></g><g><title>_int_malloc (759,983 samples, 0.45%)</title><rect x="82.4494%" y="901" width="0.4456%" height="15" fill="rgb(216,183,47)" fg:x="140628131" fg:w="759983"/><text x="82.6994%" y="911.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_if (3,153,654 samples, 1.85%)</title><rect x="81.0634%" y="1269" width="1.8490%" height="15" fill="rgb(229,195,25)" fg:x="138264217" fg:w="3153654"/><text x="81.3134%" y="1279.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_if::{{closure}} (3,153,654 samples, 1.85%)</title><rect x="81.0634%" y="1253" width="1.8490%" height="15" fill="rgb(224,132,51)" fg:x="138264217" fg:w="3153654"/><text x="81.3134%" y="1263.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (3,153,654 samples, 1.85%)</title><rect x="81.0634%" y="1237" width="1.8490%" height="15" fill="rgb(240,63,7)" fg:x="138264217" fg:w="3153654"/><text x="81.3134%" y="1247.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (3,153,654 samples, 1.85%)</title><rect x="81.0634%" y="1221" width="1.8490%" height="15" fill="rgb(249,182,41)" fg:x="138264217" fg:w="3153654"/><text x="81.3134%" y="1231.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (3,153,654 samples, 1.85%)</title><rect x="81.0634%" y="1205" width="1.8490%" height="15" fill="rgb(243,47,26)" fg:x="138264217" fg:w="3153654"/><text x="81.3134%" y="1215.50">s..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (29,757 samples, 0.02%)</title><rect x="82.8949%" y="1189" width="0.0174%" height="15" fill="rgb(233,48,2)" fg:x="141388114" fg:w="29757"/><text x="83.1449%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (29,757 samples, 0.02%)</title><rect x="82.8949%" y="1173" width="0.0174%" height="15" fill="rgb(244,165,34)" fg:x="141388114" fg:w="29757"/><text x="83.1449%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (29,757 samples, 0.02%)</title><rect x="82.8949%" y="1157" width="0.0174%" height="15" fill="rgb(207,89,7)" fg:x="141388114" fg:w="29757"/><text x="83.1449%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (29,757 samples, 0.02%)</title><rect x="82.8949%" y="1141" width="0.0174%" height="15" fill="rgb(244,117,36)" fg:x="141388114" fg:w="29757"/><text x="83.1449%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd::{{closure}} (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1125" width="0.0140%" height="15" fill="rgb(226,144,34)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1135.50"></text></g><g><title>nix::unistd::execvpe (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1109" width="0.0140%" height="15" fill="rgb(213,23,19)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1119.50"></text></g><g><title>nix::unistd::to_exec_array (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1093" width="0.0140%" height="15" fill="rgb(217,75,12)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1077" width="0.0140%" height="15" fill="rgb(224,159,17)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1061" width="0.0140%" height="15" fill="rgb(217,118,1)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1045" width="0.0140%" height="15" fill="rgb(232,180,48)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1055.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1029" width="0.0140%" height="15" fill="rgb(230,27,33)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (23,859 samples, 0.01%)</title><rect x="82.8984%" y="1013" width="0.0140%" height="15" fill="rgb(205,31,21)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1023.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (23,859 samples, 0.01%)</title><rect x="82.8984%" y="997" width="0.0140%" height="15" fill="rgb(253,59,4)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="1007.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (23,859 samples, 0.01%)</title><rect x="82.8984%" y="981" width="0.0140%" height="15" fill="rgb(224,201,9)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="991.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (23,859 samples, 0.01%)</title><rect x="82.8984%" y="965" width="0.0140%" height="15" fill="rgb(229,206,30)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (23,859 samples, 0.01%)</title><rect x="82.8984%" y="949" width="0.0140%" height="15" fill="rgb(212,67,47)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="959.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (23,859 samples, 0.01%)</title><rect x="82.8984%" y="933" width="0.0140%" height="15" fill="rgb(211,96,50)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="943.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (23,859 samples, 0.01%)</title><rect x="82.8984%" y="917" width="0.0140%" height="15" fill="rgb(252,114,18)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="927.50"></text></g><g><title>alloc::alloc::alloc (23,859 samples, 0.01%)</title><rect x="82.8984%" y="901" width="0.0140%" height="15" fill="rgb(223,58,37)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="911.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (23,859 samples, 0.01%)</title><rect x="82.8984%" y="885" width="0.0140%" height="15" fill="rgb(237,70,4)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="895.50"></text></g><g><title>[unknown] (23,859 samples, 0.01%)</title><rect x="82.8984%" y="869" width="0.0140%" height="15" fill="rgb(244,85,46)" fg:x="141394012" fg:w="23859"/><text x="83.1484%" y="879.50"></text></g><g><title>shed::expand::glob_to_regex (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1157" width="0.4011%" height="15" fill="rgb(223,39,52)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1167.50"></text></g><g><title>regex::regex::string::Regex::new (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1141" width="0.4011%" height="15" fill="rgb(218,200,14)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1151.50"></text></g><g><title>regex::builders::string::RegexBuilder::build (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1125" width="0.4011%" height="15" fill="rgb(208,171,16)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1135.50"></text></g><g><title>regex::builders::Builder::build_one_string (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1109" width="0.4011%" height="15" fill="rgb(234,200,18)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1119.50"></text></g><g><title>regex_automata::meta::regex::Builder::build (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1093" width="0.4011%" height="15" fill="rgb(228,45,11)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1103.50"></text></g><g><title>regex_automata::meta::regex::Builder::build_many (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1077" width="0.4011%" height="15" fill="rgb(237,182,11)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1087.50"></text></g><g><title>regex_syntax::ast::parse::Parser::parse (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1061" width="0.4011%" height="15" fill="rgb(241,175,49)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1071.50"></text></g><g><title>regex_syntax::ast::parse::ParserI&lt;P&gt;::parse (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1045" width="0.4011%" height="15" fill="rgb(247,38,35)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1055.50"></text></g><g><title>regex_syntax::ast::parse::ParserI&lt;P&gt;::parse_with_comments (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1029" width="0.4011%" height="15" fill="rgb(228,39,49)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1039.50"></text></g><g><title>regex_syntax::ast::parse::NestLimiter&lt;P&gt;::check (684,093 samples, 0.40%)</title><rect x="82.9124%" y="1013" width="0.4011%" height="15" fill="rgb(226,101,26)" fg:x="141417871" fg:w="684093"/><text x="83.1624%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="997" width="0.0143%" height="15" fill="rgb(206,141,19)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="981" width="0.0143%" height="15" fill="rgb(211,200,13)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="965" width="0.0143%" height="15" fill="rgb(241,121,6)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="975.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (24,472 samples, 0.01%)</title><rect x="83.3135%" y="949" width="0.0143%" height="15" fill="rgb(234,221,29)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (24,472 samples, 0.01%)</title><rect x="83.3135%" y="933" width="0.0143%" height="15" fill="rgb(229,136,5)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="943.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (24,472 samples, 0.01%)</title><rect x="83.3135%" y="917" width="0.0143%" height="15" fill="rgb(238,36,11)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="927.50"></text></g><g><title>alloc::alloc::dealloc (24,472 samples, 0.01%)</title><rect x="83.3135%" y="901" width="0.0143%" height="15" fill="rgb(251,55,41)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="911.50"></text></g><g><title>shed::expand::expand_raw (24,472 samples, 0.01%)</title><rect x="83.3135%" y="885" width="0.0143%" height="15" fill="rgb(242,34,40)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="869" width="0.0143%" height="15" fill="rgb(215,42,17)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="853" width="0.0143%" height="15" fill="rgb(207,44,46)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (24,472 samples, 0.01%)</title><rect x="83.3135%" y="837" width="0.0143%" height="15" fill="rgb(211,206,28)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="847.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (24,472 samples, 0.01%)</title><rect x="83.3135%" y="821" width="0.0143%" height="15" fill="rgb(237,167,16)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (24,472 samples, 0.01%)</title><rect x="83.3135%" y="805" width="0.0143%" height="15" fill="rgb(233,66,6)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (24,472 samples, 0.01%)</title><rect x="83.3135%" y="789" width="0.0143%" height="15" fill="rgb(246,123,29)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="799.50"></text></g><g><title>alloc::alloc::dealloc (24,472 samples, 0.01%)</title><rect x="83.3135%" y="773" width="0.0143%" height="15" fill="rgb(209,62,40)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="783.50"></text></g><g><title>__memmove_avx512_unaligned_erms (24,472 samples, 0.01%)</title><rect x="83.3135%" y="757" width="0.0143%" height="15" fill="rgb(218,4,25)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="767.50"></text></g><g><title>[unknown] (24,472 samples, 0.01%)</title><rect x="83.3135%" y="741" width="0.0143%" height="15" fill="rgb(253,91,49)" fg:x="142101964" fg:w="24472"/><text x="83.5635%" y="751.50"></text></g><g><title>shed::expand::expand_glob (27,135 samples, 0.02%)</title><rect x="83.3278%" y="997" width="0.0159%" height="15" fill="rgb(228,155,29)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="1007.50"></text></g><g><title>glob::glob_with (27,135 samples, 0.02%)</title><rect x="83.3278%" y="981" width="0.0159%" height="15" fill="rgb(243,57,37)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="991.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (27,135 samples, 0.02%)</title><rect x="83.3278%" y="965" width="0.0159%" height="15" fill="rgb(244,167,17)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (27,135 samples, 0.02%)</title><rect x="83.3278%" y="949" width="0.0159%" height="15" fill="rgb(207,181,38)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="959.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek::{{closure}} (27,135 samples, 0.02%)</title><rect x="83.3278%" y="933" width="0.0159%" height="15" fill="rgb(211,8,23)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="943.50"></text></g><g><title>&lt;std::path::Components as core::iter::traits::iterator::Iterator&gt;::next (27,135 samples, 0.02%)</title><rect x="83.3278%" y="917" width="0.0159%" height="15" fill="rgb(235,11,44)" fg:x="142126436" fg:w="27135"/><text x="83.5778%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="933" width="0.1752%" height="15" fill="rgb(248,18,52)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="917" width="0.1752%" height="15" fill="rgb(208,4,7)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="901" width="0.1752%" height="15" fill="rgb(240,17,39)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="885" width="0.1752%" height="15" fill="rgb(207,170,3)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="895.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (298,754 samples, 0.18%)</title><rect x="83.3478%" y="869" width="0.1752%" height="15" fill="rgb(236,100,52)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="879.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (298,754 samples, 0.18%)</title><rect x="83.3478%" y="853" width="0.1752%" height="15" fill="rgb(246,78,51)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="863.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (298,754 samples, 0.18%)</title><rect x="83.3478%" y="837" width="0.1752%" height="15" fill="rgb(211,17,15)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="847.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (298,754 samples, 0.18%)</title><rect x="83.3478%" y="821" width="0.1752%" height="15" fill="rgb(209,59,46)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="831.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (298,754 samples, 0.18%)</title><rect x="83.3478%" y="805" width="0.1752%" height="15" fill="rgb(210,92,25)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="789" width="0.1752%" height="15" fill="rgb(238,174,52)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="773" width="0.1752%" height="15" fill="rgb(230,73,7)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="757" width="0.1752%" height="15" fill="rgb(243,124,40)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="741" width="0.1752%" height="15" fill="rgb(244,170,11)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (298,754 samples, 0.18%)</title><rect x="83.3478%" y="725" width="0.1752%" height="15" fill="rgb(207,114,54)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="709" width="0.1752%" height="15" fill="rgb(205,42,20)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="693" width="0.1752%" height="15" fill="rgb(230,30,28)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="677" width="0.1752%" height="15" fill="rgb(205,73,54)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="661" width="0.1752%" height="15" fill="rgb(254,227,23)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::string::String&gt;&gt; (298,754 samples, 0.18%)</title><rect x="83.3478%" y="645" width="0.1752%" height="15" fill="rgb(228,202,34)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="655.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (298,754 samples, 0.18%)</title><rect x="83.3478%" y="629" width="0.1752%" height="15" fill="rgb(222,225,37)" fg:x="142160527" fg:w="298754"/><text x="83.5978%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="469" width="0.1024%" height="15" fill="rgb(221,14,54)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="479.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (174,649 samples, 0.10%)</title><rect x="83.5229%" y="453" width="0.1024%" height="15" fill="rgb(254,102,2)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="463.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (174,649 samples, 0.10%)</title><rect x="83.5229%" y="437" width="0.1024%" height="15" fill="rgb(232,104,17)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="447.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="421" width="0.1024%" height="15" fill="rgb(250,220,14)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="405" width="0.1024%" height="15" fill="rgb(241,158,9)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="415.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (174,649 samples, 0.10%)</title><rect x="83.5229%" y="389" width="0.1024%" height="15" fill="rgb(246,9,43)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="399.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (174,649 samples, 0.10%)</title><rect x="83.5229%" y="373" width="0.1024%" height="15" fill="rgb(206,73,33)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="383.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="357" width="0.1024%" height="15" fill="rgb(222,79,8)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="341" width="0.1024%" height="15" fill="rgb(234,8,54)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="351.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (174,649 samples, 0.10%)</title><rect x="83.5229%" y="325" width="0.1024%" height="15" fill="rgb(209,134,38)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="335.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (174,649 samples, 0.10%)</title><rect x="83.5229%" y="309" width="0.1024%" height="15" fill="rgb(230,127,29)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="319.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="293" width="0.1024%" height="15" fill="rgb(242,44,41)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="303.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="277" width="0.1024%" height="15" fill="rgb(222,56,43)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="287.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (174,649 samples, 0.10%)</title><rect x="83.5229%" y="261" width="0.1024%" height="15" fill="rgb(238,39,47)" fg:x="142459281" fg:w="174649"/><text x="83.7729%" y="271.50"></text></g><g><title>shed::parse::execute::exec_input (474,179 samples, 0.28%)</title><rect x="83.3478%" y="949" width="0.2780%" height="15" fill="rgb(226,79,43)" fg:x="142160527" fg:w="474179"/><text x="83.5978%" y="959.50"></text></g><g><title>shed::state::read_logic (175,425 samples, 0.10%)</title><rect x="83.5229%" y="933" width="0.1029%" height="15" fill="rgb(242,105,53)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="943.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (175,425 samples, 0.10%)</title><rect x="83.5229%" y="917" width="0.1029%" height="15" fill="rgb(251,132,46)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="927.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (175,425 samples, 0.10%)</title><rect x="83.5229%" y="901" width="0.1029%" height="15" fill="rgb(231,77,14)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="911.50"></text></g><g><title>shed::state::read_logic::{{closure}} (175,425 samples, 0.10%)</title><rect x="83.5229%" y="885" width="0.1029%" height="15" fill="rgb(240,135,9)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="895.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (175,425 samples, 0.10%)</title><rect x="83.5229%" y="869" width="0.1029%" height="15" fill="rgb(248,109,14)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="879.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="853" width="0.1029%" height="15" fill="rgb(227,146,52)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="837" width="0.1029%" height="15" fill="rgb(232,54,3)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="847.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="821" width="0.1029%" height="15" fill="rgb(229,201,43)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="831.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="805" width="0.1029%" height="15" fill="rgb(252,161,33)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="815.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (175,425 samples, 0.10%)</title><rect x="83.5229%" y="789" width="0.1029%" height="15" fill="rgb(226,146,40)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="799.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (175,425 samples, 0.10%)</title><rect x="83.5229%" y="773" width="0.1029%" height="15" fill="rgb(219,47,25)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="783.50"></text></g><g><title>core::clone::Clone::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="757" width="0.1029%" height="15" fill="rgb(250,135,13)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="767.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="741" width="0.1029%" height="15" fill="rgb(219,229,18)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="751.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="725" width="0.1029%" height="15" fill="rgb(217,152,27)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="735.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="709" width="0.1029%" height="15" fill="rgb(225,71,47)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="693" width="0.1029%" height="15" fill="rgb(220,139,14)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="703.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (175,425 samples, 0.10%)</title><rect x="83.5229%" y="677" width="0.1029%" height="15" fill="rgb(247,54,32)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="687.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (175,425 samples, 0.10%)</title><rect x="83.5229%" y="661" width="0.1029%" height="15" fill="rgb(252,131,39)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="671.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="645" width="0.1029%" height="15" fill="rgb(210,108,39)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="655.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="629" width="0.1029%" height="15" fill="rgb(205,23,29)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="613" width="0.1029%" height="15" fill="rgb(246,139,46)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="623.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (175,425 samples, 0.10%)</title><rect x="83.5229%" y="597" width="0.1029%" height="15" fill="rgb(250,81,26)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (175,425 samples, 0.10%)</title><rect x="83.5229%" y="581" width="0.1029%" height="15" fill="rgb(214,104,7)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="591.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="565" width="0.1029%" height="15" fill="rgb(233,189,8)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="575.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="549" width="0.1029%" height="15" fill="rgb(228,141,17)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="559.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (175,425 samples, 0.10%)</title><rect x="83.5229%" y="533" width="0.1029%" height="15" fill="rgb(247,157,1)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="543.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (175,425 samples, 0.10%)</title><rect x="83.5229%" y="517" width="0.1029%" height="15" fill="rgb(249,225,5)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="527.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="501" width="0.1029%" height="15" fill="rgb(242,55,13)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="511.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (175,425 samples, 0.10%)</title><rect x="83.5229%" y="485" width="0.1029%" height="15" fill="rgb(230,49,50)" fg:x="142459281" fg:w="175425"/><text x="83.7729%" y="495.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case (1,218,542 samples, 0.71%)</title><rect x="82.9124%" y="1189" width="0.7144%" height="15" fill="rgb(241,111,38)" fg:x="141417871" fg:w="1218542"/><text x="83.1624%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case::{{closure}} (1,218,542 samples, 0.71%)</title><rect x="82.9124%" y="1173" width="0.7144%" height="15" fill="rgb(252,155,4)" fg:x="141417871" fg:w="1218542"/><text x="83.1624%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1157" width="0.3133%" height="15" fill="rgb(212,69,32)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1141" width="0.3133%" height="15" fill="rgb(243,107,47)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1125" width="0.3133%" height="15" fill="rgb(247,130,12)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1109" width="0.3133%" height="15" fill="rgb(233,74,16)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1119.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1093" width="0.3133%" height="15" fill="rgb(208,58,18)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1077" width="0.3133%" height="15" fill="rgb(242,225,1)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1061" width="0.3133%" height="15" fill="rgb(249,39,40)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1045" width="0.3133%" height="15" fill="rgb(207,72,44)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1055.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1029" width="0.3133%" height="15" fill="rgb(215,193,12)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1039.50"></text></g><g><title>shed::expand::Expander::expand (534,449 samples, 0.31%)</title><rect x="83.3135%" y="1013" width="0.3133%" height="15" fill="rgb(248,41,39)" fg:x="142101964" fg:w="534449"/><text x="83.5635%" y="1023.50"></text></g><g><title>shed::expand::expand_raw (482,842 samples, 0.28%)</title><rect x="83.3437%" y="997" width="0.2831%" height="15" fill="rgb(253,85,4)" fg:x="142153571" fg:w="482842"/><text x="83.5937%" y="1007.50"></text></g><g><title>shed::expand::expand_var (482,842 samples, 0.28%)</title><rect x="83.3437%" y="981" width="0.2831%" height="15" fill="rgb(243,70,31)" fg:x="142153571" fg:w="482842"/><text x="83.5937%" y="991.50"></text></g><g><title>shed::expand::expand_cmd_sub (482,842 samples, 0.28%)</title><rect x="83.3437%" y="965" width="0.2831%" height="15" fill="rgb(253,195,26)" fg:x="142153571" fg:w="482842"/><text x="83.5937%" y="975.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop::{{closure}} (1,942,127 samples, 1.14%)</title><rect x="82.9124%" y="1253" width="1.1387%" height="15" fill="rgb(243,42,11)" fg:x="141417871" fg:w="1942127"/><text x="83.1624%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,942,127 samples, 1.14%)</title><rect x="82.9124%" y="1237" width="1.1387%" height="15" fill="rgb(239,66,17)" fg:x="141417871" fg:w="1942127"/><text x="83.1624%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,942,127 samples, 1.14%)</title><rect x="82.9124%" y="1221" width="1.1387%" height="15" fill="rgb(217,132,21)" fg:x="141417871" fg:w="1942127"/><text x="83.1624%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,942,127 samples, 1.14%)</title><rect x="82.9124%" y="1205" width="1.1387%" height="15" fill="rgb(252,202,21)" fg:x="141417871" fg:w="1942127"/><text x="83.1624%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1189" width="0.4172%" height="15" fill="rgb(233,98,36)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1173" width="0.4172%" height="15" fill="rgb(216,153,54)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1157" width="0.4172%" height="15" fill="rgb(250,99,7)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1141" width="0.4172%" height="15" fill="rgb(207,56,50)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1125" width="0.4172%" height="15" fill="rgb(244,61,34)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1135.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1109" width="0.4172%" height="15" fill="rgb(241,50,38)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1119.50"></text></g><g><title>shed::expand::Expander::expand (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1093" width="0.4172%" height="15" fill="rgb(212,166,30)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1103.50"></text></g><g><title>shed::expand::expand_raw (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1077" width="0.4172%" height="15" fill="rgb(249,127,32)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1087.50"></text></g><g><title>shed::expand::expand_var (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1061" width="0.4172%" height="15" fill="rgb(209,103,0)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1071.50"></text></g><g><title>shed::expand::expand_cmd_sub (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1045" width="0.4172%" height="15" fill="rgb(238,209,51)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1055.50"></text></g><g><title>shed::expand::expand_arithmetic (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1029" width="0.4172%" height="15" fill="rgb(237,56,23)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1039.50"></text></g><g><title>shed::expand::ArithTk::tokenize (711,519 samples, 0.42%)</title><rect x="83.6339%" y="1013" width="0.4172%" height="15" fill="rgb(215,153,46)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1023.50"></text></g><g><title>core::str::&lt;impl str&gt;::parse (711,519 samples, 0.42%)</title><rect x="83.6339%" y="997" width="0.4172%" height="15" fill="rgb(224,49,31)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="1007.50"></text></g><g><title>core::num::dec2flt::&lt;impl core::str::traits::FromStr for f64&gt;::from_str (711,519 samples, 0.42%)</title><rect x="83.6339%" y="981" width="0.4172%" height="15" fill="rgb(250,18,42)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="991.50"></text></g><g><title>core::num::dec2flt::parse::parse_number (711,519 samples, 0.42%)</title><rect x="83.6339%" y="965" width="0.4172%" height="15" fill="rgb(215,176,39)" fg:x="142648479" fg:w="711519"/><text x="83.8839%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="933" width="0.6725%" height="15" fill="rgb(223,77,29)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="943.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="917" width="0.6725%" height="15" fill="rgb(234,94,52)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="927.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="901" width="0.6725%" height="15" fill="rgb(220,154,50)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="911.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="885" width="0.6725%" height="15" fill="rgb(212,11,10)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="895.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="869" width="0.6725%" height="15" fill="rgb(205,166,19)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="879.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="853" width="0.6725%" height="15" fill="rgb(244,198,16)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="863.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="837" width="0.6725%" height="15" fill="rgb(219,69,12)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="847.50"></text></g><g><title>__libc_malloc2 (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="821" width="0.6725%" height="15" fill="rgb(245,30,7)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="831.50"></text></g><g><title>_int_malloc (1,146,997 samples, 0.67%)</title><rect x="84.0542%" y="805" width="0.6725%" height="15" fill="rgb(218,221,48)" fg:x="143365401" fg:w="1146997"/><text x="84.3042%" y="815.50"></text></g><g><title>shed::parse::execute::exec_input (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1173" width="0.7302%" height="15" fill="rgb(216,66,15)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1183.50"></text></g><g><title>shed::state::read_logic (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1157" width="0.7302%" height="15" fill="rgb(226,122,50)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1167.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1141" width="0.7302%" height="15" fill="rgb(239,156,16)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1151.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1125" width="0.7302%" height="15" fill="rgb(224,27,38)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1135.50"></text></g><g><title>shed::state::read_logic::{{closure}} (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1109" width="0.7302%" height="15" fill="rgb(224,39,27)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1119.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1093" width="0.7302%" height="15" fill="rgb(215,92,29)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1103.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1077" width="0.7302%" height="15" fill="rgb(207,159,16)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1061" width="0.7302%" height="15" fill="rgb(238,163,47)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1071.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1045" width="0.7302%" height="15" fill="rgb(219,91,49)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1055.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1029" width="0.7302%" height="15" fill="rgb(227,167,31)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1039.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="1013" width="0.7302%" height="15" fill="rgb(234,80,54)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1023.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="997" width="0.7302%" height="15" fill="rgb(212,114,2)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="1007.50"></text></g><g><title>core::clone::Clone::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="981" width="0.7302%" height="15" fill="rgb(234,50,24)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="991.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="965" width="0.7302%" height="15" fill="rgb(221,68,8)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="975.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,245,406 samples, 0.73%)</title><rect x="84.0542%" y="949" width="0.7302%" height="15" fill="rgb(254,180,31)" fg:x="143365401" fg:w="1245406"/><text x="84.3042%" y="959.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="933" width="0.0577%" height="15" fill="rgb(247,130,50)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="917" width="0.0577%" height="15" fill="rgb(211,109,4)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="927.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (98,409 samples, 0.06%)</title><rect x="84.7267%" y="901" width="0.0577%" height="15" fill="rgb(238,50,21)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="911.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (98,409 samples, 0.06%)</title><rect x="84.7267%" y="885" width="0.0577%" height="15" fill="rgb(225,57,45)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="895.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="869" width="0.0577%" height="15" fill="rgb(209,196,50)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="879.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="853" width="0.0577%" height="15" fill="rgb(242,140,13)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="837" width="0.0577%" height="15" fill="rgb(217,111,7)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="847.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (98,409 samples, 0.06%)</title><rect x="84.7267%" y="821" width="0.0577%" height="15" fill="rgb(253,193,51)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (98,409 samples, 0.06%)</title><rect x="84.7267%" y="805" width="0.0577%" height="15" fill="rgb(252,70,29)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="815.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="789" width="0.0577%" height="15" fill="rgb(232,127,12)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="799.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="773" width="0.0577%" height="15" fill="rgb(211,180,21)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="783.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (98,409 samples, 0.06%)</title><rect x="84.7267%" y="757" width="0.0577%" height="15" fill="rgb(229,72,13)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="767.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (98,409 samples, 0.06%)</title><rect x="84.7267%" y="741" width="0.0577%" height="15" fill="rgb(240,211,49)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="751.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="725" width="0.0577%" height="15" fill="rgb(219,149,40)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="735.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="709" width="0.0577%" height="15" fill="rgb(210,127,46)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="693" width="0.0577%" height="15" fill="rgb(220,106,7)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="703.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (98,409 samples, 0.06%)</title><rect x="84.7267%" y="677" width="0.0577%" height="15" fill="rgb(249,31,22)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="687.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (98,409 samples, 0.06%)</title><rect x="84.7267%" y="661" width="0.0577%" height="15" fill="rgb(253,1,49)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="671.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="645" width="0.0577%" height="15" fill="rgb(227,144,33)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="655.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="629" width="0.0577%" height="15" fill="rgb(249,163,44)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="639.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,409 samples, 0.06%)</title><rect x="84.7267%" y="613" width="0.0577%" height="15" fill="rgb(234,15,39)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="623.50"></text></g><g><title>alloc::collections::vec_deque::VecDeque&lt;T,A&gt;::len (98,409 samples, 0.06%)</title><rect x="84.7267%" y="597" width="0.0577%" height="15" fill="rgb(207,66,16)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="607.50"></text></g><g><title>[unknown] (98,409 samples, 0.06%)</title><rect x="84.7267%" y="581" width="0.0577%" height="15" fill="rgb(233,112,24)" fg:x="144512398" fg:w="98409"/><text x="84.9767%" y="591.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop (3,643,346 samples, 2.14%)</title><rect x="82.9124%" y="1269" width="2.1361%" height="15" fill="rgb(230,90,22)" fg:x="141417871" fg:w="3643346"/><text x="83.1624%" y="1279.50">s..</text></g><g><title>shed::procio::IoFrame::redirect (1,701,219 samples, 1.00%)</title><rect x="84.0510%" y="1253" width="0.9974%" height="15" fill="rgb(229,61,13)" fg:x="143359998" fg:w="1701219"/><text x="84.3010%" y="1263.50"></text></g><g><title>shed::procio::IoMode::open_file (1,701,219 samples, 1.00%)</title><rect x="84.0510%" y="1237" width="0.9974%" height="15" fill="rgb(225,57,24)" fg:x="143359998" fg:w="1701219"/><text x="84.3010%" y="1247.50"></text></g><g><title>shed::expand::Expander::expand (1,701,219 samples, 1.00%)</title><rect x="84.0510%" y="1221" width="0.9974%" height="15" fill="rgb(208,169,48)" fg:x="143359998" fg:w="1701219"/><text x="84.3010%" y="1231.50"></text></g><g><title>shed::expand::expand_raw (1,701,219 samples, 1.00%)</title><rect x="84.0510%" y="1205" width="0.9974%" height="15" fill="rgb(244,218,51)" fg:x="143359998" fg:w="1701219"/><text x="84.3010%" y="1215.50"></text></g><g><title>shed::expand::expand_proc_sub (1,701,219 samples, 1.00%)</title><rect x="84.0510%" y="1189" width="0.9974%" height="15" fill="rgb(214,148,10)" fg:x="143359998" fg:w="1701219"/><text x="84.3010%" y="1199.50"></text></g><g><title>std::process::exit (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1173" width="0.2641%" height="15" fill="rgb(225,174,27)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1183.50"></text></g><g><title>std::sys::pal::unix::os::exit (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1157" width="0.2641%" height="15" fill="rgb(230,96,26)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1167.50"></text></g><g><title>exit (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1141" width="0.2641%" height="15" fill="rgb(232,10,30)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1151.50"></text></g><g><title>__run_exit_handlers (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1125" width="0.2641%" height="15" fill="rgb(222,8,50)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1135.50"></text></g><g><title>__call_tls_dtors (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1109" width="0.2641%" height="15" fill="rgb(213,81,27)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1119.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1093" width="0.2641%" height="15" fill="rgb(245,50,10)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1103.50"></text></g><g><title>std::sys::thread_local::abort_on_dtor_unwind (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1077" width="0.2641%" height="15" fill="rgb(216,100,18)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1087.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy::{{closure}} (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1061" width="0.2641%" height="15" fill="rgb(236,147,54)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1071.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_drop (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1045" width="0.2641%" height="15" fill="rgb(205,143,26)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::Shed&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1029" width="0.2641%" height="15" fill="rgb(236,26,9)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::LogTab&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="1013" width="0.2641%" height="15" fill="rgb(221,165,53)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::LogTab&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="997" width="0.2641%" height="15" fill="rgb(214,110,17)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="981" width="0.2641%" height="15" fill="rgb(237,197,12)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="965" width="0.2641%" height="15" fill="rgb(205,84,17)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="949" width="0.2641%" height="15" fill="rgb(237,18,45)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="933" width="0.2641%" height="15" fill="rgb(221,87,14)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="943.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (450,410 samples, 0.26%)</title><rect x="84.7844%" y="917" width="0.2641%" height="15" fill="rgb(238,186,15)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="927.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (450,410 samples, 0.26%)</title><rect x="84.7844%" y="901" width="0.2641%" height="15" fill="rgb(208,115,11)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="911.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (450,410 samples, 0.26%)</title><rect x="84.7844%" y="885" width="0.2641%" height="15" fill="rgb(254,175,0)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="895.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (450,410 samples, 0.26%)</title><rect x="84.7844%" y="869" width="0.2641%" height="15" fill="rgb(227,24,42)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="879.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (450,410 samples, 0.26%)</title><rect x="84.7844%" y="853" width="0.2641%" height="15" fill="rgb(223,211,37)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="837" width="0.2641%" height="15" fill="rgb(235,49,27)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="821" width="0.2641%" height="15" fill="rgb(254,97,51)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="805" width="0.2641%" height="15" fill="rgb(249,51,40)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="789" width="0.2641%" height="15" fill="rgb(210,128,45)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="773" width="0.2641%" height="15" fill="rgb(224,137,50)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (450,410 samples, 0.26%)</title><rect x="84.7844%" y="757" width="0.2641%" height="15" fill="rgb(242,15,9)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="741" width="0.2641%" height="15" fill="rgb(233,187,41)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="725" width="0.2641%" height="15" fill="rgb(227,2,29)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="709" width="0.2641%" height="15" fill="rgb(222,70,3)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="693" width="0.2641%" height="15" fill="rgb(213,11,42)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (450,410 samples, 0.26%)</title><rect x="84.7844%" y="677" width="0.2641%" height="15" fill="rgb(225,150,9)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="661" width="0.2641%" height="15" fill="rgb(230,162,45)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="645" width="0.2641%" height="15" fill="rgb(222,14,52)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="629" width="0.2641%" height="15" fill="rgb(254,198,14)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (450,410 samples, 0.26%)</title><rect x="84.7844%" y="613" width="0.2641%" height="15" fill="rgb(220,217,30)" fg:x="144610807" fg:w="450410"/><text x="85.0344%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (449,895 samples, 0.26%)</title><rect x="84.7847%" y="597" width="0.2638%" height="15" fill="rgb(215,146,41)" fg:x="144611322" fg:w="449895"/><text x="85.0347%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (20,923 samples, 0.01%)</title><rect x="85.0484%" y="1029" width="0.0123%" height="15" fill="rgb(217,27,36)" fg:x="145061217" fg:w="20923"/><text x="85.2984%" y="1039.50"></text></g><g><title>alloc::alloc::dealloc (20,923 samples, 0.01%)</title><rect x="85.0484%" y="1013" width="0.0123%" height="15" fill="rgb(219,218,39)" fg:x="145061217" fg:w="20923"/><text x="85.2984%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (41,298 samples, 0.02%)</title><rect x="85.0484%" y="1109" width="0.0242%" height="15" fill="rgb(219,4,42)" fg:x="145061217" fg:w="41298"/><text x="85.2984%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (41,298 samples, 0.02%)</title><rect x="85.0484%" y="1093" width="0.0242%" height="15" fill="rgb(249,119,36)" fg:x="145061217" fg:w="41298"/><text x="85.2984%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (41,298 samples, 0.02%)</title><rect x="85.0484%" y="1077" width="0.0242%" height="15" fill="rgb(209,23,33)" fg:x="145061217" fg:w="41298"/><text x="85.2984%" y="1087.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,298 samples, 0.02%)</title><rect x="85.0484%" y="1061" width="0.0242%" height="15" fill="rgb(211,10,0)" fg:x="145061217" fg:w="41298"/><text x="85.2984%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (41,298 samples, 0.02%)</title><rect x="85.0484%" y="1045" width="0.0242%" height="15" fill="rgb(208,99,37)" fg:x="145061217" fg:w="41298"/><text x="85.2984%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::current_memory (20,375 samples, 0.01%)</title><rect x="85.0607%" y="1029" width="0.0119%" height="15" fill="rgb(213,132,31)" fg:x="145082140" fg:w="20375"/><text x="85.3107%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="1077" width="1.0127%" height="15" fill="rgb(243,129,40)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="1061" width="1.0127%" height="15" fill="rgb(210,66,33)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="1045" width="1.0127%" height="15" fill="rgb(209,189,4)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="1029" width="1.0127%" height="15" fill="rgb(214,107,37)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1039.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="1013" width="1.0127%" height="15" fill="rgb(245,88,54)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1023.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="997" width="1.0127%" height="15" fill="rgb(205,146,20)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="1007.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="981" width="1.0127%" height="15" fill="rgb(220,161,25)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="991.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="965" width="1.0127%" height="15" fill="rgb(215,152,15)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="975.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="949" width="1.0127%" height="15" fill="rgb(233,192,44)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="933" width="1.0127%" height="15" fill="rgb(240,170,46)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="917" width="1.0127%" height="15" fill="rgb(207,104,33)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="901" width="1.0127%" height="15" fill="rgb(219,21,39)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="885" width="1.0127%" height="15" fill="rgb(214,133,29)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="869" width="1.0127%" height="15" fill="rgb(226,93,6)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="853" width="1.0127%" height="15" fill="rgb(252,222,34)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="837" width="1.0127%" height="15" fill="rgb(252,92,48)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="821" width="1.0127%" height="15" fill="rgb(245,223,24)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="805" width="1.0127%" height="15" fill="rgb(205,176,3)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="789" width="1.0127%" height="15" fill="rgb(235,151,15)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="773" width="1.0127%" height="15" fill="rgb(237,209,11)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="757" width="1.0127%" height="15" fill="rgb(243,227,24)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="741" width="1.0127%" height="15" fill="rgb(239,193,16)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="725" width="1.0127%" height="15" fill="rgb(231,27,9)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="709" width="1.0127%" height="15" fill="rgb(219,169,10)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="693" width="1.0127%" height="15" fill="rgb(244,229,43)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="677" width="1.0127%" height="15" fill="rgb(254,38,20)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="661" width="1.0127%" height="15" fill="rgb(250,47,30)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="645" width="1.0127%" height="15" fill="rgb(224,124,36)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="629" width="1.0127%" height="15" fill="rgb(246,68,51)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="613" width="1.0127%" height="15" fill="rgb(253,43,49)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="597" width="1.0127%" height="15" fill="rgb(219,54,36)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="581" width="1.0127%" height="15" fill="rgb(227,133,34)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="565" width="1.0127%" height="15" fill="rgb(247,227,15)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="549" width="1.0127%" height="15" fill="rgb(229,96,14)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="533" width="1.0127%" height="15" fill="rgb(220,79,17)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="517" width="1.0127%" height="15" fill="rgb(205,131,53)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="501" width="1.0127%" height="15" fill="rgb(209,50,29)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="485" width="1.0127%" height="15" fill="rgb(245,86,46)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="469" width="1.0127%" height="15" fill="rgb(235,66,46)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="479.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="453" width="1.0127%" height="15" fill="rgb(232,148,31)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="437" width="1.0127%" height="15" fill="rgb(217,149,8)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="447.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="421" width="1.0127%" height="15" fill="rgb(209,183,11)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="431.50"></text></g><g><title>alloc::alloc::dealloc (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="405" width="1.0127%" height="15" fill="rgb(208,55,20)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="415.50"></text></g><g><title>cfree@GLIBC_2.2.5 (1,727,240 samples, 1.01%)</title><rect x="85.0817%" y="389" width="1.0127%" height="15" fill="rgb(218,39,14)" fg:x="145117905" fg:w="1727240"/><text x="85.3317%" y="399.50"></text></g><g><title>nix::unistd::fork (19,114 samples, 0.01%)</title><rect x="86.0944%" y="949" width="0.0112%" height="15" fill="rgb(216,169,33)" fg:x="146845145" fg:w="19114"/><text x="86.3444%" y="959.50"></text></g><g><title>__libc_fork (19,114 samples, 0.01%)</title><rect x="86.0944%" y="933" width="0.0112%" height="15" fill="rgb(233,80,24)" fg:x="146845145" fg:w="19114"/><text x="86.3444%" y="943.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (33,029 samples, 0.02%)</title><rect x="86.0944%" y="1077" width="0.0194%" height="15" fill="rgb(213,179,31)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (33,029 samples, 0.02%)</title><rect x="86.0944%" y="1061" width="0.0194%" height="15" fill="rgb(209,19,5)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (33,029 samples, 0.02%)</title><rect x="86.0944%" y="1045" width="0.0194%" height="15" fill="rgb(219,18,35)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (33,029 samples, 0.02%)</title><rect x="86.0944%" y="1029" width="0.0194%" height="15" fill="rgb(209,169,16)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (33,029 samples, 0.02%)</title><rect x="86.0944%" y="1013" width="0.0194%" height="15" fill="rgb(245,90,51)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (33,029 samples, 0.02%)</title><rect x="86.0944%" y="997" width="0.0194%" height="15" fill="rgb(220,99,45)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (33,029 samples, 0.02%)</title><rect x="86.0944%" y="981" width="0.0194%" height="15" fill="rgb(249,89,25)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="991.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (33,029 samples, 0.02%)</title><rect x="86.0944%" y="965" width="0.0194%" height="15" fill="rgb(239,193,0)" fg:x="146845145" fg:w="33029"/><text x="86.3444%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="853" width="0.8129%" height="15" fill="rgb(231,126,1)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="837" width="0.8129%" height="15" fill="rgb(243,166,3)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="821" width="0.8129%" height="15" fill="rgb(223,22,34)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="831.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="805" width="0.8129%" height="15" fill="rgb(251,52,51)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="815.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="789" width="0.8129%" height="15" fill="rgb(221,165,28)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="799.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (1,386,516 samples, 0.81%)</title><rect x="86.1137%" y="773" width="0.8129%" height="15" fill="rgb(218,121,47)" fg:x="146878174" fg:w="1386516"/><text x="86.3637%" y="783.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::clone::Clone&gt;::clone (785,869 samples, 0.46%)</title><rect x="86.4659%" y="757" width="0.4607%" height="15" fill="rgb(209,120,9)" fg:x="147478821" fg:w="785869"/><text x="86.7159%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (98,449 samples, 0.06%)</title><rect x="86.9266%" y="629" width="0.0577%" height="15" fill="rgb(236,68,12)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="639.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (98,449 samples, 0.06%)</title><rect x="86.9266%" y="613" width="0.0577%" height="15" fill="rgb(225,194,26)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="623.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (98,449 samples, 0.06%)</title><rect x="86.9266%" y="597" width="0.0577%" height="15" fill="rgb(231,84,39)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (98,449 samples, 0.06%)</title><rect x="86.9266%" y="581" width="0.0577%" height="15" fill="rgb(210,11,45)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (98,449 samples, 0.06%)</title><rect x="86.9266%" y="565" width="0.0577%" height="15" fill="rgb(224,54,52)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (98,449 samples, 0.06%)</title><rect x="86.9266%" y="549" width="0.0577%" height="15" fill="rgb(238,102,14)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (98,449 samples, 0.06%)</title><rect x="86.9266%" y="533" width="0.0577%" height="15" fill="rgb(243,160,52)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="543.50"></text></g><g><title>alloc::raw_vec::layout_array (98,449 samples, 0.06%)</title><rect x="86.9266%" y="517" width="0.0577%" height="15" fill="rgb(216,114,19)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="527.50"></text></g><g><title>core::alloc::layout::Layout::repeat (98,449 samples, 0.06%)</title><rect x="86.9266%" y="501" width="0.0577%" height="15" fill="rgb(244,166,37)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="511.50"></text></g><g><title>core::alloc::layout::Layout::repeat_packed (98,449 samples, 0.06%)</title><rect x="86.9266%" y="485" width="0.0577%" height="15" fill="rgb(246,29,44)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="495.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (98,449 samples, 0.06%)</title><rect x="86.9266%" y="469" width="0.0577%" height="15" fill="rgb(215,56,53)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="479.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (98,449 samples, 0.06%)</title><rect x="86.9266%" y="453" width="0.0577%" height="15" fill="rgb(217,60,2)" fg:x="148264690" fg:w="98449"/><text x="87.1766%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="613" width="0.1452%" height="15" fill="rgb(207,26,24)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="623.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (247,597 samples, 0.15%)</title><rect x="86.9843%" y="597" width="0.1452%" height="15" fill="rgb(252,210,15)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (247,597 samples, 0.15%)</title><rect x="86.9843%" y="581" width="0.1452%" height="15" fill="rgb(253,209,26)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="591.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="565" width="0.1452%" height="15" fill="rgb(238,170,14)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="549" width="0.1452%" height="15" fill="rgb(216,178,15)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="559.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (247,597 samples, 0.15%)</title><rect x="86.9843%" y="533" width="0.1452%" height="15" fill="rgb(250,197,2)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="543.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (247,597 samples, 0.15%)</title><rect x="86.9843%" y="517" width="0.1452%" height="15" fill="rgb(212,70,42)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="527.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="501" width="0.1452%" height="15" fill="rgb(227,213,9)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="511.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="485" width="0.1452%" height="15" fill="rgb(245,99,25)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="495.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="469" width="0.1452%" height="15" fill="rgb(250,82,29)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="479.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (247,597 samples, 0.15%)</title><rect x="86.9843%" y="453" width="0.1452%" height="15" fill="rgb(241,226,54)" fg:x="148363139" fg:w="247597"/><text x="87.2343%" y="463.50"></text></g><g><title>shed::parse::execute::exec_input (3,826,095 samples, 2.24%)</title><rect x="85.0817%" y="1093" width="2.2432%" height="15" fill="rgb(221,99,41)" fg:x="145117905" fg:w="3826095"/><text x="85.3317%" y="1103.50">s..</text></g><g><title>shed::state::read_logic (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="1077" width="1.2112%" height="15" fill="rgb(213,90,21)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1087.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="1061" width="1.2112%" height="15" fill="rgb(205,208,24)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1071.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="1045" width="1.2112%" height="15" fill="rgb(246,31,12)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1055.50"></text></g><g><title>shed::state::read_logic::{{closure}} (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="1029" width="1.2112%" height="15" fill="rgb(213,154,6)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1039.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="1013" width="1.2112%" height="15" fill="rgb(222,163,29)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1023.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="997" width="1.2112%" height="15" fill="rgb(227,201,8)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="1007.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="981" width="1.2112%" height="15" fill="rgb(233,9,32)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="991.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="965" width="1.2112%" height="15" fill="rgb(217,54,24)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="975.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="949" width="1.2112%" height="15" fill="rgb(235,192,0)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="959.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="933" width="1.2112%" height="15" fill="rgb(235,45,9)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="943.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="917" width="1.2112%" height="15" fill="rgb(246,42,40)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="927.50"></text></g><g><title>core::clone::Clone::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="901" width="1.2112%" height="15" fill="rgb(248,111,24)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="911.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="885" width="1.2112%" height="15" fill="rgb(249,65,22)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="895.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (2,065,826 samples, 1.21%)</title><rect x="86.1137%" y="869" width="1.2112%" height="15" fill="rgb(238,111,51)" fg:x="146878174" fg:w="2065826"/><text x="86.3637%" y="879.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="853" width="0.3983%" height="15" fill="rgb(250,118,22)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="837" width="0.3983%" height="15" fill="rgb(234,84,26)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="847.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (679,310 samples, 0.40%)</title><rect x="86.9266%" y="821" width="0.3983%" height="15" fill="rgb(243,172,12)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (679,310 samples, 0.40%)</title><rect x="86.9266%" y="805" width="0.3983%" height="15" fill="rgb(236,150,49)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="815.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="789" width="0.3983%" height="15" fill="rgb(225,197,26)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="799.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="773" width="0.3983%" height="15" fill="rgb(214,17,42)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="757" width="0.3983%" height="15" fill="rgb(224,165,40)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (679,310 samples, 0.40%)</title><rect x="86.9266%" y="741" width="0.3983%" height="15" fill="rgb(246,100,4)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (679,310 samples, 0.40%)</title><rect x="86.9266%" y="725" width="0.3983%" height="15" fill="rgb(222,103,0)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="735.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="709" width="0.3983%" height="15" fill="rgb(227,189,26)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="719.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="693" width="0.3983%" height="15" fill="rgb(214,202,17)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="703.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (679,310 samples, 0.40%)</title><rect x="86.9266%" y="677" width="0.3983%" height="15" fill="rgb(229,111,3)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="687.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (679,310 samples, 0.40%)</title><rect x="86.9266%" y="661" width="0.3983%" height="15" fill="rgb(229,172,15)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="671.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (679,310 samples, 0.40%)</title><rect x="86.9266%" y="645" width="0.3983%" height="15" fill="rgb(230,224,35)" fg:x="148264690" fg:w="679310"/><text x="87.1766%" y="655.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (580,861 samples, 0.34%)</title><rect x="86.9843%" y="629" width="0.3406%" height="15" fill="rgb(251,141,6)" fg:x="148363139" fg:w="580861"/><text x="87.2343%" y="639.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="613" width="0.1954%" height="15" fill="rgb(225,208,6)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="597" width="0.1954%" height="15" fill="rgb(246,181,16)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="607.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (333,264 samples, 0.20%)</title><rect x="87.1295%" y="581" width="0.1954%" height="15" fill="rgb(227,129,36)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="591.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (333,264 samples, 0.20%)</title><rect x="87.1295%" y="565" width="0.1954%" height="15" fill="rgb(248,117,24)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="575.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="549" width="0.1954%" height="15" fill="rgb(214,185,35)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="559.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="533" width="0.1954%" height="15" fill="rgb(236,150,34)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="517" width="0.1954%" height="15" fill="rgb(243,228,27)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="527.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (333,264 samples, 0.20%)</title><rect x="87.1295%" y="501" width="0.1954%" height="15" fill="rgb(245,77,44)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="511.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (333,264 samples, 0.20%)</title><rect x="87.1295%" y="485" width="0.1954%" height="15" fill="rgb(235,214,42)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="495.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="469" width="0.1954%" height="15" fill="rgb(221,74,3)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="479.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="453" width="0.1954%" height="15" fill="rgb(206,121,29)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="463.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (333,264 samples, 0.20%)</title><rect x="87.1295%" y="437" width="0.1954%" height="15" fill="rgb(249,131,53)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="447.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (333,264 samples, 0.20%)</title><rect x="87.1295%" y="421" width="0.1954%" height="15" fill="rgb(236,170,29)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="431.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="405" width="0.1954%" height="15" fill="rgb(247,96,15)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="389" width="0.1954%" height="15" fill="rgb(211,210,7)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="399.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (333,264 samples, 0.20%)</title><rect x="87.1295%" y="373" width="0.1954%" height="15" fill="rgb(240,88,50)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="383.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (333,264 samples, 0.20%)</title><rect x="87.1295%" y="357" width="0.1954%" height="15" fill="rgb(209,229,26)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="367.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="341" width="0.1954%" height="15" fill="rgb(210,68,23)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="351.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="325" width="0.1954%" height="15" fill="rgb(229,180,13)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="335.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (333,264 samples, 0.20%)</title><rect x="87.1295%" y="309" width="0.1954%" height="15" fill="rgb(236,53,44)" fg:x="148610736" fg:w="333264"/><text x="87.3795%" y="319.50"></text></g><g><title>shed::procio::IoBuf&lt;R&gt;::as_str (20,843 samples, 0.01%)</title><rect x="87.3249%" y="1093" width="0.0122%" height="15" fill="rgb(244,214,29)" fg:x="148944000" fg:w="20843"/><text x="87.5749%" y="1103.50"></text></g><g><title>core::str::converts::from_utf8 (20,843 samples, 0.01%)</title><rect x="87.3249%" y="1077" width="0.0122%" height="15" fill="rgb(220,75,29)" fg:x="148944000" fg:w="20843"/><text x="87.5749%" y="1087.50"></text></g><g><title>[unknown] (19,256 samples, 0.01%)</title><rect x="87.3383%" y="917" width="0.0113%" height="15" fill="rgb(214,183,37)" fg:x="148966822" fg:w="19256"/><text x="87.5883%" y="927.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1205" width="2.3112%" height="15" fill="rgb(239,117,29)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1215.50">s..</text></g><g><title>shed::builtin::varcmds::local (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1189" width="2.3112%" height="15" fill="rgb(237,171,35)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1199.50">s..</text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1173" width="2.3112%" height="15" fill="rgb(229,178,53)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1183.50">s..</text></g><g><title>shed::expand::Expander::expand (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1157" width="2.3112%" height="15" fill="rgb(210,102,19)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1167.50">s..</text></g><g><title>shed::expand::expand_raw (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1141" width="2.3112%" height="15" fill="rgb(235,127,22)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1151.50">s..</text></g><g><title>shed::expand::expand_var (3,942,004 samples, 2.31%)</title><rect x="85.0484%" y="1125" width="2.3112%" height="15" fill="rgb(244,31,31)" fg:x="145061217" fg:w="3942004"/><text x="85.2984%" y="1135.50">s..</text></g><g><title>shed::expand::expand_cmd_sub (3,900,706 samples, 2.29%)</title><rect x="85.0727%" y="1109" width="2.2870%" height="15" fill="rgb(231,43,21)" fg:x="145102515" fg:w="3900706"/><text x="85.3227%" y="1119.50">s..</text></g><g><title>shed::procio::IoStack::push_frame (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1093" width="0.0213%" height="15" fill="rgb(217,131,35)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1103.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1077" width="0.0213%" height="15" fill="rgb(221,149,4)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1061" width="0.0213%" height="15" fill="rgb(232,170,28)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1045" width="0.0213%" height="15" fill="rgb(238,56,10)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1029" width="0.0213%" height="15" fill="rgb(235,196,14)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (36,399 samples, 0.02%)</title><rect x="87.3383%" y="1013" width="0.0213%" height="15" fill="rgb(216,45,48)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (36,399 samples, 0.02%)</title><rect x="87.3383%" y="997" width="0.0213%" height="15" fill="rgb(238,213,17)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="1007.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (36,399 samples, 0.02%)</title><rect x="87.3383%" y="981" width="0.0213%" height="15" fill="rgb(212,13,2)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="991.50"></text></g><g><title>alloc::alloc::Global::grow_impl (36,399 samples, 0.02%)</title><rect x="87.3383%" y="965" width="0.0213%" height="15" fill="rgb(240,114,20)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="975.50"></text></g><g><title>alloc::alloc::realloc (36,399 samples, 0.02%)</title><rect x="87.3383%" y="949" width="0.0213%" height="15" fill="rgb(228,41,40)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="959.50"></text></g><g><title>realloc (36,399 samples, 0.02%)</title><rect x="87.3383%" y="933" width="0.0213%" height="15" fill="rgb(244,132,35)" fg:x="148966822" fg:w="36399"/><text x="87.5883%" y="943.50"></text></g><g><title>_int_realloc (17,143 samples, 0.01%)</title><rect x="87.3496%" y="917" width="0.0101%" height="15" fill="rgb(253,189,4)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="927.50"></text></g><g><title>_int_malloc (17,143 samples, 0.01%)</title><rect x="87.3496%" y="901" width="0.0101%" height="15" fill="rgb(224,37,19)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="911.50"></text></g><g><title>unlink_chunk.isra.0 (17,143 samples, 0.01%)</title><rect x="87.3496%" y="885" width="0.0101%" height="15" fill="rgb(235,223,18)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="895.50"></text></g><g><title>[unknown] (17,143 samples, 0.01%)</title><rect x="87.3496%" y="869" width="0.0101%" height="15" fill="rgb(235,163,25)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="879.50"></text></g><g><title>[unknown] (17,143 samples, 0.01%)</title><rect x="87.3496%" y="853" width="0.0101%" height="15" fill="rgb(217,145,28)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="863.50"></text></g><g><title>[unknown] (17,143 samples, 0.01%)</title><rect x="87.3496%" y="837" width="0.0101%" height="15" fill="rgb(223,223,32)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="847.50"></text></g><g><title>[unknown] (17,143 samples, 0.01%)</title><rect x="87.3496%" y="821" width="0.0101%" height="15" fill="rgb(227,189,39)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="831.50"></text></g><g><title>[unknown] (17,143 samples, 0.01%)</title><rect x="87.3496%" y="805" width="0.0101%" height="15" fill="rgb(248,10,22)" fg:x="148986078" fg:w="17143"/><text x="87.5996%" y="815.50"></text></g><g><title>[unknown] (18,518 samples, 0.01%)</title><rect x="87.3621%" y="1157" width="0.0109%" height="15" fill="rgb(248,46,39)" fg:x="149007481" fg:w="18518"/><text x="87.6121%" y="1167.50"></text></g><g><title>nix::unistd::fork (33,861 samples, 0.02%)</title><rect x="87.3596%" y="1189" width="0.0199%" height="15" fill="rgb(248,113,48)" fg:x="149003221" fg:w="33861"/><text x="87.6096%" y="1199.50"></text></g><g><title>__libc_fork (33,861 samples, 0.02%)</title><rect x="87.3596%" y="1173" width="0.0199%" height="15" fill="rgb(245,16,25)" fg:x="149003221" fg:w="33861"/><text x="87.6096%" y="1183.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (20,215 samples, 0.01%)</title><rect x="87.3795%" y="1157" width="0.0119%" height="15" fill="rgb(249,152,16)" fg:x="149037082" fg:w="20215"/><text x="87.6295%" y="1167.50"></text></g><g><title>&lt;T as alloc::string::SpecToString&gt;::spec_to_string (20,215 samples, 0.01%)</title><rect x="87.3795%" y="1141" width="0.0119%" height="15" fill="rgb(250,16,1)" fg:x="149037082" fg:w="20215"/><text x="87.6295%" y="1151.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::fmt::Display&gt;::fmt (20,215 samples, 0.01%)</title><rect x="87.3795%" y="1125" width="0.0119%" height="15" fill="rgb(249,138,3)" fg:x="149037082" fg:w="20215"/><text x="87.6295%" y="1135.50"></text></g><g><title>[unknown] (20,215 samples, 0.01%)</title><rect x="87.3795%" y="1109" width="0.0119%" height="15" fill="rgb(227,71,41)" fg:x="149037082" fg:w="20215"/><text x="87.6295%" y="1119.50"></text></g><g><title>shed::builtin::echo::echo (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1157" width="0.0937%" height="15" fill="rgb(209,184,23)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1167.50"></text></g><g><title>shed::getopt::get_opts_from_tokens (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1141" width="0.0937%" height="15" fill="rgb(223,215,31)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1151.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1125" width="0.0937%" height="15" fill="rgb(210,146,28)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1135.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1109" width="0.0937%" height="15" fill="rgb(209,183,41)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1119.50"></text></g><g><title>core::iter::adapters::try_process (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1093" width="0.0937%" height="15" fill="rgb(209,224,45)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1103.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter::{{closure}} (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1077" width="0.0937%" height="15" fill="rgb(224,209,51)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1087.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1061" width="0.0937%" height="15" fill="rgb(223,17,39)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1045" width="0.0937%" height="15" fill="rgb(234,204,37)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1055.50"></text></g><g><title>alloc::vec::in_place_collect::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1029" width="0.0937%" height="15" fill="rgb(236,120,5)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1039.50"></text></g><g><title>alloc::vec::in_place_collect::from_iter_in_place (159,734 samples, 0.09%)</title><rect x="87.3913%" y="1013" width="0.0937%" height="15" fill="rgb(248,97,27)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1023.50"></text></g><g><title>&lt;I as alloc::vec::in_place_collect::SpecInPlaceCollect&lt;T,I&gt;&gt;::collect_in_place (159,734 samples, 0.09%)</title><rect x="87.3913%" y="997" width="0.0937%" height="15" fill="rgb(240,66,17)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="1007.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (159,734 samples, 0.09%)</title><rect x="87.3913%" y="981" width="0.0937%" height="15" fill="rgb(210,79,3)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="991.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (159,734 samples, 0.09%)</title><rect x="87.3913%" y="965" width="0.0937%" height="15" fill="rgb(214,176,27)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="975.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (159,734 samples, 0.09%)</title><rect x="87.3913%" y="949" width="0.0937%" height="15" fill="rgb(235,185,3)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="959.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::{{closure}} (159,734 samples, 0.09%)</title><rect x="87.3913%" y="933" width="0.0937%" height="15" fill="rgb(227,24,12)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="943.50"></text></g><g><title>shed::getopt::get_opts_from_tokens::{{closure}} (159,734 samples, 0.09%)</title><rect x="87.3913%" y="917" width="0.0937%" height="15" fill="rgb(252,169,48)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="927.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (159,734 samples, 0.09%)</title><rect x="87.3913%" y="901" width="0.0937%" height="15" fill="rgb(212,65,1)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="911.50"></text></g><g><title>shed::expand::Expander::expand (159,734 samples, 0.09%)</title><rect x="87.3913%" y="885" width="0.0937%" height="15" fill="rgb(242,39,24)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="895.50"></text></g><g><title>shed::expand::expand_glob (159,734 samples, 0.09%)</title><rect x="87.3913%" y="869" width="0.0937%" height="15" fill="rgb(249,32,23)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="879.50"></text></g><g><title>glob::glob_with (159,734 samples, 0.09%)</title><rect x="87.3913%" y="853" width="0.0937%" height="15" fill="rgb(251,195,23)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="863.50"></text></g><g><title>glob::Pattern::new (159,734 samples, 0.09%)</title><rect x="87.3913%" y="837" width="0.0937%" height="15" fill="rgb(236,174,8)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (159,734 samples, 0.09%)</title><rect x="87.3913%" y="821" width="0.0937%" height="15" fill="rgb(220,197,8)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (159,734 samples, 0.09%)</title><rect x="87.3913%" y="805" width="0.0937%" height="15" fill="rgb(240,108,37)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (159,734 samples, 0.09%)</title><rect x="87.3913%" y="789" width="0.0937%" height="15" fill="rgb(232,176,24)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_one (159,734 samples, 0.09%)</title><rect x="87.3913%" y="773" width="0.0937%" height="15" fill="rgb(243,35,29)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (159,734 samples, 0.09%)</title><rect x="87.3913%" y="757" width="0.0937%" height="15" fill="rgb(210,37,18)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="767.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::finish_grow (159,734 samples, 0.09%)</title><rect x="87.3913%" y="741" width="0.0937%" height="15" fill="rgb(224,184,40)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="751.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (159,734 samples, 0.09%)</title><rect x="87.3913%" y="725" width="0.0937%" height="15" fill="rgb(236,39,29)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="735.50"></text></g><g><title>alloc::alloc::Global::grow_impl (159,734 samples, 0.09%)</title><rect x="87.3913%" y="709" width="0.0937%" height="15" fill="rgb(232,48,39)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="719.50"></text></g><g><title>alloc::alloc::realloc (159,734 samples, 0.09%)</title><rect x="87.3913%" y="693" width="0.0937%" height="15" fill="rgb(236,34,42)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="703.50"></text></g><g><title>realloc (159,734 samples, 0.09%)</title><rect x="87.3913%" y="677" width="0.0937%" height="15" fill="rgb(243,106,37)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="687.50"></text></g><g><title>_int_realloc (159,734 samples, 0.09%)</title><rect x="87.3913%" y="661" width="0.0937%" height="15" fill="rgb(218,96,6)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="671.50"></text></g><g><title>_int_malloc (159,734 samples, 0.09%)</title><rect x="87.3913%" y="645" width="0.0937%" height="15" fill="rgb(235,130,12)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="655.50"></text></g><g><title>malloc_consolidate (159,734 samples, 0.09%)</title><rect x="87.3913%" y="629" width="0.0937%" height="15" fill="rgb(231,95,0)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="639.50"></text></g><g><title>unlink_chunk.isra.0 (159,734 samples, 0.09%)</title><rect x="87.3913%" y="613" width="0.0937%" height="15" fill="rgb(228,12,23)" fg:x="149057297" fg:w="159734"/><text x="87.6413%" y="623.50"></text></g><g><title>shed::expand::Expander::split_words (77,703 samples, 0.05%)</title><rect x="87.4850%" y="1077" width="0.0456%" height="15" fill="rgb(216,12,1)" fg:x="149217031" fg:w="77703"/><text x="87.7350%" y="1087.50"></text></g><g><title>std::env::var (77,703 samples, 0.05%)</title><rect x="87.4850%" y="1061" width="0.0456%" height="15" fill="rgb(219,59,3)" fg:x="149217031" fg:w="77703"/><text x="87.7350%" y="1071.50"></text></g><g><title>std::env::_var (77,703 samples, 0.05%)</title><rect x="87.4850%" y="1045" width="0.0456%" height="15" fill="rgb(215,208,46)" fg:x="149217031" fg:w="77703"/><text x="87.7350%" y="1055.50"></text></g><g><title>std::sys::env::unix::getenv (77,703 samples, 0.05%)</title><rect x="87.4850%" y="1029" width="0.0456%" height="15" fill="rgb(254,224,29)" fg:x="149217031" fg:w="77703"/><text x="87.7350%" y="1039.50"></text></g><g><title>&lt;glob::Paths as core::iter::traits::iterator::Iterator&gt;::next (21,693 samples, 0.01%)</title><rect x="87.5305%" y="1061" width="0.0127%" height="15" fill="rgb(232,14,29)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="1071.50"></text></g><g><title>glob::fill_todo (21,693 samples, 0.01%)</title><rect x="87.5305%" y="1045" width="0.0127%" height="15" fill="rgb(208,45,52)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="1055.50"></text></g><g><title>std::fs::read_dir (21,693 samples, 0.01%)</title><rect x="87.5305%" y="1029" width="0.0127%" height="15" fill="rgb(234,191,28)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="1039.50"></text></g><g><title>std::sys::fs::read_dir (21,693 samples, 0.01%)</title><rect x="87.5305%" y="1013" width="0.0127%" height="15" fill="rgb(244,67,43)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="1023.50"></text></g><g><title>opendir_tail (21,693 samples, 0.01%)</title><rect x="87.5305%" y="997" width="0.0127%" height="15" fill="rgb(236,189,24)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="1007.50"></text></g><g><title>__alloc_dir (21,693 samples, 0.01%)</title><rect x="87.5305%" y="981" width="0.0127%" height="15" fill="rgb(239,214,33)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="991.50"></text></g><g><title>__libc_malloc2 (21,693 samples, 0.01%)</title><rect x="87.5305%" y="965" width="0.0127%" height="15" fill="rgb(226,176,41)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="975.50"></text></g><g><title>_int_malloc (21,693 samples, 0.01%)</title><rect x="87.5305%" y="949" width="0.0127%" height="15" fill="rgb(248,47,8)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="959.50"></text></g><g><title>malloc_consolidate (21,693 samples, 0.01%)</title><rect x="87.5305%" y="933" width="0.0127%" height="15" fill="rgb(218,81,44)" fg:x="149294734" fg:w="21693"/><text x="87.7805%" y="943.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin::{{closure}} (364,681 samples, 0.21%)</title><rect x="87.3795%" y="1189" width="0.2138%" height="15" fill="rgb(213,98,6)" fg:x="149037082" fg:w="364681"/><text x="87.6295%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (364,681 samples, 0.21%)</title><rect x="87.3795%" y="1173" width="0.2138%" height="15" fill="rgb(222,85,22)" fg:x="149037082" fg:w="364681"/><text x="87.6295%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (184,732 samples, 0.11%)</title><rect x="87.4850%" y="1157" width="0.1083%" height="15" fill="rgb(239,46,39)" fg:x="149217031" fg:w="184732"/><text x="87.7350%" y="1167.50"></text></g><g><title>shed::parse::execute::ExecArgs::new (184,732 samples, 0.11%)</title><rect x="87.4850%" y="1141" width="0.1083%" height="15" fill="rgb(237,12,29)" fg:x="149217031" fg:w="184732"/><text x="87.7350%" y="1151.50"></text></g><g><title>shed::parse::execute::prepare_argv (184,732 samples, 0.11%)</title><rect x="87.4850%" y="1125" width="0.1083%" height="15" fill="rgb(214,77,8)" fg:x="149217031" fg:w="184732"/><text x="87.7350%" y="1135.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (184,732 samples, 0.11%)</title><rect x="87.4850%" y="1109" width="0.1083%" height="15" fill="rgb(217,168,37)" fg:x="149217031" fg:w="184732"/><text x="87.7350%" y="1119.50"></text></g><g><title>shed::expand::Expander::expand (184,732 samples, 0.11%)</title><rect x="87.4850%" y="1093" width="0.1083%" height="15" fill="rgb(221,217,23)" fg:x="149217031" fg:w="184732"/><text x="87.7350%" y="1103.50"></text></g><g><title>shed::expand::expand_glob (107,029 samples, 0.06%)</title><rect x="87.5305%" y="1077" width="0.0628%" height="15" fill="rgb(243,229,36)" fg:x="149294734" fg:w="107029"/><text x="87.7805%" y="1087.50"></text></g><g><title>glob::glob_with (85,336 samples, 0.05%)</title><rect x="87.5432%" y="1061" width="0.0500%" height="15" fill="rgb(251,163,40)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="1071.50"></text></g><g><title>glob::Pattern::new (85,336 samples, 0.05%)</title><rect x="87.5432%" y="1045" width="0.0500%" height="15" fill="rgb(237,222,12)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (85,336 samples, 0.05%)</title><rect x="87.5432%" y="1029" width="0.0500%" height="15" fill="rgb(248,132,6)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="1039.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (85,336 samples, 0.05%)</title><rect x="87.5432%" y="1013" width="0.0500%" height="15" fill="rgb(227,167,50)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="1023.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (85,336 samples, 0.05%)</title><rect x="87.5432%" y="997" width="0.0500%" height="15" fill="rgb(242,84,37)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (85,336 samples, 0.05%)</title><rect x="87.5432%" y="981" width="0.0500%" height="15" fill="rgb(212,4,50)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="991.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (85,336 samples, 0.05%)</title><rect x="87.5432%" y="965" width="0.0500%" height="15" fill="rgb(230,228,32)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (85,336 samples, 0.05%)</title><rect x="87.5432%" y="949" width="0.0500%" height="15" fill="rgb(248,217,23)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (85,336 samples, 0.05%)</title><rect x="87.5432%" y="933" width="0.0500%" height="15" fill="rgb(238,197,32)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (85,336 samples, 0.05%)</title><rect x="87.5432%" y="917" width="0.0500%" height="15" fill="rgb(236,106,1)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (85,336 samples, 0.05%)</title><rect x="87.5432%" y="901" width="0.0500%" height="15" fill="rgb(219,228,13)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="911.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (85,336 samples, 0.05%)</title><rect x="87.5432%" y="885" width="0.0500%" height="15" fill="rgb(238,30,35)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="895.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (85,336 samples, 0.05%)</title><rect x="87.5432%" y="869" width="0.0500%" height="15" fill="rgb(236,70,23)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="879.50"></text></g><g><title>alloc::alloc::alloc (85,336 samples, 0.05%)</title><rect x="87.5432%" y="853" width="0.0500%" height="15" fill="rgb(249,104,48)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="863.50"></text></g><g><title>__libc_malloc2 (85,336 samples, 0.05%)</title><rect x="87.5432%" y="837" width="0.0500%" height="15" fill="rgb(254,117,50)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="847.50"></text></g><g><title>_int_malloc (85,336 samples, 0.05%)</title><rect x="87.5432%" y="821" width="0.0500%" height="15" fill="rgb(223,152,4)" fg:x="149316427" fg:w="85336"/><text x="87.7932%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="805" width="0.7690%" height="15" fill="rgb(245,6,2)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;shed::parse::lex::Tk&gt;&gt; (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="789" width="0.7690%" height="15" fill="rgb(249,150,24)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="799.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="773" width="0.7690%" height="15" fill="rgb(228,185,42)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="757" width="0.7690%" height="15" fill="rgb(226,39,33)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="741" width="0.7690%" height="15" fill="rgb(221,166,19)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="751.50"></text></g><g><title>alloc::alloc::dealloc (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="725" width="0.7690%" height="15" fill="rgb(209,109,2)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="735.50"></text></g><g><title>_int_free_chunk (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="709" width="0.7690%" height="15" fill="rgb(252,216,26)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="719.50"></text></g><g><title>_int_free_maybe_consolidate.part.0 (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="693" width="0.7690%" height="15" fill="rgb(227,173,36)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="703.50"></text></g><g><title>malloc_consolidate (1,311,613 samples, 0.77%)</title><rect x="87.5933%" y="677" width="0.7690%" height="15" fill="rgb(209,90,7)" fg:x="149401763" fg:w="1311613"/><text x="87.8433%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::CondNode&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="597" width="0.3901%" height="15" fill="rgb(250,194,11)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (665,316 samples, 0.39%)</title><rect x="88.3623%" y="581" width="0.3901%" height="15" fill="rgb(220,72,50)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::CondNode]&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="565" width="0.3901%" height="15" fill="rgb(222,106,48)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CondNode&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="549" width="0.3901%" height="15" fill="rgb(216,220,45)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="533" width="0.3901%" height="15" fill="rgb(234,112,18)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (665,316 samples, 0.39%)</title><rect x="88.3623%" y="517" width="0.3901%" height="15" fill="rgb(206,179,9)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="501" width="0.3901%" height="15" fill="rgb(215,115,40)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="485" width="0.3901%" height="15" fill="rgb(222,69,34)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="469" width="0.3901%" height="15" fill="rgb(209,161,10)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="453" width="0.3901%" height="15" fill="rgb(217,6,38)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (665,316 samples, 0.39%)</title><rect x="88.3623%" y="437" width="0.3901%" height="15" fill="rgb(229,229,48)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="421" width="0.3901%" height="15" fill="rgb(225,21,28)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="405" width="0.3901%" height="15" fill="rgb(206,33,13)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="389" width="0.3901%" height="15" fill="rgb(242,178,17)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="373" width="0.3901%" height="15" fill="rgb(220,162,5)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="357" width="0.3901%" height="15" fill="rgb(210,33,43)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;shed::parse::lex::Tk&gt;&gt; (665,316 samples, 0.39%)</title><rect x="88.3623%" y="341" width="0.3901%" height="15" fill="rgb(216,116,54)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="351.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (665,316 samples, 0.39%)</title><rect x="88.3623%" y="325" width="0.3901%" height="15" fill="rgb(249,92,24)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (665,316 samples, 0.39%)</title><rect x="88.3623%" y="309" width="0.3901%" height="15" fill="rgb(231,189,14)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="319.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (665,316 samples, 0.39%)</title><rect x="88.3623%" y="293" width="0.3901%" height="15" fill="rgb(230,8,41)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="303.50"></text></g><g><title>alloc::alloc::dealloc (665,316 samples, 0.39%)</title><rect x="88.3623%" y="277" width="0.3901%" height="15" fill="rgb(249,7,27)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="287.50"></text></g><g><title>_int_free_chunk (665,316 samples, 0.39%)</title><rect x="88.3623%" y="261" width="0.3901%" height="15" fill="rgb(232,86,5)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="271.50"></text></g><g><title>_int_free_merge_chunk (665,316 samples, 0.39%)</title><rect x="88.3623%" y="245" width="0.3901%" height="15" fill="rgb(224,175,18)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="255.50"></text></g><g><title>_int_free_create_chunk (665,316 samples, 0.39%)</title><rect x="88.3623%" y="229" width="0.3901%" height="15" fill="rgb(220,129,12)" fg:x="150713376" fg:w="665316"/><text x="88.6123%" y="239.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (6,928,577 samples, 4.06%)</title><rect x="85.0484%" y="1221" width="4.0622%" height="15" fill="rgb(210,19,36)" fg:x="145061217" fg:w="6928577"/><text x="85.2984%" y="1231.50">shed..</text></g><g><title>shed::parse::execute::Dispatcher::run_fork (2,986,573 samples, 1.75%)</title><rect x="87.3596%" y="1205" width="1.7510%" height="15" fill="rgb(219,96,14)" fg:x="149003221" fg:w="2986573"/><text x="87.6096%" y="1215.50"></text></g><g><title>std::process::exit (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1189" width="1.5173%" height="15" fill="rgb(249,106,1)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1199.50"></text></g><g><title>std::sys::pal::unix::os::exit (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1173" width="1.5173%" height="15" fill="rgb(249,155,20)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1183.50"></text></g><g><title>exit (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1157" width="1.5173%" height="15" fill="rgb(244,168,9)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1167.50"></text></g><g><title>__run_exit_handlers (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1141" width="1.5173%" height="15" fill="rgb(216,23,50)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1151.50"></text></g><g><title>__call_tls_dtors (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1125" width="1.5173%" height="15" fill="rgb(224,219,20)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1135.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1109" width="1.5173%" height="15" fill="rgb(222,156,15)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1119.50"></text></g><g><title>std::sys::thread_local::abort_on_dtor_unwind (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1093" width="1.5173%" height="15" fill="rgb(231,97,17)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1103.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy::{{closure}} (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1077" width="1.5173%" height="15" fill="rgb(218,70,48)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1087.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_drop (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1061" width="1.5173%" height="15" fill="rgb(212,196,52)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::Shed&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1045" width="1.5173%" height="15" fill="rgb(243,203,18)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::LogTab&gt;&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1029" width="1.5173%" height="15" fill="rgb(252,125,41)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::LogTab&gt;&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="1013" width="1.5173%" height="15" fill="rgb(223,180,33)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="997" width="1.5173%" height="15" fill="rgb(254,159,46)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="981" width="1.5173%" height="15" fill="rgb(254,38,10)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="965" width="1.5173%" height="15" fill="rgb(208,217,32)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="949" width="1.5173%" height="15" fill="rgb(221,120,13)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="959.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="933" width="1.5173%" height="15" fill="rgb(246,54,52)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="943.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="917" width="1.5173%" height="15" fill="rgb(242,34,25)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="927.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="901" width="1.5173%" height="15" fill="rgb(247,209,9)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="911.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="885" width="1.5173%" height="15" fill="rgb(228,71,26)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="895.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="869" width="1.5173%" height="15" fill="rgb(222,145,49)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="853" width="1.5173%" height="15" fill="rgb(218,121,17)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="837" width="1.5173%" height="15" fill="rgb(244,50,7)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (2,588,031 samples, 1.52%)</title><rect x="87.5933%" y="821" width="1.5173%" height="15" fill="rgb(246,229,37)" fg:x="149401763" fg:w="2588031"/><text x="87.8433%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="805" width="0.7484%" height="15" fill="rgb(225,18,5)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="789" width="0.7484%" height="15" fill="rgb(213,204,8)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="773" width="0.7484%" height="15" fill="rgb(238,103,6)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="757" width="0.7484%" height="15" fill="rgb(222,25,35)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="741" width="0.7484%" height="15" fill="rgb(213,203,35)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="725" width="0.7484%" height="15" fill="rgb(221,79,53)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="709" width="0.7484%" height="15" fill="rgb(243,200,35)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="693" width="0.7484%" height="15" fill="rgb(248,60,25)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="677" width="0.7484%" height="15" fill="rgb(227,53,46)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="661" width="0.7484%" height="15" fill="rgb(216,120,32)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="645" width="0.7484%" height="15" fill="rgb(220,134,1)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="629" width="0.7484%" height="15" fill="rgb(237,168,5)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (1,276,418 samples, 0.75%)</title><rect x="88.3623%" y="613" width="0.7484%" height="15" fill="rgb(231,100,33)" fg:x="150713376" fg:w="1276418"/><text x="88.6123%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CondNode&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="597" width="0.3578%" height="15" fill="rgb(236,177,47)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="581" width="0.3578%" height="15" fill="rgb(235,7,49)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (610,306 samples, 0.36%)</title><rect x="88.7528%" y="565" width="0.3578%" height="15" fill="rgb(232,119,22)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="549" width="0.3578%" height="15" fill="rgb(254,73,53)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="533" width="0.3578%" height="15" fill="rgb(251,35,20)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="517" width="0.3578%" height="15" fill="rgb(241,119,20)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="501" width="0.3578%" height="15" fill="rgb(207,102,14)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (610,306 samples, 0.36%)</title><rect x="88.7528%" y="485" width="0.3578%" height="15" fill="rgb(248,201,50)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="469" width="0.3578%" height="15" fill="rgb(222,185,44)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="453" width="0.3578%" height="15" fill="rgb(218,107,18)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="437" width="0.3578%" height="15" fill="rgb(237,177,39)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="421" width="0.3578%" height="15" fill="rgb(246,69,6)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="405" width="0.3578%" height="15" fill="rgb(234,208,37)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::CaseNode&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="389" width="0.3578%" height="15" fill="rgb(225,4,6)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (610,306 samples, 0.36%)</title><rect x="88.7528%" y="373" width="0.3578%" height="15" fill="rgb(233,45,0)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::CaseNode]&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="357" width="0.3578%" height="15" fill="rgb(226,136,5)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::CaseNode&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="341" width="0.3578%" height="15" fill="rgb(211,91,47)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::Node&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="325" width="0.3578%" height="15" fill="rgb(242,88,51)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="335.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (610,306 samples, 0.36%)</title><rect x="88.7528%" y="309" width="0.3578%" height="15" fill="rgb(230,91,28)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::Node]&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="293" width="0.3578%" height="15" fill="rgb(254,186,29)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="277" width="0.3578%" height="15" fill="rgb(238,6,4)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="261" width="0.3578%" height="15" fill="rgb(221,151,16)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::ConjunctNode&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="245" width="0.3578%" height="15" fill="rgb(251,143,52)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="255.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (610,306 samples, 0.36%)</title><rect x="88.7528%" y="229" width="0.3578%" height="15" fill="rgb(206,90,15)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::ConjunctNode]&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="213" width="0.3578%" height="15" fill="rgb(218,35,8)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::ConjunctNode&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="197" width="0.3578%" height="15" fill="rgb(239,215,6)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;shed::parse::Node&gt;&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="181" width="0.3578%" height="15" fill="rgb(245,116,39)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="165" width="0.3578%" height="15" fill="rgb(242,65,28)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::NdRule&gt; (610,306 samples, 0.36%)</title><rect x="88.7528%" y="149" width="0.3578%" height="15" fill="rgb(252,132,53)" fg:x="151379488" fg:w="610306"/><text x="89.0028%" y="159.50"></text></g><g><title>__libc_fork (20,407 samples, 0.01%)</title><rect x="89.1106%" y="1189" width="0.0120%" height="15" fill="rgb(224,159,50)" fg:x="151989794" fg:w="20407"/><text x="89.3606%" y="1199.50"></text></g><g><title>nix::unistd::fork (29,326 samples, 0.02%)</title><rect x="89.1106%" y="1205" width="0.0172%" height="15" fill="rgb(224,93,4)" fg:x="151989794" fg:w="29326"/><text x="89.3606%" y="1215.50"></text></g><g><title>__execvpe (55,397 samples, 0.03%)</title><rect x="89.1278%" y="1173" width="0.0325%" height="15" fill="rgb(208,81,34)" fg:x="152019120" fg:w="55397"/><text x="89.3778%" y="1183.50"></text></g><g><title>__execvpe_common.isra.0 (55,397 samples, 0.03%)</title><rect x="89.1278%" y="1157" width="0.0325%" height="15" fill="rgb(233,92,54)" fg:x="152019120" fg:w="55397"/><text x="89.3778%" y="1167.50"></text></g><g><title>getenv (55,397 samples, 0.03%)</title><rect x="89.1278%" y="1141" width="0.0325%" height="15" fill="rgb(237,21,14)" fg:x="152019120" fg:w="55397"/><text x="89.3778%" y="1151.50"></text></g><g><title>__strlen_evex (55,397 samples, 0.03%)</title><rect x="89.1278%" y="1125" width="0.0325%" height="15" fill="rgb(249,128,51)" fg:x="152019120" fg:w="55397"/><text x="89.3778%" y="1135.50"></text></g><g><title>nix::unistd::execvpe (103,546 samples, 0.06%)</title><rect x="89.1278%" y="1189" width="0.0607%" height="15" fill="rgb(223,129,24)" fg:x="152019120" fg:w="103546"/><text x="89.3778%" y="1199.50"></text></g><g><title>nix::unistd::to_exec_array (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1173" width="0.0282%" height="15" fill="rgb(231,168,25)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1157" width="0.0282%" height="15" fill="rgb(224,39,20)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1141" width="0.0282%" height="15" fill="rgb(225,152,53)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1125" width="0.0282%" height="15" fill="rgb(252,17,24)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1109" width="0.0282%" height="15" fill="rgb(250,114,30)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1119.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1093" width="0.0282%" height="15" fill="rgb(229,5,4)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1103.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1077" width="0.0282%" height="15" fill="rgb(225,176,49)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1087.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1061" width="0.0282%" height="15" fill="rgb(224,221,49)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1045" width="0.0282%" height="15" fill="rgb(253,169,27)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1029" width="0.0282%" height="15" fill="rgb(211,206,16)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1039.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (48,149 samples, 0.03%)</title><rect x="89.1603%" y="1013" width="0.0282%" height="15" fill="rgb(244,87,35)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1023.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (48,149 samples, 0.03%)</title><rect x="89.1603%" y="997" width="0.0282%" height="15" fill="rgb(246,28,10)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="1007.50"></text></g><g><title>alloc::alloc::alloc (48,149 samples, 0.03%)</title><rect x="89.1603%" y="981" width="0.0282%" height="15" fill="rgb(229,12,44)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="991.50"></text></g><g><title>__libc_malloc2 (48,149 samples, 0.03%)</title><rect x="89.1603%" y="965" width="0.0282%" height="15" fill="rgb(210,145,37)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="975.50"></text></g><g><title>_int_malloc (48,149 samples, 0.03%)</title><rect x="89.1603%" y="949" width="0.0282%" height="15" fill="rgb(227,112,52)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="959.50"></text></g><g><title>malloc_consolidate (48,149 samples, 0.03%)</title><rect x="89.1603%" y="933" width="0.0282%" height="15" fill="rgb(238,155,34)" fg:x="152074517" fg:w="48149"/><text x="89.4103%" y="943.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd::{{closure}} (119,700 samples, 0.07%)</title><rect x="89.1278%" y="1205" width="0.0702%" height="15" fill="rgb(239,226,36)" fg:x="152019120" fg:w="119700"/><text x="89.3778%" y="1215.50"></text></g><g><title>shed::parse::execute::ExecArgs::from_expanded (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1189" width="0.4076%" height="15" fill="rgb(230,16,23)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1199.50"></text></g><g><title>shed::parse::execute::ExecArgs::get_envp (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1173" width="0.4076%" height="15" fill="rgb(236,171,36)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1157" width="0.4076%" height="15" fill="rgb(221,22,14)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1141" width="0.4076%" height="15" fill="rgb(242,43,11)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1125" width="0.4076%" height="15" fill="rgb(232,69,23)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1109" width="0.4076%" height="15" fill="rgb(216,180,54)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1093" width="0.4076%" height="15" fill="rgb(216,5,24)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1103.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1077" width="0.4076%" height="15" fill="rgb(225,89,9)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1087.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1061" width="0.4076%" height="15" fill="rgb(243,75,33)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1071.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1045" width="0.4076%" height="15" fill="rgb(247,141,45)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1055.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1029" width="0.4076%" height="15" fill="rgb(232,177,36)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1039.50"></text></g><g><title>shed::parse::execute::ExecArgs::get_envp::{{closure}} (695,237 samples, 0.41%)</title><rect x="89.1980%" y="1013" width="0.4076%" height="15" fill="rgb(219,125,36)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1023.50"></text></g><g><title>alloc::ffi::c_str::CString::new (695,237 samples, 0.41%)</title><rect x="89.1980%" y="997" width="0.4076%" height="15" fill="rgb(227,94,9)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="1007.50"></text></g><g><title>&lt;T as alloc::ffi::c_str::CString::new::SpecNewImpl&gt;::spec_new_impl (695,237 samples, 0.41%)</title><rect x="89.1980%" y="981" width="0.4076%" height="15" fill="rgb(240,34,52)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="991.50"></text></g><g><title>core::slice::memchr::memchr (695,237 samples, 0.41%)</title><rect x="89.1980%" y="965" width="0.4076%" height="15" fill="rgb(216,45,12)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="975.50"></text></g><g><title>core::slice::memchr::memchr_aligned (695,237 samples, 0.41%)</title><rect x="89.1980%" y="949" width="0.4076%" height="15" fill="rgb(246,21,19)" fg:x="152138820" fg:w="695237"/><text x="89.4480%" y="959.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (607,791 samples, 0.36%)</title><rect x="89.6056%" y="1157" width="0.3563%" height="15" fill="rgb(213,98,42)" fg:x="152834057" fg:w="607791"/><text x="89.8556%" y="1167.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (607,791 samples, 0.36%)</title><rect x="89.6056%" y="1141" width="0.3563%" height="15" fill="rgb(250,136,47)" fg:x="152834057" fg:w="607791"/><text x="89.8556%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1477" width="9.2844%" height="15" fill="rgb(251,124,27)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1487.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1461" width="9.2844%" height="15" fill="rgb(229,180,14)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1471.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1445" width="9.2844%" height="15" fill="rgb(245,216,25)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1455.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1429" width="9.2844%" height="15" fill="rgb(251,43,5)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1439.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1413" width="9.2844%" height="15" fill="rgb(250,128,24)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1423.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1397" width="9.2844%" height="15" fill="rgb(217,117,27)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1407.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1381" width="9.2844%" height="15" fill="rgb(245,147,4)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1391.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_func (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1365" width="9.2844%" height="15" fill="rgb(242,201,35)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1375.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1349" width="9.2844%" height="15" fill="rgb(218,181,1)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1359.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1333" width="9.2844%" height="15" fill="rgb(222,6,29)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1343.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1317" width="9.2844%" height="15" fill="rgb(208,186,3)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1327.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1301" width="9.2844%" height="15" fill="rgb(216,36,26)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1311.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (15,835,755 samples, 9.28%)</title><rect x="81.0634%" y="1285" width="9.2844%" height="15" fill="rgb(248,201,23)" fg:x="138264217" fg:w="15835755"/><text x="81.3134%" y="1295.50">shed::parse::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (9,038,755 samples, 5.30%)</title><rect x="85.0484%" y="1269" width="5.2994%" height="15" fill="rgb(251,170,31)" fg:x="145061217" fg:w="9038755"/><text x="85.2984%" y="1279.50">shed::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (9,038,755 samples, 5.30%)</title><rect x="85.0484%" y="1253" width="5.2994%" height="15" fill="rgb(207,110,25)" fg:x="145061217" fg:w="9038755"/><text x="85.2984%" y="1263.50">shed::..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (9,038,755 samples, 5.30%)</title><rect x="85.0484%" y="1237" width="5.2994%" height="15" fill="rgb(250,54,15)" fg:x="145061217" fg:w="9038755"/><text x="85.2984%" y="1247.50">shed::..</text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (2,110,178 samples, 1.24%)</title><rect x="89.1106%" y="1221" width="1.2372%" height="15" fill="rgb(227,68,33)" fg:x="151989794" fg:w="2110178"/><text x="89.3606%" y="1231.50"></text></g><g><title>shed::parse::execute::ExecArgs::new (1,961,152 samples, 1.15%)</title><rect x="89.1980%" y="1205" width="1.1498%" height="15" fill="rgb(238,34,41)" fg:x="152138820" fg:w="1961152"/><text x="89.4480%" y="1215.50"></text></g><g><title>shed::parse::execute::prepare_argv (1,265,915 samples, 0.74%)</title><rect x="89.6056%" y="1189" width="0.7422%" height="15" fill="rgb(220,11,15)" fg:x="152834057" fg:w="1265915"/><text x="89.8556%" y="1199.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,265,915 samples, 0.74%)</title><rect x="89.6056%" y="1173" width="0.7422%" height="15" fill="rgb(246,111,35)" fg:x="152834057" fg:w="1265915"/><text x="89.8556%" y="1183.50"></text></g><g><title>shed::expand::Expander::new (658,124 samples, 0.39%)</title><rect x="89.9620%" y="1157" width="0.3859%" height="15" fill="rgb(209,88,53)" fg:x="153441848" fg:w="658124"/><text x="90.2120%" y="1167.50"></text></g><g><title>shed::expand::Expander::from_raw (658,124 samples, 0.39%)</title><rect x="89.9620%" y="1141" width="0.3859%" height="15" fill="rgb(231,185,47)" fg:x="153441848" fg:w="658124"/><text x="90.2120%" y="1151.50"></text></g><g><title>shed::expand::expand_braces_full (658,124 samples, 0.39%)</title><rect x="89.9620%" y="1125" width="0.3859%" height="15" fill="rgb(233,154,1)" fg:x="153441848" fg:w="658124"/><text x="90.2120%" y="1135.50"></text></g><g><title>shed::expand::has_braces (658,124 samples, 0.39%)</title><rect x="89.9620%" y="1109" width="0.3859%" height="15" fill="rgb(225,15,46)" fg:x="153441848" fg:w="658124"/><text x="90.2120%" y="1119.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (658,124 samples, 0.39%)</title><rect x="89.9620%" y="1093" width="0.3859%" height="15" fill="rgb(211,135,41)" fg:x="153441848" fg:w="658124"/><text x="90.2120%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (188,770 samples, 0.11%)</title><rect x="90.3478%" y="1029" width="0.1107%" height="15" fill="rgb(208,54,0)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="1039.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (188,770 samples, 0.11%)</title><rect x="90.3478%" y="1013" width="0.1107%" height="15" fill="rgb(244,136,14)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="1023.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (188,770 samples, 0.11%)</title><rect x="90.3478%" y="997" width="0.1107%" height="15" fill="rgb(241,56,14)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="1007.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (188,770 samples, 0.11%)</title><rect x="90.3478%" y="981" width="0.1107%" height="15" fill="rgb(205,80,24)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="991.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (188,770 samples, 0.11%)</title><rect x="90.3478%" y="965" width="0.1107%" height="15" fill="rgb(220,57,4)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="975.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (188,770 samples, 0.11%)</title><rect x="90.3478%" y="949" width="0.1107%" height="15" fill="rgb(226,193,50)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="959.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (188,770 samples, 0.11%)</title><rect x="90.3478%" y="933" width="0.1107%" height="15" fill="rgb(231,168,22)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="943.50"></text></g><g><title>__memmove_avx512_unaligned_erms (188,770 samples, 0.11%)</title><rect x="90.3478%" y="917" width="0.1107%" height="15" fill="rgb(254,215,14)" fg:x="154099972" fg:w="188770"/><text x="90.5978%" y="927.50"></text></g><g><title>shed::parse::execute::exec_input (18,486,868 samples, 10.84%)</title><rect x="80.6112%" y="1493" width="10.8387%" height="15" fill="rgb(211,115,16)" fg:x="137492983" fg:w="18486868"/><text x="80.8612%" y="1503.50">shed::parse::exe..</text></g><g><title>shed::state::read_logic (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1477" width="1.1022%" height="15" fill="rgb(236,210,16)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1487.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1461" width="1.1022%" height="15" fill="rgb(221,94,12)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1471.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1445" width="1.1022%" height="15" fill="rgb(235,218,49)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1455.50"></text></g><g><title>shed::state::read_logic::{{closure}} (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1429" width="1.1022%" height="15" fill="rgb(217,114,14)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1439.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1413" width="1.1022%" height="15" fill="rgb(216,145,22)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1423.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1397" width="1.1022%" height="15" fill="rgb(217,112,39)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1407.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1381" width="1.1022%" height="15" fill="rgb(225,85,32)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1391.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1365" width="1.1022%" height="15" fill="rgb(245,209,47)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1375.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1349" width="1.1022%" height="15" fill="rgb(218,220,15)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1359.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1333" width="1.1022%" height="15" fill="rgb(222,202,31)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1343.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1317" width="1.1022%" height="15" fill="rgb(243,203,4)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1327.50"></text></g><g><title>core::clone::Clone::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1301" width="1.1022%" height="15" fill="rgb(237,92,17)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1311.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1285" width="1.1022%" height="15" fill="rgb(231,119,7)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1295.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1269" width="1.1022%" height="15" fill="rgb(237,82,41)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1279.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1253" width="1.1022%" height="15" fill="rgb(226,81,48)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1237" width="1.1022%" height="15" fill="rgb(234,70,51)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1247.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1221" width="1.1022%" height="15" fill="rgb(251,86,4)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1231.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1205" width="1.1022%" height="15" fill="rgb(244,144,28)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1215.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1189" width="1.1022%" height="15" fill="rgb(232,161,39)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1199.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1173" width="1.1022%" height="15" fill="rgb(247,34,51)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1183.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1157" width="1.1022%" height="15" fill="rgb(225,132,2)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1167.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1141" width="1.1022%" height="15" fill="rgb(209,159,44)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1151.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1125" width="1.1022%" height="15" fill="rgb(251,214,1)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1135.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1109" width="1.1022%" height="15" fill="rgb(247,84,47)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1119.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1093" width="1.1022%" height="15" fill="rgb(240,111,43)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1103.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1077" width="1.1022%" height="15" fill="rgb(215,214,35)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1087.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1061" width="1.1022%" height="15" fill="rgb(248,207,23)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1071.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,879,879 samples, 1.10%)</title><rect x="90.3478%" y="1045" width="1.1022%" height="15" fill="rgb(214,186,4)" fg:x="154099972" fg:w="1879879"/><text x="90.5978%" y="1055.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="1029" width="0.9915%" height="15" fill="rgb(220,133,22)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="1039.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="1013" width="0.9915%" height="15" fill="rgb(239,134,19)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="1023.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="997" width="0.9915%" height="15" fill="rgb(250,140,9)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="1007.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="981" width="0.9915%" height="15" fill="rgb(225,59,14)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="991.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="965" width="0.9915%" height="15" fill="rgb(214,152,51)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="975.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="949" width="0.9915%" height="15" fill="rgb(251,227,43)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="959.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="933" width="0.9915%" height="15" fill="rgb(241,96,17)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="917" width="0.9915%" height="15" fill="rgb(234,198,43)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="927.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="901" width="0.9915%" height="15" fill="rgb(220,108,29)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="911.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="885" width="0.9915%" height="15" fill="rgb(226,163,33)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="895.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="869" width="0.9915%" height="15" fill="rgb(205,194,45)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="879.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="853" width="0.9915%" height="15" fill="rgb(206,143,44)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="863.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="837" width="0.9915%" height="15" fill="rgb(236,136,36)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="847.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="821" width="0.9915%" height="15" fill="rgb(249,172,42)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="831.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="805" width="0.9915%" height="15" fill="rgb(216,139,23)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="815.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="789" width="0.9915%" height="15" fill="rgb(207,166,20)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="773" width="0.9915%" height="15" fill="rgb(210,209,22)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="783.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="757" width="0.9915%" height="15" fill="rgb(232,118,20)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="767.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="741" width="0.9915%" height="15" fill="rgb(238,113,42)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="751.50"></text></g><g><title>&lt;shed::parse::CaseNode as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="725" width="0.9915%" height="15" fill="rgb(231,42,5)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="709" width="0.9915%" height="15" fill="rgb(243,166,24)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="719.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="693" width="0.9915%" height="15" fill="rgb(237,226,12)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="677" width="0.9915%" height="15" fill="rgb(229,133,24)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="687.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="661" width="0.9915%" height="15" fill="rgb(238,33,43)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="671.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="645" width="0.9915%" height="15" fill="rgb(227,59,38)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="629" width="0.9915%" height="15" fill="rgb(230,97,0)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="639.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="613" width="0.9915%" height="15" fill="rgb(250,173,50)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="623.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="597" width="0.9915%" height="15" fill="rgb(240,15,50)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="607.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="581" width="0.9915%" height="15" fill="rgb(221,93,22)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="591.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="565" width="0.9915%" height="15" fill="rgb(245,180,53)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="575.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="549" width="0.9915%" height="15" fill="rgb(231,88,51)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="559.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="533" width="0.9915%" height="15" fill="rgb(240,58,21)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="543.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="517" width="0.9915%" height="15" fill="rgb(237,21,10)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="527.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="501" width="0.9915%" height="15" fill="rgb(218,43,11)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,691,109 samples, 0.99%)</title><rect x="90.4585%" y="485" width="0.9915%" height="15" fill="rgb(218,221,29)" fg:x="154288742" fg:w="1691109"/><text x="90.7085%" y="495.50"></text></g><g><title>shed::state::source_rc (114,294,702 samples, 67.01%)</title><rect x="24.4402%" y="1781" width="67.0102%" height="15" fill="rgb(214,118,42)" fg:x="41685905" fg:w="114294702"/><text x="24.6902%" y="1791.50">shed::state::source_rc</text></g><g><title>shed::state::source_file (114,294,702 samples, 67.01%)</title><rect x="24.4402%" y="1765" width="67.0102%" height="15" fill="rgb(251,200,26)" fg:x="41685905" fg:w="114294702"/><text x="24.6902%" y="1775.50">shed::state::source_file</text></g><g><title>shed::parse::execute::exec_input (114,294,702 samples, 67.01%)</title><rect x="24.4402%" y="1749" width="67.0102%" height="15" fill="rgb(237,101,39)" fg:x="41685905" fg:w="114294702"/><text x="24.6902%" y="1759.50">shed::parse::execute::exec_input</text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (28,810,091 samples, 16.89%)</title><rect x="74.5592%" y="1733" width="16.8912%" height="15" fill="rgb(251,117,11)" fg:x="127170516" fg:w="28810091"/><text x="74.8092%" y="1743.50">shed::parse::execute::Disp..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (28,810,091 samples, 16.89%)</title><rect x="74.5592%" y="1717" width="16.8912%" height="15" fill="rgb(216,223,23)" fg:x="127170516" fg:w="28810091"/><text x="74.8092%" y="1727.50">shed::parse::execute::Disp..</text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (28,810,091 samples, 16.89%)</title><rect x="74.5592%" y="1701" width="16.8912%" height="15" fill="rgb(251,54,12)" fg:x="127170516" fg:w="28810091"/><text x="74.8092%" y="1711.50">shed::parse::execute::Disp..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (28,810,091 samples, 16.89%)</title><rect x="74.5592%" y="1685" width="16.8912%" height="15" fill="rgb(254,176,54)" fg:x="127170516" fg:w="28810091"/><text x="74.8092%" y="1695.50">shed::parse::execute::Disp..</text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1669" width="10.8575%" height="15" fill="rgb(210,32,8)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1679.50">shed::parse::exe..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1653" width="10.8575%" height="15" fill="rgb(235,52,38)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1663.50">shed::parse::exe..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1637" width="10.8575%" height="15" fill="rgb(231,4,44)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1647.50">shed::parse::exe..</text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1621" width="10.8575%" height="15" fill="rgb(249,2,32)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1631.50">shed::parse::exe..</text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1605" width="10.8575%" height="15" fill="rgb(224,65,26)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1615.50">shed::parse::exe..</text></g><g><title>shed::builtin::varcmds::export (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1589" width="10.8575%" height="15" fill="rgb(250,73,40)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1599.50">shed::builtin::v..</text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1573" width="10.8575%" height="15" fill="rgb(253,177,16)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1583.50">shed::expand::&lt;i..</text></g><g><title>shed::expand::Expander::expand (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1557" width="10.8575%" height="15" fill="rgb(217,32,34)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1567.50">shed::expand::Ex..</text></g><g><title>shed::expand::expand_raw (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1541" width="10.8575%" height="15" fill="rgb(212,7,10)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1551.50">shed::expand::ex..</text></g><g><title>shed::expand::expand_var (18,518,853 samples, 10.86%)</title><rect x="80.5929%" y="1525" width="10.8575%" height="15" fill="rgb(245,89,8)" fg:x="137461754" fg:w="18518853"/><text x="80.8429%" y="1535.50">shed::expand::ex..</text></g><g><title>shed::expand::expand_cmd_sub (18,495,518 samples, 10.84%)</title><rect x="80.6066%" y="1509" width="10.8438%" height="15" fill="rgb(237,16,53)" fg:x="137485089" fg:w="18495518"/><text x="80.8566%" y="1519.50">shed::expand::ex..</text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1669" width="0.5620%" height="15" fill="rgb(250,204,30)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1679.50"></text></g><g><title>&lt;str as alloc::string::SpecToString&gt;::spec_to_string (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1653" width="0.5620%" height="15" fill="rgb(208,77,27)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1663.50"></text></g><g><title>&lt;alloc::string::String as core::convert::From&lt;&amp;str&gt;&gt;::from (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1637" width="0.5620%" height="15" fill="rgb(250,204,28)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1647.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1621" width="0.5620%" height="15" fill="rgb(244,63,21)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1631.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1605" width="0.5620%" height="15" fill="rgb(236,85,44)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1615.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1589" width="0.5620%" height="15" fill="rgb(215,98,4)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1599.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1573" width="0.5620%" height="15" fill="rgb(235,38,11)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1583.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1557" width="0.5620%" height="15" fill="rgb(254,186,25)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1567.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1541" width="0.5620%" height="15" fill="rgb(225,55,31)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1551.50"></text></g><g><title>core::ptr::copy_nonoverlapping (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1525" width="0.5620%" height="15" fill="rgb(211,15,21)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1535.50"></text></g><g><title>__memmove_avx512_unaligned_erms (958,545 samples, 0.56%)</title><rect x="91.4504%" y="1509" width="0.5620%" height="15" fill="rgb(215,187,41)" fg:x="155980607" fg:w="958545"/><text x="91.7004%" y="1519.50"></text></g><g><title>std::ffi::os_str::OsStr::to_str (1,112,681 samples, 0.65%)</title><rect x="92.0124%" y="1669" width="0.6524%" height="15" fill="rgb(248,69,32)" fg:x="156939152" fg:w="1112681"/><text x="92.2624%" y="1679.50"></text></g><g><title>std::sys::os_str::bytes::Slice::to_str (1,112,681 samples, 0.65%)</title><rect x="92.0124%" y="1653" width="0.6524%" height="15" fill="rgb(252,102,52)" fg:x="156939152" fg:w="1112681"/><text x="92.2624%" y="1663.50"></text></g><g><title>core::str::converts::from_utf8 (1,112,681 samples, 0.65%)</title><rect x="92.0124%" y="1637" width="0.6524%" height="15" fill="rgb(253,140,32)" fg:x="156939152" fg:w="1112681"/><text x="92.2624%" y="1647.50"></text></g><g><title>std::fs::DirEntry::path (1,142,335 samples, 0.67%)</title><rect x="92.6648%" y="1669" width="0.6697%" height="15" fill="rgb(216,56,42)" fg:x="158051833" fg:w="1142335"/><text x="92.9148%" y="1679.50"></text></g><g><title>std::path::Path::_join (1,142,335 samples, 0.67%)</title><rect x="92.6648%" y="1653" width="0.6697%" height="15" fill="rgb(216,184,14)" fg:x="158051833" fg:w="1142335"/><text x="92.9148%" y="1663.50"></text></g><g><title>shed::state::MetaTab::get_cmds_in_path (4,118,319 samples, 2.41%)</title><rect x="91.4504%" y="1685" width="2.4145%" height="15" fill="rgb(237,187,27)" fg:x="155980607" fg:w="4118319"/><text x="91.7004%" y="1695.50">sh..</text></g><g><title>std::fs::metadata (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1669" width="0.5305%" height="15" fill="rgb(219,65,3)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::path::PathBuf&gt; (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1653" width="0.5305%" height="15" fill="rgb(245,83,25)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::os_str::OsString&gt; (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1637" width="0.5305%" height="15" fill="rgb(214,205,45)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::os_str::bytes::Buf&gt; (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1621" width="0.5305%" height="15" fill="rgb(241,20,18)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1605" width="0.5305%" height="15" fill="rgb(232,163,23)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1589" width="0.5305%" height="15" fill="rgb(214,5,46)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1599.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1573" width="0.5305%" height="15" fill="rgb(229,78,17)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1583.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1557" width="0.5305%" height="15" fill="rgb(248,89,10)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1567.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1541" width="0.5305%" height="15" fill="rgb(248,54,15)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1551.50"></text></g><g><title>alloc::alloc::dealloc (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1525" width="0.5305%" height="15" fill="rgb(223,116,6)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1535.50"></text></g><g><title>_int_free_chunk (904,758 samples, 0.53%)</title><rect x="93.3345%" y="1509" width="0.5305%" height="15" fill="rgb(205,125,38)" fg:x="159194168" fg:w="904758"/><text x="93.5845%" y="1519.50"></text></g><g><title>core::ops::function::FnOnce::call_once (139,784,989 samples, 81.96%)</title><rect x="12.3960%" y="1829" width="81.9550%" height="15" fill="rgb(251,78,38)" fg:x="21142922" fg:w="139784989"/><text x="12.6460%" y="1839.50">core::ops::function::FnOnce::call_once</text></g><g><title>shed::main (139,784,989 samples, 81.96%)</title><rect x="12.3960%" y="1813" width="81.9550%" height="15" fill="rgb(253,78,28)" fg:x="21142922" fg:w="139784989"/><text x="12.6460%" y="1823.50">shed::main</text></g><g><title>shed::shed_interactive (139,760,392 samples, 81.94%)</title><rect x="12.4104%" y="1797" width="81.9406%" height="15" fill="rgb(209,120,3)" fg:x="21167519" fg:w="139760392"/><text x="12.6604%" y="1807.50">shed::shed_interactive</text></g><g><title>shed::state::write_meta (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1781" width="2.9006%" height="15" fill="rgb(238,229,9)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1791.50">sh..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1765" width="2.9006%" height="15" fill="rgb(253,159,18)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1775.50">st..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1749" width="2.9006%" height="15" fill="rgb(244,42,34)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1759.50">st..</text></g><g><title>shed::state::write_meta::{{closure}} (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1733" width="2.9006%" height="15" fill="rgb(224,8,7)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1743.50">sh..</text></g><g><title>shed::shed_interactive::{{closure}} (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1717" width="2.9006%" height="15" fill="rgb(210,201,45)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1727.50">sh..</text></g><g><title>shed::state::MetaTab::try_rehash_commands (4,947,304 samples, 2.90%)</title><rect x="91.4504%" y="1701" width="2.9006%" height="15" fill="rgb(252,185,21)" fg:x="155980607" fg:w="4947304"/><text x="91.7004%" y="1711.50">sh..</text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1685" width="0.4860%" height="15" fill="rgb(223,131,1)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1695.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1669" width="0.4860%" height="15" fill="rgb(245,141,16)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1679.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1653" width="0.4860%" height="15" fill="rgb(229,55,45)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1663.50"></text></g><g><title>hashbrown::map::make_hash (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1637" width="0.4860%" height="15" fill="rgb(208,92,15)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1647.50"></text></g><g><title>core::hash::BuildHasher::hash_one (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1621" width="0.4860%" height="15" fill="rgb(234,185,47)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1631.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1605" width="0.4860%" height="15" fill="rgb(253,104,50)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1615.50"></text></g><g><title>&lt;alloc::string::String as core::hash::Hash&gt;::hash (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1589" width="0.4860%" height="15" fill="rgb(205,70,7)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1599.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for str&gt;::hash (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1573" width="0.4860%" height="15" fill="rgb(240,178,43)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1583.50"></text></g><g><title>&lt;std::hash::random::DefaultHasher as core::hash::Hasher&gt;::write_str (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1557" width="0.4860%" height="15" fill="rgb(214,112,2)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1567.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write_str (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1541" width="0.4860%" height="15" fill="rgb(206,46,17)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1551.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write_str (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1525" width="0.4860%" height="15" fill="rgb(225,220,16)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1535.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1509" width="0.4860%" height="15" fill="rgb(238,65,40)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1519.50"></text></g><g><title>core::hash::sip::u8to64_le (828,985 samples, 0.49%)</title><rect x="93.8650%" y="1493" width="0.4860%" height="15" fill="rgb(230,151,21)" fg:x="160098926" fg:w="828985"/><text x="94.1150%" y="1503.50"></text></g><g><title>std::rt::lang_start::{{closure}} (139,903,937 samples, 82.02%)</title><rect x="12.3960%" y="1861" width="82.0248%" height="15" fill="rgb(218,58,49)" fg:x="21142922" fg:w="139903937"/><text x="12.6460%" y="1871.50">std::rt::lang_start::{{closure}}</text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (139,903,937 samples, 82.02%)</title><rect x="12.3960%" y="1845" width="82.0248%" height="15" fill="rgb(219,179,14)" fg:x="21142922" fg:w="139903937"/><text x="12.6460%" y="1855.50">std::sys::backtrace::__rust_begin_short_backtrace</text></g><g><title>shed::main (118,948 samples, 0.07%)</title><rect x="94.3510%" y="1829" width="0.0697%" height="15" fill="rgb(223,72,1)" fg:x="160927911" fg:w="118948"/><text x="94.6010%" y="1839.50"></text></g><g><title>std::sys::thread_local::native::lazy::Storage&lt;T,D&gt;::get_or_init_slow (118,948 samples, 0.07%)</title><rect x="94.3510%" y="1813" width="0.0697%" height="15" fill="rgb(238,126,10)" fg:x="160927911" fg:w="118948"/><text x="94.6010%" y="1823.50"></text></g><g><title>shed::state::VarTab::new (118,948 samples, 0.07%)</title><rect x="94.3510%" y="1797" width="0.0697%" height="15" fill="rgb(224,206,38)" fg:x="160927911" fg:w="118948"/><text x="94.6010%" y="1807.50"></text></g><g><title>shed::state::VarTab::update_arg_params (116,510 samples, 0.07%)</title><rect x="94.3524%" y="1781" width="0.0683%" height="15" fill="rgb(212,201,54)" fg:x="160930349" fg:w="116510"/><text x="94.6024%" y="1791.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::clone::Clone&gt;::clone (116,510 samples, 0.07%)</title><rect x="94.3524%" y="1765" width="0.0683%" height="15" fill="rgb(218,154,48)" fg:x="160930349" fg:w="116510"/><text x="94.6024%" y="1775.50"></text></g><g><title>__libc_start_main@@GLIBC_2.34 (141,742,370 samples, 83.10%)</title><rect x="11.6419%" y="1925" width="83.1026%" height="15" fill="rgb(232,93,24)" fg:x="19856728" fg:w="141742370"/><text x="11.8919%" y="1935.50">__libc_start_main@@GLIBC_2.34</text></g><g><title>__libc_start_call_main (141,742,370 samples, 83.10%)</title><rect x="11.6419%" y="1909" width="83.1026%" height="15" fill="rgb(245,30,21)" fg:x="19856728" fg:w="141742370"/><text x="11.8919%" y="1919.50">__libc_start_call_main</text></g><g><title>main (140,456,176 samples, 82.35%)</title><rect x="12.3960%" y="1893" width="82.3485%" height="15" fill="rgb(242,148,29)" fg:x="21142922" fg:w="140456176"/><text x="12.6460%" y="1903.50">main</text></g><g><title>std::rt::lang_start_internal (140,456,176 samples, 82.35%)</title><rect x="12.3960%" y="1877" width="82.3485%" height="15" fill="rgb(244,153,54)" fg:x="21142922" fg:w="140456176"/><text x="12.6460%" y="1887.50">std::rt::lang_start_internal</text></g><g><title>std::sys::pal::unix::stack_overflow::thread_info::set_current_info (552,239 samples, 0.32%)</title><rect x="94.4207%" y="1861" width="0.3238%" height="15" fill="rgb(252,87,22)" fg:x="161046859" fg:w="552239"/><text x="94.6707%" y="1871.50"></text></g><g><title>_dl_init_paths (110,902 samples, 0.07%)</title><rect x="94.7512%" y="1877" width="0.0650%" height="15" fill="rgb(210,51,29)" fg:x="161610505" fg:w="110902"/><text x="95.0012%" y="1887.50"></text></g><g><title>_dl_important_hwcaps (110,902 samples, 0.07%)</title><rect x="94.7512%" y="1861" width="0.0650%" height="15" fill="rgb(242,136,47)" fg:x="161610505" fg:w="110902"/><text x="95.0012%" y="1871.50"></text></g><g><title>_dl_hwcaps_split_masked (110,902 samples, 0.07%)</title><rect x="94.7512%" y="1845" width="0.0650%" height="15" fill="rgb(238,68,4)" fg:x="161610505" fg:w="110902"/><text x="95.0012%" y="1855.50"></text></g><g><title>_dl_hwcaps_split (110,902 samples, 0.07%)</title><rect x="94.7512%" y="1829" width="0.0650%" height="15" fill="rgb(242,161,30)" fg:x="161610505" fg:w="110902"/><text x="95.0012%" y="1839.50"></text></g><g><title>_start (141,954,607 samples, 83.23%)</title><rect x="11.6419%" y="1941" width="83.2271%" height="15" fill="rgb(218,58,44)" fg:x="19856726" fg:w="141954607"/><text x="11.8919%" y="1951.50">_start</text></g><g><title>_dl_start (212,235 samples, 0.12%)</title><rect x="94.7445%" y="1925" width="0.1244%" height="15" fill="rgb(252,125,32)" fg:x="161599098" fg:w="212235"/><text x="94.9945%" y="1935.50"></text></g><g><title>_dl_sysdep_start (211,906 samples, 0.12%)</title><rect x="94.7447%" y="1909" width="0.1242%" height="15" fill="rgb(219,178,0)" fg:x="161599427" fg:w="211906"/><text x="94.9947%" y="1919.50"></text></g><g><title>dl_main (200,828 samples, 0.12%)</title><rect x="94.7512%" y="1893" width="0.1177%" height="15" fill="rgb(213,152,7)" fg:x="161610505" fg:w="200828"/><text x="95.0012%" y="1903.50"></text></g><g><title>_dl_new_object (89,926 samples, 0.05%)</title><rect x="94.8162%" y="1877" width="0.0527%" height="15" fill="rgb(249,109,34)" fg:x="161721407" fg:w="89926"/><text x="95.0662%" y="1887.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1941" width="0.7119%" height="15" fill="rgb(232,96,21)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1951.50"></text></g><g><title>shed::parse::execute::exec_input (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1925" width="0.7119%" height="15" fill="rgb(228,27,39)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1935.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1909" width="0.7119%" height="15" fill="rgb(211,182,52)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1919.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1893" width="0.7119%" height="15" fill="rgb(234,178,38)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1903.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1877" width="0.7119%" height="15" fill="rgb(221,111,3)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1887.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1861" width="0.7119%" height="15" fill="rgb(228,175,21)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1845" width="0.7119%" height="15" fill="rgb(228,174,43)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1829" width="0.7119%" height="15" fill="rgb(211,191,0)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1813" width="0.7119%" height="15" fill="rgb(253,117,3)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1797" width="0.7119%" height="15" fill="rgb(241,127,19)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1781" width="0.7119%" height="15" fill="rgb(218,103,12)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1765" width="0.7119%" height="15" fill="rgb(236,214,43)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1749" width="0.7119%" height="15" fill="rgb(244,144,19)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1733" width="0.7119%" height="15" fill="rgb(246,188,10)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1717" width="0.7119%" height="15" fill="rgb(212,193,33)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1701" width="0.7119%" height="15" fill="rgb(241,51,29)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1685" width="0.7119%" height="15" fill="rgb(211,58,19)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1669" width="0.7119%" height="15" fill="rgb(229,111,26)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1653" width="0.7119%" height="15" fill="rgb(213,115,40)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1637" width="0.7119%" height="15" fill="rgb(209,56,44)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1647.50"></text></g><g><title>shed::builtin::varcmds::local (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1621" width="0.7119%" height="15" fill="rgb(230,108,32)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1631.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1605" width="0.7119%" height="15" fill="rgb(216,165,31)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1615.50"></text></g><g><title>shed::expand::Expander::expand (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1589" width="0.7119%" height="15" fill="rgb(218,122,21)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1599.50"></text></g><g><title>shed::expand::expand_raw (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1573" width="0.7119%" height="15" fill="rgb(223,224,47)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1583.50"></text></g><g><title>shed::expand::expand_var (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1557" width="0.7119%" height="15" fill="rgb(238,102,44)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1567.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1541" width="0.7119%" height="15" fill="rgb(236,46,40)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1551.50"></text></g><g><title>shed::parse::execute::exec_input (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1525" width="0.7119%" height="15" fill="rgb(247,202,50)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1509" width="0.7119%" height="15" fill="rgb(209,99,20)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1493" width="0.7119%" height="15" fill="rgb(252,27,34)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1477" width="0.7119%" height="15" fill="rgb(215,206,23)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1461" width="0.7119%" height="15" fill="rgb(212,135,36)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1445" width="0.7119%" height="15" fill="rgb(240,189,1)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1429" width="0.7119%" height="15" fill="rgb(242,56,20)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1413" width="0.7119%" height="15" fill="rgb(247,132,33)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1397" width="0.7119%" height="15" fill="rgb(208,149,11)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1381" width="0.7119%" height="15" fill="rgb(211,33,11)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1365" width="0.7119%" height="15" fill="rgb(221,29,38)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1349" width="0.7119%" height="15" fill="rgb(206,182,49)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1333" width="0.7119%" height="15" fill="rgb(216,140,1)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1317" width="0.7119%" height="15" fill="rgb(232,57,40)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1301" width="0.7119%" height="15" fill="rgb(224,186,18)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1285" width="0.7119%" height="15" fill="rgb(215,121,11)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1269" width="0.7119%" height="15" fill="rgb(245,147,10)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1253" width="0.7119%" height="15" fill="rgb(238,153,13)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1237" width="0.7119%" height="15" fill="rgb(233,108,0)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1247.50"></text></g><g><title>shed::builtin::varcmds::local (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1221" width="0.7119%" height="15" fill="rgb(212,157,17)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1231.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1205" width="0.7119%" height="15" fill="rgb(225,213,38)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1215.50"></text></g><g><title>shed::expand::Expander::expand (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1189" width="0.7119%" height="15" fill="rgb(248,16,11)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1199.50"></text></g><g><title>shed::expand::expand_raw (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1173" width="0.7119%" height="15" fill="rgb(241,33,4)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1183.50"></text></g><g><title>shed::expand::expand_var (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1157" width="0.7119%" height="15" fill="rgb(222,26,43)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1167.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1141" width="0.7119%" height="15" fill="rgb(243,29,36)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1151.50"></text></g><g><title>shed::parse::execute::exec_input (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1125" width="0.7119%" height="15" fill="rgb(241,9,27)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1135.50"></text></g><g><title>shed::parse::ParsedSrc::parse_src (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1109" width="0.7119%" height="15" fill="rgb(205,117,26)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1119.50"></text></g><g><title>&lt;shed::parse::ParseStream as core::iter::traits::iterator::Iterator&gt;::next (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1093" width="0.7119%" height="15" fill="rgb(209,80,39)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1103.50"></text></g><g><title>shed::parse::ParseStream::parse_cmd_list (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1077" width="0.7119%" height="15" fill="rgb(239,155,6)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1087.50"></text></g><g><title>shed::parse::ParseStream::parse_block (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1061" width="0.7119%" height="15" fill="rgb(212,104,12)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1071.50"></text></g><g><title>shed::parse::ParseStream::parse_pipeln (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1045" width="0.7119%" height="15" fill="rgb(234,204,3)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1055.50"></text></g><g><title>shed::parse::ParseStream::parse_block (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1029" width="0.7119%" height="15" fill="rgb(251,218,7)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1039.50"></text></g><g><title>shed::parse::ParseStream::parse_cmd (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="1013" width="0.7119%" height="15" fill="rgb(221,81,32)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="997" width="0.7119%" height="15" fill="rgb(214,152,26)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="981" width="0.7119%" height="15" fill="rgb(223,22,3)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::parse::lex::Tk]&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="965" width="0.7119%" height="15" fill="rgb(207,174,7)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Tk&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="949" width="0.7119%" height="15" fill="rgb(224,19,52)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::Span&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="933" width="0.7119%" height="15" fill="rgb(228,24,14)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::lex::SpanSource&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="917" width="0.7119%" height="15" fill="rgb(230,153,43)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="901" width="0.7119%" height="15" fill="rgb(231,106,12)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="885" width="0.7119%" height="15" fill="rgb(215,92,2)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="869" width="0.7119%" height="15" fill="rgb(249,143,25)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="879.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="853" width="0.7119%" height="15" fill="rgb(252,7,35)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="837" width="0.7119%" height="15" fill="rgb(216,69,40)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="821" width="0.7119%" height="15" fill="rgb(240,36,33)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="831.50"></text></g><g><title>alloc::alloc::dealloc (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="805" width="0.7119%" height="15" fill="rgb(231,128,14)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="815.50"></text></g><g><title>cfree@GLIBC_2.2.5 (1,214,162 samples, 0.71%)</title><rect x="94.8689%" y="789" width="0.7119%" height="15" fill="rgb(245,143,14)" fg:x="161811333" fg:w="1214162"/><text x="95.1189%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="725" width="0.6310%" height="15" fill="rgb(222,130,28)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="735.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="709" width="0.6310%" height="15" fill="rgb(212,10,48)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="719.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="693" width="0.6310%" height="15" fill="rgb(254,118,45)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="703.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="677" width="0.6310%" height="15" fill="rgb(228,6,45)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="687.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="661" width="0.6310%" height="15" fill="rgb(241,18,35)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="671.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (1,076,321 samples, 0.63%)</title><rect x="95.5822%" y="645" width="0.6310%" height="15" fill="rgb(227,214,53)" fg:x="163027848" fg:w="1076321"/><text x="95.8322%" y="655.50"></text></g><g><title>shed::readline::ShedVi::new (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1909" width="1.6751%" height="15" fill="rgb(224,107,51)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1919.50"></text></g><g><title>shed::readline::Prompt::refresh (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1893" width="1.6751%" height="15" fill="rgb(248,60,28)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1903.50"></text></g><g><title>shed::expand::expand_prompt (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1877" width="1.6751%" height="15" fill="rgb(249,101,23)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1887.50"></text></g><g><title>shed::expand::expand_cmd_sub (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1861" width="1.6751%" height="15" fill="rgb(228,51,19)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1871.50"></text></g><g><title>shed::parse::execute::exec_input (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1845" width="1.6751%" height="15" fill="rgb(213,20,6)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1829" width="1.6751%" height="15" fill="rgb(212,124,10)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1813" width="1.6751%" height="15" fill="rgb(248,3,40)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1797" width="1.6751%" height="15" fill="rgb(223,178,23)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1781" width="1.6751%" height="15" fill="rgb(240,132,45)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1765" width="1.6751%" height="15" fill="rgb(245,164,36)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1749" width="1.6751%" height="15" fill="rgb(231,188,53)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1733" width="1.6751%" height="15" fill="rgb(237,198,39)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1717" width="1.6751%" height="15" fill="rgb(223,120,35)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1701" width="1.6751%" height="15" fill="rgb(253,107,49)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1685" width="1.6751%" height="15" fill="rgb(216,44,31)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1669" width="1.6751%" height="15" fill="rgb(253,87,21)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1653" width="1.6751%" height="15" fill="rgb(226,18,2)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1637" width="1.6751%" height="15" fill="rgb(216,8,46)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1621" width="1.6751%" height="15" fill="rgb(226,140,39)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1605" width="1.6751%" height="15" fill="rgb(221,194,54)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1589" width="1.6751%" height="15" fill="rgb(213,92,11)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1573" width="1.6751%" height="15" fill="rgb(229,162,46)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1557" width="1.6751%" height="15" fill="rgb(214,111,36)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1567.50"></text></g><g><title>shed::builtin::varcmds::local (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1541" width="1.6751%" height="15" fill="rgb(207,6,21)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1551.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1525" width="1.6751%" height="15" fill="rgb(213,127,38)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1535.50"></text></g><g><title>shed::expand::Expander::expand (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1509" width="1.6751%" height="15" fill="rgb(238,118,32)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1519.50"></text></g><g><title>shed::expand::expand_raw (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1493" width="1.6751%" height="15" fill="rgb(240,139,39)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1503.50"></text></g><g><title>shed::expand::expand_var (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1477" width="1.6751%" height="15" fill="rgb(235,10,37)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1487.50"></text></g><g><title>shed::expand::expand_cmd_sub (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1461" width="1.6751%" height="15" fill="rgb(249,171,38)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1471.50"></text></g><g><title>shed::parse::execute::exec_input (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1445" width="1.6751%" height="15" fill="rgb(242,144,32)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1429" width="1.6751%" height="15" fill="rgb(217,117,21)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1413" width="1.6751%" height="15" fill="rgb(249,87,1)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1397" width="1.6751%" height="15" fill="rgb(248,196,48)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1381" width="1.6751%" height="15" fill="rgb(251,206,33)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1365" width="1.6751%" height="15" fill="rgb(232,141,28)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1349" width="1.6751%" height="15" fill="rgb(209,167,14)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1333" width="1.6751%" height="15" fill="rgb(225,11,50)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1317" width="1.6751%" height="15" fill="rgb(209,50,20)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1301" width="1.6751%" height="15" fill="rgb(212,17,46)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1285" width="1.6751%" height="15" fill="rgb(216,101,39)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1269" width="1.6751%" height="15" fill="rgb(212,228,48)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1253" width="1.6751%" height="15" fill="rgb(250,6,50)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1237" width="1.6751%" height="15" fill="rgb(250,160,48)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1221" width="1.6751%" height="15" fill="rgb(244,216,33)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1205" width="1.6751%" height="15" fill="rgb(207,157,5)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1189" width="1.6751%" height="15" fill="rgb(228,199,8)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1173" width="1.6751%" height="15" fill="rgb(227,80,20)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1157" width="1.6751%" height="15" fill="rgb(222,9,33)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1167.50"></text></g><g><title>shed::builtin::varcmds::local (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1141" width="1.6751%" height="15" fill="rgb(239,44,28)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1151.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1125" width="1.6751%" height="15" fill="rgb(249,187,43)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1135.50"></text></g><g><title>shed::expand::Expander::expand (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1109" width="1.6751%" height="15" fill="rgb(216,141,28)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1119.50"></text></g><g><title>shed::expand::expand_raw (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1093" width="1.6751%" height="15" fill="rgb(230,154,53)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1103.50"></text></g><g><title>shed::expand::expand_var (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1077" width="1.6751%" height="15" fill="rgb(227,82,4)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1087.50"></text></g><g><title>shed::expand::expand_cmd_sub (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1061" width="1.6751%" height="15" fill="rgb(220,107,16)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1071.50"></text></g><g><title>shed::parse::execute::exec_input (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1045" width="1.6751%" height="15" fill="rgb(207,187,2)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1055.50"></text></g><g><title>shed::state::read_logic (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1029" width="1.6751%" height="15" fill="rgb(210,162,52)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1039.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="1013" width="1.6751%" height="15" fill="rgb(217,216,49)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1023.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="997" width="1.6751%" height="15" fill="rgb(218,146,49)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="1007.50"></text></g><g><title>shed::state::read_logic::{{closure}} (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="981" width="1.6751%" height="15" fill="rgb(216,55,40)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="991.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="965" width="1.6751%" height="15" fill="rgb(208,196,21)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="975.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="949" width="1.6751%" height="15" fill="rgb(242,117,42)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="933" width="1.6751%" height="15" fill="rgb(210,11,23)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="943.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="917" width="1.6751%" height="15" fill="rgb(217,110,2)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="927.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="901" width="1.6751%" height="15" fill="rgb(229,77,54)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="911.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="885" width="1.6751%" height="15" fill="rgb(218,53,16)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="895.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="869" width="1.6751%" height="15" fill="rgb(215,38,13)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="879.50"></text></g><g><title>core::clone::Clone::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="853" width="1.6751%" height="15" fill="rgb(235,42,18)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="863.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="837" width="1.6751%" height="15" fill="rgb(219,66,54)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="847.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="821" width="1.6751%" height="15" fill="rgb(222,205,4)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="831.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="805" width="1.6751%" height="15" fill="rgb(227,213,46)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="789" width="1.6751%" height="15" fill="rgb(250,145,42)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="799.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="773" width="1.6751%" height="15" fill="rgb(219,15,2)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="783.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="757" width="1.6751%" height="15" fill="rgb(231,181,52)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="767.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (2,857,056 samples, 1.68%)</title><rect x="95.5822%" y="741" width="1.6751%" height="15" fill="rgb(235,1,42)" fg:x="163027848" fg:w="2857056"/><text x="95.8322%" y="751.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="725" width="1.0440%" height="15" fill="rgb(249,88,27)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="709" width="1.0440%" height="15" fill="rgb(235,145,16)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="719.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="693" width="1.0440%" height="15" fill="rgb(237,114,19)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="677" width="1.0440%" height="15" fill="rgb(238,51,50)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="687.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="661" width="1.0440%" height="15" fill="rgb(205,194,25)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="671.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="645" width="1.0440%" height="15" fill="rgb(215,203,17)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="655.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="629" width="1.0440%" height="15" fill="rgb(233,112,49)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="639.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="613" width="1.0440%" height="15" fill="rgb(241,130,26)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="623.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="597" width="1.0440%" height="15" fill="rgb(252,223,19)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="581" width="1.0440%" height="15" fill="rgb(211,95,25)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="591.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="565" width="1.0440%" height="15" fill="rgb(251,182,27)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="575.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="549" width="1.0440%" height="15" fill="rgb(238,24,4)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="559.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="533" width="1.0440%" height="15" fill="rgb(224,220,25)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="543.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="517" width="1.0440%" height="15" fill="rgb(239,133,26)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="527.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (1,780,735 samples, 1.04%)</title><rect x="96.2132%" y="501" width="1.0440%" height="15" fill="rgb(211,94,48)" fg:x="164104169" fg:w="1780735"/><text x="96.4632%" y="511.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (710,205 samples, 0.42%)</title><rect x="96.8408%" y="485" width="0.4164%" height="15" fill="rgb(239,87,6)" fg:x="165174699" fg:w="710205"/><text x="97.0908%" y="495.50"></text></g><g><title>__memmove_avx512_unaligned_erms (710,205 samples, 0.42%)</title><rect x="96.8408%" y="469" width="0.4164%" height="15" fill="rgb(227,62,0)" fg:x="165174699" fg:w="710205"/><text x="97.0908%" y="479.50"></text></g><g><title>nix::unistd::fork (21,481 samples, 0.01%)</title><rect x="97.2572%" y="917" width="0.0126%" height="15" fill="rgb(211,226,4)" fg:x="165884904" fg:w="21481"/><text x="97.5072%" y="927.50"></text></g><g><title>__libc_fork (21,481 samples, 0.01%)</title><rect x="97.2572%" y="901" width="0.0126%" height="15" fill="rgb(253,38,52)" fg:x="165884904" fg:w="21481"/><text x="97.5072%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::LogTab&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="757" width="0.6807%" height="15" fill="rgb(229,126,40)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::LogTab&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="741" width="0.6807%" height="15" fill="rgb(229,165,44)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::LogTab&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="725" width="0.6807%" height="15" fill="rgb(247,95,47)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::ShFunc&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="709" width="0.6807%" height="15" fill="rgb(216,140,30)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::ShFunc,std::hash::random::RandomState&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="693" width="0.6807%" height="15" fill="rgb(246,214,8)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::ShFunc)&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="677" width="0.6807%" height="15" fill="rgb(227,224,15)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="687.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="661" width="0.6807%" height="15" fill="rgb(233,175,4)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="671.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="645" width="0.6807%" height="15" fill="rgb(221,66,45)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="655.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="629" width="0.6807%" height="15" fill="rgb(221,178,18)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="639.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="613" width="0.6807%" height="15" fill="rgb(213,81,29)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="623.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="597" width="0.6807%" height="15" fill="rgb(220,89,49)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::ShFunc)&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="581" width="0.6807%" height="15" fill="rgb(227,60,33)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ShFunc&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="565" width="0.6807%" height="15" fill="rgb(205,113,12)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::parse::Node&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="549" width="0.6807%" height="15" fill="rgb(211,32,1)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::parse::lex::Tk&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="533" width="0.6807%" height="15" fill="rgb(246,2,12)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;shed::parse::lex::Tk&gt;&gt; (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="517" width="0.6807%" height="15" fill="rgb(243,37,27)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="527.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="501" width="0.6807%" height="15" fill="rgb(248,211,31)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="485" width="0.6807%" height="15" fill="rgb(242,146,47)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="495.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="469" width="0.6807%" height="15" fill="rgb(206,70,20)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="479.50"></text></g><g><title>alloc::alloc::dealloc (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="453" width="0.6807%" height="15" fill="rgb(215,10,51)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="463.50"></text></g><g><title>_int_free_chunk (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="437" width="0.6807%" height="15" fill="rgb(243,178,53)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="447.50"></text></g><g><title>_int_free_maybe_consolidate.part.0 (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="421" width="0.6807%" height="15" fill="rgb(233,221,20)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="431.50"></text></g><g><title>malloc_consolidate (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="405" width="0.6807%" height="15" fill="rgb(218,95,35)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="415.50"></text></g><g><title>unlink_chunk.isra.0 (1,160,989 samples, 0.68%)</title><rect x="97.2698%" y="389" width="0.6807%" height="15" fill="rgb(229,13,5)" fg:x="165906385" fg:w="1160989"/><text x="97.5198%" y="399.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (182,892 samples, 0.11%)</title><rect x="97.9505%" y="597" width="0.1072%" height="15" fill="rgb(252,164,30)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="607.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (182,892 samples, 0.11%)</title><rect x="97.9505%" y="581" width="0.1072%" height="15" fill="rgb(232,68,36)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="591.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (182,892 samples, 0.11%)</title><rect x="97.9505%" y="565" width="0.1072%" height="15" fill="rgb(219,59,54)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="575.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (182,892 samples, 0.11%)</title><rect x="97.9505%" y="549" width="0.1072%" height="15" fill="rgb(250,92,33)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="559.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (182,892 samples, 0.11%)</title><rect x="97.9505%" y="533" width="0.1072%" height="15" fill="rgb(229,162,54)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::Var)&gt; (182,892 samples, 0.11%)</title><rect x="97.9505%" y="517" width="0.1072%" height="15" fill="rgb(244,114,52)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (182,892 samples, 0.11%)</title><rect x="97.9505%" y="501" width="0.1072%" height="15" fill="rgb(212,211,43)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (182,892 samples, 0.11%)</title><rect x="97.9505%" y="485" width="0.1072%" height="15" fill="rgb(226,147,8)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (182,892 samples, 0.11%)</title><rect x="97.9505%" y="469" width="0.1072%" height="15" fill="rgb(226,23,13)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="479.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (182,892 samples, 0.11%)</title><rect x="97.9505%" y="453" width="0.1072%" height="15" fill="rgb(240,63,4)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (182,892 samples, 0.11%)</title><rect x="97.9505%" y="437" width="0.1072%" height="15" fill="rgb(221,1,32)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="447.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (182,892 samples, 0.11%)</title><rect x="97.9505%" y="421" width="0.1072%" height="15" fill="rgb(242,117,10)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="431.50"></text></g><g><title>alloc::alloc::dealloc (182,892 samples, 0.11%)</title><rect x="97.9505%" y="405" width="0.1072%" height="15" fill="rgb(249,172,44)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="415.50"></text></g><g><title>_int_free_chunk (182,892 samples, 0.11%)</title><rect x="97.9505%" y="389" width="0.1072%" height="15" fill="rgb(244,46,45)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="399.50"></text></g><g><title>[unknown] (182,892 samples, 0.11%)</title><rect x="97.9505%" y="373" width="0.1072%" height="15" fill="rgb(206,43,17)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="383.50"></text></g><g><title>[unknown] (182,892 samples, 0.11%)</title><rect x="97.9505%" y="357" width="0.1072%" height="15" fill="rgb(239,218,39)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="367.50"></text></g><g><title>[unknown] (182,892 samples, 0.11%)</title><rect x="97.9505%" y="341" width="0.1072%" height="15" fill="rgb(208,169,54)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="351.50"></text></g><g><title>[unknown] (182,892 samples, 0.11%)</title><rect x="97.9505%" y="325" width="0.1072%" height="15" fill="rgb(247,25,42)" fg:x="167067374" fg:w="182892"/><text x="98.2005%" y="335.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,503,561 samples, 0.88%)</title><rect x="97.2572%" y="949" width="0.8815%" height="15" fill="rgb(226,23,31)" fg:x="165884904" fg:w="1503561"/><text x="97.5072%" y="959.50"></text></g><g><title>shed::parse::execute::Dispatcher::run_fork (1,503,561 samples, 0.88%)</title><rect x="97.2572%" y="933" width="0.8815%" height="15" fill="rgb(247,16,28)" fg:x="165884904" fg:w="1503561"/><text x="97.5072%" y="943.50"></text></g><g><title>std::process::exit (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="917" width="0.8689%" height="15" fill="rgb(231,147,38)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="927.50"></text></g><g><title>std::sys::pal::unix::os::exit (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="901" width="0.8689%" height="15" fill="rgb(253,81,48)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="911.50"></text></g><g><title>exit (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="885" width="0.8689%" height="15" fill="rgb(249,222,43)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="895.50"></text></g><g><title>__run_exit_handlers (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="869" width="0.8689%" height="15" fill="rgb(221,3,27)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="879.50"></text></g><g><title>__call_tls_dtors (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="853" width="0.8689%" height="15" fill="rgb(228,180,5)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="863.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="837" width="0.8689%" height="15" fill="rgb(227,131,42)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="847.50"></text></g><g><title>std::sys::thread_local::abort_on_dtor_unwind (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="821" width="0.8689%" height="15" fill="rgb(212,3,39)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="831.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy::{{closure}} (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="805" width="0.8689%" height="15" fill="rgb(226,45,5)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="815.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_drop (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="789" width="0.8689%" height="15" fill="rgb(215,167,45)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::Shed&gt; (1,482,080 samples, 0.87%)</title><rect x="97.2698%" y="773" width="0.8689%" height="15" fill="rgb(250,218,53)" fg:x="165906385" fg:w="1482080"/><text x="97.5198%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::ScopeStack&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="757" width="0.1883%" height="15" fill="rgb(207,140,0)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::ScopeStack&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="741" width="0.1883%" height="15" fill="rgb(238,133,51)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ScopeStack&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="725" width="0.1883%" height="15" fill="rgb(218,203,53)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::state::VarTab&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="709" width="0.1883%" height="15" fill="rgb(226,184,25)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (321,091 samples, 0.19%)</title><rect x="97.9505%" y="693" width="0.1883%" height="15" fill="rgb(231,121,21)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::state::VarTab]&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="677" width="0.1883%" height="15" fill="rgb(251,14,34)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::VarTab&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="661" width="0.1883%" height="15" fill="rgb(249,193,11)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::Var&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="645" width="0.1883%" height="15" fill="rgb(220,172,37)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::Var,std::hash::random::RandomState&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="629" width="0.1883%" height="15" fill="rgb(231,229,43)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::Var)&gt;&gt; (321,091 samples, 0.19%)</title><rect x="97.9505%" y="613" width="0.1883%" height="15" fill="rgb(250,161,5)" fg:x="167067374" fg:w="321091"/><text x="98.2005%" y="623.50"></text></g><g><title>_int_free_chunk (138,199 samples, 0.08%)</title><rect x="98.0577%" y="597" width="0.0810%" height="15" fill="rgb(218,225,18)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="607.50"></text></g><g><title>_int_free_merge_chunk (138,199 samples, 0.08%)</title><rect x="98.0577%" y="581" width="0.0810%" height="15" fill="rgb(245,45,42)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="591.50"></text></g><g><title>_int_free_create_chunk (138,199 samples, 0.08%)</title><rect x="98.0577%" y="565" width="0.0810%" height="15" fill="rgb(211,115,1)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="575.50"></text></g><g><title>[unknown] (138,199 samples, 0.08%)</title><rect x="98.0577%" y="549" width="0.0810%" height="15" fill="rgb(248,133,52)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="559.50"></text></g><g><title>[unknown] (138,199 samples, 0.08%)</title><rect x="98.0577%" y="533" width="0.0810%" height="15" fill="rgb(238,100,21)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="543.50"></text></g><g><title>[unknown] (138,199 samples, 0.08%)</title><rect x="98.0577%" y="517" width="0.0810%" height="15" fill="rgb(247,144,11)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="527.50"></text></g><g><title>[unknown] (138,199 samples, 0.08%)</title><rect x="98.0577%" y="501" width="0.0810%" height="15" fill="rgb(206,164,16)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="511.50"></text></g><g><title>[unknown] (138,199 samples, 0.08%)</title><rect x="98.0577%" y="485" width="0.0810%" height="15" fill="rgb(222,34,3)" fg:x="167250266" fg:w="138199"/><text x="98.3077%" y="495.50"></text></g><g><title>shed::main (4,409,228 samples, 2.59%)</title><rect x="95.5808%" y="1941" width="2.5851%" height="15" fill="rgb(248,82,4)" fg:x="163025495" fg:w="4409228"/><text x="95.8308%" y="1951.50">sh..</text></g><g><title>shed::shed_interactive (4,409,228 samples, 2.59%)</title><rect x="95.5808%" y="1925" width="2.5851%" height="15" fill="rgb(228,81,46)" fg:x="163025495" fg:w="4409228"/><text x="95.8308%" y="1935.50">sh..</text></g><g><title>shed::state::source_rc (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1909" width="0.9086%" height="15" fill="rgb(227,67,47)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1919.50"></text></g><g><title>shed::state::source_file (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1893" width="0.9086%" height="15" fill="rgb(215,93,53)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1903.50"></text></g><g><title>shed::parse::execute::exec_input (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1877" width="0.9086%" height="15" fill="rgb(248,194,39)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1887.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1861" width="0.9086%" height="15" fill="rgb(215,5,19)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1845" width="0.9086%" height="15" fill="rgb(226,215,51)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1829" width="0.9086%" height="15" fill="rgb(225,56,26)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1813" width="0.9086%" height="15" fill="rgb(222,75,29)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1797" width="0.9086%" height="15" fill="rgb(236,139,6)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1781" width="0.9086%" height="15" fill="rgb(223,137,36)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1765" width="0.9086%" height="15" fill="rgb(226,99,2)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1749" width="0.9086%" height="15" fill="rgb(206,133,23)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1733" width="0.9086%" height="15" fill="rgb(243,173,15)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1743.50"></text></g><g><title>shed::builtin::varcmds::export (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1717" width="0.9086%" height="15" fill="rgb(228,69,28)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1727.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1701" width="0.9086%" height="15" fill="rgb(212,51,22)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1711.50"></text></g><g><title>shed::expand::Expander::expand (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1685" width="0.9086%" height="15" fill="rgb(227,113,0)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1695.50"></text></g><g><title>shed::expand::expand_raw (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1669" width="0.9086%" height="15" fill="rgb(252,84,27)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1679.50"></text></g><g><title>shed::expand::expand_var (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1653" width="0.9086%" height="15" fill="rgb(223,145,39)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1663.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1637" width="0.9086%" height="15" fill="rgb(239,219,30)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1647.50"></text></g><g><title>shed::parse::execute::exec_input (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1621" width="0.9086%" height="15" fill="rgb(224,196,39)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1605" width="0.9086%" height="15" fill="rgb(205,35,43)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1589" width="0.9086%" height="15" fill="rgb(228,201,21)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1573" width="0.9086%" height="15" fill="rgb(237,118,16)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1557" width="0.9086%" height="15" fill="rgb(241,17,19)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1541" width="0.9086%" height="15" fill="rgb(214,10,25)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1525" width="0.9086%" height="15" fill="rgb(238,37,29)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1509" width="0.9086%" height="15" fill="rgb(253,83,25)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1493" width="0.9086%" height="15" fill="rgb(234,192,12)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1477" width="0.9086%" height="15" fill="rgb(241,216,45)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1461" width="0.9086%" height="15" fill="rgb(242,22,33)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1445" width="0.9086%" height="15" fill="rgb(231,105,49)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1429" width="0.9086%" height="15" fill="rgb(218,204,15)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1413" width="0.9086%" height="15" fill="rgb(235,138,41)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1397" width="0.9086%" height="15" fill="rgb(246,0,9)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop::{{closure}} (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1381" width="0.9086%" height="15" fill="rgb(210,74,4)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1365" width="0.9086%" height="15" fill="rgb(250,60,41)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1349" width="0.9086%" height="15" fill="rgb(220,115,12)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1333" width="0.9086%" height="15" fill="rgb(237,100,13)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1317" width="0.9086%" height="15" fill="rgb(213,55,26)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case::{{closure}} (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1301" width="0.9086%" height="15" fill="rgb(216,17,4)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1285" width="0.9086%" height="15" fill="rgb(220,153,47)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1269" width="0.9086%" height="15" fill="rgb(215,131,9)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1253" width="0.9086%" height="15" fill="rgb(233,46,42)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1237" width="0.9086%" height="15" fill="rgb(226,86,7)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1221" width="0.9086%" height="15" fill="rgb(239,226,21)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1205" width="0.9086%" height="15" fill="rgb(244,137,22)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1189" width="0.9086%" height="15" fill="rgb(211,139,35)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1173" width="0.9086%" height="15" fill="rgb(214,62,50)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1183.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1157" width="0.9086%" height="15" fill="rgb(212,113,44)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1167.50"></text></g><g><title>shed::expand::Expander::expand (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1141" width="0.9086%" height="15" fill="rgb(226,150,43)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1151.50"></text></g><g><title>shed::expand::expand_raw (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1125" width="0.9086%" height="15" fill="rgb(250,71,37)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1135.50"></text></g><g><title>shed::expand::expand_var (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1109" width="0.9086%" height="15" fill="rgb(219,76,19)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1119.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1093" width="0.9086%" height="15" fill="rgb(250,39,11)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1103.50"></text></g><g><title>shed::parse::execute::exec_input (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1077" width="0.9086%" height="15" fill="rgb(230,64,31)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1061" width="0.9086%" height="15" fill="rgb(208,222,23)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1045" width="0.9086%" height="15" fill="rgb(227,125,18)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1029" width="0.9086%" height="15" fill="rgb(234,210,9)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="1013" width="0.9086%" height="15" fill="rgb(217,127,24)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="997" width="0.9086%" height="15" fill="rgb(239,141,48)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="981" width="0.9086%" height="15" fill="rgb(227,109,8)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="991.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,549,819 samples, 0.91%)</title><rect x="97.2572%" y="965" width="0.9086%" height="15" fill="rgb(235,184,23)" fg:x="165884904" fg:w="1549819"/><text x="97.5072%" y="975.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (46,258 samples, 0.03%)</title><rect x="98.1388%" y="949" width="0.0271%" height="15" fill="rgb(227,226,48)" fg:x="167388465" fg:w="46258"/><text x="98.3888%" y="959.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd::{{closure}} (18,915 samples, 0.01%)</title><rect x="98.1548%" y="933" width="0.0111%" height="15" fill="rgb(206,150,11)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="943.50"></text></g><g><title>nix::unistd::execvpe (18,915 samples, 0.01%)</title><rect x="98.1548%" y="917" width="0.0111%" height="15" fill="rgb(254,2,33)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="927.50"></text></g><g><title>nix::unistd::to_exec_array (18,915 samples, 0.01%)</title><rect x="98.1548%" y="901" width="0.0111%" height="15" fill="rgb(243,160,20)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (18,915 samples, 0.01%)</title><rect x="98.1548%" y="885" width="0.0111%" height="15" fill="rgb(218,208,30)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="895.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (18,915 samples, 0.01%)</title><rect x="98.1548%" y="869" width="0.0111%" height="15" fill="rgb(224,120,49)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (18,915 samples, 0.01%)</title><rect x="98.1548%" y="853" width="0.0111%" height="15" fill="rgb(246,12,2)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (18,915 samples, 0.01%)</title><rect x="98.1548%" y="837" width="0.0111%" height="15" fill="rgb(236,117,3)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (18,915 samples, 0.01%)</title><rect x="98.1548%" y="821" width="0.0111%" height="15" fill="rgb(216,128,52)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (18,915 samples, 0.01%)</title><rect x="98.1548%" y="805" width="0.0111%" height="15" fill="rgb(246,145,19)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (18,915 samples, 0.01%)</title><rect x="98.1548%" y="789" width="0.0111%" height="15" fill="rgb(222,11,46)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (18,915 samples, 0.01%)</title><rect x="98.1548%" y="773" width="0.0111%" height="15" fill="rgb(245,82,36)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (18,915 samples, 0.01%)</title><rect x="98.1548%" y="757" width="0.0111%" height="15" fill="rgb(250,73,51)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (18,915 samples, 0.01%)</title><rect x="98.1548%" y="741" width="0.0111%" height="15" fill="rgb(221,189,23)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="751.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (18,915 samples, 0.01%)</title><rect x="98.1548%" y="725" width="0.0111%" height="15" fill="rgb(210,33,7)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="735.50"></text></g><g><title>alloc::alloc::alloc (18,915 samples, 0.01%)</title><rect x="98.1548%" y="709" width="0.0111%" height="15" fill="rgb(210,107,22)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="719.50"></text></g><g><title>__libc_malloc2 (18,915 samples, 0.01%)</title><rect x="98.1548%" y="693" width="0.0111%" height="15" fill="rgb(222,116,37)" fg:x="167415808" fg:w="18915"/><text x="98.4048%" y="703.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1941" width="0.7343%" height="15" fill="rgb(254,17,48)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1951.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1925" width="0.7343%" height="15" fill="rgb(224,36,32)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1935.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1909" width="0.7343%" height="15" fill="rgb(232,90,46)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1919.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1893" width="0.7343%" height="15" fill="rgb(241,66,40)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1903.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1877" width="0.7343%" height="15" fill="rgb(249,184,29)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1887.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1861" width="0.7343%" height="15" fill="rgb(231,181,1)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1845" width="0.7343%" height="15" fill="rgb(224,94,2)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1829" width="0.7343%" height="15" fill="rgb(229,170,15)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1813" width="0.7343%" height="15" fill="rgb(240,127,35)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1797" width="0.7343%" height="15" fill="rgb(248,196,34)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1781" width="0.7343%" height="15" fill="rgb(236,137,7)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1791.50"></text></g><g><title>shed::builtin::varcmds::local (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1765" width="0.7343%" height="15" fill="rgb(235,127,16)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1775.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1749" width="0.7343%" height="15" fill="rgb(250,192,54)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1759.50"></text></g><g><title>shed::expand::Expander::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1733" width="0.7343%" height="15" fill="rgb(218,98,20)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1743.50"></text></g><g><title>shed::expand::expand_raw (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1717" width="0.7343%" height="15" fill="rgb(230,176,47)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1727.50"></text></g><g><title>shed::expand::expand_var (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1701" width="0.7343%" height="15" fill="rgb(244,2,33)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1711.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1685" width="0.7343%" height="15" fill="rgb(231,100,17)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1695.50"></text></g><g><title>shed::parse::execute::exec_input (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1669" width="0.7343%" height="15" fill="rgb(245,23,12)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1653" width="0.7343%" height="15" fill="rgb(249,55,22)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1637" width="0.7343%" height="15" fill="rgb(207,134,9)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1621" width="0.7343%" height="15" fill="rgb(218,134,0)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1605" width="0.7343%" height="15" fill="rgb(213,212,33)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1589" width="0.7343%" height="15" fill="rgb(252,106,18)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1573" width="0.7343%" height="15" fill="rgb(208,126,42)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1557" width="0.7343%" height="15" fill="rgb(246,175,29)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1541" width="0.7343%" height="15" fill="rgb(215,13,50)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1525" width="0.7343%" height="15" fill="rgb(216,172,15)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1509" width="0.7343%" height="15" fill="rgb(212,103,13)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1493" width="0.7343%" height="15" fill="rgb(231,171,36)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1477" width="0.7343%" height="15" fill="rgb(250,123,20)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1461" width="0.7343%" height="15" fill="rgb(212,53,50)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1445" width="0.7343%" height="15" fill="rgb(243,54,12)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1429" width="0.7343%" height="15" fill="rgb(234,101,34)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1413" width="0.7343%" height="15" fill="rgb(254,67,22)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1397" width="0.7343%" height="15" fill="rgb(250,35,47)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1381" width="0.7343%" height="15" fill="rgb(226,126,38)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1391.50"></text></g><g><title>shed::builtin::varcmds::local (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1365" width="0.7343%" height="15" fill="rgb(216,138,53)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1375.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1349" width="0.7343%" height="15" fill="rgb(246,199,43)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1359.50"></text></g><g><title>shed::expand::Expander::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1333" width="0.7343%" height="15" fill="rgb(232,125,11)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1343.50"></text></g><g><title>shed::expand::expand_raw (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1317" width="0.7343%" height="15" fill="rgb(218,219,45)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1327.50"></text></g><g><title>shed::expand::expand_var (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1301" width="0.7343%" height="15" fill="rgb(216,102,54)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1311.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1285" width="0.7343%" height="15" fill="rgb(250,228,7)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1295.50"></text></g><g><title>shed::parse::execute::exec_input (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1269" width="0.7343%" height="15" fill="rgb(226,125,25)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1253" width="0.7343%" height="15" fill="rgb(224,165,27)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1237" width="0.7343%" height="15" fill="rgb(233,86,3)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1221" width="0.7343%" height="15" fill="rgb(228,116,20)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1205" width="0.7343%" height="15" fill="rgb(209,192,17)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1189" width="0.7343%" height="15" fill="rgb(224,88,34)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1173" width="0.7343%" height="15" fill="rgb(233,38,6)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1157" width="0.7343%" height="15" fill="rgb(212,59,30)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1141" width="0.7343%" height="15" fill="rgb(213,80,3)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1125" width="0.7343%" height="15" fill="rgb(251,178,7)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1109" width="0.7343%" height="15" fill="rgb(213,154,26)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1119.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1093" width="0.7343%" height="15" fill="rgb(238,165,49)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1077" width="0.7343%" height="15" fill="rgb(248,91,46)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1061" width="0.7343%" height="15" fill="rgb(244,21,52)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1045" width="0.7343%" height="15" fill="rgb(247,122,20)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1029" width="0.7343%" height="15" fill="rgb(218,27,9)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="1013" width="0.7343%" height="15" fill="rgb(246,7,6)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="997" width="0.7343%" height="15" fill="rgb(227,135,54)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="981" width="0.7343%" height="15" fill="rgb(247,14,11)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="991.50"></text></g><g><title>shed::builtin::echo::echo (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="965" width="0.7343%" height="15" fill="rgb(206,149,34)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="975.50"></text></g><g><title>shed::getopt::get_opts_from_tokens (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="949" width="0.7343%" height="15" fill="rgb(227,228,4)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="959.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="933" width="0.7343%" height="15" fill="rgb(238,218,28)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="943.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="917" width="0.7343%" height="15" fill="rgb(252,86,40)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="927.50"></text></g><g><title>core::iter::adapters::try_process (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="901" width="0.7343%" height="15" fill="rgb(251,225,11)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="911.50"></text></g><g><title>&lt;core::result::Result&lt;V,E&gt; as core::iter::traits::collect::FromIterator&lt;core::result::Result&lt;A,E&gt;&gt;&gt;::from_iter::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="885" width="0.7343%" height="15" fill="rgb(206,46,49)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="869" width="0.7343%" height="15" fill="rgb(245,128,24)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="853" width="0.7343%" height="15" fill="rgb(219,177,34)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="863.50"></text></g><g><title>alloc::vec::in_place_collect::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="837" width="0.7343%" height="15" fill="rgb(218,60,48)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="847.50"></text></g><g><title>alloc::vec::in_place_collect::from_iter_in_place (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="821" width="0.7343%" height="15" fill="rgb(221,11,5)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="831.50"></text></g><g><title>&lt;I as alloc::vec::in_place_collect::SpecInPlaceCollect&lt;T,I&gt;&gt;::collect_in_place (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="805" width="0.7343%" height="15" fill="rgb(220,148,13)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="789" width="0.7343%" height="15" fill="rgb(210,16,3)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="773" width="0.7343%" height="15" fill="rgb(236,80,2)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="783.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="757" width="0.7343%" height="15" fill="rgb(239,129,19)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="767.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="741" width="0.7343%" height="15" fill="rgb(220,106,35)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="751.50"></text></g><g><title>shed::getopt::get_opts_from_tokens::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="725" width="0.7343%" height="15" fill="rgb(252,139,45)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="735.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="709" width="0.7343%" height="15" fill="rgb(229,8,36)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="719.50"></text></g><g><title>shed::expand::Expander::expand (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="693" width="0.7343%" height="15" fill="rgb(230,126,33)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="703.50"></text></g><g><title>shed::expand::Expander::split_words (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="677" width="0.7343%" height="15" fill="rgb(239,140,21)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="687.50"></text></g><g><title>std::env::var (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="661" width="0.7343%" height="15" fill="rgb(254,104,9)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="671.50"></text></g><g><title>std::env::_var (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="645" width="0.7343%" height="15" fill="rgb(239,52,14)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="655.50"></text></g><g><title>std::sys::env::unix::getenv (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="629" width="0.7343%" height="15" fill="rgb(208,227,44)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="639.50"></text></g><g><title>std::sys::env::unix::getenv::{{closure}} (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="613" width="0.7343%" height="15" fill="rgb(246,18,19)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="623.50"></text></g><g><title>getenv (1,252,495 samples, 0.73%)</title><rect x="98.1659%" y="597" width="0.7343%" height="15" fill="rgb(235,228,25)" fg:x="167434723" fg:w="1252495"/><text x="98.4159%" y="607.50"></text></g><g><title>shed::readline::Prompt::new (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1925" width="0.2217%" height="15" fill="rgb(240,156,20)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1935.50"></text></g><g><title>shed::expand::expand_prompt (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1909" width="0.2217%" height="15" fill="rgb(224,8,20)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1919.50"></text></g><g><title>shed::expand::expand_cmd_sub (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1893" width="0.2217%" height="15" fill="rgb(214,12,52)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1903.50"></text></g><g><title>shed::parse::execute::exec_input (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1877" width="0.2217%" height="15" fill="rgb(211,220,47)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1887.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1861" width="0.2217%" height="15" fill="rgb(250,173,5)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1845" width="0.2217%" height="15" fill="rgb(250,125,52)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1829" width="0.2217%" height="15" fill="rgb(209,133,18)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1813" width="0.2217%" height="15" fill="rgb(216,173,22)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1797" width="0.2217%" height="15" fill="rgb(205,3,22)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1781" width="0.2217%" height="15" fill="rgb(248,22,20)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1765" width="0.2217%" height="15" fill="rgb(233,6,29)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1749" width="0.2217%" height="15" fill="rgb(240,22,54)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1733" width="0.2217%" height="15" fill="rgb(231,133,32)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1717" width="0.2217%" height="15" fill="rgb(248,193,4)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1701" width="0.2217%" height="15" fill="rgb(211,178,46)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1685" width="0.2217%" height="15" fill="rgb(224,5,42)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1669" width="0.2217%" height="15" fill="rgb(239,176,25)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1653" width="0.2217%" height="15" fill="rgb(245,187,50)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1637" width="0.2217%" height="15" fill="rgb(248,24,15)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1621" width="0.2217%" height="15" fill="rgb(205,166,13)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1605" width="0.2217%" height="15" fill="rgb(208,114,23)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1589" width="0.2217%" height="15" fill="rgb(239,127,18)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1599.50"></text></g><g><title>shed::builtin::varcmds::local (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1573" width="0.2217%" height="15" fill="rgb(219,154,28)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1583.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1557" width="0.2217%" height="15" fill="rgb(225,157,23)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1567.50"></text></g><g><title>shed::expand::Expander::expand (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1541" width="0.2217%" height="15" fill="rgb(219,8,6)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1551.50"></text></g><g><title>shed::expand::expand_raw (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1525" width="0.2217%" height="15" fill="rgb(212,47,6)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1535.50"></text></g><g><title>shed::expand::expand_var (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1509" width="0.2217%" height="15" fill="rgb(224,190,4)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1519.50"></text></g><g><title>shed::expand::expand_cmd_sub (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1493" width="0.2217%" height="15" fill="rgb(239,183,29)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1503.50"></text></g><g><title>shed::parse::execute::exec_input (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1477" width="0.2217%" height="15" fill="rgb(213,57,7)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1461" width="0.2217%" height="15" fill="rgb(216,148,1)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1445" width="0.2217%" height="15" fill="rgb(236,182,29)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1429" width="0.2217%" height="15" fill="rgb(244,120,48)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1413" width="0.2217%" height="15" fill="rgb(206,71,34)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1397" width="0.2217%" height="15" fill="rgb(242,32,6)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1381" width="0.2217%" height="15" fill="rgb(241,35,3)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1365" width="0.2217%" height="15" fill="rgb(222,62,19)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1349" width="0.2217%" height="15" fill="rgb(223,110,41)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1333" width="0.2217%" height="15" fill="rgb(208,224,4)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1317" width="0.2217%" height="15" fill="rgb(241,137,19)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1301" width="0.2217%" height="15" fill="rgb(244,24,17)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1285" width="0.2217%" height="15" fill="rgb(245,178,49)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1269" width="0.2217%" height="15" fill="rgb(219,160,38)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1253" width="0.2217%" height="15" fill="rgb(228,137,14)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1237" width="0.2217%" height="15" fill="rgb(237,134,11)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1221" width="0.2217%" height="15" fill="rgb(211,126,44)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1205" width="0.2217%" height="15" fill="rgb(226,171,33)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1189" width="0.2217%" height="15" fill="rgb(253,99,13)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1199.50"></text></g><g><title>shed::builtin::varcmds::local (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1173" width="0.2217%" height="15" fill="rgb(244,48,7)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1183.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1157" width="0.2217%" height="15" fill="rgb(244,217,54)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1167.50"></text></g><g><title>shed::expand::Expander::expand (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1141" width="0.2217%" height="15" fill="rgb(224,15,18)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1151.50"></text></g><g><title>shed::expand::expand_raw (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1125" width="0.2217%" height="15" fill="rgb(244,99,12)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1135.50"></text></g><g><title>shed::expand::expand_var (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1109" width="0.2217%" height="15" fill="rgb(233,226,8)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1119.50"></text></g><g><title>shed::expand::expand_cmd_sub (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1093" width="0.2217%" height="15" fill="rgb(229,211,3)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1103.50"></text></g><g><title>shed::parse::execute::exec_input (378,197 samples, 0.22%)</title><rect x="98.9002%" y="1077" width="0.2217%" height="15" fill="rgb(216,140,21)" fg:x="168687218" fg:w="378197"/><text x="99.1502%" y="1087.50"></text></g><g><title>shed::state::read_logic (365,775 samples, 0.21%)</title><rect x="98.9075%" y="1061" width="0.2145%" height="15" fill="rgb(234,122,30)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="1071.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (365,775 samples, 0.21%)</title><rect x="98.9075%" y="1045" width="0.2145%" height="15" fill="rgb(236,25,46)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="1055.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (365,775 samples, 0.21%)</title><rect x="98.9075%" y="1029" width="0.2145%" height="15" fill="rgb(217,52,54)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="1039.50"></text></g><g><title>shed::state::read_logic::{{closure}} (365,775 samples, 0.21%)</title><rect x="98.9075%" y="1013" width="0.2145%" height="15" fill="rgb(222,29,26)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="1023.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (365,775 samples, 0.21%)</title><rect x="98.9075%" y="997" width="0.2145%" height="15" fill="rgb(216,177,29)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="1007.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="981" width="0.2145%" height="15" fill="rgb(247,136,51)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="965" width="0.2145%" height="15" fill="rgb(231,47,47)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="975.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="949" width="0.2145%" height="15" fill="rgb(211,192,36)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="959.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="933" width="0.2145%" height="15" fill="rgb(229,156,32)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="943.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="917" width="0.2145%" height="15" fill="rgb(248,213,20)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="927.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (365,775 samples, 0.21%)</title><rect x="98.9075%" y="901" width="0.2145%" height="15" fill="rgb(217,64,7)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="911.50"></text></g><g><title>core::clone::Clone::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="885" width="0.2145%" height="15" fill="rgb(232,142,8)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="895.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="869" width="0.2145%" height="15" fill="rgb(224,92,44)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="879.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="853" width="0.2145%" height="15" fill="rgb(214,169,17)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="863.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="837" width="0.2145%" height="15" fill="rgb(210,59,37)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="821" width="0.2145%" height="15" fill="rgb(214,116,48)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="831.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="805" width="0.2145%" height="15" fill="rgb(244,191,6)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="815.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="789" width="0.2145%" height="15" fill="rgb(241,50,52)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="799.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="773" width="0.2145%" height="15" fill="rgb(236,75,39)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="783.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="757" width="0.2145%" height="15" fill="rgb(236,99,0)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="741" width="0.2145%" height="15" fill="rgb(207,202,15)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="751.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="725" width="0.2145%" height="15" fill="rgb(233,207,14)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="735.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="709" width="0.2145%" height="15" fill="rgb(226,27,51)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="719.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="693" width="0.2145%" height="15" fill="rgb(206,104,42)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="703.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="677" width="0.2145%" height="15" fill="rgb(212,225,4)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="687.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (365,775 samples, 0.21%)</title><rect x="98.9075%" y="661" width="0.2145%" height="15" fill="rgb(233,96,42)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="671.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (365,775 samples, 0.21%)</title><rect x="98.9075%" y="645" width="0.2145%" height="15" fill="rgb(229,21,32)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="655.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="629" width="0.2145%" height="15" fill="rgb(226,216,24)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="639.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="613" width="0.2145%" height="15" fill="rgb(221,163,17)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="597" width="0.2145%" height="15" fill="rgb(216,216,42)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="607.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="581" width="0.2145%" height="15" fill="rgb(240,118,7)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="591.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="565" width="0.2145%" height="15" fill="rgb(221,67,37)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="575.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="549" width="0.2145%" height="15" fill="rgb(241,32,44)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="533" width="0.2145%" height="15" fill="rgb(235,204,43)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="543.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="517" width="0.2145%" height="15" fill="rgb(213,116,10)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="527.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="501" width="0.2145%" height="15" fill="rgb(239,15,48)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="511.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="485" width="0.2145%" height="15" fill="rgb(207,123,36)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="495.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="469" width="0.2145%" height="15" fill="rgb(209,103,30)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="453" width="0.2145%" height="15" fill="rgb(238,100,19)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="463.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="437" width="0.2145%" height="15" fill="rgb(244,30,14)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="447.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="421" width="0.2145%" height="15" fill="rgb(249,174,6)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="431.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="405" width="0.2145%" height="15" fill="rgb(235,213,41)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="415.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="389" width="0.2145%" height="15" fill="rgb(213,118,6)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="399.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (365,775 samples, 0.21%)</title><rect x="98.9075%" y="373" width="0.2145%" height="15" fill="rgb(235,44,51)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="383.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (365,775 samples, 0.21%)</title><rect x="98.9075%" y="357" width="0.2145%" height="15" fill="rgb(217,9,53)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="367.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="341" width="0.2145%" height="15" fill="rgb(237,172,34)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="351.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="325" width="0.2145%" height="15" fill="rgb(206,206,11)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="335.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="309" width="0.2145%" height="15" fill="rgb(214,149,29)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="319.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="293" width="0.2145%" height="15" fill="rgb(208,123,3)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="303.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="277" width="0.2145%" height="15" fill="rgb(229,126,4)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="287.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="261" width="0.2145%" height="15" fill="rgb(222,92,36)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="271.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="245" width="0.2145%" height="15" fill="rgb(216,39,41)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="255.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="229" width="0.2145%" height="15" fill="rgb(253,127,28)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="239.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="213" width="0.2145%" height="15" fill="rgb(249,152,51)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="223.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="197" width="0.2145%" height="15" fill="rgb(209,123,42)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="207.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="181" width="0.2145%" height="15" fill="rgb(241,118,22)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="191.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="165" width="0.2145%" height="15" fill="rgb(208,25,7)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="175.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (365,775 samples, 0.21%)</title><rect x="98.9075%" y="149" width="0.2145%" height="15" fill="rgb(243,144,39)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="159.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (365,775 samples, 0.21%)</title><rect x="98.9075%" y="133" width="0.2145%" height="15" fill="rgb(250,50,5)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="143.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="117" width="0.2145%" height="15" fill="rgb(207,67,11)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="127.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="101" width="0.2145%" height="15" fill="rgb(245,204,40)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="111.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (365,775 samples, 0.21%)</title><rect x="98.9075%" y="85" width="0.2145%" height="15" fill="rgb(238,228,24)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="95.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (365,775 samples, 0.21%)</title><rect x="98.9075%" y="69" width="0.2145%" height="15" fill="rgb(217,116,22)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="79.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="53" width="0.2145%" height="15" fill="rgb(234,98,12)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="63.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::clone::Clone&gt;::clone (365,775 samples, 0.21%)</title><rect x="98.9075%" y="37" width="0.2145%" height="15" fill="rgb(242,170,50)" fg:x="168699640" fg:w="365775"/><text x="99.1575%" y="47.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (110,214 samples, 0.06%)</title><rect x="99.1220%" y="1045" width="0.0646%" height="15" fill="rgb(235,7,5)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (110,214 samples, 0.06%)</title><rect x="99.1220%" y="1029" width="0.0646%" height="15" fill="rgb(241,114,28)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (110,214 samples, 0.06%)</title><rect x="99.1220%" y="1013" width="0.0646%" height="15" fill="rgb(246,112,42)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (110,214 samples, 0.06%)</title><rect x="99.1220%" y="997" width="0.0646%" height="15" fill="rgb(248,228,14)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (110,214 samples, 0.06%)</title><rect x="99.1220%" y="981" width="0.0646%" height="15" fill="rgb(208,133,18)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="991.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (110,214 samples, 0.06%)</title><rect x="99.1220%" y="965" width="0.0646%" height="15" fill="rgb(207,35,49)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="975.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (110,214 samples, 0.06%)</title><rect x="99.1220%" y="949" width="0.0646%" height="15" fill="rgb(205,68,36)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="959.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (110,214 samples, 0.06%)</title><rect x="99.1220%" y="933" width="0.0646%" height="15" fill="rgb(245,62,40)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="943.50"></text></g><g><title>shed::parse::execute::Dispatcher::run_fork (110,214 samples, 0.06%)</title><rect x="99.1220%" y="917" width="0.0646%" height="15" fill="rgb(228,27,24)" fg:x="169065415" fg:w="110214"/><text x="99.3720%" y="927.50"></text></g><g><title>std::process::exit (104,725 samples, 0.06%)</title><rect x="99.1252%" y="901" width="0.0614%" height="15" fill="rgb(253,19,12)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="911.50"></text></g><g><title>std::sys::pal::unix::os::exit (104,725 samples, 0.06%)</title><rect x="99.1252%" y="885" width="0.0614%" height="15" fill="rgb(232,28,20)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="895.50"></text></g><g><title>exit (104,725 samples, 0.06%)</title><rect x="99.1252%" y="869" width="0.0614%" height="15" fill="rgb(218,35,51)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="879.50"></text></g><g><title>__run_exit_handlers (104,725 samples, 0.06%)</title><rect x="99.1252%" y="853" width="0.0614%" height="15" fill="rgb(212,90,40)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="863.50"></text></g><g><title>__call_tls_dtors (104,725 samples, 0.06%)</title><rect x="99.1252%" y="837" width="0.0614%" height="15" fill="rgb(220,172,12)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="847.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy (104,725 samples, 0.06%)</title><rect x="99.1252%" y="821" width="0.0614%" height="15" fill="rgb(226,159,20)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="831.50"></text></g><g><title>std::sys::thread_local::abort_on_dtor_unwind (104,725 samples, 0.06%)</title><rect x="99.1252%" y="805" width="0.0614%" height="15" fill="rgb(234,205,16)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="815.50"></text></g><g><title>std::sys::thread_local::native::lazy::destroy::{{closure}} (104,725 samples, 0.06%)</title><rect x="99.1252%" y="789" width="0.0614%" height="15" fill="rgb(207,9,39)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="799.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_drop (104,725 samples, 0.06%)</title><rect x="99.1252%" y="773" width="0.0614%" height="15" fill="rgb(249,143,15)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::Shed&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="757" width="0.0614%" height="15" fill="rgb(253,133,29)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefCell&lt;shed::state::ScopeStack&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="741" width="0.0614%" height="15" fill="rgb(221,187,0)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;shed::state::ScopeStack&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="725" width="0.0614%" height="15" fill="rgb(205,204,26)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::ScopeStack&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="709" width="0.0614%" height="15" fill="rgb(224,68,54)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;shed::state::VarTab&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="693" width="0.0614%" height="15" fill="rgb(209,67,4)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (104,725 samples, 0.06%)</title><rect x="99.1252%" y="677" width="0.0614%" height="15" fill="rgb(228,229,18)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;[shed::state::VarTab]&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="661" width="0.0614%" height="15" fill="rgb(231,89,13)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;shed::state::VarTab&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="645" width="0.0614%" height="15" fill="rgb(210,182,18)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::string::String,shed::state::Var&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="629" width="0.0614%" height="15" fill="rgb(240,105,2)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::string::String,shed::state::Var,std::hash::random::RandomState&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="613" width="0.0614%" height="15" fill="rgb(207,170,50)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::string::String,shed::state::Var)&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="597" width="0.0614%" height="15" fill="rgb(232,133,24)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="607.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (104,725 samples, 0.06%)</title><rect x="99.1252%" y="581" width="0.0614%" height="15" fill="rgb(235,166,27)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="591.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (104,725 samples, 0.06%)</title><rect x="99.1252%" y="565" width="0.0614%" height="15" fill="rgb(209,19,13)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="575.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (104,725 samples, 0.06%)</title><rect x="99.1252%" y="549" width="0.0614%" height="15" fill="rgb(226,79,39)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="559.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (104,725 samples, 0.06%)</title><rect x="99.1252%" y="533" width="0.0614%" height="15" fill="rgb(222,163,10)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="543.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (104,725 samples, 0.06%)</title><rect x="99.1252%" y="517" width="0.0614%" height="15" fill="rgb(214,44,19)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::string::String,shed::state::Var)&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="501" width="0.0614%" height="15" fill="rgb(210,217,13)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="485" width="0.0614%" height="15" fill="rgb(237,61,54)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="469" width="0.0614%" height="15" fill="rgb(226,184,24)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (104,725 samples, 0.06%)</title><rect x="99.1252%" y="453" width="0.0614%" height="15" fill="rgb(223,226,4)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="463.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (104,725 samples, 0.06%)</title><rect x="99.1252%" y="437" width="0.0614%" height="15" fill="rgb(210,26,41)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="447.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (104,725 samples, 0.06%)</title><rect x="99.1252%" y="421" width="0.0614%" height="15" fill="rgb(220,221,6)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="431.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::current_memory (104,725 samples, 0.06%)</title><rect x="99.1252%" y="405" width="0.0614%" height="15" fill="rgb(225,89,49)" fg:x="169070904" fg:w="104725"/><text x="99.3752%" y="415.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="453" width="0.0626%" height="15" fill="rgb(218,70,45)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="463.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="437" width="0.0626%" height="15" fill="rgb(238,166,21)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="447.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (106,844 samples, 0.06%)</title><rect x="99.1866%" y="421" width="0.0626%" height="15" fill="rgb(224,141,44)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="431.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (106,844 samples, 0.06%)</title><rect x="99.1866%" y="405" width="0.0626%" height="15" fill="rgb(230,12,49)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="415.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="389" width="0.0626%" height="15" fill="rgb(212,174,12)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="399.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="373" width="0.0626%" height="15" fill="rgb(246,67,9)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="383.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="357" width="0.0626%" height="15" fill="rgb(239,35,23)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="367.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (106,844 samples, 0.06%)</title><rect x="99.1866%" y="341" width="0.0626%" height="15" fill="rgb(211,167,0)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="351.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (106,844 samples, 0.06%)</title><rect x="99.1866%" y="325" width="0.0626%" height="15" fill="rgb(225,119,45)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="335.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="309" width="0.0626%" height="15" fill="rgb(210,162,6)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="319.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="293" width="0.0626%" height="15" fill="rgb(208,118,35)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="303.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (106,844 samples, 0.06%)</title><rect x="99.1866%" y="277" width="0.0626%" height="15" fill="rgb(239,4,53)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="287.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (106,844 samples, 0.06%)</title><rect x="99.1866%" y="261" width="0.0626%" height="15" fill="rgb(213,130,21)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="271.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="245" width="0.0626%" height="15" fill="rgb(235,148,0)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="255.50"></text></g><g><title>&lt;shed::parse::lex::Span as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="229" width="0.0626%" height="15" fill="rgb(244,224,18)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="239.50"></text></g><g><title>&lt;shed::parse::lex::SpanSource as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="213" width="0.0626%" height="15" fill="rgb(211,214,4)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="223.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::clone::Clone&gt;::clone (106,844 samples, 0.06%)</title><rect x="99.1866%" y="197" width="0.0626%" height="15" fill="rgb(206,119,25)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="207.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::inner (106,844 samples, 0.06%)</title><rect x="99.1866%" y="181" width="0.0626%" height="15" fill="rgb(243,93,47)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="191.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::as_ref (106,844 samples, 0.06%)</title><rect x="99.1866%" y="165" width="0.0626%" height="15" fill="rgb(224,194,6)" fg:x="169175629" fg:w="106844"/><text x="99.4366%" y="175.50"></text></g><g><title>shed::readline::ShedVi::new (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1925" width="0.1793%" height="15" fill="rgb(243,229,6)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1935.50"></text></g><g><title>shed::readline::Prompt::refresh (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1909" width="0.1793%" height="15" fill="rgb(207,23,50)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1919.50"></text></g><g><title>shed::expand::expand_prompt (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1893" width="0.1793%" height="15" fill="rgb(253,192,32)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1903.50"></text></g><g><title>shed::expand::expand_cmd_sub (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1877" width="0.1793%" height="15" fill="rgb(213,21,6)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1887.50"></text></g><g><title>shed::parse::execute::exec_input (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1861" width="0.1793%" height="15" fill="rgb(243,151,13)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1845" width="0.1793%" height="15" fill="rgb(233,165,41)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1829" width="0.1793%" height="15" fill="rgb(246,176,45)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1813" width="0.1793%" height="15" fill="rgb(217,170,52)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1797" width="0.1793%" height="15" fill="rgb(214,203,54)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1781" width="0.1793%" height="15" fill="rgb(248,215,49)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1765" width="0.1793%" height="15" fill="rgb(208,46,10)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1749" width="0.1793%" height="15" fill="rgb(254,5,31)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1733" width="0.1793%" height="15" fill="rgb(222,104,33)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1717" width="0.1793%" height="15" fill="rgb(248,49,16)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1701" width="0.1793%" height="15" fill="rgb(232,198,41)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1685" width="0.1793%" height="15" fill="rgb(214,125,3)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1669" width="0.1793%" height="15" fill="rgb(229,220,28)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1653" width="0.1793%" height="15" fill="rgb(222,64,37)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1637" width="0.1793%" height="15" fill="rgb(249,184,13)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1621" width="0.1793%" height="15" fill="rgb(252,176,6)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1605" width="0.1793%" height="15" fill="rgb(228,153,7)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1589" width="0.1793%" height="15" fill="rgb(242,193,5)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1573" width="0.1793%" height="15" fill="rgb(232,140,9)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1583.50"></text></g><g><title>shed::builtin::varcmds::local (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1557" width="0.1793%" height="15" fill="rgb(213,222,16)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1567.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1541" width="0.1793%" height="15" fill="rgb(222,75,50)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1551.50"></text></g><g><title>shed::expand::Expander::expand (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1525" width="0.1793%" height="15" fill="rgb(205,180,2)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1535.50"></text></g><g><title>shed::expand::expand_raw (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1509" width="0.1793%" height="15" fill="rgb(216,34,7)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1519.50"></text></g><g><title>shed::expand::expand_var (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1493" width="0.1793%" height="15" fill="rgb(253,16,32)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1503.50"></text></g><g><title>shed::expand::expand_cmd_sub (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1477" width="0.1793%" height="15" fill="rgb(208,97,28)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1487.50"></text></g><g><title>shed::parse::execute::exec_input (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1461" width="0.1793%" height="15" fill="rgb(225,92,11)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1445" width="0.1793%" height="15" fill="rgb(243,38,12)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1429" width="0.1793%" height="15" fill="rgb(208,139,16)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1413" width="0.1793%" height="15" fill="rgb(227,24,9)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1397" width="0.1793%" height="15" fill="rgb(206,62,11)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1381" width="0.1793%" height="15" fill="rgb(228,134,27)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1365" width="0.1793%" height="15" fill="rgb(205,55,33)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1349" width="0.1793%" height="15" fill="rgb(243,75,43)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1333" width="0.1793%" height="15" fill="rgb(223,27,42)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1317" width="0.1793%" height="15" fill="rgb(232,189,33)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1301" width="0.1793%" height="15" fill="rgb(210,9,39)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1285" width="0.1793%" height="15" fill="rgb(242,85,26)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1269" width="0.1793%" height="15" fill="rgb(248,44,4)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1253" width="0.1793%" height="15" fill="rgb(250,96,46)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1237" width="0.1793%" height="15" fill="rgb(229,116,26)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1221" width="0.1793%" height="15" fill="rgb(246,94,34)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1205" width="0.1793%" height="15" fill="rgb(251,73,21)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1189" width="0.1793%" height="15" fill="rgb(254,121,25)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1173" width="0.1793%" height="15" fill="rgb(215,161,49)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1183.50"></text></g><g><title>shed::builtin::varcmds::local (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1157" width="0.1793%" height="15" fill="rgb(221,43,13)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1167.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1141" width="0.1793%" height="15" fill="rgb(249,5,37)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1151.50"></text></g><g><title>shed::expand::Expander::expand (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1125" width="0.1793%" height="15" fill="rgb(226,25,44)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1135.50"></text></g><g><title>shed::expand::expand_raw (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1109" width="0.1793%" height="15" fill="rgb(238,189,16)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1119.50"></text></g><g><title>shed::expand::expand_var (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1093" width="0.1793%" height="15" fill="rgb(251,186,8)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1103.50"></text></g><g><title>shed::expand::expand_cmd_sub (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1077" width="0.1793%" height="15" fill="rgb(254,34,31)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1087.50"></text></g><g><title>shed::parse::execute::exec_input (305,867 samples, 0.18%)</title><rect x="99.1220%" y="1061" width="0.1793%" height="15" fill="rgb(225,215,27)" fg:x="169065415" fg:w="305867"/><text x="99.3720%" y="1071.50"></text></g><g><title>shed::state::read_logic (195,653 samples, 0.11%)</title><rect x="99.1866%" y="1045" width="0.1147%" height="15" fill="rgb(221,192,48)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="1055.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (195,653 samples, 0.11%)</title><rect x="99.1866%" y="1029" width="0.1147%" height="15" fill="rgb(219,137,20)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="1039.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (195,653 samples, 0.11%)</title><rect x="99.1866%" y="1013" width="0.1147%" height="15" fill="rgb(219,84,11)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="1023.50"></text></g><g><title>shed::state::read_logic::{{closure}} (195,653 samples, 0.11%)</title><rect x="99.1866%" y="997" width="0.1147%" height="15" fill="rgb(224,10,23)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="1007.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (195,653 samples, 0.11%)</title><rect x="99.1866%" y="981" width="0.1147%" height="15" fill="rgb(248,22,39)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="991.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="965" width="0.1147%" height="15" fill="rgb(212,154,20)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="975.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="949" width="0.1147%" height="15" fill="rgb(236,199,50)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="959.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="933" width="0.1147%" height="15" fill="rgb(211,9,17)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="943.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="917" width="0.1147%" height="15" fill="rgb(243,216,36)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="927.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (195,653 samples, 0.11%)</title><rect x="99.1866%" y="901" width="0.1147%" height="15" fill="rgb(250,2,10)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="911.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (195,653 samples, 0.11%)</title><rect x="99.1866%" y="885" width="0.1147%" height="15" fill="rgb(226,50,48)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="895.50"></text></g><g><title>core::clone::Clone::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="869" width="0.1147%" height="15" fill="rgb(243,81,16)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="879.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="853" width="0.1147%" height="15" fill="rgb(250,14,2)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="863.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="837" width="0.1147%" height="15" fill="rgb(233,135,29)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="847.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="821" width="0.1147%" height="15" fill="rgb(224,64,43)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="805" width="0.1147%" height="15" fill="rgb(238,84,13)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="815.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (195,653 samples, 0.11%)</title><rect x="99.1866%" y="789" width="0.1147%" height="15" fill="rgb(253,48,26)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="799.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (195,653 samples, 0.11%)</title><rect x="99.1866%" y="773" width="0.1147%" height="15" fill="rgb(205,223,31)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="783.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="757" width="0.1147%" height="15" fill="rgb(221,41,32)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="767.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="741" width="0.1147%" height="15" fill="rgb(213,158,31)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="725" width="0.1147%" height="15" fill="rgb(245,126,43)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="735.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (195,653 samples, 0.11%)</title><rect x="99.1866%" y="709" width="0.1147%" height="15" fill="rgb(227,7,22)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="719.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (195,653 samples, 0.11%)</title><rect x="99.1866%" y="693" width="0.1147%" height="15" fill="rgb(252,90,44)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="703.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="677" width="0.1147%" height="15" fill="rgb(253,91,0)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="687.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="661" width="0.1147%" height="15" fill="rgb(252,175,49)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="671.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (195,653 samples, 0.11%)</title><rect x="99.1866%" y="645" width="0.1147%" height="15" fill="rgb(246,150,1)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="655.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (195,653 samples, 0.11%)</title><rect x="99.1866%" y="629" width="0.1147%" height="15" fill="rgb(241,192,25)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="639.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="613" width="0.1147%" height="15" fill="rgb(239,187,11)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="623.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="597" width="0.1147%" height="15" fill="rgb(218,202,51)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="581" width="0.1147%" height="15" fill="rgb(225,176,8)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="591.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (195,653 samples, 0.11%)</title><rect x="99.1866%" y="565" width="0.1147%" height="15" fill="rgb(219,122,41)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="575.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (195,653 samples, 0.11%)</title><rect x="99.1866%" y="549" width="0.1147%" height="15" fill="rgb(248,140,20)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="559.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="533" width="0.1147%" height="15" fill="rgb(245,41,37)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="543.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="517" width="0.1147%" height="15" fill="rgb(235,82,39)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="527.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (195,653 samples, 0.11%)</title><rect x="99.1866%" y="501" width="0.1147%" height="15" fill="rgb(230,108,42)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="511.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (195,653 samples, 0.11%)</title><rect x="99.1866%" y="485" width="0.1147%" height="15" fill="rgb(215,150,50)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="495.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (195,653 samples, 0.11%)</title><rect x="99.1866%" y="469" width="0.1147%" height="15" fill="rgb(233,212,5)" fg:x="169175629" fg:w="195653"/><text x="99.4366%" y="479.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (88,809 samples, 0.05%)</title><rect x="99.2492%" y="453" width="0.0521%" height="15" fill="rgb(245,80,22)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (88,809 samples, 0.05%)</title><rect x="99.2492%" y="437" width="0.0521%" height="15" fill="rgb(238,129,16)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="447.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (88,809 samples, 0.05%)</title><rect x="99.2492%" y="421" width="0.0521%" height="15" fill="rgb(240,19,0)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="431.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (88,809 samples, 0.05%)</title><rect x="99.2492%" y="405" width="0.0521%" height="15" fill="rgb(232,42,35)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="415.50"></text></g><g><title>&lt;shed::parse::lex::Tk as core::clone::Clone&gt;::clone (88,809 samples, 0.05%)</title><rect x="99.2492%" y="389" width="0.0521%" height="15" fill="rgb(223,130,24)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="399.50"></text></g><g><title>&lt;shed::parse::lex::TkRule as core::clone::Clone&gt;::clone (88,809 samples, 0.05%)</title><rect x="99.2492%" y="373" width="0.0521%" height="15" fill="rgb(237,16,22)" fg:x="169282473" fg:w="88809"/><text x="99.4992%" y="383.50"></text></g><g><title>shed::shed_interactive (809,650 samples, 0.47%)</title><rect x="98.9002%" y="1941" width="0.4747%" height="15" fill="rgb(248,192,20)" fg:x="168687218" fg:w="809650"/><text x="99.1502%" y="1951.50"></text></g><g><title>shed::state::source_rc (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1925" width="0.0736%" height="15" fill="rgb(233,167,2)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1935.50"></text></g><g><title>shed::state::source_file (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1909" width="0.0736%" height="15" fill="rgb(252,71,44)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1919.50"></text></g><g><title>shed::parse::execute::exec_input (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1893" width="0.0736%" height="15" fill="rgb(238,37,47)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1903.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1877" width="0.0736%" height="15" fill="rgb(214,202,54)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1887.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1861" width="0.0736%" height="15" fill="rgb(254,165,40)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1871.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1845" width="0.0736%" height="15" fill="rgb(246,173,38)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1855.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1829" width="0.0736%" height="15" fill="rgb(215,3,27)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1839.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1813" width="0.0736%" height="15" fill="rgb(239,169,51)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1797" width="0.0736%" height="15" fill="rgb(212,5,25)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1781" width="0.0736%" height="15" fill="rgb(243,45,17)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1765" width="0.0736%" height="15" fill="rgb(242,97,9)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1749" width="0.0736%" height="15" fill="rgb(228,71,31)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1759.50"></text></g><g><title>shed::builtin::varcmds::export (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1733" width="0.0736%" height="15" fill="rgb(252,184,16)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1743.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1717" width="0.0736%" height="15" fill="rgb(236,169,46)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1727.50"></text></g><g><title>shed::expand::Expander::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1701" width="0.0736%" height="15" fill="rgb(207,17,47)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1711.50"></text></g><g><title>shed::expand::expand_raw (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1685" width="0.0736%" height="15" fill="rgb(206,201,28)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1695.50"></text></g><g><title>shed::expand::expand_var (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1669" width="0.0736%" height="15" fill="rgb(224,184,23)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1679.50"></text></g><g><title>shed::expand::expand_cmd_sub (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1653" width="0.0736%" height="15" fill="rgb(208,139,48)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1663.50"></text></g><g><title>shed::parse::execute::exec_input (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1637" width="0.0736%" height="15" fill="rgb(208,130,10)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1621" width="0.0736%" height="15" fill="rgb(211,213,45)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1605" width="0.0736%" height="15" fill="rgb(235,100,30)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1589" width="0.0736%" height="15" fill="rgb(206,144,31)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1573" width="0.0736%" height="15" fill="rgb(224,200,26)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1557" width="0.0736%" height="15" fill="rgb(247,104,53)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1541" width="0.0736%" height="15" fill="rgb(220,14,17)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1525" width="0.0736%" height="15" fill="rgb(230,140,40)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1509" width="0.0736%" height="15" fill="rgb(229,2,41)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1493" width="0.0736%" height="15" fill="rgb(232,89,16)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1477" width="0.0736%" height="15" fill="rgb(247,59,52)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1461" width="0.0736%" height="15" fill="rgb(226,110,21)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1445" width="0.0736%" height="15" fill="rgb(224,176,43)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1429" width="0.0736%" height="15" fill="rgb(221,73,6)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1413" width="0.0736%" height="15" fill="rgb(232,78,19)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop::{{closure}} (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1397" width="0.0736%" height="15" fill="rgb(233,112,48)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1381" width="0.0736%" height="15" fill="rgb(243,131,47)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1365" width="0.0736%" height="15" fill="rgb(226,51,1)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1349" width="0.0736%" height="15" fill="rgb(247,58,7)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1333" width="0.0736%" height="15" fill="rgb(209,7,32)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case::{{closure}} (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1317" width="0.0736%" height="15" fill="rgb(209,39,41)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1301" width="0.0736%" height="15" fill="rgb(226,182,46)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1285" width="0.0736%" height="15" fill="rgb(230,219,10)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1269" width="0.0736%" height="15" fill="rgb(227,175,30)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1253" width="0.0736%" height="15" fill="rgb(217,2,50)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1237" width="0.0736%" height="15" fill="rgb(229,160,0)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1221" width="0.0736%" height="15" fill="rgb(207,78,37)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1205" width="0.0736%" height="15" fill="rgb(225,57,0)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1189" width="0.0736%" height="15" fill="rgb(232,154,2)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1199.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1173" width="0.0736%" height="15" fill="rgb(241,212,25)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1183.50"></text></g><g><title>shed::expand::Expander::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1157" width="0.0736%" height="15" fill="rgb(226,69,20)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1167.50"></text></g><g><title>shed::expand::expand_raw (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1141" width="0.0736%" height="15" fill="rgb(247,184,54)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1151.50"></text></g><g><title>shed::expand::expand_var (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1125" width="0.0736%" height="15" fill="rgb(210,145,0)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1135.50"></text></g><g><title>shed::expand::expand_cmd_sub (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1109" width="0.0736%" height="15" fill="rgb(253,82,12)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1119.50"></text></g><g><title>shed::parse::execute::exec_input (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1093" width="0.0736%" height="15" fill="rgb(245,42,11)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1103.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1077" width="0.0736%" height="15" fill="rgb(219,147,32)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1087.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1061" width="0.0736%" height="15" fill="rgb(246,12,7)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1071.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1045" width="0.0736%" height="15" fill="rgb(243,50,9)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1055.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1029" width="0.0736%" height="15" fill="rgb(219,149,6)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1039.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (125,586 samples, 0.07%)</title><rect x="99.3013%" y="1013" width="0.0736%" height="15" fill="rgb(241,51,42)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1023.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (125,586 samples, 0.07%)</title><rect x="99.3013%" y="997" width="0.0736%" height="15" fill="rgb(226,128,27)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="1007.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (125,586 samples, 0.07%)</title><rect x="99.3013%" y="981" width="0.0736%" height="15" fill="rgb(244,144,4)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="991.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (125,586 samples, 0.07%)</title><rect x="99.3013%" y="965" width="0.0736%" height="15" fill="rgb(221,4,13)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="975.50"></text></g><g><title>shed::parse::execute::Dispatcher::run_fork (125,586 samples, 0.07%)</title><rect x="99.3013%" y="949" width="0.0736%" height="15" fill="rgb(208,170,28)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="959.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin::{{closure}} (125,586 samples, 0.07%)</title><rect x="99.3013%" y="933" width="0.0736%" height="15" fill="rgb(226,131,13)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="943.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (125,586 samples, 0.07%)</title><rect x="99.3013%" y="917" width="0.0736%" height="15" fill="rgb(215,72,41)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="927.50"></text></g><g><title>shed::builtin::echo::echo (125,586 samples, 0.07%)</title><rect x="99.3013%" y="901" width="0.0736%" height="15" fill="rgb(243,108,20)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="911.50"></text></g><g><title>shed::parse::execute::prepare_argv (125,586 samples, 0.07%)</title><rect x="99.3013%" y="885" width="0.0736%" height="15" fill="rgb(230,189,17)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="895.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="869" width="0.0736%" height="15" fill="rgb(220,50,17)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="879.50"></text></g><g><title>shed::expand::Expander::expand (125,586 samples, 0.07%)</title><rect x="99.3013%" y="853" width="0.0736%" height="15" fill="rgb(248,152,48)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="863.50"></text></g><g><title>shed::expand::Expander::split_words (125,586 samples, 0.07%)</title><rect x="99.3013%" y="837" width="0.0736%" height="15" fill="rgb(244,91,11)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="847.50"></text></g><g><title>core::str::&lt;impl str&gt;::contains (125,586 samples, 0.07%)</title><rect x="99.3013%" y="821" width="0.0736%" height="15" fill="rgb(220,157,5)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="831.50"></text></g><g><title>&lt;char as core::str::pattern::Pattern&gt;::is_contained_in (125,586 samples, 0.07%)</title><rect x="99.3013%" y="805" width="0.0736%" height="15" fill="rgb(253,137,8)" fg:x="169371282" fg:w="125586"/><text x="99.5513%" y="815.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (870,234 samples, 0.51%)</title><rect x="99.3749%" y="453" width="0.5102%" height="15" fill="rgb(217,137,51)" fg:x="169496868" fg:w="870234"/><text x="99.6249%" y="463.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (870,234 samples, 0.51%)</title><rect x="99.3749%" y="437" width="0.5102%" height="15" fill="rgb(218,209,53)" fg:x="169496868" fg:w="870234"/><text x="99.6249%" y="447.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (870,234 samples, 0.51%)</title><rect x="99.3749%" y="421" width="0.5102%" height="15" fill="rgb(249,137,25)" fg:x="169496868" fg:w="870234"/><text x="99.6249%" y="431.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (870,234 samples, 0.51%)</title><rect x="99.3749%" y="405" width="0.5102%" height="15" fill="rgb(239,155,26)" fg:x="169496868" fg:w="870234"/><text x="99.6249%" y="415.50"></text></g><g><title>&lt;alloc::collections::vec_deque::VecDeque&lt;T,A&gt; as core::clone::Clone&gt;::clone (870,234 samples, 0.51%)</title><rect x="99.3749%" y="389" width="0.5102%" height="15" fill="rgb(227,85,46)" fg:x="169496868" fg:w="870234"/><text x="99.6249%" y="399.50"></text></g><g><title>shed::readline::Prompt::new (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1845" width="0.6126%" height="15" fill="rgb(251,107,43)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1855.50"></text></g><g><title>shed::expand::expand_prompt (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1829" width="0.6126%" height="15" fill="rgb(234,170,33)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1839.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1813" width="0.6126%" height="15" fill="rgb(206,29,35)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1823.50"></text></g><g><title>shed::parse::execute::exec_input (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1797" width="0.6126%" height="15" fill="rgb(227,138,25)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1781" width="0.6126%" height="15" fill="rgb(249,131,35)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1765" width="0.6126%" height="15" fill="rgb(239,6,40)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1749" width="0.6126%" height="15" fill="rgb(246,136,47)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1733" width="0.6126%" height="15" fill="rgb(253,58,26)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1717" width="0.6126%" height="15" fill="rgb(237,141,10)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1701" width="0.6126%" height="15" fill="rgb(234,156,12)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1685" width="0.6126%" height="15" fill="rgb(243,224,36)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1669" width="0.6126%" height="15" fill="rgb(205,229,51)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1679.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1653" width="0.6126%" height="15" fill="rgb(223,189,4)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1663.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1637" width="0.6126%" height="15" fill="rgb(249,167,54)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1647.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1621" width="0.6126%" height="15" fill="rgb(218,34,28)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1631.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1605" width="0.6126%" height="15" fill="rgb(232,109,42)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1615.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1589" width="0.6126%" height="15" fill="rgb(248,214,46)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1599.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1573" width="0.6126%" height="15" fill="rgb(244,216,40)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1583.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1557" width="0.6126%" height="15" fill="rgb(231,226,31)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1541" width="0.6126%" height="15" fill="rgb(238,38,43)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1525" width="0.6126%" height="15" fill="rgb(208,88,43)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1509" width="0.6126%" height="15" fill="rgb(205,136,37)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1519.50"></text></g><g><title>shed::builtin::varcmds::local (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1493" width="0.6126%" height="15" fill="rgb(237,34,14)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1503.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1477" width="0.6126%" height="15" fill="rgb(236,193,44)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1487.50"></text></g><g><title>shed::expand::Expander::expand (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1461" width="0.6126%" height="15" fill="rgb(231,48,10)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1471.50"></text></g><g><title>shed::expand::expand_raw (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1445" width="0.6126%" height="15" fill="rgb(213,141,34)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1455.50"></text></g><g><title>shed::expand::expand_var (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1429" width="0.6126%" height="15" fill="rgb(249,130,34)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1439.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1413" width="0.6126%" height="15" fill="rgb(219,42,41)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1423.50"></text></g><g><title>shed::parse::execute::exec_input (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1397" width="0.6126%" height="15" fill="rgb(224,100,54)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1381" width="0.6126%" height="15" fill="rgb(229,200,27)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1365" width="0.6126%" height="15" fill="rgb(217,118,10)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1349" width="0.6126%" height="15" fill="rgb(206,22,3)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1333" width="0.6126%" height="15" fill="rgb(232,163,46)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1317" width="0.6126%" height="15" fill="rgb(206,95,13)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1301" width="0.6126%" height="15" fill="rgb(253,154,18)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1285" width="0.6126%" height="15" fill="rgb(219,32,23)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1269" width="0.6126%" height="15" fill="rgb(230,191,45)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1253" width="0.6126%" height="15" fill="rgb(229,64,36)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1237" width="0.6126%" height="15" fill="rgb(205,129,25)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1221" width="0.6126%" height="15" fill="rgb(254,112,7)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1205" width="0.6126%" height="15" fill="rgb(226,53,48)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1189" width="0.6126%" height="15" fill="rgb(214,153,38)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1173" width="0.6126%" height="15" fill="rgb(243,101,7)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1157" width="0.6126%" height="15" fill="rgb(240,140,22)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1141" width="0.6126%" height="15" fill="rgb(235,114,2)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1125" width="0.6126%" height="15" fill="rgb(242,59,12)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1109" width="0.6126%" height="15" fill="rgb(252,134,9)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1119.50"></text></g><g><title>shed::builtin::varcmds::local (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1093" width="0.6126%" height="15" fill="rgb(236,4,44)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1103.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1077" width="0.6126%" height="15" fill="rgb(254,172,41)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1087.50"></text></g><g><title>shed::expand::Expander::expand (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1061" width="0.6126%" height="15" fill="rgb(244,63,20)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1071.50"></text></g><g><title>shed::expand::expand_raw (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1045" width="0.6126%" height="15" fill="rgb(250,73,31)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1055.50"></text></g><g><title>shed::expand::expand_var (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1029" width="0.6126%" height="15" fill="rgb(241,38,36)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1039.50"></text></g><g><title>shed::expand::expand_cmd_sub (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="1013" width="0.6126%" height="15" fill="rgb(245,211,2)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1023.50"></text></g><g><title>shed::parse::execute::exec_input (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="997" width="0.6126%" height="15" fill="rgb(206,120,28)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="1007.50"></text></g><g><title>shed::state::read_logic (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="981" width="0.6126%" height="15" fill="rgb(211,59,34)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="991.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="965" width="0.6126%" height="15" fill="rgb(233,168,5)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="975.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="949" width="0.6126%" height="15" fill="rgb(234,33,13)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="959.50"></text></g><g><title>shed::state::read_logic::{{closure}} (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="933" width="0.6126%" height="15" fill="rgb(231,150,26)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="943.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="917" width="0.6126%" height="15" fill="rgb(217,191,4)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="927.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="901" width="0.6126%" height="15" fill="rgb(246,198,38)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="885" width="0.6126%" height="15" fill="rgb(245,64,37)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="895.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="869" width="0.6126%" height="15" fill="rgb(250,30,36)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="879.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="853" width="0.6126%" height="15" fill="rgb(217,86,53)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="863.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="837" width="0.6126%" height="15" fill="rgb(228,157,16)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="847.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="821" width="0.6126%" height="15" fill="rgb(217,59,31)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="831.50"></text></g><g><title>core::clone::Clone::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="805" width="0.6126%" height="15" fill="rgb(237,138,41)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="815.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="789" width="0.6126%" height="15" fill="rgb(227,91,49)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="799.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="773" width="0.6126%" height="15" fill="rgb(247,21,44)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="783.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="757" width="0.6126%" height="15" fill="rgb(219,210,51)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="741" width="0.6126%" height="15" fill="rgb(209,140,6)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="751.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="725" width="0.6126%" height="15" fill="rgb(221,188,24)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="735.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="709" width="0.6126%" height="15" fill="rgb(232,154,20)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="719.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="693" width="0.6126%" height="15" fill="rgb(244,137,50)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="703.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="677" width="0.6126%" height="15" fill="rgb(225,185,43)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="661" width="0.6126%" height="15" fill="rgb(213,205,38)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="645" width="0.6126%" height="15" fill="rgb(236,73,12)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="655.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="629" width="0.6126%" height="15" fill="rgb(235,219,13)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="639.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="613" width="0.6126%" height="15" fill="rgb(218,59,36)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="623.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="597" width="0.6126%" height="15" fill="rgb(205,110,39)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="607.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="581" width="0.6126%" height="15" fill="rgb(218,206,42)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="591.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="565" width="0.6126%" height="15" fill="rgb(248,125,24)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="575.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="549" width="0.6126%" height="15" fill="rgb(242,28,27)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="559.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="533" width="0.6126%" height="15" fill="rgb(216,228,15)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="517" width="0.6126%" height="15" fill="rgb(235,116,46)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="527.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="501" width="0.6126%" height="15" fill="rgb(224,18,32)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="511.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="485" width="0.6126%" height="15" fill="rgb(252,5,12)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="495.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (1,044,813 samples, 0.61%)</title><rect x="99.3749%" y="469" width="0.6126%" height="15" fill="rgb(251,36,5)" fg:x="169496868" fg:w="1044813"/><text x="99.6249%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (174,579 samples, 0.10%)</title><rect x="99.8851%" y="453" width="0.1024%" height="15" fill="rgb(217,53,14)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="463.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="437" width="0.1024%" height="15" fill="rgb(215,86,45)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="447.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (174,579 samples, 0.10%)</title><rect x="99.8851%" y="421" width="0.1024%" height="15" fill="rgb(242,169,11)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="431.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (174,579 samples, 0.10%)</title><rect x="99.8851%" y="405" width="0.1024%" height="15" fill="rgb(211,213,45)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (174,579 samples, 0.10%)</title><rect x="99.8851%" y="389" width="0.1024%" height="15" fill="rgb(205,88,11)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="399.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="373" width="0.1024%" height="15" fill="rgb(252,69,26)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="383.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (174,579 samples, 0.10%)</title><rect x="99.8851%" y="357" width="0.1024%" height="15" fill="rgb(246,123,37)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="367.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="341" width="0.1024%" height="15" fill="rgb(212,205,5)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="351.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="325" width="0.1024%" height="15" fill="rgb(253,148,0)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="309" width="0.1024%" height="15" fill="rgb(239,22,4)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="319.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (174,579 samples, 0.10%)</title><rect x="99.8851%" y="293" width="0.1024%" height="15" fill="rgb(226,26,53)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="303.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (174,579 samples, 0.10%)</title><rect x="99.8851%" y="277" width="0.1024%" height="15" fill="rgb(225,229,45)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="287.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (174,579 samples, 0.10%)</title><rect x="99.8851%" y="261" width="0.1024%" height="15" fill="rgb(220,60,37)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="271.50"></text></g><g><title>alloc::alloc::alloc (174,579 samples, 0.10%)</title><rect x="99.8851%" y="245" width="0.1024%" height="15" fill="rgb(217,180,35)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="255.50"></text></g><g><title>__libc_malloc2 (174,579 samples, 0.10%)</title><rect x="99.8851%" y="229" width="0.1024%" height="15" fill="rgb(229,7,53)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="239.50"></text></g><g><title>_int_malloc (174,579 samples, 0.10%)</title><rect x="99.8851%" y="213" width="0.1024%" height="15" fill="rgb(254,137,3)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="223.50"></text></g><g><title>[unknown] (174,579 samples, 0.10%)</title><rect x="99.8851%" y="197" width="0.1024%" height="15" fill="rgb(215,140,41)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="207.50"></text></g><g><title>[unknown] (174,579 samples, 0.10%)</title><rect x="99.8851%" y="181" width="0.1024%" height="15" fill="rgb(250,80,15)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="191.50"></text></g><g><title>[unknown] (174,579 samples, 0.10%)</title><rect x="99.8851%" y="165" width="0.1024%" height="15" fill="rgb(252,191,6)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="175.50"></text></g><g><title>[unknown] (174,579 samples, 0.10%)</title><rect x="99.8851%" y="149" width="0.1024%" height="15" fill="rgb(246,217,18)" fg:x="170367102" fg:w="174579"/><text x="100.1351%" y="159.50"></text></g><g><title>std::rt::lang_start_internal (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1941" width="0.6251%" height="15" fill="rgb(223,93,7)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1951.50"></text></g><g><title>std::rt::lang_start::{{closure}} (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1925" width="0.6251%" height="15" fill="rgb(225,55,52)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1935.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1909" width="0.6251%" height="15" fill="rgb(240,31,24)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1919.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1893" width="0.6251%" height="15" fill="rgb(205,56,52)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1903.50"></text></g><g><title>shed::main (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1877" width="0.6251%" height="15" fill="rgb(246,146,12)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1887.50"></text></g><g><title>shed::shed_interactive (1,066,170 samples, 0.63%)</title><rect x="99.3749%" y="1861" width="0.6251%" height="15" fill="rgb(239,84,36)" fg:x="169496868" fg:w="1066170"/><text x="99.6249%" y="1871.50"></text></g><g><title>shed::state::source_rc (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1845" width="0.0125%" height="15" fill="rgb(207,41,40)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1855.50"></text></g><g><title>shed::state::source_file (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1829" width="0.0125%" height="15" fill="rgb(241,179,25)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1839.50"></text></g><g><title>shed::parse::execute::exec_input (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1813" width="0.0125%" height="15" fill="rgb(210,0,34)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1823.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1797" width="0.0125%" height="15" fill="rgb(225,217,29)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1807.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1781" width="0.0125%" height="15" fill="rgb(216,191,38)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1791.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1765" width="0.0125%" height="15" fill="rgb(232,140,52)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1775.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1749" width="0.0125%" height="15" fill="rgb(223,158,51)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1759.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1733" width="0.0125%" height="15" fill="rgb(235,29,51)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1743.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1717" width="0.0125%" height="15" fill="rgb(215,181,18)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1727.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1701" width="0.0125%" height="15" fill="rgb(227,125,34)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1711.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_builtin (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1685" width="0.0125%" height="15" fill="rgb(230,197,49)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1695.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_builtin (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1669" width="0.0125%" height="15" fill="rgb(239,141,16)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1679.50"></text></g><g><title>shed::builtin::varcmds::export (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1653" width="0.0125%" height="15" fill="rgb(225,105,43)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1663.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1637" width="0.0125%" height="15" fill="rgb(214,131,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1647.50"></text></g><g><title>shed::expand::Expander::expand (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1621" width="0.0125%" height="15" fill="rgb(229,177,11)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1631.50"></text></g><g><title>shed::expand::expand_raw (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1605" width="0.0125%" height="15" fill="rgb(231,180,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1615.50"></text></g><g><title>shed::expand::expand_var (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1589" width="0.0125%" height="15" fill="rgb(232,88,2)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1599.50"></text></g><g><title>shed::expand::expand_cmd_sub (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1573" width="0.0125%" height="15" fill="rgb(205,220,8)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1583.50"></text></g><g><title>shed::parse::execute::exec_input (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1557" width="0.0125%" height="15" fill="rgb(225,23,53)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1567.50"></text></g><g><title>shed::parse::execute::Dispatcher::begin_dispatch (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1541" width="0.0125%" height="15" fill="rgb(213,62,29)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1551.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1525" width="0.0125%" height="15" fill="rgb(227,75,7)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1535.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1509" width="0.0125%" height="15" fill="rgb(207,105,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1519.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1493" width="0.0125%" height="15" fill="rgb(245,62,29)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1503.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1477" width="0.0125%" height="15" fill="rgb(236,202,4)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1487.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1461" width="0.0125%" height="15" fill="rgb(250,67,1)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1471.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1445" width="0.0125%" height="15" fill="rgb(253,115,44)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1455.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_func (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1429" width="0.0125%" height="15" fill="rgb(251,139,18)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1439.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1413" width="0.0125%" height="15" fill="rgb(218,22,32)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1423.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_brc_grp::{{closure}} (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1397" width="0.0125%" height="15" fill="rgb(243,53,5)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1407.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1381" width="0.0125%" height="15" fill="rgb(227,56,16)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1391.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1365" width="0.0125%" height="15" fill="rgb(245,53,0)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1375.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1349" width="0.0125%" height="15" fill="rgb(216,170,35)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1359.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1333" width="0.0125%" height="15" fill="rgb(211,200,8)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1343.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_loop::{{closure}} (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1317" width="0.0125%" height="15" fill="rgb(228,204,44)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1327.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1301" width="0.0125%" height="15" fill="rgb(214,121,17)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1311.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1285" width="0.0125%" height="15" fill="rgb(233,64,38)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1295.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1269" width="0.0125%" height="15" fill="rgb(253,54,19)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1279.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1253" width="0.0125%" height="15" fill="rgb(253,94,18)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1263.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_case::{{closure}} (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1237" width="0.0125%" height="15" fill="rgb(227,57,52)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1247.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1221" width="0.0125%" height="15" fill="rgb(230,228,50)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1231.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_conjunction (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1205" width="0.0125%" height="15" fill="rgb(217,205,27)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1215.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1189" width="0.0125%" height="15" fill="rgb(252,71,50)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1199.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_pipeline (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1173" width="0.0125%" height="15" fill="rgb(209,86,4)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1183.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_node (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1157" width="0.0125%" height="15" fill="rgb(229,94,0)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1167.50"></text></g><g><title>shed::parse::execute::Dispatcher::dispatch_cmd (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1141" width="0.0125%" height="15" fill="rgb(252,223,21)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1151.50"></text></g><g><title>shed::parse::execute::Dispatcher::exec_cmd (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1125" width="0.0125%" height="15" fill="rgb(230,210,4)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1135.50"></text></g><g><title>shed::parse::execute::Dispatcher::set_assignments (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1109" width="0.0125%" height="15" fill="rgb(240,149,38)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1119.50"></text></g><g><title>shed::expand::&lt;impl shed::parse::lex::Tk&gt;::expand (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1093" width="0.0125%" height="15" fill="rgb(254,105,20)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1103.50"></text></g><g><title>shed::expand::Expander::expand (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1077" width="0.0125%" height="15" fill="rgb(253,87,46)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1087.50"></text></g><g><title>shed::expand::expand_raw (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1061" width="0.0125%" height="15" fill="rgb(253,116,33)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1071.50"></text></g><g><title>shed::expand::expand_var (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1045" width="0.0125%" height="15" fill="rgb(229,198,5)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1055.50"></text></g><g><title>shed::expand::expand_cmd_sub (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1029" width="0.0125%" height="15" fill="rgb(242,38,37)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1039.50"></text></g><g><title>shed::parse::execute::exec_input (21,357 samples, 0.01%)</title><rect x="99.9875%" y="1013" width="0.0125%" height="15" fill="rgb(242,69,53)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1023.50"></text></g><g><title>shed::state::read_logic (21,357 samples, 0.01%)</title><rect x="99.9875%" y="997" width="0.0125%" height="15" fill="rgb(249,80,16)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="1007.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (21,357 samples, 0.01%)</title><rect x="99.9875%" y="981" width="0.0125%" height="15" fill="rgb(206,128,11)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="991.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (21,357 samples, 0.01%)</title><rect x="99.9875%" y="965" width="0.0125%" height="15" fill="rgb(212,35,20)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="975.50"></text></g><g><title>shed::state::read_logic::{{closure}} (21,357 samples, 0.01%)</title><rect x="99.9875%" y="949" width="0.0125%" height="15" fill="rgb(236,79,13)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="959.50"></text></g><g><title>shed::parse::execute::exec_input::{{closure}} (21,357 samples, 0.01%)</title><rect x="99.9875%" y="933" width="0.0125%" height="15" fill="rgb(233,123,3)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="943.50"></text></g><g><title>&lt;shed::state::LogTab as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="917" width="0.0125%" height="15" fill="rgb(214,93,52)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="901" width="0.0125%" height="15" fill="rgb(251,37,40)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="911.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="885" width="0.0125%" height="15" fill="rgb(227,80,54)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="895.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="869" width="0.0125%" height="15" fill="rgb(254,48,11)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="879.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as hashbrown::raw::RawTableClone&gt;::clone_from_spec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="853" width="0.0125%" height="15" fill="rgb(235,193,26)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="863.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clone_from_impl (21,357 samples, 0.01%)</title><rect x="99.9875%" y="837" width="0.0125%" height="15" fill="rgb(229,99,21)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="847.50"></text></g><g><title>core::clone::Clone::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="821" width="0.0125%" height="15" fill="rgb(211,140,41)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="831.50"></text></g><g><title>&lt;shed::state::ShFunc as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="805" width="0.0125%" height="15" fill="rgb(240,227,30)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="815.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="789" width="0.0125%" height="15" fill="rgb(215,224,45)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="799.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="773" width="0.0125%" height="15" fill="rgb(206,123,31)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="757" width="0.0125%" height="15" fill="rgb(210,138,16)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="767.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="741" width="0.0125%" height="15" fill="rgb(228,57,28)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="725" width="0.0125%" height="15" fill="rgb(242,170,10)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="735.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="709" width="0.0125%" height="15" fill="rgb(228,214,39)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="719.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="693" width="0.0125%" height="15" fill="rgb(218,179,33)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="677" width="0.0125%" height="15" fill="rgb(235,193,39)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="687.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="661" width="0.0125%" height="15" fill="rgb(219,221,36)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="671.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="645" width="0.0125%" height="15" fill="rgb(248,218,19)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="655.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="629" width="0.0125%" height="15" fill="rgb(205,50,9)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="639.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="613" width="0.0125%" height="15" fill="rgb(238,81,28)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="623.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (21,357 samples, 0.01%)</title><rect x="99.9875%" y="597" width="0.0125%" height="15" fill="rgb(235,110,19)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="607.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (21,357 samples, 0.01%)</title><rect x="99.9875%" y="581" width="0.0125%" height="15" fill="rgb(214,7,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="591.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="565" width="0.0125%" height="15" fill="rgb(211,77,3)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="575.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="549" width="0.0125%" height="15" fill="rgb(229,5,9)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="559.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="533" width="0.0125%" height="15" fill="rgb(225,90,11)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="517" width="0.0125%" height="15" fill="rgb(242,56,8)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="527.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="501" width="0.0125%" height="15" fill="rgb(249,212,39)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="511.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="485" width="0.0125%" height="15" fill="rgb(236,90,9)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="495.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="469" width="0.0125%" height="15" fill="rgb(206,88,35)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="479.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="453" width="0.0125%" height="15" fill="rgb(205,126,30)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="437" width="0.0125%" height="15" fill="rgb(230,176,12)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="447.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="421" width="0.0125%" height="15" fill="rgb(243,19,9)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="431.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="405" width="0.0125%" height="15" fill="rgb(245,171,17)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="415.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="389" width="0.0125%" height="15" fill="rgb(227,52,21)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="399.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="373" width="0.0125%" height="15" fill="rgb(238,69,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="383.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (21,357 samples, 0.01%)</title><rect x="99.9875%" y="357" width="0.0125%" height="15" fill="rgb(241,156,39)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="367.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (21,357 samples, 0.01%)</title><rect x="99.9875%" y="341" width="0.0125%" height="15" fill="rgb(212,227,28)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="351.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="325" width="0.0125%" height="15" fill="rgb(209,118,27)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="335.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="309" width="0.0125%" height="15" fill="rgb(226,102,5)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="319.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="293" width="0.0125%" height="15" fill="rgb(223,34,3)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="303.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="277" width="0.0125%" height="15" fill="rgb(221,81,38)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="287.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="261" width="0.0125%" height="15" fill="rgb(236,219,28)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="271.50"></text></g><g><title>&lt;shed::parse::CondNode as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="245" width="0.0125%" height="15" fill="rgb(213,200,14)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="255.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="229" width="0.0125%" height="15" fill="rgb(240,33,19)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="239.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (21,357 samples, 0.01%)</title><rect x="99.9875%" y="213" width="0.0125%" height="15" fill="rgb(233,113,27)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="223.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (21,357 samples, 0.01%)</title><rect x="99.9875%" y="197" width="0.0125%" height="15" fill="rgb(220,221,18)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="207.50"></text></g><g><title>&lt;shed::parse::Node as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="181" width="0.0125%" height="15" fill="rgb(238,92,8)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="191.50"></text></g><g><title>&lt;shed::parse::NdRule as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="165" width="0.0125%" height="15" fill="rgb(222,164,16)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="175.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="149" width="0.0125%" height="15" fill="rgb(241,119,3)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="159.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (21,357 samples, 0.01%)</title><rect x="99.9875%" y="133" width="0.0125%" height="15" fill="rgb(241,44,8)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="143.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (21,357 samples, 0.01%)</title><rect x="99.9875%" y="117" width="0.0125%" height="15" fill="rgb(230,36,40)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="127.50"></text></g><g><title>&lt;shed::parse::ConjunctNode as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="101" width="0.0125%" height="15" fill="rgb(243,16,36)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="111.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (21,357 samples, 0.01%)</title><rect x="99.9875%" y="85" width="0.0125%" height="15" fill="rgb(231,4,26)" fg:x="170541681" fg:w="21357"/><text x="100.2375%" y="95.50"></text></g><g><title>all (170,563,042 samples, 100%)</title><rect x="0.0000%" y="1973" width="100.0000%" height="15" fill="rgb(240,9,31)" fg:x="0" fg:w="170563042"/><text x="0.2500%" y="1983.50"></text></g><g><title>shed (153,179,755 samples, 89.81%)</title><rect x="10.1917%" y="1957" width="89.8083%" height="15" fill="rgb(207,173,15)" fg:x="17383287" fg:w="153179755"/><text x="10.4417%" y="1967.50">shed</text></g></svg></svg>