slimp/flamegraph.svg
2023-06-13 10:36:22 -04:00

491 lines
1.1 MiB

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2246" onload="init(evt)" viewBox="0 0 1200 2246" 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="2246" 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="2229.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="2229.00"> </text><svg id="frames" x="10" width="1180" total_samples="43147"><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (40 samples, 0.09%)</title><rect x="0.0000%" y="2165" width="0.0927%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="40"/><text x="0.2500%" y="2175.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (54 samples, 0.13%)</title><rect x="0.0973%" y="2149" width="0.1252%" height="15" fill="rgb(217,0,24)" fg:x="42" fg:w="54"/><text x="0.3473%" y="2159.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (8 samples, 0.02%)</title><rect x="0.2040%" y="2133" width="0.0185%" height="15" fill="rgb(221,193,54)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2143.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (8 samples, 0.02%)</title><rect x="0.2040%" y="2117" width="0.0185%" height="15" fill="rgb(248,212,6)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2127.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (8 samples, 0.02%)</title><rect x="0.2040%" y="2101" width="0.0185%" height="15" fill="rgb(208,68,35)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2111.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (8 samples, 0.02%)</title><rect x="0.2040%" y="2085" width="0.0185%" height="15" fill="rgb(232,128,0)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2095.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (8 samples, 0.02%)</title><rect x="0.2040%" y="2069" width="0.0185%" height="15" fill="rgb(207,160,47)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2079.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (8 samples, 0.02%)</title><rect x="0.2040%" y="2053" width="0.0185%" height="15" fill="rgb(228,23,34)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2063.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.02%)</title><rect x="0.2040%" y="2037" width="0.0185%" height="15" fill="rgb(218,30,26)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2047.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (8 samples, 0.02%)</title><rect x="0.2040%" y="2021" width="0.0185%" height="15" fill="rgb(220,122,19)" fg:x="88" fg:w="8"/><text x="0.4540%" y="2031.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (12 samples, 0.03%)</title><rect x="0.2248%" y="2149" width="0.0278%" height="15" fill="rgb(250,228,42)" fg:x="97" fg:w="12"/><text x="0.4748%" y="2159.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (8 samples, 0.02%)</title><rect x="0.2341%" y="2133" width="0.0185%" height="15" fill="rgb(240,193,28)" fg:x="101" fg:w="8"/><text x="0.4841%" y="2143.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (49 samples, 0.11%)</title><rect x="0.2828%" y="2117" width="0.1136%" height="15" fill="rgb(216,20,37)" fg:x="122" fg:w="49"/><text x="0.5328%" y="2127.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (49 samples, 0.11%)</title><rect x="0.2828%" y="2101" width="0.1136%" height="15" fill="rgb(206,188,39)" fg:x="122" fg:w="49"/><text x="0.5328%" y="2111.50"></text></g><g><title>core::hash::Hash::hash_slice (49 samples, 0.11%)</title><rect x="0.2828%" y="2085" width="0.1136%" height="15" fill="rgb(217,207,13)" fg:x="122" fg:w="49"/><text x="0.5328%" y="2095.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (49 samples, 0.11%)</title><rect x="0.2828%" y="2069" width="0.1136%" height="15" fill="rgb(231,73,38)" fg:x="122" fg:w="49"/><text x="0.5328%" y="2079.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (50 samples, 0.12%)</title><rect x="0.2828%" y="2133" width="0.1159%" height="15" fill="rgb(225,20,46)" fg:x="122" fg:w="50"/><text x="0.5328%" y="2143.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (66 samples, 0.15%)</title><rect x="0.2526%" y="2149" width="0.1530%" height="15" fill="rgb(210,31,41)" fg:x="109" fg:w="66"/><text x="0.5026%" y="2159.50"></text></g><g><title>core::hash::Hash::hash_slice (83 samples, 0.19%)</title><rect x="0.6652%" y="2101" width="0.1924%" height="15" fill="rgb(221,200,47)" fg:x="287" fg:w="83"/><text x="0.9152%" y="2111.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (83 samples, 0.19%)</title><rect x="0.6652%" y="2085" width="0.1924%" height="15" fill="rgb(226,26,5)" fg:x="287" fg:w="83"/><text x="0.9152%" y="2095.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (91 samples, 0.21%)</title><rect x="0.6652%" y="2133" width="0.2109%" height="15" fill="rgb(249,33,26)" fg:x="287" fg:w="91"/><text x="0.9152%" y="2143.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (91 samples, 0.21%)</title><rect x="0.6652%" y="2117" width="0.2109%" height="15" fill="rgb(235,183,28)" fg:x="287" fg:w="91"/><text x="0.9152%" y="2127.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (8 samples, 0.02%)</title><rect x="0.8575%" y="2101" width="0.0185%" height="15" fill="rgb(221,5,38)" fg:x="370" fg:w="8"/><text x="1.1075%" y="2111.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (221 samples, 0.51%)</title><rect x="0.4056%" y="2149" width="0.5122%" height="15" fill="rgb(247,18,42)" fg:x="175" fg:w="221"/><text x="0.6556%" y="2159.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (18 samples, 0.04%)</title><rect x="0.8761%" y="2133" width="0.0417%" height="15" fill="rgb(241,131,45)" fg:x="378" fg:w="18"/><text x="1.1261%" y="2143.50"></text></g><g><title>core::hash::Hasher::write_isize (18 samples, 0.04%)</title><rect x="0.8761%" y="2117" width="0.0417%" height="15" fill="rgb(249,31,29)" fg:x="378" fg:w="18"/><text x="1.1261%" y="2127.50"></text></g><g><title>[libc.so.6] (115 samples, 0.27%)</title><rect x="0.9178%" y="2149" width="0.2665%" height="15" fill="rgb(225,111,53)" fg:x="396" fg:w="115"/><text x="1.1678%" y="2159.50"></text></g><g><title>cfree (42 samples, 0.10%)</title><rect x="1.1843%" y="2149" width="0.0973%" height="15" fill="rgb(238,160,17)" fg:x="511" fg:w="42"/><text x="1.4343%" y="2159.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (38 samples, 0.09%)</title><rect x="1.5436%" y="2133" width="0.0881%" height="15" fill="rgb(214,148,48)" fg:x="666" fg:w="38"/><text x="1.7936%" y="2143.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (38 samples, 0.09%)</title><rect x="1.5436%" y="2117" width="0.0881%" height="15" fill="rgb(232,36,49)" fg:x="666" fg:w="38"/><text x="1.7936%" y="2127.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (38 samples, 0.09%)</title><rect x="1.5436%" y="2101" width="0.0881%" height="15" fill="rgb(209,103,24)" fg:x="666" fg:w="38"/><text x="1.7936%" y="2111.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (175 samples, 0.41%)</title><rect x="1.2840%" y="2149" width="0.4056%" height="15" fill="rgb(229,88,8)" fg:x="554" fg:w="175"/><text x="1.5340%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (25 samples, 0.06%)</title><rect x="1.6316%" y="2133" width="0.0579%" height="15" fill="rgb(213,181,19)" fg:x="704" fg:w="25"/><text x="1.8816%" y="2143.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (25 samples, 0.06%)</title><rect x="1.6316%" y="2117" width="0.0579%" height="15" fill="rgb(254,191,54)" fg:x="704" fg:w="25"/><text x="1.8816%" y="2127.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (25 samples, 0.06%)</title><rect x="1.6316%" y="2101" width="0.0579%" height="15" fill="rgb(241,83,37)" fg:x="704" fg:w="25"/><text x="1.8816%" y="2111.50"></text></g><g><title>alloc::alloc::dealloc (25 samples, 0.06%)</title><rect x="1.6316%" y="2085" width="0.0579%" height="15" fill="rgb(233,36,39)" fg:x="704" fg:w="25"/><text x="1.8816%" y="2095.50"></text></g><g><title>malloc (26 samples, 0.06%)</title><rect x="1.7012%" y="2149" width="0.0603%" height="15" fill="rgb(226,3,54)" fg:x="734" fg:w="26"/><text x="1.9512%" y="2159.50"></text></g><g><title>[[heap]] (753 samples, 1.75%)</title><rect x="0.0973%" y="2165" width="1.7452%" height="15" fill="rgb(245,192,40)" fg:x="42" fg:w="753"/><text x="0.3473%" y="2175.50"></text></g><g><title>slimp::rw (31 samples, 0.07%)</title><rect x="1.7707%" y="2149" width="0.0718%" height="15" fill="rgb(238,167,29)" fg:x="764" fg:w="31"/><text x="2.0207%" y="2159.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (24 samples, 0.06%)</title><rect x="1.8425%" y="2149" width="0.0556%" height="15" fill="rgb(232,182,51)" fg:x="795" fg:w="24"/><text x="2.0925%" y="2159.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 (72 samples, 0.17%)</title><rect x="2.1554%" y="2117" width="0.1669%" height="15" fill="rgb(231,60,39)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2127.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (72 samples, 0.17%)</title><rect x="2.1554%" y="2101" width="0.1669%" height="15" fill="rgb(208,69,12)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2111.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (72 samples, 0.17%)</title><rect x="2.1554%" y="2085" width="0.1669%" height="15" fill="rgb(235,93,37)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2095.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (72 samples, 0.17%)</title><rect x="2.1554%" y="2069" width="0.1669%" height="15" fill="rgb(213,116,39)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2079.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (72 samples, 0.17%)</title><rect x="2.1554%" y="2053" width="0.1669%" height="15" fill="rgb(222,207,29)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2063.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (72 samples, 0.17%)</title><rect x="2.1554%" y="2037" width="0.1669%" height="15" fill="rgb(206,96,30)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2047.50"></text></g><g><title>slimp::rw::{{closure}} (72 samples, 0.17%)</title><rect x="2.1554%" y="2021" width="0.1669%" height="15" fill="rgb(218,138,4)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2031.50"></text></g><g><title>slimp::Sexp::rw (72 samples, 0.17%)</title><rect x="2.1554%" y="2005" width="0.1669%" height="15" fill="rgb(250,191,14)" fg:x="930" fg:w="72"/><text x="2.4054%" y="2015.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 (227 samples, 0.53%)</title><rect x="1.8982%" y="2149" width="0.5261%" height="15" fill="rgb(239,60,40)" fg:x="819" fg:w="227"/><text x="2.1482%" y="2159.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 (190 samples, 0.44%)</title><rect x="1.9839%" y="2133" width="0.4404%" height="15" fill="rgb(206,27,48)" fg:x="856" fg:w="190"/><text x="2.2339%" y="2143.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (44 samples, 0.10%)</title><rect x="2.3223%" y="2117" width="0.1020%" height="15" fill="rgb(225,35,8)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2127.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (44 samples, 0.10%)</title><rect x="2.3223%" y="2101" width="0.1020%" height="15" fill="rgb(250,213,24)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2111.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (44 samples, 0.10%)</title><rect x="2.3223%" y="2085" width="0.1020%" height="15" fill="rgb(247,123,22)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2095.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (44 samples, 0.10%)</title><rect x="2.3223%" y="2069" width="0.1020%" height="15" fill="rgb(231,138,38)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2079.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (44 samples, 0.10%)</title><rect x="2.3223%" y="2053" width="0.1020%" height="15" fill="rgb(231,145,46)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2063.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (44 samples, 0.10%)</title><rect x="2.3223%" y="2037" width="0.1020%" height="15" fill="rgb(251,118,11)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2047.50"></text></g><g><title>alloc::alloc::alloc (44 samples, 0.10%)</title><rect x="2.3223%" y="2021" width="0.1020%" height="15" fill="rgb(217,147,25)" fg:x="1002" fg:w="44"/><text x="2.5723%" y="2031.50"></text></g><g><title>core::hash::Hash::hash_slice (7 samples, 0.02%)</title><rect x="2.4521%" y="2085" width="0.0162%" height="15" fill="rgb(247,81,37)" fg:x="1058" fg:w="7"/><text x="2.7021%" y="2095.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (7 samples, 0.02%)</title><rect x="2.4521%" y="2069" width="0.0162%" height="15" fill="rgb(209,12,38)" fg:x="1058" fg:w="7"/><text x="2.7021%" y="2079.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (8 samples, 0.02%)</title><rect x="2.4521%" y="2133" width="0.0185%" height="15" fill="rgb(227,1,9)" fg:x="1058" fg:w="8"/><text x="2.7021%" y="2143.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (8 samples, 0.02%)</title><rect x="2.4521%" y="2117" width="0.0185%" height="15" fill="rgb(248,47,43)" fg:x="1058" fg:w="8"/><text x="2.7021%" y="2127.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (8 samples, 0.02%)</title><rect x="2.4521%" y="2101" width="0.0185%" height="15" fill="rgb(221,10,30)" fg:x="1058" fg:w="8"/><text x="2.7021%" y="2111.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="2.4335%" y="2149" width="0.0394%" height="15" fill="rgb(210,229,1)" fg:x="1050" fg:w="17"/><text x="2.6835%" y="2159.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (89 samples, 0.21%)</title><rect x="2.4729%" y="2149" width="0.2063%" height="15" fill="rgb(222,148,37)" fg:x="1067" fg:w="89"/><text x="2.7229%" y="2159.50"></text></g><g><title>[libc.so.6] (38 samples, 0.09%)</title><rect x="2.6792%" y="2149" width="0.0881%" height="15" fill="rgb(234,67,33)" fg:x="1156" fg:w="38"/><text x="2.9292%" y="2159.50"></text></g><g><title>cfree (19 samples, 0.04%)</title><rect x="2.7766%" y="2149" width="0.0440%" height="15" fill="rgb(247,98,35)" fg:x="1198" fg:w="19"/><text x="3.0266%" y="2159.50"></text></g><g><title>core::hash::Hasher::write_usize (13 samples, 0.03%)</title><rect x="2.8229%" y="2149" width="0.0301%" height="15" fill="rgb(247,138,52)" fg:x="1218" fg:w="13"/><text x="3.0729%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (18 samples, 0.04%)</title><rect x="2.8530%" y="2149" width="0.0417%" height="15" fill="rgb(213,79,30)" fg:x="1231" fg:w="18"/><text x="3.1030%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (18 samples, 0.04%)</title><rect x="2.8530%" y="2133" width="0.0417%" height="15" fill="rgb(246,177,23)" fg:x="1231" fg:w="18"/><text x="3.1030%" y="2143.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (18 samples, 0.04%)</title><rect x="2.8530%" y="2117" width="0.0417%" height="15" fill="rgb(230,62,27)" fg:x="1231" fg:w="18"/><text x="3.1030%" y="2127.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (18 samples, 0.04%)</title><rect x="2.8530%" y="2101" width="0.0417%" height="15" fill="rgb(216,154,8)" fg:x="1231" fg:w="18"/><text x="3.1030%" y="2111.50"></text></g><g><title>alloc::alloc::dealloc (18 samples, 0.04%)</title><rect x="2.8530%" y="2085" width="0.0417%" height="15" fill="rgb(244,35,45)" fg:x="1231" fg:w="18"/><text x="3.1030%" y="2095.50"></text></g><g><title>malloc (11 samples, 0.03%)</title><rect x="2.9110%" y="2149" width="0.0255%" height="15" fill="rgb(251,115,12)" fg:x="1256" fg:w="11"/><text x="3.1610%" y="2159.50"></text></g><g><title>slimp::Rule::concrify (5 samples, 0.01%)</title><rect x="2.9527%" y="2133" width="0.0116%" height="15" fill="rgb(240,54,50)" fg:x="1274" fg:w="5"/><text x="3.2027%" y="2143.50"></text></g><g><title>slimp::Rule::concretions (16 samples, 0.04%)</title><rect x="2.9365%" y="2149" width="0.0371%" height="15" fill="rgb(233,84,52)" fg:x="1267" fg:w="16"/><text x="3.1865%" y="2159.50"></text></g><g><title>[[stack]] (631 samples, 1.46%)</title><rect x="1.8425%" y="2165" width="1.4624%" height="15" fill="rgb(207,117,47)" fg:x="795" fg:w="631"/><text x="2.0925%" y="2175.50"></text></g><g><title>slimp::rw (143 samples, 0.33%)</title><rect x="2.9736%" y="2149" width="0.3314%" height="15" fill="rgb(249,43,39)" fg:x="1283" fg:w="143"/><text x="3.2236%" y="2159.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (19 samples, 0.04%)</title><rect x="3.2609%" y="2133" width="0.0440%" height="15" fill="rgb(209,38,44)" fg:x="1407" fg:w="19"/><text x="3.5109%" y="2143.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (19 samples, 0.04%)</title><rect x="3.2609%" y="2117" width="0.0440%" height="15" fill="rgb(236,212,23)" fg:x="1407" fg:w="19"/><text x="3.5109%" y="2127.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.01%)</title><rect x="3.3119%" y="2165" width="0.0139%" height="15" fill="rgb(242,79,21)" fg:x="1429" fg:w="6"/><text x="3.5619%" y="2175.50"></text></g><g><title>[libc.so.6] (15 samples, 0.03%)</title><rect x="3.3305%" y="2149" width="0.0348%" height="15" fill="rgb(211,96,35)" fg:x="1437" fg:w="15"/><text x="3.5805%" y="2159.50"></text></g><g><title>[libc.so.6] (18 samples, 0.04%)</title><rect x="3.3258%" y="2165" width="0.0417%" height="15" fill="rgb(253,215,40)" fg:x="1435" fg:w="18"/><text x="3.5758%" y="2175.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (16 samples, 0.04%)</title><rect x="3.3676%" y="2149" width="0.0371%" height="15" fill="rgb(211,81,21)" fg:x="1453" fg:w="16"/><text x="3.6176%" y="2159.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (6 samples, 0.01%)</title><rect x="3.3907%" y="2133" width="0.0139%" height="15" fill="rgb(208,190,38)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2143.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="3.3907%" y="2117" width="0.0139%" height="15" fill="rgb(235,213,38)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2127.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (6 samples, 0.01%)</title><rect x="3.3907%" y="2101" width="0.0139%" height="15" fill="rgb(237,122,38)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2111.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (6 samples, 0.01%)</title><rect x="3.3907%" y="2085" width="0.0139%" height="15" fill="rgb(244,218,35)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2095.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (6 samples, 0.01%)</title><rect x="3.3907%" y="2069" width="0.0139%" height="15" fill="rgb(240,68,47)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2079.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (6 samples, 0.01%)</title><rect x="3.3907%" y="2053" width="0.0139%" height="15" fill="rgb(210,16,53)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2063.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.01%)</title><rect x="3.3907%" y="2037" width="0.0139%" height="15" fill="rgb(235,124,12)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2047.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (6 samples, 0.01%)</title><rect x="3.3907%" y="2021" width="0.0139%" height="15" fill="rgb(224,169,11)" fg:x="1463" fg:w="6"/><text x="3.6407%" y="2031.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (37 samples, 0.09%)</title><rect x="3.4046%" y="2149" width="0.0858%" height="15" fill="rgb(250,166,2)" fg:x="1469" fg:w="37"/><text x="3.6546%" y="2159.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (10 samples, 0.02%)</title><rect x="3.4672%" y="2133" width="0.0232%" height="15" fill="rgb(242,216,29)" fg:x="1496" fg:w="10"/><text x="3.7172%" y="2143.50"></text></g><g><title>alloc::slice::hack::to_vec (10 samples, 0.02%)</title><rect x="3.4672%" y="2117" width="0.0232%" height="15" fill="rgb(230,116,27)" fg:x="1496" fg:w="10"/><text x="3.7172%" y="2127.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (10 samples, 0.02%)</title><rect x="3.4672%" y="2101" width="0.0232%" height="15" fill="rgb(228,99,48)" fg:x="1496" fg:w="10"/><text x="3.7172%" y="2111.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (7 samples, 0.02%)</title><rect x="3.4742%" y="2085" width="0.0162%" height="15" fill="rgb(253,11,6)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2095.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (7 samples, 0.02%)</title><rect x="3.4742%" y="2069" width="0.0162%" height="15" fill="rgb(247,143,39)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2079.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (7 samples, 0.02%)</title><rect x="3.4742%" y="2053" width="0.0162%" height="15" fill="rgb(236,97,10)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2063.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="3.4742%" y="2037" width="0.0162%" height="15" fill="rgb(233,208,19)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2047.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="3.4742%" y="2021" width="0.0162%" height="15" fill="rgb(216,164,2)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2031.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="3.4742%" y="2005" width="0.0162%" height="15" fill="rgb(220,129,5)" fg:x="1499" fg:w="7"/><text x="3.7242%" y="2015.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 (30 samples, 0.07%)</title><rect x="3.4904%" y="2149" width="0.0695%" height="15" fill="rgb(242,17,10)" fg:x="1506" fg:w="30"/><text x="3.7404%" y="2159.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 (5 samples, 0.01%)</title><rect x="3.5483%" y="2133" width="0.0116%" height="15" fill="rgb(242,107,0)" fg:x="1531" fg:w="5"/><text x="3.7983%" y="2143.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (81 samples, 0.19%)</title><rect x="3.5646%" y="2149" width="0.1877%" height="15" fill="rgb(251,28,31)" fg:x="1538" fg:w="81"/><text x="3.8146%" y="2159.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (23 samples, 0.05%)</title><rect x="3.7523%" y="2149" width="0.0533%" height="15" fill="rgb(233,223,10)" fg:x="1619" fg:w="23"/><text x="4.0023%" y="2159.50"></text></g><g><title>core::hash::Hash::hash_slice (282 samples, 0.65%)</title><rect x="9.0829%" y="2101" width="0.6536%" height="15" fill="rgb(215,21,27)" fg:x="3919" fg:w="282"/><text x="9.3329%" y="2111.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (282 samples, 0.65%)</title><rect x="9.0829%" y="2085" width="0.6536%" height="15" fill="rgb(232,23,21)" fg:x="3919" fg:w="282"/><text x="9.3329%" y="2095.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (363 samples, 0.84%)</title><rect x="9.0829%" y="2133" width="0.8413%" height="15" fill="rgb(244,5,23)" fg:x="3919" fg:w="363"/><text x="9.3329%" y="2143.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (363 samples, 0.84%)</title><rect x="9.0829%" y="2117" width="0.8413%" height="15" fill="rgb(226,81,46)" fg:x="3919" fg:w="363"/><text x="9.3329%" y="2127.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (81 samples, 0.19%)</title><rect x="9.7365%" y="2101" width="0.1877%" height="15" fill="rgb(247,70,30)" fg:x="4201" fg:w="81"/><text x="9.9865%" y="2111.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,902 samples, 6.73%)</title><rect x="3.8056%" y="2149" width="6.7258%" height="15" fill="rgb(212,68,19)" fg:x="1642" fg:w="2902"/><text x="4.0556%" y="2159.50">&lt;slimp::S..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (262 samples, 0.61%)</title><rect x="9.9242%" y="2133" width="0.6072%" height="15" fill="rgb(240,187,13)" fg:x="4282" fg:w="262"/><text x="10.1742%" y="2143.50"></text></g><g><title>core::hash::Hasher::write_isize (262 samples, 0.61%)</title><rect x="9.9242%" y="2117" width="0.6072%" height="15" fill="rgb(223,113,26)" fg:x="4282" fg:w="262"/><text x="10.1742%" y="2127.50"></text></g><g><title>[libc.so.6] (174 samples, 0.40%)</title><rect x="10.5314%" y="2149" width="0.4033%" height="15" fill="rgb(206,192,2)" fg:x="4544" fg:w="174"/><text x="10.7814%" y="2159.50"></text></g><g><title>__rdl_alloc (12 samples, 0.03%)</title><rect x="10.9347%" y="2149" width="0.0278%" height="15" fill="rgb(241,108,4)" fg:x="4718" fg:w="12"/><text x="11.1847%" y="2159.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (11 samples, 0.03%)</title><rect x="10.9370%" y="2133" width="0.0255%" height="15" fill="rgb(247,173,49)" fg:x="4719" fg:w="11"/><text x="11.1870%" y="2143.50"></text></g><g><title>cfree (43 samples, 0.10%)</title><rect x="10.9625%" y="2149" width="0.0997%" height="15" fill="rgb(224,114,35)" fg:x="4730" fg:w="43"/><text x="11.2125%" y="2159.50"></text></g><g><title>core::hash::BuildHasher::hash_one (11 samples, 0.03%)</title><rect x="11.0622%" y="2149" width="0.0255%" height="15" fill="rgb(245,159,27)" fg:x="4773" fg:w="11"/><text x="11.3122%" y="2159.50"></text></g><g><title>core::hash::Hasher::write_usize (288 samples, 0.67%)</title><rect x="11.0877%" y="2149" width="0.6675%" height="15" fill="rgb(245,172,44)" fg:x="4784" fg:w="288"/><text x="11.3377%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (17 samples, 0.04%)</title><rect x="11.7552%" y="2149" width="0.0394%" height="15" fill="rgb(236,23,11)" fg:x="5072" fg:w="17"/><text x="12.0052%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (6 samples, 0.01%)</title><rect x="11.7807%" y="2133" width="0.0139%" height="15" fill="rgb(205,117,38)" fg:x="5083" fg:w="6"/><text x="12.0307%" y="2143.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (6 samples, 0.01%)</title><rect x="11.7807%" y="2117" width="0.0139%" height="15" fill="rgb(237,72,25)" fg:x="5083" fg:w="6"/><text x="12.0307%" y="2127.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (6 samples, 0.01%)</title><rect x="11.7807%" y="2101" width="0.0139%" height="15" fill="rgb(244,70,9)" fg:x="5083" fg:w="6"/><text x="12.0307%" y="2111.50"></text></g><g><title>alloc::alloc::dealloc (6 samples, 0.01%)</title><rect x="11.7807%" y="2085" width="0.0139%" height="15" fill="rgb(217,125,39)" fg:x="5083" fg:w="6"/><text x="12.0307%" y="2095.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (7 samples, 0.02%)</title><rect x="11.7946%" y="2149" width="0.0162%" height="15" fill="rgb(235,36,10)" fg:x="5089" fg:w="7"/><text x="12.0446%" y="2159.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="11.7992%" y="2133" width="0.0116%" height="15" fill="rgb(251,123,47)" fg:x="5091" fg:w="5"/><text x="12.0492%" y="2143.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (5 samples, 0.01%)</title><rect x="11.7992%" y="2117" width="0.0116%" height="15" fill="rgb(221,13,13)" fg:x="5091" fg:w="5"/><text x="12.0492%" y="2127.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (13 samples, 0.03%)</title><rect x="11.8154%" y="2149" width="0.0301%" height="15" fill="rgb(238,131,9)" fg:x="5098" fg:w="13"/><text x="12.0654%" y="2159.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (5 samples, 0.01%)</title><rect x="11.8456%" y="2149" width="0.0116%" height="15" fill="rgb(211,50,8)" fg:x="5111" fg:w="5"/><text x="12.0956%" y="2159.50"></text></g><g><title>malloc (102 samples, 0.24%)</title><rect x="11.8571%" y="2149" width="0.2364%" height="15" fill="rgb(245,182,24)" fg:x="5116" fg:w="102"/><text x="12.1071%" y="2159.50"></text></g><g><title>[unknown] (4,040 samples, 9.36%)</title><rect x="3.3676%" y="2165" width="9.3633%" height="15" fill="rgb(242,14,37)" fg:x="1453" fg:w="4040"/><text x="3.6176%" y="2175.50">[unknown]</text></g><g><title>slimp::rw (274 samples, 0.64%)</title><rect x="12.0959%" y="2149" width="0.6350%" height="15" fill="rgb(246,228,12)" fg:x="5219" fg:w="274"/><text x="12.3459%" y="2159.50"></text></g><g><title>&lt;std::io::stdio::Stdin as std::io::Read&gt;::read_to_string (5 samples, 0.01%)</title><rect x="12.7309%" y="1877" width="0.0116%" height="15" fill="rgb(213,55,15)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1887.50"></text></g><g><title>&lt;std::io::stdio::StdinLock as std::io::Read&gt;::read_to_string (5 samples, 0.01%)</title><rect x="12.7309%" y="1861" width="0.0116%" height="15" fill="rgb(209,9,3)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1871.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::Read&gt;::read_to_string (5 samples, 0.01%)</title><rect x="12.7309%" y="1845" width="0.0116%" height="15" fill="rgb(230,59,30)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1855.50"></text></g><g><title>std::io::append_to_string (5 samples, 0.01%)</title><rect x="12.7309%" y="1829" width="0.0116%" height="15" fill="rgb(209,121,21)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1839.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::Read&gt;::read_to_string::{{closure}} (5 samples, 0.01%)</title><rect x="12.7309%" y="1813" width="0.0116%" height="15" fill="rgb(220,109,13)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1823.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::Read&gt;::read_to_end (5 samples, 0.01%)</title><rect x="12.7309%" y="1797" width="0.0116%" height="15" fill="rgb(232,18,1)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1807.50"></text></g><g><title>&lt;std::io::stdio::StdinRaw as std::io::Read&gt;::read_to_end (5 samples, 0.01%)</title><rect x="12.7309%" y="1781" width="0.0116%" height="15" fill="rgb(215,41,42)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1791.50"></text></g><g><title>std::io::Read::read_to_end (5 samples, 0.01%)</title><rect x="12.7309%" y="1765" width="0.0116%" height="15" fill="rgb(224,123,36)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1775.50"></text></g><g><title>std::io::default_read_to_end (5 samples, 0.01%)</title><rect x="12.7309%" y="1749" width="0.0116%" height="15" fill="rgb(240,125,3)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1759.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdin as std::io::Read&gt;::read_buf (5 samples, 0.01%)</title><rect x="12.7309%" y="1733" width="0.0116%" height="15" fill="rgb(205,98,50)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1743.50"></text></g><g><title>std::sys::unix::fd::FileDesc::read_buf (5 samples, 0.01%)</title><rect x="12.7309%" y="1717" width="0.0116%" height="15" fill="rgb(205,185,37)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1727.50"></text></g><g><title>read (5 samples, 0.01%)</title><rect x="12.7309%" y="1701" width="0.0116%" height="15" fill="rgb(238,207,15)" fg:x="5493" fg:w="5"/><text x="12.9809%" y="1711.50"></text></g><g><title>&lt;std::collections::hash::set::IntoIter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (45 samples, 0.10%)</title><rect x="12.7471%" y="1621" width="0.1043%" height="15" fill="rgb(213,199,42)" fg:x="5500" fg:w="45"/><text x="12.9971%" y="1631.50"></text></g><g><title>&lt;hashbrown::set::IntoIter&lt;K,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (45 samples, 0.10%)</title><rect x="12.7471%" y="1605" width="0.1043%" height="15" fill="rgb(235,201,11)" fg:x="5500" fg:w="45"/><text x="12.9971%" y="1615.50"></text></g><g><title>&lt;hashbrown::map::IntoIter&lt;K,V,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (41 samples, 0.10%)</title><rect x="12.7564%" y="1589" width="0.0950%" height="15" fill="rgb(207,46,11)" fg:x="5504" fg:w="41"/><text x="13.0064%" y="1599.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (41 samples, 0.10%)</title><rect x="12.7564%" y="1573" width="0.0950%" height="15" fill="rgb(241,35,35)" fg:x="5504" fg:w="41"/><text x="13.0064%" y="1583.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="12.8352%" y="1557" width="0.0162%" height="15" fill="rgb(243,32,47)" fg:x="5538" fg:w="7"/><text x="13.0852%" y="1567.50"></text></g><g><title>hashbrown::raw::RawIterRange&lt;T&gt;::next_impl (5 samples, 0.01%)</title><rect x="12.8398%" y="1541" width="0.0116%" height="15" fill="rgb(247,202,23)" fg:x="5540" fg:w="5"/><text x="13.0898%" y="1551.50"></text></g><g><title>cfree (19 samples, 0.04%)</title><rect x="12.8561%" y="1621" width="0.0440%" height="15" fill="rgb(219,102,11)" fg:x="5547" fg:w="19"/><text x="13.1061%" y="1631.50"></text></g><g><title>[libc.so.6] (12 samples, 0.03%)</title><rect x="12.8723%" y="1605" width="0.0278%" height="15" fill="rgb(243,110,44)" fg:x="5554" fg:w="12"/><text x="13.1223%" y="1615.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (10 samples, 0.02%)</title><rect x="12.9441%" y="1365" width="0.0232%" height="15" fill="rgb(222,74,54)" fg:x="5585" fg:w="10"/><text x="13.1941%" y="1375.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (10 samples, 0.02%)</title><rect x="12.9441%" y="1349" width="0.0232%" height="15" fill="rgb(216,99,12)" fg:x="5585" fg:w="10"/><text x="13.1941%" y="1359.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="13.0021%" y="1221" width="0.0209%" height="15" fill="rgb(226,22,26)" fg:x="5610" fg:w="9"/><text x="13.2521%" y="1231.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (9 samples, 0.02%)</title><rect x="13.0021%" y="1205" width="0.0209%" height="15" fill="rgb(217,163,10)" fg:x="5610" fg:w="9"/><text x="13.2521%" y="1215.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.01%)</title><rect x="13.0762%" y="1077" width="0.0139%" height="15" fill="rgb(213,25,53)" fg:x="5642" fg:w="6"/><text x="13.3262%" y="1087.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (6 samples, 0.01%)</title><rect x="13.0762%" y="1061" width="0.0139%" height="15" fill="rgb(252,105,26)" fg:x="5642" fg:w="6"/><text x="13.3262%" y="1071.50"></text></g><g><title>core::cmp::PartialEq::ne (101 samples, 0.23%)</title><rect x="12.9001%" y="1621" width="0.2341%" height="15" fill="rgb(220,39,43)" fg:x="5566" fg:w="101"/><text x="13.1501%" y="1631.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (101 samples, 0.23%)</title><rect x="12.9001%" y="1605" width="0.2341%" height="15" fill="rgb(229,68,48)" fg:x="5566" fg:w="101"/><text x="13.1501%" y="1615.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (93 samples, 0.22%)</title><rect x="12.9186%" y="1589" width="0.2155%" height="15" fill="rgb(252,8,32)" fg:x="5574" fg:w="93"/><text x="13.1686%" y="1599.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (93 samples, 0.22%)</title><rect x="12.9186%" y="1573" width="0.2155%" height="15" fill="rgb(223,20,43)" fg:x="5574" fg:w="93"/><text x="13.1686%" y="1583.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (93 samples, 0.22%)</title><rect x="12.9186%" y="1557" width="0.2155%" height="15" fill="rgb(229,81,49)" fg:x="5574" fg:w="93"/><text x="13.1686%" y="1567.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (93 samples, 0.22%)</title><rect x="12.9186%" y="1541" width="0.2155%" height="15" fill="rgb(236,28,36)" fg:x="5574" fg:w="93"/><text x="13.1686%" y="1551.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (93 samples, 0.22%)</title><rect x="12.9186%" y="1525" width="0.2155%" height="15" fill="rgb(249,185,26)" fg:x="5574" fg:w="93"/><text x="13.1686%" y="1535.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (88 samples, 0.20%)</title><rect x="12.9302%" y="1509" width="0.2040%" height="15" fill="rgb(249,174,33)" fg:x="5579" fg:w="88"/><text x="13.1802%" y="1519.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (88 samples, 0.20%)</title><rect x="12.9302%" y="1493" width="0.2040%" height="15" fill="rgb(233,201,37)" fg:x="5579" fg:w="88"/><text x="13.1802%" y="1503.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (86 samples, 0.20%)</title><rect x="12.9349%" y="1477" width="0.1993%" height="15" fill="rgb(221,78,26)" fg:x="5581" fg:w="86"/><text x="13.1849%" y="1487.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (86 samples, 0.20%)</title><rect x="12.9349%" y="1461" width="0.1993%" height="15" fill="rgb(250,127,30)" fg:x="5581" fg:w="86"/><text x="13.1849%" y="1471.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (85 samples, 0.20%)</title><rect x="12.9372%" y="1445" width="0.1970%" height="15" fill="rgb(230,49,44)" fg:x="5582" fg:w="85"/><text x="13.1872%" y="1455.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (84 samples, 0.19%)</title><rect x="12.9395%" y="1429" width="0.1947%" height="15" fill="rgb(229,67,23)" fg:x="5583" fg:w="84"/><text x="13.1895%" y="1439.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (84 samples, 0.19%)</title><rect x="12.9395%" y="1413" width="0.1947%" height="15" fill="rgb(249,83,47)" fg:x="5583" fg:w="84"/><text x="13.1895%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (84 samples, 0.19%)</title><rect x="12.9395%" y="1397" width="0.1947%" height="15" fill="rgb(215,43,3)" fg:x="5583" fg:w="84"/><text x="13.1895%" y="1407.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (84 samples, 0.19%)</title><rect x="12.9395%" y="1381" width="0.1947%" height="15" fill="rgb(238,154,13)" fg:x="5583" fg:w="84"/><text x="13.1895%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (72 samples, 0.17%)</title><rect x="12.9673%" y="1365" width="0.1669%" height="15" fill="rgb(219,56,2)" fg:x="5595" fg:w="72"/><text x="13.2173%" y="1375.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (71 samples, 0.16%)</title><rect x="12.9696%" y="1349" width="0.1646%" height="15" fill="rgb(233,0,4)" fg:x="5596" fg:w="71"/><text x="13.2196%" y="1359.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (71 samples, 0.16%)</title><rect x="12.9696%" y="1333" width="0.1646%" height="15" fill="rgb(235,30,7)" fg:x="5596" fg:w="71"/><text x="13.2196%" y="1343.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (71 samples, 0.16%)</title><rect x="12.9696%" y="1317" width="0.1646%" height="15" fill="rgb(250,79,13)" fg:x="5596" fg:w="71"/><text x="13.2196%" y="1327.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (59 samples, 0.14%)</title><rect x="12.9974%" y="1301" width="0.1367%" height="15" fill="rgb(211,146,34)" fg:x="5608" fg:w="59"/><text x="13.2474%" y="1311.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (59 samples, 0.14%)</title><rect x="12.9974%" y="1285" width="0.1367%" height="15" fill="rgb(228,22,38)" fg:x="5608" fg:w="59"/><text x="13.2474%" y="1295.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (59 samples, 0.14%)</title><rect x="12.9974%" y="1269" width="0.1367%" height="15" fill="rgb(235,168,5)" fg:x="5608" fg:w="59"/><text x="13.2474%" y="1279.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (59 samples, 0.14%)</title><rect x="12.9974%" y="1253" width="0.1367%" height="15" fill="rgb(221,155,16)" fg:x="5608" fg:w="59"/><text x="13.2474%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (59 samples, 0.14%)</title><rect x="12.9974%" y="1237" width="0.1367%" height="15" fill="rgb(215,215,53)" fg:x="5608" fg:w="59"/><text x="13.2474%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (48 samples, 0.11%)</title><rect x="13.0229%" y="1221" width="0.1112%" height="15" fill="rgb(223,4,10)" fg:x="5619" fg:w="48"/><text x="13.2729%" y="1231.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (45 samples, 0.10%)</title><rect x="13.0299%" y="1205" width="0.1043%" height="15" fill="rgb(234,103,6)" fg:x="5622" fg:w="45"/><text x="13.2799%" y="1215.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (39 samples, 0.09%)</title><rect x="13.0438%" y="1189" width="0.0904%" height="15" fill="rgb(227,97,0)" fg:x="5628" fg:w="39"/><text x="13.2938%" y="1199.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (39 samples, 0.09%)</title><rect x="13.0438%" y="1173" width="0.0904%" height="15" fill="rgb(234,150,53)" fg:x="5628" fg:w="39"/><text x="13.2938%" y="1183.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (28 samples, 0.06%)</title><rect x="13.0693%" y="1157" width="0.0649%" height="15" fill="rgb(228,201,54)" fg:x="5639" fg:w="28"/><text x="13.3193%" y="1167.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (28 samples, 0.06%)</title><rect x="13.0693%" y="1141" width="0.0649%" height="15" fill="rgb(222,22,37)" fg:x="5639" fg:w="28"/><text x="13.3193%" y="1151.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (28 samples, 0.06%)</title><rect x="13.0693%" y="1125" width="0.0649%" height="15" fill="rgb(237,53,32)" fg:x="5639" fg:w="28"/><text x="13.3193%" y="1135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (28 samples, 0.06%)</title><rect x="13.0693%" y="1109" width="0.0649%" height="15" fill="rgb(233,25,53)" fg:x="5639" fg:w="28"/><text x="13.3193%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (28 samples, 0.06%)</title><rect x="13.0693%" y="1093" width="0.0649%" height="15" fill="rgb(210,40,34)" fg:x="5639" fg:w="28"/><text x="13.3193%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (19 samples, 0.04%)</title><rect x="13.0901%" y="1077" width="0.0440%" height="15" fill="rgb(241,220,44)" fg:x="5648" fg:w="19"/><text x="13.3401%" y="1087.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (18 samples, 0.04%)</title><rect x="13.0925%" y="1061" width="0.0417%" height="15" fill="rgb(235,28,35)" fg:x="5649" fg:w="18"/><text x="13.3425%" y="1071.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (17 samples, 0.04%)</title><rect x="13.0948%" y="1045" width="0.0394%" height="15" fill="rgb(210,56,17)" fg:x="5650" fg:w="17"/><text x="13.3448%" y="1055.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (17 samples, 0.04%)</title><rect x="13.0948%" y="1029" width="0.0394%" height="15" fill="rgb(224,130,29)" fg:x="5650" fg:w="17"/><text x="13.3448%" y="1039.50"></text></g><g><title>&lt;intaglio::Symbol as core::cmp::PartialEq&gt;::eq (5 samples, 0.01%)</title><rect x="13.1226%" y="1013" width="0.0116%" height="15" fill="rgb(235,212,8)" fg:x="5662" fg:w="5"/><text x="13.3726%" y="1023.50"></text></g><g><title>cfree (89 samples, 0.21%)</title><rect x="13.2802%" y="1525" width="0.2063%" height="15" fill="rgb(223,33,50)" fg:x="5730" fg:w="89"/><text x="13.5302%" y="1535.50"></text></g><g><title>[libc.so.6] (50 samples, 0.12%)</title><rect x="13.3706%" y="1509" width="0.1159%" height="15" fill="rgb(219,149,13)" fg:x="5769" fg:w="50"/><text x="13.6206%" y="1519.50"></text></g><g><title>__rust_dealloc (8 samples, 0.02%)</title><rect x="13.7738%" y="1461" width="0.0185%" height="15" fill="rgb(250,156,29)" fg:x="5943" fg:w="8"/><text x="14.0238%" y="1471.50"></text></g><g><title>cfree (87 samples, 0.20%)</title><rect x="13.7924%" y="1461" width="0.2016%" height="15" fill="rgb(216,193,19)" fg:x="5951" fg:w="87"/><text x="14.0424%" y="1471.50"></text></g><g><title>[libc.so.6] (64 samples, 0.15%)</title><rect x="13.8457%" y="1445" width="0.1483%" height="15" fill="rgb(216,135,14)" fg:x="5974" fg:w="64"/><text x="14.0957%" y="1455.50"></text></g><g><title>cfree (91 samples, 0.21%)</title><rect x="14.3880%" y="1397" width="0.2109%" height="15" fill="rgb(241,47,5)" fg:x="6208" fg:w="91"/><text x="14.6380%" y="1407.50"></text></g><g><title>[libc.so.6] (63 samples, 0.15%)</title><rect x="14.4529%" y="1381" width="0.1460%" height="15" fill="rgb(233,42,35)" fg:x="6236" fg:w="63"/><text x="14.7029%" y="1391.50"></text></g><g><title>cfree (74 samples, 0.17%)</title><rect x="15.2270%" y="1333" width="0.1715%" height="15" fill="rgb(231,13,6)" fg:x="6570" fg:w="74"/><text x="15.4770%" y="1343.50"></text></g><g><title>[libc.so.6] (58 samples, 0.13%)</title><rect x="15.2641%" y="1317" width="0.1344%" height="15" fill="rgb(207,181,40)" fg:x="6586" fg:w="58"/><text x="15.5141%" y="1327.50"></text></g><g><title>cfree (47 samples, 0.11%)</title><rect x="15.8366%" y="1269" width="0.1089%" height="15" fill="rgb(254,173,49)" fg:x="6833" fg:w="47"/><text x="16.0866%" y="1279.50"></text></g><g><title>[libc.so.6] (36 samples, 0.08%)</title><rect x="15.8621%" y="1253" width="0.0834%" height="15" fill="rgb(221,1,38)" fg:x="6844" fg:w="36"/><text x="16.1121%" y="1263.50"></text></g><g><title>cfree (16 samples, 0.04%)</title><rect x="16.1749%" y="1205" width="0.0371%" height="15" fill="rgb(206,124,46)" fg:x="6979" fg:w="16"/><text x="16.4249%" y="1215.50"></text></g><g><title>[libc.so.6] (13 samples, 0.03%)</title><rect x="16.1819%" y="1189" width="0.0301%" height="15" fill="rgb(249,21,11)" fg:x="6982" fg:w="13"/><text x="16.4319%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (36 samples, 0.08%)</title><rect x="16.2120%" y="1189" width="0.0834%" height="15" fill="rgb(222,201,40)" fg:x="6995" fg:w="36"/><text x="16.4620%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (35 samples, 0.08%)</title><rect x="16.2143%" y="1173" width="0.0811%" height="15" fill="rgb(235,61,29)" fg:x="6996" fg:w="35"/><text x="16.4643%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (35 samples, 0.08%)</title><rect x="16.2143%" y="1157" width="0.0811%" height="15" fill="rgb(219,207,3)" fg:x="6996" fg:w="35"/><text x="16.4643%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (153 samples, 0.35%)</title><rect x="15.9455%" y="1253" width="0.3546%" height="15" fill="rgb(222,56,46)" fg:x="6880" fg:w="153"/><text x="16.1955%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (147 samples, 0.34%)</title><rect x="15.9594%" y="1237" width="0.3407%" height="15" fill="rgb(239,76,54)" fg:x="6886" fg:w="147"/><text x="16.2094%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (145 samples, 0.34%)</title><rect x="15.9640%" y="1221" width="0.3361%" height="15" fill="rgb(231,124,27)" fg:x="6888" fg:w="145"/><text x="16.2140%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (38 samples, 0.09%)</title><rect x="16.2120%" y="1205" width="0.0881%" height="15" fill="rgb(249,195,6)" fg:x="6995" fg:w="38"/><text x="16.4620%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (396 samples, 0.92%)</title><rect x="15.4008%" y="1317" width="0.9178%" height="15" fill="rgb(237,174,47)" fg:x="6645" fg:w="396"/><text x="15.6508%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (391 samples, 0.91%)</title><rect x="15.4124%" y="1301" width="0.9062%" height="15" fill="rgb(206,201,31)" fg:x="6650" fg:w="391"/><text x="15.6624%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (385 samples, 0.89%)</title><rect x="15.4263%" y="1285" width="0.8923%" height="15" fill="rgb(231,57,52)" fg:x="6656" fg:w="385"/><text x="15.6763%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (161 samples, 0.37%)</title><rect x="15.9455%" y="1269" width="0.3731%" height="15" fill="rgb(248,177,22)" fg:x="6880" fg:w="161"/><text x="16.1955%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (8 samples, 0.02%)</title><rect x="16.3001%" y="1253" width="0.0185%" height="15" fill="rgb(215,211,37)" fg:x="7033" fg:w="8"/><text x="16.5501%" y="1263.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 0.02%)</title><rect x="16.3001%" y="1237" width="0.0185%" height="15" fill="rgb(241,128,51)" fg:x="7033" fg:w="8"/><text x="16.5501%" y="1247.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (7 samples, 0.02%)</title><rect x="16.3024%" y="1221" width="0.0162%" height="15" fill="rgb(227,165,31)" fg:x="7034" fg:w="7"/><text x="16.5524%" y="1231.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_mul (7 samples, 0.02%)</title><rect x="16.3024%" y="1205" width="0.0162%" height="15" fill="rgb(228,167,24)" fg:x="7034" fg:w="7"/><text x="16.5524%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (750 samples, 1.74%)</title><rect x="14.6012%" y="1381" width="1.7382%" height="15" fill="rgb(228,143,12)" fg:x="6300" fg:w="750"/><text x="14.8512%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (745 samples, 1.73%)</title><rect x="14.6128%" y="1365" width="1.7267%" height="15" fill="rgb(249,149,8)" fg:x="6305" fg:w="745"/><text x="14.8628%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (730 samples, 1.69%)</title><rect x="14.6476%" y="1349" width="1.6919%" height="15" fill="rgb(243,35,44)" fg:x="6320" fg:w="730"/><text x="14.8976%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (406 samples, 0.94%)</title><rect x="15.3985%" y="1333" width="0.9410%" height="15" fill="rgb(246,89,9)" fg:x="6644" fg:w="406"/><text x="15.6485%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (9 samples, 0.02%)</title><rect x="16.3186%" y="1317" width="0.0209%" height="15" fill="rgb(233,213,13)" fg:x="7041" fg:w="9"/><text x="16.5686%" y="1327.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (9 samples, 0.02%)</title><rect x="16.3186%" y="1301" width="0.0209%" height="15" fill="rgb(233,141,41)" fg:x="7041" fg:w="9"/><text x="16.5686%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (5 samples, 0.01%)</title><rect x="16.3279%" y="1285" width="0.0116%" height="15" fill="rgb(239,167,4)" fg:x="7045" fg:w="5"/><text x="16.5779%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,024 samples, 2.37%)</title><rect x="13.9940%" y="1445" width="2.3733%" height="15" fill="rgb(209,217,16)" fg:x="6038" fg:w="1024"/><text x="14.2440%" y="1455.50">&lt;a..</text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (1,018 samples, 2.36%)</title><rect x="14.0079%" y="1429" width="2.3594%" height="15" fill="rgb(219,88,35)" fg:x="6044" fg:w="1018"/><text x="14.2579%" y="1439.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (986 samples, 2.29%)</title><rect x="14.0821%" y="1413" width="2.2852%" height="15" fill="rgb(220,193,23)" fg:x="6076" fg:w="986"/><text x="14.3321%" y="1423.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (763 samples, 1.77%)</title><rect x="14.5989%" y="1397" width="1.7684%" height="15" fill="rgb(230,90,52)" fg:x="6299" fg:w="763"/><text x="14.8489%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (12 samples, 0.03%)</title><rect x="16.3395%" y="1381" width="0.0278%" height="15" fill="rgb(252,106,19)" fg:x="7050" fg:w="12"/><text x="16.5895%" y="1391.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (12 samples, 0.03%)</title><rect x="16.3395%" y="1365" width="0.0278%" height="15" fill="rgb(206,74,20)" fg:x="7050" fg:w="12"/><text x="16.5895%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,269 samples, 2.94%)</title><rect x="13.4865%" y="1509" width="2.9411%" height="15" fill="rgb(230,138,44)" fg:x="5819" fg:w="1269"/><text x="13.7365%" y="1519.50">&lt;a..</text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (1,268 samples, 2.94%)</title><rect x="13.4888%" y="1493" width="2.9388%" height="15" fill="rgb(235,182,43)" fg:x="5820" fg:w="1268"/><text x="13.7388%" y="1503.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (1,257 samples, 2.91%)</title><rect x="13.5143%" y="1477" width="2.9133%" height="15" fill="rgb(242,16,51)" fg:x="5831" fg:w="1257"/><text x="13.7643%" y="1487.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (1,050 samples, 2.43%)</title><rect x="13.9940%" y="1461" width="2.4335%" height="15" fill="rgb(248,9,4)" fg:x="6038" fg:w="1050"/><text x="14.2440%" y="1471.50">co..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (26 samples, 0.06%)</title><rect x="16.3673%" y="1445" width="0.0603%" height="15" fill="rgb(210,31,22)" fg:x="7062" fg:w="26"/><text x="16.6173%" y="1455.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (26 samples, 0.06%)</title><rect x="16.3673%" y="1429" width="0.0603%" height="15" fill="rgb(239,54,39)" fg:x="7062" fg:w="26"/><text x="16.6173%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (12 samples, 0.03%)</title><rect x="16.3997%" y="1413" width="0.0278%" height="15" fill="rgb(230,99,41)" fg:x="7076" fg:w="12"/><text x="16.6497%" y="1423.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_mul (11 samples, 0.03%)</title><rect x="16.4021%" y="1397" width="0.0255%" height="15" fill="rgb(253,106,12)" fg:x="7077" fg:w="11"/><text x="16.6521%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1,436 samples, 3.33%)</title><rect x="13.1434%" y="1573" width="3.3282%" height="15" fill="rgb(213,46,41)" fg:x="5671" fg:w="1436"/><text x="13.3934%" y="1583.50">&lt;al..</text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (1,436 samples, 3.33%)</title><rect x="13.1434%" y="1557" width="3.3282%" height="15" fill="rgb(215,133,35)" fg:x="5671" fg:w="1436"/><text x="13.3934%" y="1567.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (1,429 samples, 3.31%)</title><rect x="13.1597%" y="1541" width="3.3119%" height="15" fill="rgb(213,28,5)" fg:x="5678" fg:w="1429"/><text x="13.4097%" y="1551.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (1,288 samples, 2.99%)</title><rect x="13.4865%" y="1525" width="2.9851%" height="15" fill="rgb(215,77,49)" fg:x="5819" fg:w="1288"/><text x="13.7365%" y="1535.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (19 samples, 0.04%)</title><rect x="16.4276%" y="1509" width="0.0440%" height="15" fill="rgb(248,100,22)" fg:x="7088" fg:w="19"/><text x="16.6776%" y="1519.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (19 samples, 0.04%)</title><rect x="16.4276%" y="1493" width="0.0440%" height="15" fill="rgb(208,67,9)" fg:x="7088" fg:w="19"/><text x="16.6776%" y="1503.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (6 samples, 0.01%)</title><rect x="16.4577%" y="1477" width="0.0139%" height="15" fill="rgb(219,133,21)" fg:x="7101" fg:w="6"/><text x="16.7077%" y="1487.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (47 samples, 0.11%)</title><rect x="16.4762%" y="1541" width="0.1089%" height="15" fill="rgb(246,46,29)" fg:x="7109" fg:w="47"/><text x="16.7262%" y="1551.50"></text></g><g><title>alloc::alloc::dealloc (47 samples, 0.11%)</title><rect x="16.4762%" y="1525" width="0.1089%" height="15" fill="rgb(246,185,52)" fg:x="7109" fg:w="47"/><text x="16.7262%" y="1535.50"></text></g><g><title>cfree (46 samples, 0.11%)</title><rect x="16.4786%" y="1509" width="0.1066%" height="15" fill="rgb(252,136,11)" fg:x="7110" fg:w="46"/><text x="16.7286%" y="1519.50"></text></g><g><title>[libc.so.6] (15 samples, 0.03%)</title><rect x="16.5504%" y="1493" width="0.0348%" height="15" fill="rgb(219,138,53)" fg:x="7141" fg:w="15"/><text x="16.8004%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (1,491 samples, 3.46%)</title><rect x="13.1342%" y="1621" width="3.4556%" height="15" fill="rgb(211,51,23)" fg:x="5667" fg:w="1491"/><text x="13.3842%" y="1631.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (1,489 samples, 3.45%)</title><rect x="13.1388%" y="1605" width="3.4510%" height="15" fill="rgb(247,221,28)" fg:x="5669" fg:w="1489"/><text x="13.3888%" y="1615.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (1,487 samples, 3.45%)</title><rect x="13.1434%" y="1589" width="3.4464%" height="15" fill="rgb(251,222,45)" fg:x="5671" fg:w="1487"/><text x="13.3934%" y="1599.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (51 samples, 0.12%)</title><rect x="16.4716%" y="1573" width="0.1182%" height="15" fill="rgb(217,162,53)" fg:x="7107" fg:w="51"/><text x="16.7216%" y="1583.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (51 samples, 0.12%)</title><rect x="16.4716%" y="1557" width="0.1182%" height="15" fill="rgb(229,93,14)" fg:x="7107" fg:w="51"/><text x="16.7216%" y="1567.50"></text></g><g><title>cfree (30 samples, 0.07%)</title><rect x="16.6037%" y="1541" width="0.0695%" height="15" fill="rgb(209,67,49)" fg:x="7164" fg:w="30"/><text x="16.8537%" y="1551.50"></text></g><g><title>[libc.so.6] (20 samples, 0.05%)</title><rect x="16.6269%" y="1525" width="0.0464%" height="15" fill="rgb(213,87,29)" fg:x="7174" fg:w="20"/><text x="16.8769%" y="1535.50"></text></g><g><title>__rust_dealloc (5 samples, 0.01%)</title><rect x="16.7010%" y="1477" width="0.0116%" height="15" fill="rgb(205,151,52)" fg:x="7206" fg:w="5"/><text x="16.9510%" y="1487.50"></text></g><g><title>cfree (23 samples, 0.05%)</title><rect x="16.7126%" y="1477" width="0.0533%" height="15" fill="rgb(253,215,39)" fg:x="7211" fg:w="23"/><text x="16.9626%" y="1487.50"></text></g><g><title>[libc.so.6] (21 samples, 0.05%)</title><rect x="16.7173%" y="1461" width="0.0487%" height="15" fill="rgb(221,220,41)" fg:x="7213" fg:w="21"/><text x="16.9673%" y="1471.50"></text></g><g><title>cfree (35 samples, 0.08%)</title><rect x="16.8030%" y="1413" width="0.0811%" height="15" fill="rgb(218,133,21)" fg:x="7250" fg:w="35"/><text x="17.0530%" y="1423.50"></text></g><g><title>[libc.so.6] (23 samples, 0.05%)</title><rect x="16.8308%" y="1397" width="0.0533%" height="15" fill="rgb(221,193,43)" fg:x="7262" fg:w="23"/><text x="17.0808%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (10 samples, 0.02%)</title><rect x="16.8841%" y="1397" width="0.0232%" height="15" fill="rgb(240,128,52)" fg:x="7285" fg:w="10"/><text x="17.1341%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (10 samples, 0.02%)</title><rect x="16.8841%" y="1381" width="0.0232%" height="15" fill="rgb(253,114,12)" fg:x="7285" fg:w="10"/><text x="17.1341%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (6 samples, 0.01%)</title><rect x="16.8934%" y="1365" width="0.0139%" height="15" fill="rgb(215,223,47)" fg:x="7289" fg:w="6"/><text x="17.1434%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (62 samples, 0.14%)</title><rect x="16.7659%" y="1461" width="0.1437%" height="15" fill="rgb(248,225,23)" fg:x="7234" fg:w="62"/><text x="17.0159%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (62 samples, 0.14%)</title><rect x="16.7659%" y="1445" width="0.1437%" height="15" fill="rgb(250,108,0)" fg:x="7234" fg:w="62"/><text x="17.0159%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (60 samples, 0.14%)</title><rect x="16.7706%" y="1429" width="0.1391%" height="15" fill="rgb(228,208,7)" fg:x="7236" fg:w="60"/><text x="17.0206%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (11 samples, 0.03%)</title><rect x="16.8841%" y="1413" width="0.0255%" height="15" fill="rgb(244,45,10)" fg:x="7285" fg:w="11"/><text x="17.1341%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (104 samples, 0.24%)</title><rect x="16.6732%" y="1525" width="0.2410%" height="15" fill="rgb(207,125,25)" fg:x="7194" fg:w="104"/><text x="16.9232%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (103 samples, 0.24%)</title><rect x="16.6756%" y="1509" width="0.2387%" height="15" fill="rgb(210,195,18)" fg:x="7195" fg:w="103"/><text x="16.9256%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (97 samples, 0.22%)</title><rect x="16.6895%" y="1493" width="0.2248%" height="15" fill="rgb(249,80,12)" fg:x="7201" fg:w="97"/><text x="16.9395%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (64 samples, 0.15%)</title><rect x="16.7659%" y="1477" width="0.1483%" height="15" fill="rgb(221,65,9)" fg:x="7234" fg:w="64"/><text x="17.0159%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (142 samples, 0.33%)</title><rect x="16.5898%" y="1589" width="0.3291%" height="15" fill="rgb(235,49,36)" fg:x="7158" fg:w="142"/><text x="16.8398%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (142 samples, 0.33%)</title><rect x="16.5898%" y="1573" width="0.3291%" height="15" fill="rgb(225,32,20)" fg:x="7158" fg:w="142"/><text x="16.8398%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (139 samples, 0.32%)</title><rect x="16.5968%" y="1557" width="0.3222%" height="15" fill="rgb(215,141,46)" fg:x="7161" fg:w="139"/><text x="16.8468%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (106 samples, 0.25%)</title><rect x="16.6732%" y="1541" width="0.2457%" height="15" fill="rgb(250,160,47)" fg:x="7194" fg:w="106"/><text x="16.9232%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (153 samples, 0.35%)</title><rect x="16.5898%" y="1621" width="0.3546%" height="15" fill="rgb(216,222,40)" fg:x="7158" fg:w="153"/><text x="16.8398%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (153 samples, 0.35%)</title><rect x="16.5898%" y="1605" width="0.3546%" height="15" fill="rgb(234,217,39)" fg:x="7158" fg:w="153"/><text x="16.8398%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (11 samples, 0.03%)</title><rect x="16.9189%" y="1589" width="0.0255%" height="15" fill="rgb(207,178,40)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1599.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11 samples, 0.03%)</title><rect x="16.9189%" y="1573" width="0.0255%" height="15" fill="rgb(221,136,13)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1583.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (11 samples, 0.03%)</title><rect x="16.9189%" y="1557" width="0.0255%" height="15" fill="rgb(249,199,10)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1567.50"></text></g><g><title>alloc::alloc::dealloc (11 samples, 0.03%)</title><rect x="16.9189%" y="1541" width="0.0255%" height="15" fill="rgb(249,222,13)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1551.50"></text></g><g><title>cfree (11 samples, 0.03%)</title><rect x="16.9189%" y="1525" width="0.0255%" height="15" fill="rgb(244,185,38)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1535.50"></text></g><g><title>[libc.so.6] (11 samples, 0.03%)</title><rect x="16.9189%" y="1509" width="0.0255%" height="15" fill="rgb(236,202,9)" fg:x="7300" fg:w="11"/><text x="17.1689%" y="1519.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (4,768 samples, 11.05%)</title><rect x="16.9444%" y="1541" width="11.0506%" height="15" fill="rgb(250,229,37)" fg:x="7311" fg:w="4768"/><text x="17.1944%" y="1551.50">&lt;alloc::alloc::G..</text></g><g><title>alloc::alloc::dealloc (4,768 samples, 11.05%)</title><rect x="16.9444%" y="1525" width="11.0506%" height="15" fill="rgb(206,174,23)" fg:x="7311" fg:w="4768"/><text x="17.1944%" y="1535.50">alloc::alloc::de..</text></g><g><title>cfree (4,768 samples, 11.05%)</title><rect x="16.9444%" y="1509" width="11.0506%" height="15" fill="rgb(211,33,43)" fg:x="7311" fg:w="4768"/><text x="17.1944%" y="1519.50">cfree</text></g><g><title>[libc.so.6] (4,768 samples, 11.05%)</title><rect x="16.9444%" y="1493" width="11.0506%" height="15" fill="rgb(245,58,50)" fg:x="7311" fg:w="4768"/><text x="17.1944%" y="1503.50">[libc.so.6]</text></g><g><title>[libc.so.6] (4,768 samples, 11.05%)</title><rect x="16.9444%" y="1477" width="11.0506%" height="15" fill="rgb(244,68,36)" fg:x="7311" fg:w="4768"/><text x="17.1944%" y="1487.50">[libc.so.6]</text></g><g><title>[libc.so.6] (1,720 samples, 3.99%)</title><rect x="24.0086%" y="1461" width="3.9864%" height="15" fill="rgb(232,229,15)" fg:x="10359" fg:w="1720"/><text x="24.2586%" y="1471.50">[lib..</text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::set::IntoIter&lt;slimp::Rule&gt;&gt; (4,789 samples, 11.10%)</title><rect x="16.9444%" y="1621" width="11.0993%" height="15" fill="rgb(254,30,23)" fg:x="7311" fg:w="4789"/><text x="17.1944%" y="1631.50">core::ptr::drop_..</text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::set::IntoIter&lt;slimp::Rule&gt;&gt; (4,789 samples, 11.10%)</title><rect x="16.9444%" y="1605" width="11.0993%" height="15" fill="rgb(235,160,14)" fg:x="7311" fg:w="4789"/><text x="17.1944%" y="1615.50">core::ptr::drop_..</text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::IntoIter&lt;slimp::Rule,()&gt;&gt; (4,789 samples, 11.10%)</title><rect x="16.9444%" y="1589" width="11.0993%" height="15" fill="rgb(212,155,44)" fg:x="7311" fg:w="4789"/><text x="17.1944%" y="1599.50">core::ptr::drop_..</text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(slimp::Rule,())&gt;&gt; (4,789 samples, 11.10%)</title><rect x="16.9444%" y="1573" width="11.0993%" height="15" fill="rgb(226,2,50)" fg:x="7311" fg:w="4789"/><text x="17.1944%" y="1583.50">core::ptr::drop_..</text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4,789 samples, 11.10%)</title><rect x="16.9444%" y="1557" width="11.0993%" height="15" fill="rgb(234,177,6)" fg:x="7311" fg:w="4789"/><text x="17.1944%" y="1567.50">&lt;hashbrown::raw:..</text></g><g><title>hashbrown::raw::RawIter&lt;T&gt;::drop_elements (21 samples, 0.05%)</title><rect x="27.9950%" y="1541" width="0.0487%" height="15" fill="rgb(217,24,9)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1551.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (21 samples, 0.05%)</title><rect x="27.9950%" y="1525" width="0.0487%" height="15" fill="rgb(220,13,46)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1535.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (21 samples, 0.05%)</title><rect x="27.9950%" y="1509" width="0.0487%" height="15" fill="rgb(239,221,27)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;(slimp::Rule,())&gt; (21 samples, 0.05%)</title><rect x="27.9950%" y="1493" width="0.0487%" height="15" fill="rgb(222,198,25)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (21 samples, 0.05%)</title><rect x="27.9950%" y="1477" width="0.0487%" height="15" fill="rgb(211,99,13)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (21 samples, 0.05%)</title><rect x="27.9950%" y="1461" width="0.0487%" height="15" fill="rgb(232,111,31)" fg:x="12079" fg:w="21"/><text x="28.2450%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (20 samples, 0.05%)</title><rect x="27.9973%" y="1445" width="0.0464%" height="15" fill="rgb(245,82,37)" fg:x="12080" fg:w="20"/><text x="28.2473%" y="1455.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (20 samples, 0.05%)</title><rect x="27.9973%" y="1429" width="0.0464%" height="15" fill="rgb(227,149,46)" fg:x="12080" fg:w="20"/><text x="28.2473%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (20 samples, 0.05%)</title><rect x="27.9973%" y="1413" width="0.0464%" height="15" fill="rgb(218,36,50)" fg:x="12080" fg:w="20"/><text x="28.2473%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (20 samples, 0.05%)</title><rect x="27.9973%" y="1397" width="0.0464%" height="15" fill="rgb(226,80,48)" fg:x="12080" fg:w="20"/><text x="28.2473%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (16 samples, 0.04%)</title><rect x="28.0066%" y="1381" width="0.0371%" height="15" fill="rgb(238,224,15)" fg:x="12084" fg:w="16"/><text x="28.2566%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (16 samples, 0.04%)</title><rect x="28.0066%" y="1365" width="0.0371%" height="15" fill="rgb(241,136,10)" fg:x="12084" fg:w="16"/><text x="28.2566%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (16 samples, 0.04%)</title><rect x="28.0066%" y="1349" width="0.0371%" height="15" fill="rgb(208,32,45)" fg:x="12084" fg:w="16"/><text x="28.2566%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (16 samples, 0.04%)</title><rect x="28.0066%" y="1333" width="0.0371%" height="15" fill="rgb(207,135,9)" fg:x="12084" fg:w="16"/><text x="28.2566%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (13 samples, 0.03%)</title><rect x="28.0135%" y="1317" width="0.0301%" height="15" fill="rgb(206,86,44)" fg:x="12087" fg:w="13"/><text x="28.2635%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (13 samples, 0.03%)</title><rect x="28.0135%" y="1301" width="0.0301%" height="15" fill="rgb(245,177,15)" fg:x="12087" fg:w="13"/><text x="28.2635%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (13 samples, 0.03%)</title><rect x="28.0135%" y="1285" width="0.0301%" height="15" fill="rgb(206,64,50)" fg:x="12087" fg:w="13"/><text x="28.2635%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (13 samples, 0.03%)</title><rect x="28.0135%" y="1269" width="0.0301%" height="15" fill="rgb(234,36,40)" fg:x="12087" fg:w="13"/><text x="28.2635%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (10 samples, 0.02%)</title><rect x="28.0205%" y="1253" width="0.0232%" height="15" fill="rgb(213,64,8)" fg:x="12090" fg:w="10"/><text x="28.2705%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (10 samples, 0.02%)</title><rect x="28.0205%" y="1237" width="0.0232%" height="15" fill="rgb(210,75,36)" fg:x="12090" fg:w="10"/><text x="28.2705%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (10 samples, 0.02%)</title><rect x="28.0205%" y="1221" width="0.0232%" height="15" fill="rgb(229,88,21)" fg:x="12090" fg:w="10"/><text x="28.2705%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (8 samples, 0.02%)</title><rect x="28.0251%" y="1205" width="0.0185%" height="15" fill="rgb(252,204,47)" fg:x="12092" fg:w="8"/><text x="28.2751%" y="1215.50"></text></g><g><title>&lt;std::collections::hash::set::IntoIter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (21 samples, 0.05%)</title><rect x="28.0460%" y="1605" width="0.0487%" height="15" fill="rgb(208,77,27)" fg:x="12101" fg:w="21"/><text x="28.2960%" y="1615.50"></text></g><g><title>&lt;hashbrown::set::IntoIter&lt;K,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (21 samples, 0.05%)</title><rect x="28.0460%" y="1589" width="0.0487%" height="15" fill="rgb(221,76,26)" fg:x="12101" fg:w="21"/><text x="28.2960%" y="1599.50"></text></g><g><title>&lt;hashbrown::map::IntoIter&lt;K,V,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (17 samples, 0.04%)</title><rect x="28.0553%" y="1573" width="0.0394%" height="15" fill="rgb(225,139,18)" fg:x="12105" fg:w="17"/><text x="28.3053%" y="1583.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (17 samples, 0.04%)</title><rect x="28.0553%" y="1557" width="0.0394%" height="15" fill="rgb(230,137,11)" fg:x="12105" fg:w="17"/><text x="28.3053%" y="1567.50"></text></g><g><title>&lt;std::collections::hash::set::IntoIter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (23 samples, 0.05%)</title><rect x="28.1016%" y="1589" width="0.0533%" height="15" fill="rgb(212,28,1)" fg:x="12125" fg:w="23"/><text x="28.3516%" y="1599.50"></text></g><g><title>&lt;hashbrown::set::IntoIter&lt;K,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (23 samples, 0.05%)</title><rect x="28.1016%" y="1573" width="0.0533%" height="15" fill="rgb(248,164,17)" fg:x="12125" fg:w="23"/><text x="28.3516%" y="1583.50"></text></g><g><title>&lt;hashbrown::map::IntoIter&lt;K,V,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="28.1109%" y="1557" width="0.0440%" height="15" fill="rgb(222,171,42)" fg:x="12129" fg:w="19"/><text x="28.3609%" y="1567.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="28.1109%" y="1541" width="0.0440%" height="15" fill="rgb(243,84,45)" fg:x="12129" fg:w="19"/><text x="28.3609%" y="1551.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="28.1433%" y="1525" width="0.0116%" height="15" fill="rgb(252,49,23)" fg:x="12143" fg:w="5"/><text x="28.3933%" y="1535.50"></text></g><g><title>&lt;std::collections::hash::set::IntoIter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (30 samples, 0.07%)</title><rect x="28.1735%" y="1573" width="0.0695%" height="15" fill="rgb(215,19,7)" fg:x="12156" fg:w="30"/><text x="28.4235%" y="1583.50"></text></g><g><title>&lt;hashbrown::set::IntoIter&lt;K,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (30 samples, 0.07%)</title><rect x="28.1735%" y="1557" width="0.0695%" height="15" fill="rgb(238,81,41)" fg:x="12156" fg:w="30"/><text x="28.4235%" y="1567.50"></text></g><g><title>&lt;hashbrown::map::IntoIter&lt;K,V,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (27 samples, 0.06%)</title><rect x="28.1804%" y="1541" width="0.0626%" height="15" fill="rgb(210,199,37)" fg:x="12159" fg:w="27"/><text x="28.4304%" y="1551.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (27 samples, 0.06%)</title><rect x="28.1804%" y="1525" width="0.0626%" height="15" fill="rgb(244,192,49)" fg:x="12159" fg:w="27"/><text x="28.4304%" y="1535.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (14 samples, 0.03%)</title><rect x="28.2105%" y="1509" width="0.0324%" height="15" fill="rgb(226,211,11)" fg:x="12172" fg:w="14"/><text x="28.4605%" y="1519.50"></text></g><g><title>hashbrown::raw::RawIterRange&lt;T&gt;::next_impl (9 samples, 0.02%)</title><rect x="28.2221%" y="1493" width="0.0209%" height="15" fill="rgb(236,162,54)" fg:x="12177" fg:w="9"/><text x="28.4721%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;intaglio::Symbol&gt;&gt; (5 samples, 0.01%)</title><rect x="28.2476%" y="1557" width="0.0116%" height="15" fill="rgb(220,229,9)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;intaglio::Symbol&gt;&gt; (5 samples, 0.01%)</title><rect x="28.2476%" y="1541" width="0.0116%" height="15" fill="rgb(250,87,22)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1551.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="28.2476%" y="1525" width="0.0116%" height="15" fill="rgb(239,43,17)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1535.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (5 samples, 0.01%)</title><rect x="28.2476%" y="1509" width="0.0116%" height="15" fill="rgb(231,177,25)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1519.50"></text></g><g><title>alloc::alloc::dealloc (5 samples, 0.01%)</title><rect x="28.2476%" y="1493" width="0.0116%" height="15" fill="rgb(219,179,1)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1503.50"></text></g><g><title>cfree (5 samples, 0.01%)</title><rect x="28.2476%" y="1477" width="0.0116%" height="15" fill="rgb(238,219,53)" fg:x="12188" fg:w="5"/><text x="28.4976%" y="1487.50"></text></g><g><title>cfree (5 samples, 0.01%)</title><rect x="28.2754%" y="1413" width="0.0116%" height="15" fill="rgb(232,167,36)" fg:x="12200" fg:w="5"/><text x="28.5254%" y="1423.50"></text></g><g><title>cfree (8 samples, 0.02%)</title><rect x="28.3125%" y="1349" width="0.0185%" height="15" fill="rgb(244,19,51)" fg:x="12216" fg:w="8"/><text x="28.5625%" y="1359.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="28.3171%" y="1333" width="0.0139%" height="15" fill="rgb(224,6,22)" fg:x="12218" fg:w="6"/><text x="28.5671%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (49 samples, 0.11%)</title><rect x="28.2476%" y="1573" width="0.1136%" height="15" fill="rgb(224,145,5)" fg:x="12188" fg:w="49"/><text x="28.4976%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (44 samples, 0.10%)</title><rect x="28.2592%" y="1557" width="0.1020%" height="15" fill="rgb(234,130,49)" fg:x="12193" fg:w="44"/><text x="28.5092%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (44 samples, 0.10%)</title><rect x="28.2592%" y="1541" width="0.1020%" height="15" fill="rgb(254,6,2)" fg:x="12193" fg:w="44"/><text x="28.5092%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (44 samples, 0.10%)</title><rect x="28.2592%" y="1525" width="0.1020%" height="15" fill="rgb(208,96,46)" fg:x="12193" fg:w="44"/><text x="28.5092%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (44 samples, 0.10%)</title><rect x="28.2592%" y="1509" width="0.1020%" height="15" fill="rgb(239,3,39)" fg:x="12193" fg:w="44"/><text x="28.5092%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (44 samples, 0.10%)</title><rect x="28.2592%" y="1493" width="0.1020%" height="15" fill="rgb(233,210,1)" fg:x="12193" fg:w="44"/><text x="28.5092%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (40 samples, 0.09%)</title><rect x="28.2685%" y="1477" width="0.0927%" height="15" fill="rgb(244,137,37)" fg:x="12197" fg:w="40"/><text x="28.5185%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (40 samples, 0.09%)</title><rect x="28.2685%" y="1461" width="0.0927%" height="15" fill="rgb(240,136,2)" fg:x="12197" fg:w="40"/><text x="28.5185%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (39 samples, 0.09%)</title><rect x="28.2708%" y="1445" width="0.0904%" height="15" fill="rgb(239,18,37)" fg:x="12198" fg:w="39"/><text x="28.5208%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (38 samples, 0.09%)</title><rect x="28.2731%" y="1429" width="0.0881%" height="15" fill="rgb(218,185,22)" fg:x="12199" fg:w="38"/><text x="28.5231%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (32 samples, 0.07%)</title><rect x="28.2870%" y="1413" width="0.0742%" height="15" fill="rgb(225,218,4)" fg:x="12205" fg:w="32"/><text x="28.5370%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (32 samples, 0.07%)</title><rect x="28.2870%" y="1397" width="0.0742%" height="15" fill="rgb(230,182,32)" fg:x="12205" fg:w="32"/><text x="28.5370%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (32 samples, 0.07%)</title><rect x="28.2870%" y="1381" width="0.0742%" height="15" fill="rgb(242,56,43)" fg:x="12205" fg:w="32"/><text x="28.5370%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (28 samples, 0.06%)</title><rect x="28.2963%" y="1365" width="0.0649%" height="15" fill="rgb(233,99,24)" fg:x="12209" fg:w="28"/><text x="28.5463%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (13 samples, 0.03%)</title><rect x="28.3311%" y="1349" width="0.0301%" height="15" fill="rgb(234,209,42)" fg:x="12224" fg:w="13"/><text x="28.5811%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (13 samples, 0.03%)</title><rect x="28.3311%" y="1333" width="0.0301%" height="15" fill="rgb(227,7,12)" fg:x="12224" fg:w="13"/><text x="28.5811%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (13 samples, 0.03%)</title><rect x="28.3311%" y="1317" width="0.0301%" height="15" fill="rgb(245,203,43)" fg:x="12224" fg:w="13"/><text x="28.5811%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (13 samples, 0.03%)</title><rect x="28.3311%" y="1301" width="0.0301%" height="15" fill="rgb(238,205,33)" fg:x="12224" fg:w="13"/><text x="28.5811%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (7 samples, 0.02%)</title><rect x="28.3450%" y="1285" width="0.0162%" height="15" fill="rgb(231,56,7)" fg:x="12230" fg:w="7"/><text x="28.5950%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (7 samples, 0.02%)</title><rect x="28.3450%" y="1269" width="0.0162%" height="15" fill="rgb(244,186,29)" fg:x="12230" fg:w="7"/><text x="28.5950%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (7 samples, 0.02%)</title><rect x="28.3450%" y="1253" width="0.0162%" height="15" fill="rgb(234,111,31)" fg:x="12230" fg:w="7"/><text x="28.5950%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (7 samples, 0.02%)</title><rect x="28.3450%" y="1237" width="0.0162%" height="15" fill="rgb(241,149,10)" fg:x="12230" fg:w="7"/><text x="28.5950%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::set::IntoIter&lt;slimp::Rule&gt;&gt; (12 samples, 0.03%)</title><rect x="28.3612%" y="1573" width="0.0278%" height="15" fill="rgb(249,206,44)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::set::IntoIter&lt;slimp::Rule&gt;&gt; (12 samples, 0.03%)</title><rect x="28.3612%" y="1557" width="0.0278%" height="15" fill="rgb(251,153,30)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::IntoIter&lt;slimp::Rule,()&gt;&gt; (12 samples, 0.03%)</title><rect x="28.3612%" y="1541" width="0.0278%" height="15" fill="rgb(239,152,38)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(slimp::Rule,())&gt;&gt; (12 samples, 0.03%)</title><rect x="28.3612%" y="1525" width="0.0278%" height="15" fill="rgb(249,139,47)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1535.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (12 samples, 0.03%)</title><rect x="28.3612%" y="1509" width="0.0278%" height="15" fill="rgb(244,64,35)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1519.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (12 samples, 0.03%)</title><rect x="28.3612%" y="1493" width="0.0278%" height="15" fill="rgb(216,46,15)" fg:x="12237" fg:w="12"/><text x="28.6112%" y="1503.50"></text></g><g><title>alloc::alloc::dealloc (11 samples, 0.03%)</title><rect x="28.3635%" y="1477" width="0.0255%" height="15" fill="rgb(250,74,19)" fg:x="12238" fg:w="11"/><text x="28.6135%" y="1487.50"></text></g><g><title>cfree (11 samples, 0.03%)</title><rect x="28.3635%" y="1461" width="0.0255%" height="15" fill="rgb(249,42,33)" fg:x="12238" fg:w="11"/><text x="28.6135%" y="1471.50"></text></g><g><title>[libc.so.6] (7 samples, 0.02%)</title><rect x="28.3728%" y="1445" width="0.0162%" height="15" fill="rgb(242,149,17)" fg:x="12242" fg:w="7"/><text x="28.6228%" y="1455.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::into_iter_from (5 samples, 0.01%)</title><rect x="28.4979%" y="1493" width="0.0116%" height="15" fill="rgb(244,29,21)" fg:x="12296" fg:w="5"/><text x="28.7479%" y="1503.50"></text></g><g><title>hashbrown::raw::RawIterRange&lt;T&gt;::new (5 samples, 0.01%)</title><rect x="28.5118%" y="1477" width="0.0116%" height="15" fill="rgb(220,130,37)" fg:x="12302" fg:w="5"/><text x="28.7618%" y="1487.50"></text></g><g><title>&lt;std::collections::hash::set::HashSet&lt;T,S&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (49 samples, 0.11%)</title><rect x="28.4168%" y="1557" width="0.1136%" height="15" fill="rgb(211,67,2)" fg:x="12261" fg:w="49"/><text x="28.6668%" y="1567.50"></text></g><g><title>&lt;hashbrown::set::HashSet&lt;T,S,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (49 samples, 0.11%)</title><rect x="28.4168%" y="1541" width="0.1136%" height="15" fill="rgb(235,68,52)" fg:x="12261" fg:w="49"/><text x="28.6668%" y="1551.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (21 samples, 0.05%)</title><rect x="28.4817%" y="1525" width="0.0487%" height="15" fill="rgb(246,142,3)" fg:x="12289" fg:w="21"/><text x="28.7317%" y="1535.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (15 samples, 0.03%)</title><rect x="28.4956%" y="1509" width="0.0348%" height="15" fill="rgb(241,25,7)" fg:x="12295" fg:w="15"/><text x="28.7456%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::iter (9 samples, 0.02%)</title><rect x="28.5095%" y="1493" width="0.0209%" height="15" fill="rgb(242,119,39)" fg:x="12301" fg:w="9"/><text x="28.7595%" y="1503.50"></text></g><g><title>&lt;std::collections::hash::set::IntoIter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (32 samples, 0.07%)</title><rect x="28.5304%" y="1557" width="0.0742%" height="15" fill="rgb(241,98,45)" fg:x="12310" fg:w="32"/><text x="28.7804%" y="1567.50"></text></g><g><title>&lt;hashbrown::set::IntoIter&lt;K,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (32 samples, 0.07%)</title><rect x="28.5304%" y="1541" width="0.0742%" height="15" fill="rgb(254,28,30)" fg:x="12310" fg:w="32"/><text x="28.7804%" y="1551.50"></text></g><g><title>&lt;hashbrown::map::IntoIter&lt;K,V,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (29 samples, 0.07%)</title><rect x="28.5373%" y="1525" width="0.0672%" height="15" fill="rgb(241,142,54)" fg:x="12313" fg:w="29"/><text x="28.7873%" y="1535.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (28 samples, 0.06%)</title><rect x="28.5396%" y="1509" width="0.0649%" height="15" fill="rgb(222,85,15)" fg:x="12314" fg:w="28"/><text x="28.7896%" y="1519.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="28.5744%" y="1493" width="0.0301%" height="15" fill="rgb(210,85,47)" fg:x="12329" fg:w="13"/><text x="28.8244%" y="1503.50"></text></g><g><title>hashbrown::raw::RawIterRange&lt;T&gt;::next_impl (11 samples, 0.03%)</title><rect x="28.5790%" y="1477" width="0.0255%" height="15" fill="rgb(224,206,25)" fg:x="12331" fg:w="11"/><text x="28.8290%" y="1487.50"></text></g><g><title>&lt;std::collections::hash::set::Iter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="28.6045%" y="1557" width="0.0209%" height="15" fill="rgb(243,201,19)" fg:x="12342" fg:w="9"/><text x="28.8545%" y="1567.50"></text></g><g><title>&lt;hashbrown::set::Iter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="28.6045%" y="1541" width="0.0209%" height="15" fill="rgb(236,59,4)" fg:x="12342" fg:w="9"/><text x="28.8545%" y="1551.50"></text></g><g><title>&lt;hashbrown::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="28.6045%" y="1525" width="0.0209%" height="15" fill="rgb(254,179,45)" fg:x="12342" fg:w="9"/><text x="28.8545%" y="1535.50"></text></g><g><title>&lt;hashbrown::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="28.6045%" y="1509" width="0.0209%" height="15" fill="rgb(226,14,10)" fg:x="12342" fg:w="9"/><text x="28.8545%" y="1519.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="28.6045%" y="1493" width="0.0209%" height="15" fill="rgb(244,27,41)" fg:x="12342" fg:w="9"/><text x="28.8545%" y="1503.50"></text></g><g><title>cfree (19 samples, 0.04%)</title><rect x="28.6323%" y="1557" width="0.0440%" height="15" fill="rgb(235,35,32)" fg:x="12354" fg:w="19"/><text x="28.8823%" y="1567.50"></text></g><g><title>[libc.so.6] (13 samples, 0.03%)</title><rect x="28.6463%" y="1541" width="0.0301%" height="15" fill="rgb(218,68,31)" fg:x="12360" fg:w="13"/><text x="28.8963%" y="1551.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (18 samples, 0.04%)</title><rect x="28.6833%" y="1493" width="0.0417%" height="15" fill="rgb(207,120,37)" fg:x="12376" fg:w="18"/><text x="28.9333%" y="1503.50"></text></g><g><title>alloc::alloc::dealloc (18 samples, 0.04%)</title><rect x="28.6833%" y="1477" width="0.0417%" height="15" fill="rgb(227,98,0)" fg:x="12376" fg:w="18"/><text x="28.9333%" y="1487.50"></text></g><g><title>cfree (15 samples, 0.03%)</title><rect x="28.6903%" y="1461" width="0.0348%" height="15" fill="rgb(207,7,3)" fg:x="12379" fg:w="15"/><text x="28.9403%" y="1471.50"></text></g><g><title>[libc.so.6] (10 samples, 0.02%)</title><rect x="28.7019%" y="1445" width="0.0232%" height="15" fill="rgb(206,98,19)" fg:x="12384" fg:w="10"/><text x="28.9519%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;intaglio::Symbol&gt;&gt; (20 samples, 0.05%)</title><rect x="28.6833%" y="1541" width="0.0464%" height="15" fill="rgb(217,5,26)" fg:x="12376" fg:w="20"/><text x="28.9333%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;intaglio::Symbol&gt;&gt; (20 samples, 0.05%)</title><rect x="28.6833%" y="1525" width="0.0464%" height="15" fill="rgb(235,190,38)" fg:x="12376" fg:w="20"/><text x="28.9333%" y="1535.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (20 samples, 0.05%)</title><rect x="28.6833%" y="1509" width="0.0464%" height="15" fill="rgb(247,86,24)" fg:x="12376" fg:w="20"/><text x="28.9333%" y="1519.50"></text></g><g><title>cfree (78 samples, 0.18%)</title><rect x="28.7923%" y="1461" width="0.1808%" height="15" fill="rgb(205,101,16)" fg:x="12423" fg:w="78"/><text x="29.0423%" y="1471.50"></text></g><g><title>[libc.so.6] (55 samples, 0.13%)</title><rect x="28.8456%" y="1445" width="0.1275%" height="15" fill="rgb(246,168,33)" fg:x="12446" fg:w="55"/><text x="29.0956%" y="1455.50"></text></g><g><title>__rdl_dealloc (7 samples, 0.02%)</title><rect x="29.0843%" y="1397" width="0.0162%" height="15" fill="rgb(231,114,1)" fg:x="12549" fg:w="7"/><text x="29.3343%" y="1407.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (7 samples, 0.02%)</title><rect x="29.0843%" y="1381" width="0.0162%" height="15" fill="rgb(207,184,53)" fg:x="12549" fg:w="7"/><text x="29.3343%" y="1391.50"></text></g><g><title>cfree (71 samples, 0.16%)</title><rect x="29.1098%" y="1397" width="0.1646%" height="15" fill="rgb(224,95,51)" fg:x="12560" fg:w="71"/><text x="29.3598%" y="1407.50"></text></g><g><title>[libc.so.6] (49 samples, 0.11%)</title><rect x="29.1608%" y="1381" width="0.1136%" height="15" fill="rgb(212,188,45)" fg:x="12582" fg:w="49"/><text x="29.4108%" y="1391.50"></text></g><g><title>__rdl_dealloc (5 samples, 0.01%)</title><rect x="29.4018%" y="1333" width="0.0116%" height="15" fill="rgb(223,154,38)" fg:x="12686" fg:w="5"/><text x="29.6518%" y="1343.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (5 samples, 0.01%)</title><rect x="29.4018%" y="1317" width="0.0116%" height="15" fill="rgb(251,22,52)" fg:x="12686" fg:w="5"/><text x="29.6518%" y="1327.50"></text></g><g><title>cfree (74 samples, 0.17%)</title><rect x="29.4227%" y="1333" width="0.1715%" height="15" fill="rgb(229,209,22)" fg:x="12695" fg:w="74"/><text x="29.6727%" y="1343.50"></text></g><g><title>[libc.so.6] (51 samples, 0.12%)</title><rect x="29.4760%" y="1317" width="0.1182%" height="15" fill="rgb(234,138,34)" fg:x="12718" fg:w="51"/><text x="29.7260%" y="1327.50"></text></g><g><title>cfree (60 samples, 0.14%)</title><rect x="29.6822%" y="1269" width="0.1391%" height="15" fill="rgb(212,95,11)" fg:x="12807" fg:w="60"/><text x="29.9322%" y="1279.50"></text></g><g><title>[libc.so.6] (39 samples, 0.09%)</title><rect x="29.7309%" y="1253" width="0.0904%" height="15" fill="rgb(240,179,47)" fg:x="12828" fg:w="39"/><text x="29.9809%" y="1263.50"></text></g><g><title>cfree (39 samples, 0.09%)</title><rect x="29.8862%" y="1205" width="0.0904%" height="15" fill="rgb(240,163,11)" fg:x="12895" fg:w="39"/><text x="30.1362%" y="1215.50"></text></g><g><title>[libc.so.6] (22 samples, 0.05%)</title><rect x="29.9256%" y="1189" width="0.0510%" height="15" fill="rgb(236,37,12)" fg:x="12912" fg:w="22"/><text x="30.1756%" y="1199.50"></text></g><g><title>cfree (13 samples, 0.03%)</title><rect x="29.9928%" y="1141" width="0.0301%" height="15" fill="rgb(232,164,16)" fg:x="12941" fg:w="13"/><text x="30.2428%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (25 samples, 0.06%)</title><rect x="29.9766%" y="1189" width="0.0579%" height="15" fill="rgb(244,205,15)" fg:x="12934" fg:w="25"/><text x="30.2266%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (25 samples, 0.06%)</title><rect x="29.9766%" y="1173" width="0.0579%" height="15" fill="rgb(223,117,47)" fg:x="12934" fg:w="25"/><text x="30.2266%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (23 samples, 0.05%)</title><rect x="29.9812%" y="1157" width="0.0533%" height="15" fill="rgb(244,107,35)" fg:x="12936" fg:w="23"/><text x="30.2312%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (5 samples, 0.01%)</title><rect x="30.0229%" y="1141" width="0.0116%" height="15" fill="rgb(205,140,8)" fg:x="12954" fg:w="5"/><text x="30.2729%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="30.0229%" y="1125" width="0.0116%" height="15" fill="rgb(228,84,46)" fg:x="12954" fg:w="5"/><text x="30.2729%" y="1135.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (5 samples, 0.01%)</title><rect x="30.0229%" y="1109" width="0.0116%" height="15" fill="rgb(254,188,9)" fg:x="12954" fg:w="5"/><text x="30.2729%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (92 samples, 0.21%)</title><rect x="29.8259%" y="1253" width="0.2132%" height="15" fill="rgb(206,112,54)" fg:x="12869" fg:w="92"/><text x="30.0759%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (92 samples, 0.21%)</title><rect x="29.8259%" y="1237" width="0.2132%" height="15" fill="rgb(216,84,49)" fg:x="12869" fg:w="92"/><text x="30.0759%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (86 samples, 0.20%)</title><rect x="29.8398%" y="1221" width="0.1993%" height="15" fill="rgb(214,194,35)" fg:x="12875" fg:w="86"/><text x="30.0898%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (27 samples, 0.06%)</title><rect x="29.9766%" y="1205" width="0.0626%" height="15" fill="rgb(249,28,3)" fg:x="12934" fg:w="27"/><text x="30.2266%" y="1215.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (7 samples, 0.02%)</title><rect x="30.0438%" y="1221" width="0.0162%" height="15" fill="rgb(222,56,52)" fg:x="12963" fg:w="7"/><text x="30.2938%" y="1231.50"></text></g><g><title>alloc::alloc::dealloc (7 samples, 0.02%)</title><rect x="30.0438%" y="1205" width="0.0162%" height="15" fill="rgb(245,217,50)" fg:x="12963" fg:w="7"/><text x="30.2938%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (202 samples, 0.47%)</title><rect x="29.5942%" y="1317" width="0.4682%" height="15" fill="rgb(213,201,24)" fg:x="12769" fg:w="202"/><text x="29.8442%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (202 samples, 0.47%)</title><rect x="29.5942%" y="1301" width="0.4682%" height="15" fill="rgb(248,116,28)" fg:x="12769" fg:w="202"/><text x="29.8442%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (187 samples, 0.43%)</title><rect x="29.6289%" y="1285" width="0.4334%" height="15" fill="rgb(219,72,43)" fg:x="12784" fg:w="187"/><text x="29.8789%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (104 samples, 0.24%)</title><rect x="29.8213%" y="1269" width="0.2410%" height="15" fill="rgb(209,138,14)" fg:x="12867" fg:w="104"/><text x="30.0713%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (10 samples, 0.02%)</title><rect x="30.0392%" y="1253" width="0.0232%" height="15" fill="rgb(222,18,33)" fg:x="12961" fg:w="10"/><text x="30.2892%" y="1263.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (10 samples, 0.02%)</title><rect x="30.0392%" y="1237" width="0.0232%" height="15" fill="rgb(213,199,7)" fg:x="12961" fg:w="10"/><text x="30.2892%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (345 samples, 0.80%)</title><rect x="29.2767%" y="1381" width="0.7996%" height="15" fill="rgb(250,110,10)" fg:x="12632" fg:w="345"/><text x="29.5267%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (345 samples, 0.80%)</title><rect x="29.2767%" y="1365" width="0.7996%" height="15" fill="rgb(248,123,6)" fg:x="12632" fg:w="345"/><text x="29.5267%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (324 samples, 0.75%)</title><rect x="29.3253%" y="1349" width="0.7509%" height="15" fill="rgb(206,91,31)" fg:x="12653" fg:w="324"/><text x="29.5753%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (208 samples, 0.48%)</title><rect x="29.5942%" y="1333" width="0.4821%" height="15" fill="rgb(211,154,13)" fg:x="12769" fg:w="208"/><text x="29.8442%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (6 samples, 0.01%)</title><rect x="30.0623%" y="1317" width="0.0139%" height="15" fill="rgb(225,148,7)" fg:x="12971" fg:w="6"/><text x="30.3123%" y="1327.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (6 samples, 0.01%)</title><rect x="30.0623%" y="1301" width="0.0139%" height="15" fill="rgb(220,160,43)" fg:x="12971" fg:w="6"/><text x="30.3123%" y="1311.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (5 samples, 0.01%)</title><rect x="30.0855%" y="1349" width="0.0116%" height="15" fill="rgb(213,52,39)" fg:x="12981" fg:w="5"/><text x="30.3355%" y="1359.50"></text></g><g><title>alloc::alloc::dealloc (5 samples, 0.01%)</title><rect x="30.0855%" y="1333" width="0.0116%" height="15" fill="rgb(243,137,7)" fg:x="12981" fg:w="5"/><text x="30.3355%" y="1343.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (487 samples, 1.13%)</title><rect x="28.9730%" y="1445" width="1.1287%" height="15" fill="rgb(230,79,13)" fg:x="12501" fg:w="487"/><text x="29.2230%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (487 samples, 1.13%)</title><rect x="28.9730%" y="1429" width="1.1287%" height="15" fill="rgb(247,105,23)" fg:x="12501" fg:w="487"/><text x="29.2230%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (480 samples, 1.11%)</title><rect x="28.9893%" y="1413" width="1.1125%" height="15" fill="rgb(223,179,41)" fg:x="12508" fg:w="480"/><text x="29.2393%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (357 samples, 0.83%)</title><rect x="29.2743%" y="1397" width="0.8274%" height="15" fill="rgb(218,9,34)" fg:x="12631" fg:w="357"/><text x="29.5243%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (11 samples, 0.03%)</title><rect x="30.0763%" y="1381" width="0.0255%" height="15" fill="rgb(222,106,8)" fg:x="12977" fg:w="11"/><text x="30.3263%" y="1391.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11 samples, 0.03%)</title><rect x="30.0763%" y="1365" width="0.0255%" height="15" fill="rgb(211,220,0)" fg:x="12977" fg:w="11"/><text x="30.3263%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (603 samples, 1.40%)</title><rect x="28.7297%" y="1509" width="1.3975%" height="15" fill="rgb(229,52,16)" fg:x="12396" fg:w="603"/><text x="28.9797%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (602 samples, 1.40%)</title><rect x="28.7320%" y="1493" width="1.3952%" height="15" fill="rgb(212,155,18)" fg:x="12397" fg:w="602"/><text x="28.9820%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (599 samples, 1.39%)</title><rect x="28.7390%" y="1477" width="1.3883%" height="15" fill="rgb(242,21,14)" fg:x="12400" fg:w="599"/><text x="28.9890%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (498 samples, 1.15%)</title><rect x="28.9730%" y="1461" width="1.1542%" height="15" fill="rgb(222,19,48)" fg:x="12501" fg:w="498"/><text x="29.2230%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (11 samples, 0.03%)</title><rect x="30.1017%" y="1445" width="0.0255%" height="15" fill="rgb(232,45,27)" fg:x="12988" fg:w="11"/><text x="30.3517%" y="1455.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11 samples, 0.03%)</title><rect x="30.1017%" y="1429" width="0.0255%" height="15" fill="rgb(249,103,42)" fg:x="12988" fg:w="11"/><text x="30.3517%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (5 samples, 0.01%)</title><rect x="30.1157%" y="1413" width="0.0116%" height="15" fill="rgb(246,81,33)" fg:x="12994" fg:w="5"/><text x="30.3657%" y="1423.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_mul (5 samples, 0.01%)</title><rect x="30.1157%" y="1397" width="0.0116%" height="15" fill="rgb(252,33,42)" fg:x="12994" fg:w="5"/><text x="30.3657%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (649 samples, 1.50%)</title><rect x="28.6764%" y="1557" width="1.5042%" height="15" fill="rgb(209,212,41)" fg:x="12373" fg:w="649"/><text x="28.9264%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (626 samples, 1.45%)</title><rect x="28.7297%" y="1541" width="1.4509%" height="15" fill="rgb(207,154,6)" fg:x="12396" fg:w="626"/><text x="28.9797%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (626 samples, 1.45%)</title><rect x="28.7297%" y="1525" width="1.4509%" height="15" fill="rgb(223,64,47)" fg:x="12396" fg:w="626"/><text x="28.9797%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;slimp::Sexp&gt;&gt; (23 samples, 0.05%)</title><rect x="30.1272%" y="1509" width="0.0533%" height="15" fill="rgb(211,161,38)" fg:x="12999" fg:w="23"/><text x="30.3772%" y="1519.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (23 samples, 0.05%)</title><rect x="30.1272%" y="1493" width="0.0533%" height="15" fill="rgb(219,138,40)" fg:x="12999" fg:w="23"/><text x="30.3772%" y="1503.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (23 samples, 0.05%)</title><rect x="30.1272%" y="1477" width="0.0533%" height="15" fill="rgb(241,228,46)" fg:x="12999" fg:w="23"/><text x="30.3772%" y="1487.50"></text></g><g><title>alloc::alloc::dealloc (23 samples, 0.05%)</title><rect x="30.1272%" y="1461" width="0.0533%" height="15" fill="rgb(223,209,38)" fg:x="12999" fg:w="23"/><text x="30.3772%" y="1471.50"></text></g><g><title>cfree (23 samples, 0.05%)</title><rect x="30.1272%" y="1445" width="0.0533%" height="15" fill="rgb(236,164,45)" fg:x="12999" fg:w="23"/><text x="30.3772%" y="1455.50"></text></g><g><title>[libc.so.6] (15 samples, 0.03%)</title><rect x="30.1458%" y="1429" width="0.0348%" height="15" fill="rgb(231,15,5)" fg:x="13007" fg:w="15"/><text x="30.3958%" y="1439.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (43 samples, 0.10%)</title><rect x="30.1805%" y="1477" width="0.0997%" height="15" fill="rgb(252,35,15)" fg:x="13022" fg:w="43"/><text x="30.4305%" y="1487.50"></text></g><g><title>alloc::alloc::dealloc (41 samples, 0.10%)</title><rect x="30.1852%" y="1461" width="0.0950%" height="15" fill="rgb(248,181,18)" fg:x="13024" fg:w="41"/><text x="30.4352%" y="1471.50"></text></g><g><title>cfree (41 samples, 0.10%)</title><rect x="30.1852%" y="1445" width="0.0950%" height="15" fill="rgb(233,39,42)" fg:x="13024" fg:w="41"/><text x="30.4352%" y="1455.50"></text></g><g><title>[libc.so.6] (35 samples, 0.08%)</title><rect x="30.1991%" y="1429" width="0.0811%" height="15" fill="rgb(238,110,33)" fg:x="13030" fg:w="35"/><text x="30.4491%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::set::IntoIter&lt;slimp::Rule&gt;&gt; (44 samples, 0.10%)</title><rect x="30.1805%" y="1557" width="0.1020%" height="15" fill="rgb(233,195,10)" fg:x="13022" fg:w="44"/><text x="30.4305%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::set::IntoIter&lt;slimp::Rule&gt;&gt; (44 samples, 0.10%)</title><rect x="30.1805%" y="1541" width="0.1020%" height="15" fill="rgb(254,105,3)" fg:x="13022" fg:w="44"/><text x="30.4305%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::IntoIter&lt;slimp::Rule,()&gt;&gt; (44 samples, 0.10%)</title><rect x="30.1805%" y="1525" width="0.1020%" height="15" fill="rgb(221,225,9)" fg:x="13022" fg:w="44"/><text x="30.4305%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(slimp::Rule,())&gt;&gt; (44 samples, 0.10%)</title><rect x="30.1805%" y="1509" width="0.1020%" height="15" fill="rgb(224,227,45)" fg:x="13022" fg:w="44"/><text x="30.4305%" y="1519.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (44 samples, 0.10%)</title><rect x="30.1805%" y="1493" width="0.1020%" height="15" fill="rgb(229,198,43)" fg:x="13022" fg:w="44"/><text x="30.4305%" y="1503.50"></text></g><g><title>&lt;&amp;std::collections::hash::set::HashSet&lt;T,S&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (5 samples, 0.01%)</title><rect x="30.3219%" y="1541" width="0.0116%" height="15" fill="rgb(206,209,35)" fg:x="13083" fg:w="5"/><text x="30.5719%" y="1551.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::iter (5 samples, 0.01%)</title><rect x="30.3219%" y="1525" width="0.0116%" height="15" fill="rgb(245,195,53)" fg:x="13083" fg:w="5"/><text x="30.5719%" y="1535.50"></text></g><g><title>&lt;std::collections::hash::set::Iter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="30.3335%" y="1541" width="0.0162%" height="15" fill="rgb(240,92,26)" fg:x="13088" fg:w="7"/><text x="30.5835%" y="1551.50"></text></g><g><title>&lt;hashbrown::set::Iter&lt;K&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="30.3335%" y="1525" width="0.0162%" height="15" fill="rgb(207,40,23)" fg:x="13088" fg:w="7"/><text x="30.5835%" y="1535.50"></text></g><g><title>&lt;hashbrown::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="30.3335%" y="1509" width="0.0162%" height="15" fill="rgb(223,111,35)" fg:x="13088" fg:w="7"/><text x="30.5835%" y="1519.50"></text></g><g><title>&lt;hashbrown::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="30.3335%" y="1493" width="0.0162%" height="15" fill="rgb(229,147,28)" fg:x="13088" fg:w="7"/><text x="30.5835%" y="1503.50"></text></g><g><title>&lt;hashbrown::raw::RawIter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="30.3335%" y="1477" width="0.0162%" height="15" fill="rgb(211,29,28)" fg:x="13088" fg:w="7"/><text x="30.5835%" y="1487.50"></text></g><g><title>cfree (7 samples, 0.02%)</title><rect x="30.3706%" y="1525" width="0.0162%" height="15" fill="rgb(228,72,33)" fg:x="13104" fg:w="7"/><text x="30.6206%" y="1535.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="30.3729%" y="1509" width="0.0139%" height="15" fill="rgb(205,214,31)" fg:x="13105" fg:w="6"/><text x="30.6229%" y="1519.50"></text></g><g><title>cfree (9 samples, 0.02%)</title><rect x="30.3938%" y="1429" width="0.0209%" height="15" fill="rgb(224,111,15)" fg:x="13114" fg:w="9"/><text x="30.6438%" y="1439.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="30.4007%" y="1413" width="0.0139%" height="15" fill="rgb(253,21,26)" fg:x="13117" fg:w="6"/><text x="30.6507%" y="1423.50"></text></g><g><title>cfree (9 samples, 0.02%)</title><rect x="30.4169%" y="1365" width="0.0209%" height="15" fill="rgb(245,139,43)" fg:x="13124" fg:w="9"/><text x="30.6669%" y="1375.50"></text></g><g><title>[libc.so.6] (5 samples, 0.01%)</title><rect x="30.4262%" y="1349" width="0.0116%" height="15" fill="rgb(252,170,7)" fg:x="13128" fg:w="5"/><text x="30.6762%" y="1359.50"></text></g><g><title>cfree (7 samples, 0.02%)</title><rect x="30.4424%" y="1301" width="0.0162%" height="15" fill="rgb(231,118,14)" fg:x="13135" fg:w="7"/><text x="30.6924%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (12 samples, 0.03%)</title><rect x="30.4378%" y="1349" width="0.0278%" height="15" fill="rgb(238,83,0)" fg:x="13133" fg:w="12"/><text x="30.6878%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (12 samples, 0.03%)</title><rect x="30.4378%" y="1333" width="0.0278%" height="15" fill="rgb(221,39,39)" fg:x="13133" fg:w="12"/><text x="30.6878%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (12 samples, 0.03%)</title><rect x="30.4378%" y="1317" width="0.0278%" height="15" fill="rgb(222,119,46)" fg:x="13133" fg:w="12"/><text x="30.6878%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (23 samples, 0.05%)</title><rect x="30.4146%" y="1413" width="0.0533%" height="15" fill="rgb(222,165,49)" fg:x="13123" fg:w="23"/><text x="30.6646%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (23 samples, 0.05%)</title><rect x="30.4146%" y="1397" width="0.0533%" height="15" fill="rgb(219,113,52)" fg:x="13123" fg:w="23"/><text x="30.6646%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (22 samples, 0.05%)</title><rect x="30.4169%" y="1381" width="0.0510%" height="15" fill="rgb(214,7,15)" fg:x="13124" fg:w="22"/><text x="30.6669%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (13 samples, 0.03%)</title><rect x="30.4378%" y="1365" width="0.0301%" height="15" fill="rgb(235,32,4)" fg:x="13133" fg:w="13"/><text x="30.6878%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (36 samples, 0.08%)</title><rect x="30.3868%" y="1525" width="0.0834%" height="15" fill="rgb(238,90,54)" fg:x="13111" fg:w="36"/><text x="30.6368%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (35 samples, 0.08%)</title><rect x="30.3891%" y="1509" width="0.0811%" height="15" fill="rgb(213,208,19)" fg:x="13112" fg:w="35"/><text x="30.6391%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (34 samples, 0.08%)</title><rect x="30.3915%" y="1493" width="0.0788%" height="15" fill="rgb(233,156,4)" fg:x="13113" fg:w="34"/><text x="30.6415%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (34 samples, 0.08%)</title><rect x="30.3915%" y="1477" width="0.0788%" height="15" fill="rgb(207,194,5)" fg:x="13113" fg:w="34"/><text x="30.6415%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (34 samples, 0.08%)</title><rect x="30.3915%" y="1461" width="0.0788%" height="15" fill="rgb(206,111,30)" fg:x="13113" fg:w="34"/><text x="30.6415%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (34 samples, 0.08%)</title><rect x="30.3915%" y="1445" width="0.0788%" height="15" fill="rgb(243,70,54)" fg:x="13113" fg:w="34"/><text x="30.6415%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (24 samples, 0.06%)</title><rect x="30.4146%" y="1429" width="0.0556%" height="15" fill="rgb(242,28,8)" fg:x="13123" fg:w="24"/><text x="30.6646%" y="1439.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (22 samples, 0.05%)</title><rect x="30.5351%" y="1269" width="0.0510%" height="15" fill="rgb(219,106,18)" fg:x="13175" fg:w="22"/><text x="30.7851%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (19 samples, 0.04%)</title><rect x="30.5421%" y="1253" width="0.0440%" height="15" fill="rgb(244,222,10)" fg:x="13178" fg:w="19"/><text x="30.7921%" y="1263.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (19 samples, 0.04%)</title><rect x="30.5421%" y="1237" width="0.0440%" height="15" fill="rgb(236,179,52)" fg:x="13178" fg:w="19"/><text x="30.7921%" y="1247.50"></text></g><g><title>alloc::slice::hack::to_vec (19 samples, 0.04%)</title><rect x="30.5421%" y="1221" width="0.0440%" height="15" fill="rgb(213,23,39)" fg:x="13178" fg:w="19"/><text x="30.7921%" y="1231.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (19 samples, 0.04%)</title><rect x="30.5421%" y="1205" width="0.0440%" height="15" fill="rgb(238,48,10)" fg:x="13178" fg:w="19"/><text x="30.7921%" y="1215.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (17 samples, 0.04%)</title><rect x="30.5467%" y="1189" width="0.0394%" height="15" fill="rgb(251,196,23)" fg:x="13180" fg:w="17"/><text x="30.7967%" y="1199.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (17 samples, 0.04%)</title><rect x="30.5467%" y="1173" width="0.0394%" height="15" fill="rgb(250,152,24)" fg:x="13180" fg:w="17"/><text x="30.7967%" y="1183.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (17 samples, 0.04%)</title><rect x="30.5467%" y="1157" width="0.0394%" height="15" fill="rgb(209,150,17)" fg:x="13180" fg:w="17"/><text x="30.7967%" y="1167.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (16 samples, 0.04%)</title><rect x="30.5491%" y="1141" width="0.0371%" height="15" fill="rgb(234,202,34)" fg:x="13181" fg:w="16"/><text x="30.7991%" y="1151.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (16 samples, 0.04%)</title><rect x="30.5491%" y="1125" width="0.0371%" height="15" fill="rgb(253,148,53)" fg:x="13181" fg:w="16"/><text x="30.7991%" y="1135.50"></text></g><g><title>alloc::alloc::alloc (16 samples, 0.04%)</title><rect x="30.5491%" y="1109" width="0.0371%" height="15" fill="rgb(218,129,16)" fg:x="13181" fg:w="16"/><text x="30.7991%" y="1119.50"></text></g><g><title>malloc (14 samples, 0.03%)</title><rect x="30.5537%" y="1093" width="0.0324%" height="15" fill="rgb(216,85,19)" fg:x="13183" fg:w="14"/><text x="30.8037%" y="1103.50"></text></g><g><title>[libc.so.6] (8 samples, 0.02%)</title><rect x="30.5676%" y="1077" width="0.0185%" height="15" fill="rgb(235,228,7)" fg:x="13189" fg:w="8"/><text x="30.8176%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="30.5861%" y="1269" width="0.0278%" height="15" fill="rgb(245,175,0)" fg:x="13197" fg:w="12"/><text x="30.8361%" y="1279.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="30.5861%" y="1253" width="0.0278%" height="15" fill="rgb(208,168,36)" fg:x="13197" fg:w="12"/><text x="30.8361%" y="1263.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (12 samples, 0.03%)</title><rect x="30.5861%" y="1237" width="0.0278%" height="15" fill="rgb(246,171,24)" fg:x="13197" fg:w="12"/><text x="30.8361%" y="1247.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (11 samples, 0.03%)</title><rect x="30.5885%" y="1221" width="0.0255%" height="15" fill="rgb(215,142,24)" fg:x="13198" fg:w="11"/><text x="30.8385%" y="1231.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (11 samples, 0.03%)</title><rect x="30.5885%" y="1205" width="0.0255%" height="15" fill="rgb(250,187,7)" fg:x="13198" fg:w="11"/><text x="30.8385%" y="1215.50"></text></g><g><title>alloc::alloc::alloc (11 samples, 0.03%)</title><rect x="30.5885%" y="1189" width="0.0255%" height="15" fill="rgb(228,66,33)" fg:x="13198" fg:w="11"/><text x="30.8385%" y="1199.50"></text></g><g><title>malloc (11 samples, 0.03%)</title><rect x="30.5885%" y="1173" width="0.0255%" height="15" fill="rgb(234,215,21)" fg:x="13198" fg:w="11"/><text x="30.8385%" y="1183.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="30.6000%" y="1157" width="0.0139%" height="15" fill="rgb(222,191,20)" fg:x="13203" fg:w="6"/><text x="30.8500%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (40 samples, 0.09%)</title><rect x="30.5236%" y="1333" width="0.0927%" height="15" fill="rgb(245,79,54)" fg:x="13170" fg:w="40"/><text x="30.7736%" y="1343.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (39 samples, 0.09%)</title><rect x="30.5259%" y="1317" width="0.0904%" height="15" fill="rgb(240,10,37)" fg:x="13171" fg:w="39"/><text x="30.7759%" y="1327.50"></text></g><g><title>alloc::slice::hack::to_vec (39 samples, 0.09%)</title><rect x="30.5259%" y="1301" width="0.0904%" height="15" fill="rgb(214,192,32)" fg:x="13171" fg:w="39"/><text x="30.7759%" y="1311.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (39 samples, 0.09%)</title><rect x="30.5259%" y="1285" width="0.0904%" height="15" fill="rgb(209,36,54)" fg:x="13171" fg:w="39"/><text x="30.7759%" y="1295.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (43 samples, 0.10%)</title><rect x="30.5236%" y="1349" width="0.0997%" height="15" fill="rgb(220,10,11)" fg:x="13170" fg:w="43"/><text x="30.7736%" y="1359.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (25 samples, 0.06%)</title><rect x="30.6255%" y="1349" width="0.0579%" height="15" fill="rgb(221,106,17)" fg:x="13214" fg:w="25"/><text x="30.8755%" y="1359.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (25 samples, 0.06%)</title><rect x="30.6255%" y="1333" width="0.0579%" height="15" fill="rgb(251,142,44)" fg:x="13214" fg:w="25"/><text x="30.8755%" y="1343.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (25 samples, 0.06%)</title><rect x="30.6255%" y="1317" width="0.0579%" height="15" fill="rgb(238,13,15)" fg:x="13214" fg:w="25"/><text x="30.8755%" y="1327.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (24 samples, 0.06%)</title><rect x="30.6279%" y="1301" width="0.0556%" height="15" fill="rgb(208,107,27)" fg:x="13215" fg:w="24"/><text x="30.8779%" y="1311.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (24 samples, 0.06%)</title><rect x="30.6279%" y="1285" width="0.0556%" height="15" fill="rgb(205,136,37)" fg:x="13215" fg:w="24"/><text x="30.8779%" y="1295.50"></text></g><g><title>alloc::alloc::alloc (24 samples, 0.06%)</title><rect x="30.6279%" y="1269" width="0.0556%" height="15" fill="rgb(250,205,27)" fg:x="13215" fg:w="24"/><text x="30.8779%" y="1279.50"></text></g><g><title>malloc (22 samples, 0.05%)</title><rect x="30.6325%" y="1253" width="0.0510%" height="15" fill="rgb(210,80,43)" fg:x="13217" fg:w="22"/><text x="30.8825%" y="1263.50"></text></g><g><title>[libc.so.6] (12 samples, 0.03%)</title><rect x="30.6557%" y="1237" width="0.0278%" height="15" fill="rgb(247,160,36)" fg:x="13227" fg:w="12"/><text x="30.9057%" y="1247.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (80 samples, 0.19%)</title><rect x="30.5050%" y="1429" width="0.1854%" height="15" fill="rgb(234,13,49)" fg:x="13162" fg:w="80"/><text x="30.7550%" y="1439.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (77 samples, 0.18%)</title><rect x="30.5120%" y="1413" width="0.1785%" height="15" fill="rgb(234,122,0)" fg:x="13165" fg:w="77"/><text x="30.7620%" y="1423.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (76 samples, 0.18%)</title><rect x="30.5143%" y="1397" width="0.1761%" height="15" fill="rgb(207,146,38)" fg:x="13166" fg:w="76"/><text x="30.7643%" y="1407.50"></text></g><g><title>alloc::slice::hack::to_vec (76 samples, 0.18%)</title><rect x="30.5143%" y="1381" width="0.1761%" height="15" fill="rgb(207,177,25)" fg:x="13166" fg:w="76"/><text x="30.7643%" y="1391.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (76 samples, 0.18%)</title><rect x="30.5143%" y="1365" width="0.1761%" height="15" fill="rgb(211,178,42)" fg:x="13166" fg:w="76"/><text x="30.7643%" y="1375.50"></text></g><g><title>slimp::Rule::var_replace (105 samples, 0.24%)</title><rect x="30.4703%" y="1525" width="0.2434%" height="15" fill="rgb(230,69,54)" fg:x="13147" fg:w="105"/><text x="30.7203%" y="1535.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (97 samples, 0.22%)</title><rect x="30.4888%" y="1509" width="0.2248%" height="15" fill="rgb(214,135,41)" fg:x="13155" fg:w="97"/><text x="30.7388%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (93 samples, 0.22%)</title><rect x="30.4981%" y="1493" width="0.2155%" height="15" fill="rgb(237,67,25)" fg:x="13159" fg:w="93"/><text x="30.7481%" y="1503.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (93 samples, 0.22%)</title><rect x="30.4981%" y="1477" width="0.2155%" height="15" fill="rgb(222,189,50)" fg:x="13159" fg:w="93"/><text x="30.7481%" y="1487.50"></text></g><g><title>alloc::slice::hack::to_vec (93 samples, 0.22%)</title><rect x="30.4981%" y="1461" width="0.2155%" height="15" fill="rgb(245,148,34)" fg:x="13159" fg:w="93"/><text x="30.7481%" y="1471.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (93 samples, 0.22%)</title><rect x="30.4981%" y="1445" width="0.2155%" height="15" fill="rgb(222,29,6)" fg:x="13159" fg:w="93"/><text x="30.7481%" y="1455.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="30.6904%" y="1429" width="0.0232%" height="15" fill="rgb(221,189,43)" fg:x="13242" fg:w="10"/><text x="30.9404%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="30.6904%" y="1413" width="0.0232%" height="15" fill="rgb(207,36,27)" fg:x="13242" fg:w="10"/><text x="30.9404%" y="1423.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (10 samples, 0.02%)</title><rect x="30.6904%" y="1397" width="0.0232%" height="15" fill="rgb(217,90,24)" fg:x="13242" fg:w="10"/><text x="30.9404%" y="1407.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (9 samples, 0.02%)</title><rect x="30.6927%" y="1381" width="0.0209%" height="15" fill="rgb(224,66,35)" fg:x="13243" fg:w="9"/><text x="30.9427%" y="1391.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (9 samples, 0.02%)</title><rect x="30.6927%" y="1365" width="0.0209%" height="15" fill="rgb(221,13,50)" fg:x="13243" fg:w="9"/><text x="30.9427%" y="1375.50"></text></g><g><title>alloc::alloc::alloc (9 samples, 0.02%)</title><rect x="30.6927%" y="1349" width="0.0209%" height="15" fill="rgb(236,68,49)" fg:x="13243" fg:w="9"/><text x="30.9427%" y="1359.50"></text></g><g><title>malloc (9 samples, 0.02%)</title><rect x="30.6927%" y="1333" width="0.0209%" height="15" fill="rgb(229,146,28)" fg:x="13243" fg:w="9"/><text x="30.9427%" y="1343.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (5 samples, 0.01%)</title><rect x="30.7229%" y="1509" width="0.0116%" height="15" fill="rgb(225,31,38)" fg:x="13256" fg:w="5"/><text x="30.9729%" y="1519.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (5 samples, 0.01%)</title><rect x="30.7229%" y="1493" width="0.0116%" height="15" fill="rgb(250,208,3)" fg:x="13256" fg:w="5"/><text x="30.9729%" y="1503.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="30.7414%" y="1365" width="0.0116%" height="15" fill="rgb(246,54,23)" fg:x="13264" fg:w="5"/><text x="30.9914%" y="1375.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (44 samples, 0.10%)</title><rect x="30.7530%" y="1349" width="0.1020%" height="15" fill="rgb(243,76,11)" fg:x="13269" fg:w="44"/><text x="31.0030%" y="1359.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (44 samples, 0.10%)</title><rect x="30.7530%" y="1333" width="0.1020%" height="15" fill="rgb(245,21,50)" fg:x="13269" fg:w="44"/><text x="31.0030%" y="1343.50"></text></g><g><title>core::ptr::write (44 samples, 0.10%)</title><rect x="30.7530%" y="1317" width="0.1020%" height="15" fill="rgb(228,9,43)" fg:x="13269" fg:w="44"/><text x="31.0030%" y="1327.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (21 samples, 0.05%)</title><rect x="30.9523%" y="1301" width="0.0487%" height="15" fill="rgb(208,100,47)" fg:x="13355" fg:w="21"/><text x="31.2023%" y="1311.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (21 samples, 0.05%)</title><rect x="30.9523%" y="1285" width="0.0487%" height="15" fill="rgb(232,26,8)" fg:x="13355" fg:w="21"/><text x="31.2023%" y="1295.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.01%)</title><rect x="31.0334%" y="1157" width="0.0139%" height="15" fill="rgb(216,166,38)" fg:x="13390" fg:w="6"/><text x="31.2834%" y="1167.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (5 samples, 0.01%)</title><rect x="31.0358%" y="1141" width="0.0116%" height="15" fill="rgb(251,202,51)" fg:x="13391" fg:w="5"/><text x="31.2858%" y="1151.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (5 samples, 0.01%)</title><rect x="31.0358%" y="1125" width="0.0116%" height="15" fill="rgb(254,216,34)" fg:x="13391" fg:w="5"/><text x="31.2858%" y="1135.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (5 samples, 0.01%)</title><rect x="31.0358%" y="1109" width="0.0116%" height="15" fill="rgb(251,32,27)" fg:x="13391" fg:w="5"/><text x="31.2858%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (127 samples, 0.29%)</title><rect x="31.0473%" y="1141" width="0.2943%" height="15" fill="rgb(208,127,28)" fg:x="13396" fg:w="127"/><text x="31.2973%" y="1151.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (127 samples, 0.29%)</title><rect x="31.0473%" y="1125" width="0.2943%" height="15" fill="rgb(224,137,22)" fg:x="13396" fg:w="127"/><text x="31.2973%" y="1135.50"></text></g><g><title>core::ptr::write (127 samples, 0.29%)</title><rect x="31.0473%" y="1109" width="0.2943%" height="15" fill="rgb(254,70,32)" fg:x="13396" fg:w="127"/><text x="31.2973%" y="1119.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="31.5410%" y="741" width="0.0162%" height="15" fill="rgb(229,75,37)" fg:x="13609" fg:w="7"/><text x="31.7910%" y="751.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="31.5410%" y="725" width="0.0162%" height="15" fill="rgb(252,64,23)" fg:x="13609" fg:w="7"/><text x="31.7910%" y="735.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="31.5410%" y="709" width="0.0162%" height="15" fill="rgb(232,162,48)" fg:x="13609" fg:w="7"/><text x="31.7910%" y="719.50"></text></g><g><title>malloc (6 samples, 0.01%)</title><rect x="31.5433%" y="693" width="0.0139%" height="15" fill="rgb(246,160,12)" fg:x="13610" fg:w="6"/><text x="31.7933%" y="703.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="31.5364%" y="789" width="0.0232%" height="15" fill="rgb(247,166,0)" fg:x="13607" fg:w="10"/><text x="31.7864%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="31.5387%" y="773" width="0.0209%" height="15" fill="rgb(249,219,21)" fg:x="13608" fg:w="9"/><text x="31.7887%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (9 samples, 0.02%)</title><rect x="31.5387%" y="757" width="0.0209%" height="15" fill="rgb(205,209,3)" fg:x="13608" fg:w="9"/><text x="31.7887%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (16 samples, 0.04%)</title><rect x="31.5317%" y="853" width="0.0371%" height="15" fill="rgb(243,44,1)" fg:x="13605" fg:w="16"/><text x="31.7817%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (16 samples, 0.04%)</title><rect x="31.5317%" y="837" width="0.0371%" height="15" fill="rgb(206,159,16)" fg:x="13605" fg:w="16"/><text x="31.7817%" y="847.50"></text></g><g><title>alloc::slice::hack::to_vec (16 samples, 0.04%)</title><rect x="31.5317%" y="821" width="0.0371%" height="15" fill="rgb(244,77,30)" fg:x="13605" fg:w="16"/><text x="31.7817%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (16 samples, 0.04%)</title><rect x="31.5317%" y="805" width="0.0371%" height="15" fill="rgb(218,69,12)" fg:x="13605" fg:w="16"/><text x="31.7817%" y="815.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (18 samples, 0.04%)</title><rect x="31.5294%" y="869" width="0.0417%" height="15" fill="rgb(212,87,7)" fg:x="13604" fg:w="18"/><text x="31.7794%" y="879.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (30 samples, 0.07%)</title><rect x="31.5711%" y="869" width="0.0695%" height="15" fill="rgb(245,114,25)" fg:x="13622" fg:w="30"/><text x="31.8211%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (24 samples, 0.06%)</title><rect x="31.5850%" y="853" width="0.0556%" height="15" fill="rgb(210,61,42)" fg:x="13628" fg:w="24"/><text x="31.8350%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (24 samples, 0.06%)</title><rect x="31.5850%" y="837" width="0.0556%" height="15" fill="rgb(211,52,33)" fg:x="13628" fg:w="24"/><text x="31.8350%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (24 samples, 0.06%)</title><rect x="31.5850%" y="821" width="0.0556%" height="15" fill="rgb(234,58,33)" fg:x="13628" fg:w="24"/><text x="31.8350%" y="831.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (24 samples, 0.06%)</title><rect x="31.5850%" y="805" width="0.0556%" height="15" fill="rgb(220,115,36)" fg:x="13628" fg:w="24"/><text x="31.8350%" y="815.50"></text></g><g><title>alloc::alloc::alloc (24 samples, 0.06%)</title><rect x="31.5850%" y="789" width="0.0556%" height="15" fill="rgb(243,153,54)" fg:x="13628" fg:w="24"/><text x="31.8350%" y="799.50"></text></g><g><title>malloc (21 samples, 0.05%)</title><rect x="31.5920%" y="773" width="0.0487%" height="15" fill="rgb(251,47,18)" fg:x="13631" fg:w="21"/><text x="31.8420%" y="783.50"></text></g><g><title>[libc.so.6] (13 samples, 0.03%)</title><rect x="31.6105%" y="757" width="0.0301%" height="15" fill="rgb(242,102,42)" fg:x="13639" fg:w="13"/><text x="31.8605%" y="767.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (56 samples, 0.13%)</title><rect x="31.5155%" y="949" width="0.1298%" height="15" fill="rgb(234,31,38)" fg:x="13598" fg:w="56"/><text x="31.7655%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (52 samples, 0.12%)</title><rect x="31.5248%" y="933" width="0.1205%" height="15" fill="rgb(221,117,51)" fg:x="13602" fg:w="52"/><text x="31.7748%" y="943.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (50 samples, 0.12%)</title><rect x="31.5294%" y="917" width="0.1159%" height="15" fill="rgb(212,20,18)" fg:x="13604" fg:w="50"/><text x="31.7794%" y="927.50"></text></g><g><title>alloc::slice::hack::to_vec (50 samples, 0.12%)</title><rect x="31.5294%" y="901" width="0.1159%" height="15" fill="rgb(245,133,36)" fg:x="13604" fg:w="50"/><text x="31.7794%" y="911.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (50 samples, 0.12%)</title><rect x="31.5294%" y="885" width="0.1159%" height="15" fill="rgb(212,6,19)" fg:x="13604" fg:w="50"/><text x="31.7794%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (19 samples, 0.04%)</title><rect x="31.6546%" y="901" width="0.0440%" height="15" fill="rgb(218,1,36)" fg:x="13658" fg:w="19"/><text x="31.9046%" y="911.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (19 samples, 0.04%)</title><rect x="31.6546%" y="885" width="0.0440%" height="15" fill="rgb(246,84,54)" fg:x="13658" fg:w="19"/><text x="31.9046%" y="895.50"></text></g><g><title>alloc::alloc::alloc (19 samples, 0.04%)</title><rect x="31.6546%" y="869" width="0.0440%" height="15" fill="rgb(242,110,6)" fg:x="13658" fg:w="19"/><text x="31.9046%" y="879.50"></text></g><g><title>malloc (18 samples, 0.04%)</title><rect x="31.6569%" y="853" width="0.0417%" height="15" fill="rgb(214,47,5)" fg:x="13659" fg:w="18"/><text x="31.9069%" y="863.50"></text></g><g><title>[libc.so.6] (12 samples, 0.03%)</title><rect x="31.6708%" y="837" width="0.0278%" height="15" fill="rgb(218,159,25)" fg:x="13665" fg:w="12"/><text x="31.9208%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (23 samples, 0.05%)</title><rect x="31.6476%" y="949" width="0.0533%" height="15" fill="rgb(215,211,28)" fg:x="13655" fg:w="23"/><text x="31.8976%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (20 samples, 0.05%)</title><rect x="31.6546%" y="933" width="0.0464%" height="15" fill="rgb(238,59,32)" fg:x="13658" fg:w="20"/><text x="31.9046%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (20 samples, 0.05%)</title><rect x="31.6546%" y="917" width="0.0464%" height="15" fill="rgb(226,82,3)" fg:x="13658" fg:w="20"/><text x="31.9046%" y="927.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (87 samples, 0.20%)</title><rect x="31.5086%" y="1029" width="0.2016%" height="15" fill="rgb(240,164,32)" fg:x="13595" fg:w="87"/><text x="31.7586%" y="1039.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (87 samples, 0.20%)</title><rect x="31.5086%" y="1013" width="0.2016%" height="15" fill="rgb(232,46,7)" fg:x="13595" fg:w="87"/><text x="31.7586%" y="1023.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (87 samples, 0.20%)</title><rect x="31.5086%" y="997" width="0.2016%" height="15" fill="rgb(229,129,53)" fg:x="13595" fg:w="87"/><text x="31.7586%" y="1007.50"></text></g><g><title>alloc::slice::hack::to_vec (87 samples, 0.20%)</title><rect x="31.5086%" y="981" width="0.2016%" height="15" fill="rgb(234,188,29)" fg:x="13595" fg:w="87"/><text x="31.7586%" y="991.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (87 samples, 0.20%)</title><rect x="31.5086%" y="965" width="0.2016%" height="15" fill="rgb(246,141,4)" fg:x="13595" fg:w="87"/><text x="31.7586%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (21 samples, 0.05%)</title><rect x="31.7172%" y="1029" width="0.0487%" height="15" fill="rgb(229,23,39)" fg:x="13685" fg:w="21"/><text x="31.9672%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (20 samples, 0.05%)</title><rect x="31.7195%" y="1013" width="0.0464%" height="15" fill="rgb(206,12,3)" fg:x="13686" fg:w="20"/><text x="31.9695%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (20 samples, 0.05%)</title><rect x="31.7195%" y="997" width="0.0464%" height="15" fill="rgb(252,226,20)" fg:x="13686" fg:w="20"/><text x="31.9695%" y="1007.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (19 samples, 0.04%)</title><rect x="31.7218%" y="981" width="0.0440%" height="15" fill="rgb(216,123,35)" fg:x="13687" fg:w="19"/><text x="31.9718%" y="991.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (19 samples, 0.04%)</title><rect x="31.7218%" y="965" width="0.0440%" height="15" fill="rgb(212,68,40)" fg:x="13687" fg:w="19"/><text x="31.9718%" y="975.50"></text></g><g><title>alloc::alloc::alloc (19 samples, 0.04%)</title><rect x="31.7218%" y="949" width="0.0440%" height="15" fill="rgb(254,125,32)" fg:x="13687" fg:w="19"/><text x="31.9718%" y="959.50"></text></g><g><title>malloc (18 samples, 0.04%)</title><rect x="31.7241%" y="933" width="0.0417%" height="15" fill="rgb(253,97,22)" fg:x="13688" fg:w="18"/><text x="31.9741%" y="943.50"></text></g><g><title>[libc.so.6] (14 samples, 0.03%)</title><rect x="31.7334%" y="917" width="0.0324%" height="15" fill="rgb(241,101,14)" fg:x="13692" fg:w="14"/><text x="31.9834%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (116 samples, 0.27%)</title><rect x="31.4993%" y="1093" width="0.2688%" height="15" fill="rgb(238,103,29)" fg:x="13591" fg:w="116"/><text x="31.7493%" y="1103.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (115 samples, 0.27%)</title><rect x="31.5016%" y="1077" width="0.2665%" height="15" fill="rgb(233,195,47)" fg:x="13592" fg:w="115"/><text x="31.7516%" y="1087.50"></text></g><g><title>alloc::slice::hack::to_vec (115 samples, 0.27%)</title><rect x="31.5016%" y="1061" width="0.2665%" height="15" fill="rgb(246,218,30)" fg:x="13592" fg:w="115"/><text x="31.7516%" y="1071.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (115 samples, 0.27%)</title><rect x="31.5016%" y="1045" width="0.2665%" height="15" fill="rgb(219,145,47)" fg:x="13592" fg:w="115"/><text x="31.7516%" y="1055.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (45 samples, 0.10%)</title><rect x="31.7705%" y="1093" width="0.1043%" height="15" fill="rgb(243,12,26)" fg:x="13708" fg:w="45"/><text x="32.0205%" y="1103.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (45 samples, 0.10%)</title><rect x="31.7705%" y="1077" width="0.1043%" height="15" fill="rgb(214,87,16)" fg:x="13708" fg:w="45"/><text x="32.0205%" y="1087.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="31.9257%" y="949" width="0.0255%" height="15" fill="rgb(208,99,42)" fg:x="13775" fg:w="11"/><text x="32.1757%" y="959.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (146 samples, 0.34%)</title><rect x="31.9512%" y="933" width="0.3384%" height="15" fill="rgb(253,99,2)" fg:x="13786" fg:w="146"/><text x="32.2012%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (146 samples, 0.34%)</title><rect x="31.9512%" y="917" width="0.3384%" height="15" fill="rgb(220,168,23)" fg:x="13786" fg:w="146"/><text x="32.2012%" y="927.50"></text></g><g><title>core::ptr::write (146 samples, 0.34%)</title><rect x="31.9512%" y="901" width="0.3384%" height="15" fill="rgb(242,38,24)" fg:x="13786" fg:w="146"/><text x="32.2012%" y="911.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="32.4866%" y="581" width="0.0116%" height="15" fill="rgb(225,182,9)" fg:x="14017" fg:w="5"/><text x="32.7366%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (6 samples, 0.01%)</title><rect x="32.5028%" y="533" width="0.0139%" height="15" fill="rgb(243,178,37)" fg:x="14024" fg:w="6"/><text x="32.7528%" y="543.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (6 samples, 0.01%)</title><rect x="32.5028%" y="517" width="0.0139%" height="15" fill="rgb(232,139,19)" fg:x="14024" fg:w="6"/><text x="32.7528%" y="527.50"></text></g><g><title>alloc::alloc::alloc (6 samples, 0.01%)</title><rect x="32.5028%" y="501" width="0.0139%" height="15" fill="rgb(225,201,24)" fg:x="14024" fg:w="6"/><text x="32.7528%" y="511.50"></text></g><g><title>malloc (6 samples, 0.01%)</title><rect x="32.5028%" y="485" width="0.0139%" height="15" fill="rgb(221,47,46)" fg:x="14024" fg:w="6"/><text x="32.7528%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="32.4982%" y="581" width="0.0209%" height="15" fill="rgb(249,23,13)" fg:x="14022" fg:w="9"/><text x="32.7482%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (8 samples, 0.02%)</title><rect x="32.5005%" y="565" width="0.0185%" height="15" fill="rgb(219,9,5)" fg:x="14023" fg:w="8"/><text x="32.7505%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (8 samples, 0.02%)</title><rect x="32.5005%" y="549" width="0.0185%" height="15" fill="rgb(254,171,16)" fg:x="14023" fg:w="8"/><text x="32.7505%" y="559.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (21 samples, 0.05%)</title><rect x="32.4797%" y="661" width="0.0487%" height="15" fill="rgb(230,171,20)" fg:x="14014" fg:w="21"/><text x="32.7297%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (18 samples, 0.04%)</title><rect x="32.4866%" y="645" width="0.0417%" height="15" fill="rgb(210,71,41)" fg:x="14017" fg:w="18"/><text x="32.7366%" y="655.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (18 samples, 0.04%)</title><rect x="32.4866%" y="629" width="0.0417%" height="15" fill="rgb(206,173,20)" fg:x="14017" fg:w="18"/><text x="32.7366%" y="639.50"></text></g><g><title>alloc::slice::hack::to_vec (18 samples, 0.04%)</title><rect x="32.4866%" y="613" width="0.0417%" height="15" fill="rgb(233,88,34)" fg:x="14017" fg:w="18"/><text x="32.7366%" y="623.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (18 samples, 0.04%)</title><rect x="32.4866%" y="597" width="0.0417%" height="15" fill="rgb(223,209,46)" fg:x="14017" fg:w="18"/><text x="32.7366%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (32 samples, 0.07%)</title><rect x="32.5307%" y="661" width="0.0742%" height="15" fill="rgb(250,43,18)" fg:x="14036" fg:w="32"/><text x="32.7807%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (30 samples, 0.07%)</title><rect x="32.5353%" y="645" width="0.0695%" height="15" fill="rgb(208,13,10)" fg:x="14038" fg:w="30"/><text x="32.7853%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (30 samples, 0.07%)</title><rect x="32.5353%" y="629" width="0.0695%" height="15" fill="rgb(212,200,36)" fg:x="14038" fg:w="30"/><text x="32.7853%" y="639.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (30 samples, 0.07%)</title><rect x="32.5353%" y="613" width="0.0695%" height="15" fill="rgb(225,90,30)" fg:x="14038" fg:w="30"/><text x="32.7853%" y="623.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (30 samples, 0.07%)</title><rect x="32.5353%" y="597" width="0.0695%" height="15" fill="rgb(236,182,39)" fg:x="14038" fg:w="30"/><text x="32.7853%" y="607.50"></text></g><g><title>alloc::alloc::alloc (30 samples, 0.07%)</title><rect x="32.5353%" y="581" width="0.0695%" height="15" fill="rgb(212,144,35)" fg:x="14038" fg:w="30"/><text x="32.7853%" y="591.50"></text></g><g><title>malloc (27 samples, 0.06%)</title><rect x="32.5422%" y="565" width="0.0626%" height="15" fill="rgb(228,63,44)" fg:x="14041" fg:w="27"/><text x="32.7922%" y="575.50"></text></g><g><title>[libc.so.6] (21 samples, 0.05%)</title><rect x="32.5561%" y="549" width="0.0487%" height="15" fill="rgb(228,109,6)" fg:x="14047" fg:w="21"/><text x="32.8061%" y="559.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (63 samples, 0.15%)</title><rect x="32.4681%" y="741" width="0.1460%" height="15" fill="rgb(238,117,24)" fg:x="14009" fg:w="63"/><text x="32.7181%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (61 samples, 0.14%)</title><rect x="32.4727%" y="725" width="0.1414%" height="15" fill="rgb(242,26,26)" fg:x="14011" fg:w="61"/><text x="32.7227%" y="735.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (61 samples, 0.14%)</title><rect x="32.4727%" y="709" width="0.1414%" height="15" fill="rgb(221,92,48)" fg:x="14011" fg:w="61"/><text x="32.7227%" y="719.50"></text></g><g><title>alloc::slice::hack::to_vec (61 samples, 0.14%)</title><rect x="32.4727%" y="693" width="0.1414%" height="15" fill="rgb(209,209,32)" fg:x="14011" fg:w="61"/><text x="32.7227%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (61 samples, 0.14%)</title><rect x="32.4727%" y="677" width="0.1414%" height="15" fill="rgb(221,70,22)" fg:x="14011" fg:w="61"/><text x="32.7227%" y="687.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (31 samples, 0.07%)</title><rect x="32.6141%" y="741" width="0.0718%" height="15" fill="rgb(248,145,5)" fg:x="14072" fg:w="31"/><text x="32.8641%" y="751.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (30 samples, 0.07%)</title><rect x="32.6164%" y="725" width="0.0695%" height="15" fill="rgb(226,116,26)" fg:x="14073" fg:w="30"/><text x="32.8664%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (30 samples, 0.07%)</title><rect x="32.6164%" y="709" width="0.0695%" height="15" fill="rgb(244,5,17)" fg:x="14073" fg:w="30"/><text x="32.8664%" y="719.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (29 samples, 0.07%)</title><rect x="32.6187%" y="693" width="0.0672%" height="15" fill="rgb(252,159,33)" fg:x="14074" fg:w="29"/><text x="32.8687%" y="703.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (29 samples, 0.07%)</title><rect x="32.6187%" y="677" width="0.0672%" height="15" fill="rgb(206,71,0)" fg:x="14074" fg:w="29"/><text x="32.8687%" y="687.50"></text></g><g><title>alloc::alloc::alloc (29 samples, 0.07%)</title><rect x="32.6187%" y="661" width="0.0672%" height="15" fill="rgb(233,118,54)" fg:x="14074" fg:w="29"/><text x="32.8687%" y="671.50"></text></g><g><title>malloc (28 samples, 0.06%)</title><rect x="32.6210%" y="645" width="0.0649%" height="15" fill="rgb(234,83,48)" fg:x="14075" fg:w="28"/><text x="32.8710%" y="655.50"></text></g><g><title>[libc.so.6] (22 samples, 0.05%)</title><rect x="32.6349%" y="629" width="0.0510%" height="15" fill="rgb(228,3,54)" fg:x="14081" fg:w="22"/><text x="32.8849%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (99 samples, 0.23%)</title><rect x="32.4658%" y="805" width="0.2294%" height="15" fill="rgb(226,155,13)" fg:x="14008" fg:w="99"/><text x="32.7158%" y="815.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (98 samples, 0.23%)</title><rect x="32.4681%" y="789" width="0.2271%" height="15" fill="rgb(241,28,37)" fg:x="14009" fg:w="98"/><text x="32.7181%" y="799.50"></text></g><g><title>alloc::slice::hack::to_vec (98 samples, 0.23%)</title><rect x="32.4681%" y="773" width="0.2271%" height="15" fill="rgb(233,93,10)" fg:x="14009" fg:w="98"/><text x="32.7181%" y="783.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (98 samples, 0.23%)</title><rect x="32.4681%" y="757" width="0.2271%" height="15" fill="rgb(225,113,19)" fg:x="14009" fg:w="98"/><text x="32.7181%" y="767.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (102 samples, 0.24%)</title><rect x="32.4611%" y="821" width="0.2364%" height="15" fill="rgb(241,2,18)" fg:x="14006" fg:w="102"/><text x="32.7111%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (22 samples, 0.05%)</title><rect x="32.7114%" y="773" width="0.0510%" height="15" fill="rgb(228,207,21)" fg:x="14114" fg:w="22"/><text x="32.9614%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (22 samples, 0.05%)</title><rect x="32.7114%" y="757" width="0.0510%" height="15" fill="rgb(213,211,35)" fg:x="14114" fg:w="22"/><text x="32.9614%" y="767.50"></text></g><g><title>alloc::alloc::alloc (22 samples, 0.05%)</title><rect x="32.7114%" y="741" width="0.0510%" height="15" fill="rgb(209,83,10)" fg:x="14114" fg:w="22"/><text x="32.9614%" y="751.50"></text></g><g><title>malloc (19 samples, 0.04%)</title><rect x="32.7184%" y="725" width="0.0440%" height="15" fill="rgb(209,164,1)" fg:x="14117" fg:w="19"/><text x="32.9684%" y="735.50"></text></g><g><title>[libc.so.6] (11 samples, 0.03%)</title><rect x="32.7369%" y="709" width="0.0255%" height="15" fill="rgb(213,184,43)" fg:x="14125" fg:w="11"/><text x="32.9869%" y="719.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (28 samples, 0.06%)</title><rect x="32.6998%" y="821" width="0.0649%" height="15" fill="rgb(231,61,34)" fg:x="14109" fg:w="28"/><text x="32.9498%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (24 samples, 0.06%)</title><rect x="32.7091%" y="805" width="0.0556%" height="15" fill="rgb(235,75,3)" fg:x="14113" fg:w="24"/><text x="32.9591%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (24 samples, 0.06%)</title><rect x="32.7091%" y="789" width="0.0556%" height="15" fill="rgb(220,106,47)" fg:x="14113" fg:w="24"/><text x="32.9591%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (138 samples, 0.32%)</title><rect x="32.4495%" y="885" width="0.3198%" height="15" fill="rgb(210,196,33)" fg:x="14001" fg:w="138"/><text x="32.6995%" y="895.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (136 samples, 0.32%)</title><rect x="32.4542%" y="869" width="0.3152%" height="15" fill="rgb(229,154,42)" fg:x="14003" fg:w="136"/><text x="32.7042%" y="879.50"></text></g><g><title>alloc::slice::hack::to_vec (136 samples, 0.32%)</title><rect x="32.4542%" y="853" width="0.3152%" height="15" fill="rgb(228,114,26)" fg:x="14003" fg:w="136"/><text x="32.7042%" y="863.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (136 samples, 0.32%)</title><rect x="32.4542%" y="837" width="0.3152%" height="15" fill="rgb(208,144,1)" fg:x="14003" fg:w="136"/><text x="32.7042%" y="847.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (55 samples, 0.13%)</title><rect x="32.7717%" y="885" width="0.1275%" height="15" fill="rgb(239,112,37)" fg:x="14140" fg:w="55"/><text x="33.0217%" y="895.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (55 samples, 0.13%)</title><rect x="32.7717%" y="869" width="0.1275%" height="15" fill="rgb(210,96,50)" fg:x="14140" fg:w="55"/><text x="33.0217%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (152 samples, 0.35%)</title><rect x="32.9339%" y="725" width="0.3523%" height="15" fill="rgb(222,178,2)" fg:x="14210" fg:w="152"/><text x="33.1839%" y="735.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (152 samples, 0.35%)</title><rect x="32.9339%" y="709" width="0.3523%" height="15" fill="rgb(226,74,18)" fg:x="14210" fg:w="152"/><text x="33.1839%" y="719.50"></text></g><g><title>core::ptr::write (152 samples, 0.35%)</title><rect x="32.9339%" y="693" width="0.3523%" height="15" fill="rgb(225,67,54)" fg:x="14210" fg:w="152"/><text x="33.1839%" y="703.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (44 samples, 0.10%)</title><rect x="33.4160%" y="677" width="0.1020%" height="15" fill="rgb(251,92,32)" fg:x="14418" fg:w="44"/><text x="33.6660%" y="687.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (44 samples, 0.10%)</title><rect x="33.4160%" y="661" width="0.1020%" height="15" fill="rgb(228,149,22)" fg:x="14418" fg:w="44"/><text x="33.6660%" y="671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (105 samples, 0.24%)</title><rect x="33.5388%" y="517" width="0.2434%" height="15" fill="rgb(243,54,13)" fg:x="14471" fg:w="105"/><text x="33.7888%" y="527.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (105 samples, 0.24%)</title><rect x="33.5388%" y="501" width="0.2434%" height="15" fill="rgb(243,180,28)" fg:x="14471" fg:w="105"/><text x="33.7888%" y="511.50"></text></g><g><title>core::ptr::write (105 samples, 0.24%)</title><rect x="33.5388%" y="485" width="0.2434%" height="15" fill="rgb(208,167,24)" fg:x="14471" fg:w="105"/><text x="33.7888%" y="495.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (29 samples, 0.07%)</title><rect x="33.8795%" y="469" width="0.0672%" height="15" fill="rgb(245,73,45)" fg:x="14618" fg:w="29"/><text x="34.1295%" y="479.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (29 samples, 0.07%)</title><rect x="33.8795%" y="453" width="0.0672%" height="15" fill="rgb(237,203,48)" fg:x="14618" fg:w="29"/><text x="34.1295%" y="463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (73 samples, 0.17%)</title><rect x="33.9676%" y="309" width="0.1692%" height="15" fill="rgb(211,197,16)" fg:x="14656" fg:w="73"/><text x="34.2176%" y="319.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (73 samples, 0.17%)</title><rect x="33.9676%" y="293" width="0.1692%" height="15" fill="rgb(243,99,51)" fg:x="14656" fg:w="73"/><text x="34.2176%" y="303.50"></text></g><g><title>core::ptr::write (73 samples, 0.17%)</title><rect x="33.9676%" y="277" width="0.1692%" height="15" fill="rgb(215,123,29)" fg:x="14656" fg:w="73"/><text x="34.2176%" y="287.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (17 samples, 0.04%)</title><rect x="34.1924%" y="261" width="0.0394%" height="15" fill="rgb(239,186,37)" fg:x="14753" fg:w="17"/><text x="34.4424%" y="271.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (17 samples, 0.04%)</title><rect x="34.1924%" y="245" width="0.0394%" height="15" fill="rgb(252,136,39)" fg:x="14753" fg:w="17"/><text x="34.4424%" y="255.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (15 samples, 0.03%)</title><rect x="34.2388%" y="101" width="0.0348%" height="15" fill="rgb(223,213,32)" fg:x="14773" fg:w="15"/><text x="34.4888%" y="111.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (15 samples, 0.03%)</title><rect x="34.2388%" y="85" width="0.0348%" height="15" fill="rgb(233,115,5)" fg:x="14773" fg:w="15"/><text x="34.4888%" y="95.50"></text></g><g><title>core::ptr::write (15 samples, 0.03%)</title><rect x="34.2388%" y="69" width="0.0348%" height="15" fill="rgb(207,226,44)" fg:x="14773" fg:w="15"/><text x="34.4888%" y="79.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 (36 samples, 0.08%)</title><rect x="34.2388%" y="197" width="0.0834%" height="15" fill="rgb(208,126,0)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="207.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (36 samples, 0.08%)</title><rect x="34.2388%" y="181" width="0.0834%" height="15" fill="rgb(244,66,21)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="191.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (36 samples, 0.08%)</title><rect x="34.2388%" y="165" width="0.0834%" height="15" fill="rgb(222,97,12)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="175.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (36 samples, 0.08%)</title><rect x="34.2388%" y="149" width="0.0834%" height="15" fill="rgb(219,213,19)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="159.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (36 samples, 0.08%)</title><rect x="34.2388%" y="133" width="0.0834%" height="15" fill="rgb(252,169,30)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="143.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (36 samples, 0.08%)</title><rect x="34.2388%" y="117" width="0.0834%" height="15" fill="rgb(206,32,51)" fg:x="14773" fg:w="36"/><text x="34.4888%" y="127.50"></text></g><g><title>slimp::rw::{{closure}} (21 samples, 0.05%)</title><rect x="34.2735%" y="101" width="0.0487%" height="15" fill="rgb(250,172,42)" fg:x="14788" fg:w="21"/><text x="34.5235%" y="111.50"></text></g><g><title>slimp::Sexp::rw (21 samples, 0.05%)</title><rect x="34.2735%" y="85" width="0.0487%" height="15" fill="rgb(209,34,43)" fg:x="14788" fg:w="21"/><text x="34.5235%" y="95.50"></text></g><g><title>slimp::rw (19 samples, 0.04%)</title><rect x="34.2782%" y="69" width="0.0440%" height="15" fill="rgb(223,11,35)" fg:x="14790" fg:w="19"/><text x="34.5282%" y="79.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (8 samples, 0.02%)</title><rect x="34.3037%" y="53" width="0.0185%" height="15" fill="rgb(251,219,26)" fg:x="14801" fg:w="8"/><text x="34.5537%" y="63.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (8 samples, 0.02%)</title><rect x="34.3037%" y="37" width="0.0185%" height="15" fill="rgb(231,119,3)" fg:x="14801" fg:w="8"/><text x="34.5537%" y="47.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (57 samples, 0.13%)</title><rect x="34.2318%" y="261" width="0.1321%" height="15" fill="rgb(216,97,11)" fg:x="14770" fg:w="57"/><text x="34.4818%" y="271.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (57 samples, 0.13%)</title><rect x="34.2318%" y="245" width="0.1321%" height="15" fill="rgb(223,59,9)" fg:x="14770" fg:w="57"/><text x="34.4818%" y="255.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 (56 samples, 0.13%)</title><rect x="34.2341%" y="229" width="0.1298%" height="15" fill="rgb(233,93,31)" fg:x="14771" fg:w="56"/><text x="34.4841%" y="239.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 (56 samples, 0.13%)</title><rect x="34.2341%" y="213" width="0.1298%" height="15" fill="rgb(239,81,33)" fg:x="14771" fg:w="56"/><text x="34.4841%" y="223.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (18 samples, 0.04%)</title><rect x="34.3222%" y="197" width="0.0417%" height="15" fill="rgb(213,120,34)" fg:x="14809" fg:w="18"/><text x="34.5722%" y="207.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (18 samples, 0.04%)</title><rect x="34.3222%" y="181" width="0.0417%" height="15" fill="rgb(243,49,53)" fg:x="14809" fg:w="18"/><text x="34.5722%" y="191.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (14 samples, 0.03%)</title><rect x="34.3315%" y="165" width="0.0324%" height="15" fill="rgb(247,216,33)" fg:x="14813" fg:w="14"/><text x="34.5815%" y="175.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (14 samples, 0.03%)</title><rect x="34.3315%" y="149" width="0.0324%" height="15" fill="rgb(226,26,14)" fg:x="14813" fg:w="14"/><text x="34.5815%" y="159.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (14 samples, 0.03%)</title><rect x="34.3315%" y="133" width="0.0324%" height="15" fill="rgb(215,49,53)" fg:x="14813" fg:w="14"/><text x="34.5815%" y="143.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (14 samples, 0.03%)</title><rect x="34.3315%" y="117" width="0.0324%" height="15" fill="rgb(245,162,40)" fg:x="14813" fg:w="14"/><text x="34.5815%" y="127.50"></text></g><g><title>alloc::alloc::alloc (14 samples, 0.03%)</title><rect x="34.3315%" y="101" width="0.0324%" height="15" fill="rgb(229,68,17)" fg:x="14813" fg:w="14"/><text x="34.5815%" y="111.50"></text></g><g><title>malloc (12 samples, 0.03%)</title><rect x="34.3361%" y="85" width="0.0278%" height="15" fill="rgb(213,182,10)" fg:x="14815" fg:w="12"/><text x="34.5861%" y="95.50"></text></g><g><title>[libc.so.6] (12 samples, 0.03%)</title><rect x="34.3361%" y="69" width="0.0278%" height="15" fill="rgb(245,125,30)" fg:x="14815" fg:w="12"/><text x="34.5861%" y="79.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 (175 samples, 0.41%)</title><rect x="33.9653%" y="405" width="0.4056%" height="15" fill="rgb(232,202,2)" fg:x="14655" fg:w="175"/><text x="34.2153%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (175 samples, 0.41%)</title><rect x="33.9653%" y="389" width="0.4056%" height="15" fill="rgb(237,140,51)" fg:x="14655" fg:w="175"/><text x="34.2153%" y="399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (175 samples, 0.41%)</title><rect x="33.9653%" y="373" width="0.4056%" height="15" fill="rgb(236,157,25)" fg:x="14655" fg:w="175"/><text x="34.2153%" y="383.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (175 samples, 0.41%)</title><rect x="33.9653%" y="357" width="0.4056%" height="15" fill="rgb(219,209,0)" fg:x="14655" fg:w="175"/><text x="34.2153%" y="367.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (175 samples, 0.41%)</title><rect x="33.9653%" y="341" width="0.4056%" height="15" fill="rgb(240,116,54)" fg:x="14655" fg:w="175"/><text x="34.2153%" y="351.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (174 samples, 0.40%)</title><rect x="33.9676%" y="325" width="0.4033%" height="15" fill="rgb(216,10,36)" fg:x="14656" fg:w="174"/><text x="34.2176%" y="335.50"></text></g><g><title>slimp::rw::{{closure}} (101 samples, 0.23%)</title><rect x="34.1368%" y="309" width="0.2341%" height="15" fill="rgb(222,72,44)" fg:x="14729" fg:w="101"/><text x="34.3868%" y="319.50"></text></g><g><title>slimp::Sexp::rw (101 samples, 0.23%)</title><rect x="34.1368%" y="293" width="0.2341%" height="15" fill="rgb(232,159,9)" fg:x="14729" fg:w="101"/><text x="34.3868%" y="303.50"></text></g><g><title>slimp::rw (98 samples, 0.23%)</title><rect x="34.1437%" y="277" width="0.2271%" height="15" fill="rgb(210,39,32)" fg:x="14732" fg:w="98"/><text x="34.3937%" y="287.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (54 samples, 0.13%)</title><rect x="34.4033%" y="341" width="0.1252%" height="15" fill="rgb(216,194,45)" fg:x="14844" fg:w="54"/><text x="34.6533%" y="351.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (54 samples, 0.13%)</title><rect x="34.4033%" y="325" width="0.1252%" height="15" fill="rgb(218,18,35)" fg:x="14844" fg:w="54"/><text x="34.6533%" y="335.50"></text></g><g><title>alloc::alloc::alloc (54 samples, 0.13%)</title><rect x="34.4033%" y="309" width="0.1252%" height="15" fill="rgb(207,83,51)" fg:x="14844" fg:w="54"/><text x="34.6533%" y="319.50"></text></g><g><title>malloc (48 samples, 0.11%)</title><rect x="34.4172%" y="293" width="0.1112%" height="15" fill="rgb(225,63,43)" fg:x="14850" fg:w="48"/><text x="34.6672%" y="303.50"></text></g><g><title>[libc.so.6] (41 samples, 0.10%)</title><rect x="34.4334%" y="277" width="0.0950%" height="15" fill="rgb(207,57,36)" fg:x="14857" fg:w="41"/><text x="34.6834%" y="287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (253 samples, 0.59%)</title><rect x="33.9467%" y="469" width="0.5864%" height="15" fill="rgb(216,99,33)" fg:x="14647" fg:w="253"/><text x="34.1967%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (253 samples, 0.59%)</title><rect x="33.9467%" y="453" width="0.5864%" height="15" fill="rgb(225,42,16)" fg:x="14647" fg:w="253"/><text x="34.1967%" y="463.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 (253 samples, 0.59%)</title><rect x="33.9467%" y="437" width="0.5864%" height="15" fill="rgb(220,201,45)" fg:x="14647" fg:w="253"/><text x="34.1967%" y="447.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 (253 samples, 0.59%)</title><rect x="33.9467%" y="421" width="0.5864%" height="15" fill="rgb(225,33,4)" fg:x="14647" fg:w="253"/><text x="34.1967%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (69 samples, 0.16%)</title><rect x="34.3732%" y="405" width="0.1599%" height="15" fill="rgb(224,33,50)" fg:x="14831" fg:w="69"/><text x="34.6232%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (69 samples, 0.16%)</title><rect x="34.3732%" y="389" width="0.1599%" height="15" fill="rgb(246,198,51)" fg:x="14831" fg:w="69"/><text x="34.6232%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (60 samples, 0.14%)</title><rect x="34.3940%" y="373" width="0.1391%" height="15" fill="rgb(205,22,4)" fg:x="14840" fg:w="60"/><text x="34.6440%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (60 samples, 0.14%)</title><rect x="34.3940%" y="357" width="0.1391%" height="15" fill="rgb(206,3,8)" fg:x="14840" fg:w="60"/><text x="34.6440%" y="367.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 (435 samples, 1.01%)</title><rect x="33.5365%" y="613" width="1.0082%" height="15" fill="rgb(251,23,15)" fg:x="14470" fg:w="435"/><text x="33.7865%" y="623.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (435 samples, 1.01%)</title><rect x="33.5365%" y="597" width="1.0082%" height="15" fill="rgb(252,88,28)" fg:x="14470" fg:w="435"/><text x="33.7865%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (435 samples, 1.01%)</title><rect x="33.5365%" y="581" width="1.0082%" height="15" fill="rgb(212,127,14)" fg:x="14470" fg:w="435"/><text x="33.7865%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (435 samples, 1.01%)</title><rect x="33.5365%" y="565" width="1.0082%" height="15" fill="rgb(247,145,37)" fg:x="14470" fg:w="435"/><text x="33.7865%" y="575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (435 samples, 1.01%)</title><rect x="33.5365%" y="549" width="1.0082%" height="15" fill="rgb(209,117,53)" fg:x="14470" fg:w="435"/><text x="33.7865%" y="559.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (434 samples, 1.01%)</title><rect x="33.5388%" y="533" width="1.0059%" height="15" fill="rgb(212,90,42)" fg:x="14471" fg:w="434"/><text x="33.7888%" y="543.50"></text></g><g><title>slimp::rw::{{closure}} (329 samples, 0.76%)</title><rect x="33.7822%" y="517" width="0.7625%" height="15" fill="rgb(218,164,37)" fg:x="14576" fg:w="329"/><text x="34.0322%" y="527.50"></text></g><g><title>slimp::Sexp::rw (329 samples, 0.76%)</title><rect x="33.7822%" y="501" width="0.7625%" height="15" fill="rgb(246,65,34)" fg:x="14576" fg:w="329"/><text x="34.0322%" y="511.50"></text></g><g><title>slimp::rw (321 samples, 0.74%)</title><rect x="33.8007%" y="485" width="0.7440%" height="15" fill="rgb(231,100,33)" fg:x="14584" fg:w="321"/><text x="34.0507%" y="495.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (104 samples, 0.24%)</title><rect x="34.5864%" y="549" width="0.2410%" height="15" fill="rgb(228,126,14)" fg:x="14923" fg:w="104"/><text x="34.8364%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (104 samples, 0.24%)</title><rect x="34.5864%" y="533" width="0.2410%" height="15" fill="rgb(215,173,21)" fg:x="14923" fg:w="104"/><text x="34.8364%" y="543.50"></text></g><g><title>alloc::alloc::alloc (104 samples, 0.24%)</title><rect x="34.5864%" y="517" width="0.2410%" height="15" fill="rgb(210,6,40)" fg:x="14923" fg:w="104"/><text x="34.8364%" y="527.50"></text></g><g><title>malloc (96 samples, 0.22%)</title><rect x="34.6050%" y="501" width="0.2225%" height="15" fill="rgb(212,48,18)" fg:x="14931" fg:w="96"/><text x="34.8550%" y="511.50"></text></g><g><title>[libc.so.6] (76 samples, 0.18%)</title><rect x="34.6513%" y="485" width="0.1761%" height="15" fill="rgb(230,214,11)" fg:x="14951" fg:w="76"/><text x="34.9013%" y="495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (569 samples, 1.32%)</title><rect x="33.5180%" y="677" width="1.3187%" height="15" fill="rgb(254,105,39)" fg:x="14462" fg:w="569"/><text x="33.7680%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (569 samples, 1.32%)</title><rect x="33.5180%" y="661" width="1.3187%" height="15" fill="rgb(245,158,5)" fg:x="14462" fg:w="569"/><text x="33.7680%" y="671.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 (566 samples, 1.31%)</title><rect x="33.5249%" y="645" width="1.3118%" height="15" fill="rgb(249,208,11)" fg:x="14465" fg:w="566"/><text x="33.7749%" y="655.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 (566 samples, 1.31%)</title><rect x="33.5249%" y="629" width="1.3118%" height="15" fill="rgb(210,39,28)" fg:x="14465" fg:w="566"/><text x="33.7749%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (123 samples, 0.29%)</title><rect x="34.5516%" y="613" width="0.2851%" height="15" fill="rgb(211,56,53)" fg:x="14908" fg:w="123"/><text x="34.8016%" y="623.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (123 samples, 0.29%)</title><rect x="34.5516%" y="597" width="0.2851%" height="15" fill="rgb(226,201,30)" fg:x="14908" fg:w="123"/><text x="34.8016%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (111 samples, 0.26%)</title><rect x="34.5795%" y="581" width="0.2573%" height="15" fill="rgb(239,101,34)" fg:x="14920" fg:w="111"/><text x="34.8295%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (111 samples, 0.26%)</title><rect x="34.5795%" y="565" width="0.2573%" height="15" fill="rgb(226,209,5)" fg:x="14920" fg:w="111"/><text x="34.8295%" y="575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (5 samples, 0.01%)</title><rect x="34.8367%" y="677" width="0.0116%" height="15" fill="rgb(250,105,47)" fg:x="15031" fg:w="5"/><text x="35.0867%" y="687.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (5 samples, 0.01%)</title><rect x="34.8367%" y="661" width="0.0116%" height="15" fill="rgb(230,72,3)" fg:x="15031" fg:w="5"/><text x="35.0867%" y="671.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (827 samples, 1.92%)</title><rect x="32.9339%" y="741" width="1.9167%" height="15" fill="rgb(232,218,39)" fg:x="14210" fg:w="827"/><text x="33.1839%" y="751.50">c..</text></g><g><title>slimp::rw::{{closure}} (675 samples, 1.56%)</title><rect x="33.2862%" y="725" width="1.5644%" height="15" fill="rgb(248,166,6)" fg:x="14362" fg:w="675"/><text x="33.5362%" y="735.50"></text></g><g><title>slimp::Sexp::rw (675 samples, 1.56%)</title><rect x="33.2862%" y="709" width="1.5644%" height="15" fill="rgb(247,89,20)" fg:x="14362" fg:w="675"/><text x="33.5362%" y="719.50"></text></g><g><title>slimp::rw (664 samples, 1.54%)</title><rect x="33.3117%" y="693" width="1.5389%" height="15" fill="rgb(248,130,54)" fg:x="14373" fg:w="664"/><text x="33.5617%" y="703.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 (832 samples, 1.93%)</title><rect x="32.9293%" y="821" width="1.9283%" height="15" fill="rgb(234,196,4)" fg:x="14208" fg:w="832"/><text x="33.1793%" y="831.50">&lt;..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (832 samples, 1.93%)</title><rect x="32.9293%" y="805" width="1.9283%" height="15" fill="rgb(250,143,31)" fg:x="14208" fg:w="832"/><text x="33.1793%" y="815.50">a..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (832 samples, 1.93%)</title><rect x="32.9293%" y="789" width="1.9283%" height="15" fill="rgb(211,110,34)" fg:x="14208" fg:w="832"/><text x="33.1793%" y="799.50">c..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (832 samples, 1.93%)</title><rect x="32.9293%" y="773" width="1.9283%" height="15" fill="rgb(215,124,48)" fg:x="14208" fg:w="832"/><text x="33.1793%" y="783.50">&lt;..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (832 samples, 1.93%)</title><rect x="32.9293%" y="757" width="1.9283%" height="15" fill="rgb(216,46,13)" fg:x="14208" fg:w="832"/><text x="33.1793%" y="767.50">c..</text></g><g><title>__rdl_alloc (6 samples, 0.01%)</title><rect x="34.9433%" y="709" width="0.0139%" height="15" fill="rgb(205,184,25)" fg:x="15077" fg:w="6"/><text x="35.1933%" y="719.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (6 samples, 0.01%)</title><rect x="34.9433%" y="693" width="0.0139%" height="15" fill="rgb(228,1,10)" fg:x="15077" fg:w="6"/><text x="35.1933%" y="703.50"></text></g><g><title>__rust_alloc (5 samples, 0.01%)</title><rect x="34.9572%" y="709" width="0.0116%" height="15" fill="rgb(213,116,27)" fg:x="15083" fg:w="5"/><text x="35.2072%" y="719.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (165 samples, 0.38%)</title><rect x="34.9410%" y="757" width="0.3824%" height="15" fill="rgb(241,95,50)" fg:x="15076" fg:w="165"/><text x="35.1910%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (165 samples, 0.38%)</title><rect x="34.9410%" y="741" width="0.3824%" height="15" fill="rgb(238,48,32)" fg:x="15076" fg:w="165"/><text x="35.1910%" y="751.50"></text></g><g><title>alloc::alloc::alloc (165 samples, 0.38%)</title><rect x="34.9410%" y="725" width="0.3824%" height="15" fill="rgb(235,113,49)" fg:x="15076" fg:w="165"/><text x="35.1910%" y="735.50"></text></g><g><title>malloc (153 samples, 0.35%)</title><rect x="34.9688%" y="709" width="0.3546%" height="15" fill="rgb(205,127,43)" fg:x="15088" fg:w="153"/><text x="35.2188%" y="719.50"></text></g><g><title>[libc.so.6] (126 samples, 0.29%)</title><rect x="35.0314%" y="693" width="0.2920%" height="15" fill="rgb(250,162,2)" fg:x="15115" fg:w="126"/><text x="35.2814%" y="703.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="35.3095%" y="677" width="0.0139%" height="15" fill="rgb(220,13,41)" fg:x="15235" fg:w="6"/><text x="35.5595%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,047 samples, 2.43%)</title><rect x="32.8992%" y="885" width="2.4266%" height="15" fill="rgb(249,221,25)" fg:x="14195" fg:w="1047"/><text x="33.1492%" y="895.50">co..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,047 samples, 2.43%)</title><rect x="32.8992%" y="869" width="2.4266%" height="15" fill="rgb(215,208,19)" fg:x="14195" fg:w="1047"/><text x="33.1492%" y="879.50">&lt;a..</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,044 samples, 2.42%)</title><rect x="32.9061%" y="853" width="2.4196%" height="15" fill="rgb(236,175,2)" fg:x="14198" fg:w="1044"/><text x="33.1561%" y="863.50">&lt;a..</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,042 samples, 2.41%)</title><rect x="32.9107%" y="837" width="2.4150%" height="15" fill="rgb(241,52,2)" fg:x="14200" fg:w="1042"/><text x="33.1607%" y="847.50">&lt;a..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (198 samples, 0.46%)</title><rect x="34.8669%" y="821" width="0.4589%" height="15" fill="rgb(248,140,14)" fg:x="15044" fg:w="198"/><text x="35.1169%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (198 samples, 0.46%)</title><rect x="34.8669%" y="805" width="0.4589%" height="15" fill="rgb(253,22,42)" fg:x="15044" fg:w="198"/><text x="35.1169%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (176 samples, 0.41%)</title><rect x="34.9178%" y="789" width="0.4079%" height="15" fill="rgb(234,61,47)" fg:x="15066" fg:w="176"/><text x="35.1678%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (176 samples, 0.41%)</title><rect x="34.9178%" y="773" width="0.4079%" height="15" fill="rgb(208,226,15)" fg:x="15066" fg:w="176"/><text x="35.1678%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (10 samples, 0.02%)</title><rect x="35.3257%" y="885" width="0.0232%" height="15" fill="rgb(217,221,4)" fg:x="15242" fg:w="10"/><text x="35.5757%" y="895.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (10 samples, 0.02%)</title><rect x="35.3257%" y="869" width="0.0232%" height="15" fill="rgb(212,174,34)" fg:x="15242" fg:w="10"/><text x="35.5757%" y="879.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1,469 samples, 3.40%)</title><rect x="31.9512%" y="949" width="3.4046%" height="15" fill="rgb(253,83,4)" fg:x="13786" fg:w="1469"/><text x="32.2012%" y="959.50">cor..</text></g><g><title>slimp::rw::{{closure}} (1,323 samples, 3.07%)</title><rect x="32.2896%" y="933" width="3.0663%" height="15" fill="rgb(250,195,49)" fg:x="13932" fg:w="1323"/><text x="32.5396%" y="943.50">sli..</text></g><g><title>slimp::Sexp::rw (1,323 samples, 3.07%)</title><rect x="32.2896%" y="917" width="3.0663%" height="15" fill="rgb(241,192,25)" fg:x="13932" fg:w="1323"/><text x="32.5396%" y="927.50">sli..</text></g><g><title>slimp::rw (1,314 samples, 3.05%)</title><rect x="32.3105%" y="901" width="3.0454%" height="15" fill="rgb(208,124,10)" fg:x="13941" fg:w="1314"/><text x="32.5605%" y="911.50">sli..</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,485 samples, 3.44%)</title><rect x="31.9257%" y="1029" width="3.4417%" height="15" fill="rgb(222,33,0)" fg:x="13775" fg:w="1485"/><text x="32.1757%" y="1039.50">&lt;al..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (1,485 samples, 3.44%)</title><rect x="31.9257%" y="1013" width="3.4417%" height="15" fill="rgb(234,209,28)" fg:x="13775" fg:w="1485"/><text x="32.1757%" y="1023.50">all..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1,485 samples, 3.44%)</title><rect x="31.9257%" y="997" width="3.4417%" height="15" fill="rgb(224,11,23)" fg:x="13775" fg:w="1485"/><text x="32.1757%" y="1007.50">cor..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1,485 samples, 3.44%)</title><rect x="31.9257%" y="981" width="3.4417%" height="15" fill="rgb(232,99,1)" fg:x="13775" fg:w="1485"/><text x="32.1757%" y="991.50">&lt;co..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (1,485 samples, 3.44%)</title><rect x="31.9257%" y="965" width="3.4417%" height="15" fill="rgb(237,95,45)" fg:x="13775" fg:w="1485"/><text x="32.1757%" y="975.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;core::iter::adapters::map::map_fold&lt;&amp;slimp::Sexp,slimp::Sexp,(),slimp::rw::{{closure}},core::iter::traits::iterator::Iterator::for_each::call&lt;slimp::Sexp,alloc::vec::Vec&lt;slimp::Sexp&gt;::extend_trusted&lt;core::iter::adapters::map::Map&lt;core::slice::iter::Iter&lt;slimp::Sexp&gt;,slimp::rw::{{closure}}&gt;&gt;::{{closure}}&gt;::{{closure}}&gt;::{{closure}}&gt; (5 samples, 0.01%)</title><rect x="35.3559%" y="949" width="0.0116%" height="15" fill="rgb(208,109,11)" fg:x="15255" fg:w="5"/><text x="35.6059%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::iter::traits::iterator::Iterator::for_each::call&lt;slimp::Sexp,alloc::vec::Vec&lt;slimp::Sexp&gt;::extend_trusted&lt;core::iter::adapters::map::Map&lt;core::slice::iter::Iter&lt;slimp::Sexp&gt;,slimp::rw::{{closure}}&gt;&gt;::{{closure}}&gt;::{{closure}}&gt; (5 samples, 0.01%)</title><rect x="35.3559%" y="933" width="0.0116%" height="15" fill="rgb(216,190,48)" fg:x="15255" fg:w="5"/><text x="35.6059%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;::extend_trusted&lt;core::iter::adapters::map::Map&lt;core::slice::iter::Iter&lt;slimp::Sexp&gt;,slimp::rw::{{closure}}&gt;&gt;::{{closure}}&gt; (5 samples, 0.01%)</title><rect x="35.3559%" y="917" width="0.0116%" height="15" fill="rgb(251,171,36)" fg:x="15255" fg:w="5"/><text x="35.6059%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::set_len_on_drop::SetLenOnDrop&gt; (5 samples, 0.01%)</title><rect x="35.3559%" y="901" width="0.0116%" height="15" fill="rgb(230,62,22)" fg:x="15255" fg:w="5"/><text x="35.6059%" y="911.50"></text></g><g><title>&lt;alloc::vec::set_len_on_drop::SetLenOnDrop as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="35.3559%" y="885" width="0.0116%" height="15" fill="rgb(225,114,35)" fg:x="15255" fg:w="5"/><text x="35.6059%" y="895.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (5 samples, 0.01%)</title><rect x="35.3675%" y="1029" width="0.0116%" height="15" fill="rgb(215,118,42)" fg:x="15260" fg:w="5"/><text x="35.6175%" y="1039.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (5 samples, 0.01%)</title><rect x="35.3675%" y="1013" width="0.0116%" height="15" fill="rgb(243,119,21)" fg:x="15260" fg:w="5"/><text x="35.6175%" y="1023.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::sub_ptr (5 samples, 0.01%)</title><rect x="35.3675%" y="997" width="0.0116%" height="15" fill="rgb(252,177,53)" fg:x="15260" fg:w="5"/><text x="35.6175%" y="1007.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (173 samples, 0.40%)</title><rect x="35.4671%" y="965" width="0.4010%" height="15" fill="rgb(237,209,29)" fg:x="15303" fg:w="173"/><text x="35.7171%" y="975.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (173 samples, 0.40%)</title><rect x="35.4671%" y="949" width="0.4010%" height="15" fill="rgb(212,65,23)" fg:x="15303" fg:w="173"/><text x="35.7171%" y="959.50"></text></g><g><title>alloc::alloc::alloc (173 samples, 0.40%)</title><rect x="35.4671%" y="933" width="0.4010%" height="15" fill="rgb(230,222,46)" fg:x="15303" fg:w="173"/><text x="35.7171%" y="943.50"></text></g><g><title>malloc (164 samples, 0.38%)</title><rect x="35.4880%" y="917" width="0.3801%" height="15" fill="rgb(215,135,32)" fg:x="15312" fg:w="164"/><text x="35.7380%" y="927.50"></text></g><g><title>[libc.so.6] (124 samples, 0.29%)</title><rect x="35.5807%" y="901" width="0.2874%" height="15" fill="rgb(246,101,22)" fg:x="15352" fg:w="124"/><text x="35.8307%" y="911.50"></text></g><g><title>[libc.so.6] (5 samples, 0.01%)</title><rect x="35.8565%" y="885" width="0.0116%" height="15" fill="rgb(206,107,13)" fg:x="15471" fg:w="5"/><text x="36.1065%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,725 samples, 4.00%)</title><rect x="31.8748%" y="1093" width="3.9980%" height="15" fill="rgb(250,100,44)" fg:x="13753" fg:w="1725"/><text x="32.1248%" y="1103.50">core..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,725 samples, 4.00%)</title><rect x="31.8748%" y="1077" width="3.9980%" height="15" fill="rgb(231,147,38)" fg:x="13753" fg:w="1725"/><text x="32.1248%" y="1087.50">&lt;all..</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,717 samples, 3.98%)</title><rect x="31.8933%" y="1061" width="3.9794%" height="15" fill="rgb(229,8,40)" fg:x="13761" fg:w="1717"/><text x="32.1433%" y="1071.50">&lt;all..</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,715 samples, 3.97%)</title><rect x="31.8979%" y="1045" width="3.9748%" height="15" fill="rgb(221,135,30)" fg:x="13763" fg:w="1715"/><text x="32.1479%" y="1055.50">&lt;all..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (213 samples, 0.49%)</title><rect x="35.3791%" y="1029" width="0.4937%" height="15" fill="rgb(249,193,18)" fg:x="15265" fg:w="213"/><text x="35.6291%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (213 samples, 0.49%)</title><rect x="35.3791%" y="1013" width="0.4937%" height="15" fill="rgb(209,133,39)" fg:x="15265" fg:w="213"/><text x="35.6291%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (188 samples, 0.44%)</title><rect x="35.4370%" y="997" width="0.4357%" height="15" fill="rgb(232,100,14)" fg:x="15290" fg:w="188"/><text x="35.6870%" y="1007.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (188 samples, 0.44%)</title><rect x="35.4370%" y="981" width="0.4357%" height="15" fill="rgb(224,185,1)" fg:x="15290" fg:w="188"/><text x="35.6870%" y="991.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2,091 samples, 4.85%)</title><rect x="31.0473%" y="1157" width="4.8462%" height="15" fill="rgb(223,139,8)" fg:x="13396" fg:w="2091"/><text x="31.2973%" y="1167.50">core::..</text></g><g><title>slimp::rw::{{closure}} (1,964 samples, 4.55%)</title><rect x="31.3417%" y="1141" width="4.5519%" height="15" fill="rgb(232,213,38)" fg:x="13523" fg:w="1964"/><text x="31.5917%" y="1151.50">slimp..</text></g><g><title>slimp::Sexp::rw (1,964 samples, 4.55%)</title><rect x="31.3417%" y="1125" width="4.5519%" height="15" fill="rgb(207,94,22)" fg:x="13523" fg:w="1964"/><text x="31.5917%" y="1135.50">slimp..</text></g><g><title>slimp::rw (1,954 samples, 4.53%)</title><rect x="31.3649%" y="1109" width="4.5287%" height="15" fill="rgb(219,183,54)" fg:x="13533" fg:w="1954"/><text x="31.6149%" y="1119.50">slimp..</text></g><g><title>core::iter::traits::iterator::Iterator::map (9 samples, 0.02%)</title><rect x="35.8727%" y="1093" width="0.0209%" height="15" fill="rgb(216,185,54)" fg:x="15478" fg:w="9"/><text x="36.1227%" y="1103.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (9 samples, 0.02%)</title><rect x="35.8727%" y="1077" width="0.0209%" height="15" fill="rgb(254,217,39)" fg:x="15478" fg:w="9"/><text x="36.1227%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (2,099 samples, 4.86%)</title><rect x="31.0334%" y="1237" width="4.8648%" height="15" fill="rgb(240,178,23)" fg:x="13390" fg:w="2099"/><text x="31.2834%" y="1247.50">&lt;alloc..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (2,099 samples, 4.86%)</title><rect x="31.0334%" y="1221" width="4.8648%" height="15" fill="rgb(218,11,47)" fg:x="13390" fg:w="2099"/><text x="31.2834%" y="1231.50">alloc:..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2,099 samples, 4.86%)</title><rect x="31.0334%" y="1205" width="4.8648%" height="15" fill="rgb(218,51,51)" fg:x="13390" fg:w="2099"/><text x="31.2834%" y="1215.50">core::..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2,099 samples, 4.86%)</title><rect x="31.0334%" y="1189" width="4.8648%" height="15" fill="rgb(238,126,27)" fg:x="13390" fg:w="2099"/><text x="31.2834%" y="1199.50">&lt;core:..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (2,099 samples, 4.86%)</title><rect x="31.0334%" y="1173" width="4.8648%" height="15" fill="rgb(249,202,22)" fg:x="13390" fg:w="2099"/><text x="31.2834%" y="1183.50">core::..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (9 samples, 0.02%)</title><rect x="35.8982%" y="1237" width="0.0209%" height="15" fill="rgb(254,195,49)" fg:x="15489" fg:w="9"/><text x="36.1482%" y="1247.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (9 samples, 0.02%)</title><rect x="35.8982%" y="1221" width="0.0209%" height="15" fill="rgb(208,123,14)" fg:x="15489" fg:w="9"/><text x="36.1482%" y="1231.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::sub_ptr (9 samples, 0.02%)</title><rect x="35.8982%" y="1205" width="0.0209%" height="15" fill="rgb(224,200,8)" fg:x="15489" fg:w="9"/><text x="36.1482%" y="1215.50"></text></g><g><title>__rdl_alloc (6 samples, 0.01%)</title><rect x="36.0025%" y="1125" width="0.0139%" height="15" fill="rgb(217,61,36)" fg:x="15534" fg:w="6"/><text x="36.2525%" y="1135.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (6 samples, 0.01%)</title><rect x="36.0025%" y="1109" width="0.0139%" height="15" fill="rgb(206,35,45)" fg:x="15534" fg:w="6"/><text x="36.2525%" y="1119.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (180 samples, 0.42%)</title><rect x="35.9932%" y="1173" width="0.4172%" height="15" fill="rgb(217,65,33)" fg:x="15530" fg:w="180"/><text x="36.2432%" y="1183.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (180 samples, 0.42%)</title><rect x="35.9932%" y="1157" width="0.4172%" height="15" fill="rgb(222,158,48)" fg:x="15530" fg:w="180"/><text x="36.2432%" y="1167.50"></text></g><g><title>alloc::alloc::alloc (180 samples, 0.42%)</title><rect x="35.9932%" y="1141" width="0.4172%" height="15" fill="rgb(254,2,54)" fg:x="15530" fg:w="180"/><text x="36.2432%" y="1151.50"></text></g><g><title>malloc (168 samples, 0.39%)</title><rect x="36.0210%" y="1125" width="0.3894%" height="15" fill="rgb(250,143,38)" fg:x="15542" fg:w="168"/><text x="36.2710%" y="1135.50"></text></g><g><title>[libc.so.6] (130 samples, 0.30%)</title><rect x="36.1091%" y="1109" width="0.3013%" height="15" fill="rgb(248,25,0)" fg:x="15580" fg:w="130"/><text x="36.3591%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2,339 samples, 5.42%)</title><rect x="31.0010%" y="1301" width="5.4210%" height="15" fill="rgb(206,152,27)" fg:x="13376" fg:w="2339"/><text x="31.2510%" y="1311.50">core::i..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2,339 samples, 5.42%)</title><rect x="31.0010%" y="1285" width="5.4210%" height="15" fill="rgb(240,77,30)" fg:x="13376" fg:w="2339"/><text x="31.2510%" y="1295.50">&lt;alloc:..</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 (2,337 samples, 5.42%)</title><rect x="31.0056%" y="1269" width="5.4164%" height="15" fill="rgb(231,5,3)" fg:x="13378" fg:w="2337"/><text x="31.2556%" y="1279.50">&lt;alloc:..</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 (2,336 samples, 5.41%)</title><rect x="31.0079%" y="1253" width="5.4140%" height="15" fill="rgb(207,226,32)" fg:x="13379" fg:w="2336"/><text x="31.2579%" y="1263.50">&lt;alloc:..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (217 samples, 0.50%)</title><rect x="35.9191%" y="1237" width="0.5029%" height="15" fill="rgb(222,207,47)" fg:x="15498" fg:w="217"/><text x="36.1691%" y="1247.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (217 samples, 0.50%)</title><rect x="35.9191%" y="1221" width="0.5029%" height="15" fill="rgb(229,115,45)" fg:x="15498" fg:w="217"/><text x="36.1691%" y="1231.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (194 samples, 0.45%)</title><rect x="35.9724%" y="1205" width="0.4496%" height="15" fill="rgb(224,191,6)" fg:x="15521" fg:w="194"/><text x="36.2224%" y="1215.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (194 samples, 0.45%)</title><rect x="35.9724%" y="1189" width="0.4496%" height="15" fill="rgb(230,227,24)" fg:x="15521" fg:w="194"/><text x="36.2224%" y="1199.50"></text></g><g><title>core::alloc::layout::Layout::array (5 samples, 0.01%)</title><rect x="36.4104%" y="1173" width="0.0116%" height="15" fill="rgb(228,80,19)" fg:x="15710" fg:w="5"/><text x="36.6604%" y="1183.50"></text></g><g><title>core::alloc::layout::Layout::array::inner (5 samples, 0.01%)</title><rect x="36.4104%" y="1157" width="0.0116%" height="15" fill="rgb(247,229,0)" fg:x="15710" fg:w="5"/><text x="36.6604%" y="1167.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (5 samples, 0.01%)</title><rect x="36.4220%" y="1301" width="0.0116%" height="15" fill="rgb(237,194,15)" fg:x="15715" fg:w="5"/><text x="36.6720%" y="1311.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (5 samples, 0.01%)</title><rect x="36.4220%" y="1285" width="0.0116%" height="15" fill="rgb(219,203,20)" fg:x="15715" fg:w="5"/><text x="36.6720%" y="1295.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2,455 samples, 5.69%)</title><rect x="30.7530%" y="1365" width="5.6899%" height="15" fill="rgb(234,128,8)" fg:x="13269" fg:w="2455"/><text x="31.0030%" y="1375.50">core::i..</text></g><g><title>slimp::rw::{{closure}} (2,411 samples, 5.59%)</title><rect x="30.8550%" y="1349" width="5.5879%" height="15" fill="rgb(248,202,8)" fg:x="13313" fg:w="2411"/><text x="31.1050%" y="1359.50">slimp::..</text></g><g><title>slimp::Sexp::rw (2,411 samples, 5.59%)</title><rect x="30.8550%" y="1333" width="5.5879%" height="15" fill="rgb(206,104,37)" fg:x="13313" fg:w="2411"/><text x="31.1050%" y="1343.50">slimp::..</text></g><g><title>slimp::rw (2,409 samples, 5.58%)</title><rect x="30.8596%" y="1317" width="5.5832%" height="15" fill="rgb(223,8,27)" fg:x="13315" fg:w="2409"/><text x="31.1096%" y="1327.50">slimp::..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (2,462 samples, 5.71%)</title><rect x="30.7414%" y="1445" width="5.7061%" height="15" fill="rgb(216,217,28)" fg:x="13264" fg:w="2462"/><text x="30.9914%" y="1455.50">&lt;alloc:..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (2,462 samples, 5.71%)</title><rect x="30.7414%" y="1429" width="5.7061%" height="15" fill="rgb(249,199,1)" fg:x="13264" fg:w="2462"/><text x="30.9914%" y="1439.50">alloc::..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2,462 samples, 5.71%)</title><rect x="30.7414%" y="1413" width="5.7061%" height="15" fill="rgb(240,85,17)" fg:x="13264" fg:w="2462"/><text x="30.9914%" y="1423.50">core::i..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2,462 samples, 5.71%)</title><rect x="30.7414%" y="1397" width="5.7061%" height="15" fill="rgb(206,108,45)" fg:x="13264" fg:w="2462"/><text x="30.9914%" y="1407.50">&lt;core::..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (2,462 samples, 5.71%)</title><rect x="30.7414%" y="1381" width="5.7061%" height="15" fill="rgb(245,210,41)" fg:x="13264" fg:w="2462"/><text x="30.9914%" y="1391.50">core::i..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (163 samples, 0.38%)</title><rect x="36.5101%" y="1381" width="0.3778%" height="15" fill="rgb(206,13,37)" fg:x="15753" fg:w="163"/><text x="36.7601%" y="1391.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (163 samples, 0.38%)</title><rect x="36.5101%" y="1365" width="0.3778%" height="15" fill="rgb(250,61,18)" fg:x="15753" fg:w="163"/><text x="36.7601%" y="1375.50"></text></g><g><title>alloc::alloc::alloc (163 samples, 0.38%)</title><rect x="36.5101%" y="1349" width="0.3778%" height="15" fill="rgb(235,172,48)" fg:x="15753" fg:w="163"/><text x="36.7601%" y="1359.50"></text></g><g><title>malloc (161 samples, 0.37%)</title><rect x="36.5147%" y="1333" width="0.3731%" height="15" fill="rgb(249,201,17)" fg:x="15755" fg:w="161"/><text x="36.7647%" y="1343.50"></text></g><g><title>[libc.so.6] (144 samples, 0.33%)</title><rect x="36.5541%" y="1317" width="0.3337%" height="15" fill="rgb(219,208,6)" fg:x="15772" fg:w="144"/><text x="36.8041%" y="1327.50"></text></g><g><title>[libc.so.6] (10 samples, 0.02%)</title><rect x="36.8647%" y="1301" width="0.0232%" height="15" fill="rgb(248,31,23)" fg:x="15906" fg:w="10"/><text x="37.1147%" y="1311.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2,656 samples, 6.16%)</title><rect x="30.7345%" y="1509" width="6.1557%" height="15" fill="rgb(245,15,42)" fg:x="13261" fg:w="2656"/><text x="30.9845%" y="1519.50">core::it..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2,656 samples, 6.16%)</title><rect x="30.7345%" y="1493" width="6.1557%" height="15" fill="rgb(222,217,39)" fg:x="13261" fg:w="2656"/><text x="30.9845%" y="1503.50">&lt;alloc::..</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 (2,654 samples, 6.15%)</title><rect x="30.7391%" y="1477" width="6.1511%" height="15" fill="rgb(210,219,27)" fg:x="13263" fg:w="2654"/><text x="30.9891%" y="1487.50">&lt;alloc::..</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 (2,654 samples, 6.15%)</title><rect x="30.7391%" y="1461" width="6.1511%" height="15" fill="rgb(252,166,36)" fg:x="13263" fg:w="2654"/><text x="30.9891%" y="1471.50">&lt;alloc::..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (187 samples, 0.43%)</title><rect x="36.4568%" y="1445" width="0.4334%" height="15" fill="rgb(245,132,34)" fg:x="15730" fg:w="187"/><text x="36.7068%" y="1455.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (187 samples, 0.43%)</title><rect x="36.4568%" y="1429" width="0.4334%" height="15" fill="rgb(236,54,3)" fg:x="15730" fg:w="187"/><text x="36.7068%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (168 samples, 0.39%)</title><rect x="36.5008%" y="1413" width="0.3894%" height="15" fill="rgb(241,173,43)" fg:x="15749" fg:w="168"/><text x="36.7508%" y="1423.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (168 samples, 0.39%)</title><rect x="36.5008%" y="1397" width="0.3894%" height="15" fill="rgb(215,190,9)" fg:x="15749" fg:w="168"/><text x="36.7508%" y="1407.50"></text></g><g><title>slimp::Rule::concrify (2,826 samples, 6.55%)</title><rect x="30.3497%" y="1541" width="6.5497%" height="15" fill="rgb(242,101,16)" fg:x="13095" fg:w="2826"/><text x="30.5997%" y="1551.50">slimp::Ru..</text></g><g><title>slimp::rw (2,669 samples, 6.19%)</title><rect x="30.7136%" y="1525" width="6.1858%" height="15" fill="rgb(223,190,21)" fg:x="13252" fg:w="2669"/><text x="30.9636%" y="1535.50">slimp::rw</text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="36.9226%" y="1413" width="0.0209%" height="15" fill="rgb(215,228,25)" fg:x="15931" fg:w="9"/><text x="37.1726%" y="1423.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="36.9180%" y="1461" width="0.0417%" height="15" fill="rgb(225,36,22)" fg:x="15929" fg:w="18"/><text x="37.1680%" y="1471.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="36.9180%" y="1445" width="0.0417%" height="15" fill="rgb(251,106,46)" fg:x="15929" fg:w="18"/><text x="37.1680%" y="1455.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="36.9180%" y="1429" width="0.0417%" height="15" fill="rgb(208,90,1)" fg:x="15929" fg:w="18"/><text x="37.1680%" y="1439.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (7 samples, 0.02%)</title><rect x="36.9435%" y="1413" width="0.0162%" height="15" fill="rgb(243,10,4)" fg:x="15940" fg:w="7"/><text x="37.1935%" y="1423.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (5 samples, 0.01%)</title><rect x="36.9597%" y="1461" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="15947" fg:w="5"/><text x="37.2097%" y="1471.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="36.9921%" y="1349" width="0.0209%" height="15" fill="rgb(231,220,49)" fg:x="15961" fg:w="9"/><text x="37.2421%" y="1359.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (23 samples, 0.05%)</title><rect x="37.0130%" y="1349" width="0.0533%" height="15" fill="rgb(237,96,20)" fg:x="15970" fg:w="23"/><text x="37.2630%" y="1359.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (21 samples, 0.05%)</title><rect x="37.0176%" y="1333" width="0.0487%" height="15" fill="rgb(239,229,30)" fg:x="15972" fg:w="21"/><text x="37.2676%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_u32 (17 samples, 0.04%)</title><rect x="37.0269%" y="1317" width="0.0394%" height="15" fill="rgb(219,65,33)" fg:x="15976" fg:w="17"/><text x="37.2769%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="37.0269%" y="1301" width="0.0394%" height="15" fill="rgb(243,134,7)" fg:x="15976" fg:w="17"/><text x="37.2769%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="37.0269%" y="1285" width="0.0394%" height="15" fill="rgb(216,177,54)" fg:x="15976" fg:w="17"/><text x="37.2769%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="37.0269%" y="1269" width="0.0394%" height="15" fill="rgb(211,160,20)" fg:x="15976" fg:w="17"/><text x="37.2769%" y="1279.50"></text></g><g><title>core::hash::sip::u8to64_le (6 samples, 0.01%)</title><rect x="37.0524%" y="1253" width="0.0139%" height="15" fill="rgb(239,85,39)" fg:x="15987" fg:w="6"/><text x="37.3024%" y="1263.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="37.1127%" y="1269" width="0.0301%" height="15" fill="rgb(232,125,22)" fg:x="16013" fg:w="13"/><text x="37.3627%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.03%)</title><rect x="37.2146%" y="1173" width="0.0278%" height="15" fill="rgb(244,57,34)" fg:x="16057" fg:w="12"/><text x="37.4646%" y="1183.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (64 samples, 0.15%)</title><rect x="37.1428%" y="1269" width="0.1483%" height="15" fill="rgb(214,203,32)" fg:x="16026" fg:w="64"/><text x="37.3928%" y="1279.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (57 samples, 0.13%)</title><rect x="37.1590%" y="1253" width="0.1321%" height="15" fill="rgb(207,58,43)" fg:x="16033" fg:w="57"/><text x="37.4090%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_u32 (53 samples, 0.12%)</title><rect x="37.1683%" y="1237" width="0.1228%" height="15" fill="rgb(215,193,15)" fg:x="16037" fg:w="53"/><text x="37.4183%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="37.1683%" y="1221" width="0.1228%" height="15" fill="rgb(232,15,44)" fg:x="16037" fg:w="53"/><text x="37.4183%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="37.1683%" y="1205" width="0.1228%" height="15" fill="rgb(212,3,48)" fg:x="16037" fg:w="53"/><text x="37.4183%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="37.1683%" y="1189" width="0.1228%" height="15" fill="rgb(218,128,7)" fg:x="16037" fg:w="53"/><text x="37.4183%" y="1199.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="37.2517%" y="1173" width="0.0394%" height="15" fill="rgb(226,216,39)" fg:x="16073" fg:w="17"/><text x="37.5017%" y="1183.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (16 samples, 0.04%)</title><rect x="37.3699%" y="1189" width="0.0371%" height="15" fill="rgb(243,47,51)" fg:x="16124" fg:w="16"/><text x="37.6199%" y="1199.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (5 samples, 0.01%)</title><rect x="37.3954%" y="1173" width="0.0116%" height="15" fill="rgb(241,183,40)" fg:x="16135" fg:w="5"/><text x="37.6454%" y="1183.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (5 samples, 0.01%)</title><rect x="37.3954%" y="1157" width="0.0116%" height="15" fill="rgb(231,217,32)" fg:x="16135" fg:w="5"/><text x="37.6454%" y="1167.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (5 samples, 0.01%)</title><rect x="37.3954%" y="1141" width="0.0116%" height="15" fill="rgb(229,61,38)" fg:x="16135" fg:w="5"/><text x="37.6454%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="37.5368%" y="1093" width="0.0579%" height="15" fill="rgb(225,210,5)" fg:x="16196" fg:w="25"/><text x="37.7868%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="37.5692%" y="1077" width="0.0255%" height="15" fill="rgb(231,79,45)" fg:x="16210" fg:w="11"/><text x="37.8192%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (109 samples, 0.25%)</title><rect x="37.4441%" y="1141" width="0.2526%" height="15" fill="rgb(224,100,7)" fg:x="16156" fg:w="109"/><text x="37.6941%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (109 samples, 0.25%)</title><rect x="37.4441%" y="1125" width="0.2526%" height="15" fill="rgb(241,198,18)" fg:x="16156" fg:w="109"/><text x="37.6941%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (109 samples, 0.25%)</title><rect x="37.4441%" y="1109" width="0.2526%" height="15" fill="rgb(252,97,53)" fg:x="16156" fg:w="109"/><text x="37.6941%" y="1119.50"></text></g><g><title>core::hash::sip::u8to64_le (42 samples, 0.10%)</title><rect x="37.5994%" y="1093" width="0.0973%" height="15" fill="rgb(220,88,7)" fg:x="16223" fg:w="42"/><text x="37.8494%" y="1103.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (127 samples, 0.29%)</title><rect x="37.4070%" y="1189" width="0.2943%" height="15" fill="rgb(213,176,14)" fg:x="16140" fg:w="127"/><text x="37.6570%" y="1199.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (114 samples, 0.26%)</title><rect x="37.4371%" y="1173" width="0.2642%" height="15" fill="rgb(246,73,7)" fg:x="16153" fg:w="114"/><text x="37.6871%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_u32 (111 samples, 0.26%)</title><rect x="37.4441%" y="1157" width="0.2573%" height="15" fill="rgb(245,64,36)" fg:x="16156" fg:w="111"/><text x="37.6941%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.01%)</title><rect x="37.8242%" y="1109" width="0.0139%" height="15" fill="rgb(245,80,10)" fg:x="16320" fg:w="6"/><text x="38.0742%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="37.9609%" y="997" width="0.0209%" height="15" fill="rgb(232,107,50)" fg:x="16379" fg:w="9"/><text x="38.2109%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (30 samples, 0.07%)</title><rect x="37.9377%" y="1013" width="0.0695%" height="15" fill="rgb(253,3,0)" fg:x="16369" fg:w="30"/><text x="38.1877%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="37.9818%" y="997" width="0.0255%" height="15" fill="rgb(212,99,53)" fg:x="16388" fg:w="11"/><text x="38.2318%" y="1007.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (119 samples, 0.28%)</title><rect x="37.8381%" y="1109" width="0.2758%" height="15" fill="rgb(249,111,54)" fg:x="16326" fg:w="119"/><text x="38.0881%" y="1119.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (115 samples, 0.27%)</title><rect x="37.8474%" y="1093" width="0.2665%" height="15" fill="rgb(249,55,30)" fg:x="16330" fg:w="115"/><text x="38.0974%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_u32 (113 samples, 0.26%)</title><rect x="37.8520%" y="1077" width="0.2619%" height="15" fill="rgb(237,47,42)" fg:x="16332" fg:w="113"/><text x="38.1020%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (113 samples, 0.26%)</title><rect x="37.8520%" y="1061" width="0.2619%" height="15" fill="rgb(211,20,18)" fg:x="16332" fg:w="113"/><text x="38.1020%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (113 samples, 0.26%)</title><rect x="37.8520%" y="1045" width="0.2619%" height="15" fill="rgb(231,203,46)" fg:x="16332" fg:w="113"/><text x="38.1020%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (113 samples, 0.26%)</title><rect x="37.8520%" y="1029" width="0.2619%" height="15" fill="rgb(237,142,3)" fg:x="16332" fg:w="113"/><text x="38.1020%" y="1039.50"></text></g><g><title>core::hash::sip::u8to64_le (43 samples, 0.10%)</title><rect x="38.0142%" y="1013" width="0.0997%" height="15" fill="rgb(241,107,1)" fg:x="16402" fg:w="43"/><text x="38.2642%" y="1023.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (12 samples, 0.03%)</title><rect x="38.2112%" y="1029" width="0.0278%" height="15" fill="rgb(229,83,13)" fg:x="16487" fg:w="12"/><text x="38.4612%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (31 samples, 0.07%)</title><rect x="38.3433%" y="933" width="0.0718%" height="15" fill="rgb(241,91,40)" fg:x="16544" fg:w="31"/><text x="38.5933%" y="943.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="38.3897%" y="917" width="0.0255%" height="15" fill="rgb(225,3,45)" fg:x="16564" fg:w="11"/><text x="38.6397%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="38.2576%" y="981" width="0.2271%" height="15" fill="rgb(244,223,14)" fg:x="16507" fg:w="98"/><text x="38.5076%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="38.2576%" y="965" width="0.2271%" height="15" fill="rgb(224,124,37)" fg:x="16507" fg:w="98"/><text x="38.5076%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="38.2576%" y="949" width="0.2271%" height="15" fill="rgb(251,171,30)" fg:x="16507" fg:w="98"/><text x="38.5076%" y="959.50"></text></g><g><title>core::hash::sip::u8to64_le (27 samples, 0.06%)</title><rect x="38.4221%" y="933" width="0.0626%" height="15" fill="rgb(236,46,54)" fg:x="16578" fg:w="27"/><text x="38.6721%" y="943.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (108 samples, 0.25%)</title><rect x="38.2390%" y="1029" width="0.2503%" height="15" fill="rgb(245,213,5)" fg:x="16499" fg:w="108"/><text x="38.4890%" y="1039.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (104 samples, 0.24%)</title><rect x="38.2483%" y="1013" width="0.2410%" height="15" fill="rgb(230,144,27)" fg:x="16503" fg:w="104"/><text x="38.4983%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_u32 (100 samples, 0.23%)</title><rect x="38.2576%" y="997" width="0.2318%" height="15" fill="rgb(220,86,6)" fg:x="16507" fg:w="100"/><text x="38.5076%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (21 samples, 0.05%)</title><rect x="38.6493%" y="853" width="0.0487%" height="15" fill="rgb(240,20,13)" fg:x="16676" fg:w="21"/><text x="38.8993%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="38.6748%" y="837" width="0.0232%" height="15" fill="rgb(217,89,34)" fg:x="16687" fg:w="10"/><text x="38.9248%" y="847.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (83 samples, 0.19%)</title><rect x="38.5589%" y="949" width="0.1924%" height="15" fill="rgb(229,13,5)" fg:x="16637" fg:w="83"/><text x="38.8089%" y="959.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (73 samples, 0.17%)</title><rect x="38.5821%" y="933" width="0.1692%" height="15" fill="rgb(244,67,35)" fg:x="16647" fg:w="73"/><text x="38.8321%" y="943.50"></text></g><g><title>core::hash::Hasher::write_u32 (69 samples, 0.16%)</title><rect x="38.5913%" y="917" width="0.1599%" height="15" fill="rgb(221,40,2)" fg:x="16651" fg:w="69"/><text x="38.8413%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (69 samples, 0.16%)</title><rect x="38.5913%" y="901" width="0.1599%" height="15" fill="rgb(237,157,21)" fg:x="16651" fg:w="69"/><text x="38.8413%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (69 samples, 0.16%)</title><rect x="38.5913%" y="885" width="0.1599%" height="15" fill="rgb(222,94,11)" fg:x="16651" fg:w="69"/><text x="38.8413%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (69 samples, 0.16%)</title><rect x="38.5913%" y="869" width="0.1599%" height="15" fill="rgb(249,113,6)" fg:x="16651" fg:w="69"/><text x="38.8413%" y="879.50"></text></g><g><title>core::hash::sip::u8to64_le (22 samples, 0.05%)</title><rect x="38.7003%" y="853" width="0.0510%" height="15" fill="rgb(238,137,36)" fg:x="16698" fg:w="22"/><text x="38.9503%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="38.8440%" y="773" width="0.0209%" height="15" fill="rgb(210,102,26)" fg:x="16760" fg:w="9"/><text x="39.0940%" y="783.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (35 samples, 0.08%)</title><rect x="38.8115%" y="869" width="0.0811%" height="15" fill="rgb(218,30,30)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="879.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (35 samples, 0.08%)</title><rect x="38.8115%" y="853" width="0.0811%" height="15" fill="rgb(214,67,26)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="863.50"></text></g><g><title>core::hash::Hasher::write_u32 (35 samples, 0.08%)</title><rect x="38.8115%" y="837" width="0.0811%" height="15" fill="rgb(251,9,53)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="847.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="38.8115%" y="821" width="0.0811%" height="15" fill="rgb(228,204,25)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="831.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="38.8115%" y="805" width="0.0811%" height="15" fill="rgb(207,153,8)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="38.8115%" y="789" width="0.0811%" height="15" fill="rgb(242,9,16)" fg:x="16746" fg:w="35"/><text x="39.0615%" y="799.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="38.8694%" y="773" width="0.0232%" height="15" fill="rgb(217,211,10)" fg:x="16771" fg:w="10"/><text x="39.1194%" y="783.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="38.9390%" y="741" width="0.0185%" height="15" fill="rgb(219,228,52)" fg:x="16801" fg:w="8"/><text x="39.1890%" y="751.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="38.9367%" y="757" width="0.0301%" height="15" fill="rgb(231,92,29)" fg:x="16800" fg:w="13"/><text x="39.1867%" y="767.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="38.9181%" y="805" width="0.0579%" height="15" fill="rgb(232,8,23)" fg:x="16792" fg:w="25"/><text x="39.1681%" y="815.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="38.9181%" y="789" width="0.0579%" height="15" fill="rgb(216,211,34)" fg:x="16792" fg:w="25"/><text x="39.1681%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="38.9181%" y="773" width="0.0579%" height="15" fill="rgb(236,151,0)" fg:x="16792" fg:w="25"/><text x="39.1681%" y="783.50"></text></g><g><title>core::hash::Hash::hash_slice (81 samples, 0.19%)</title><rect x="38.7906%" y="901" width="0.1877%" height="15" fill="rgb(209,168,3)" fg:x="16737" fg:w="81"/><text x="39.0406%" y="911.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (81 samples, 0.19%)</title><rect x="38.7906%" y="885" width="0.1877%" height="15" fill="rgb(208,129,28)" fg:x="16737" fg:w="81"/><text x="39.0406%" y="895.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (37 samples, 0.09%)</title><rect x="38.8926%" y="869" width="0.0858%" height="15" fill="rgb(229,78,22)" fg:x="16781" fg:w="37"/><text x="39.1426%" y="879.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (28 samples, 0.06%)</title><rect x="38.9135%" y="853" width="0.0649%" height="15" fill="rgb(228,187,13)" fg:x="16790" fg:w="28"/><text x="39.1635%" y="863.50"></text></g><g><title>core::hash::Hasher::write_isize (28 samples, 0.06%)</title><rect x="38.9135%" y="837" width="0.0649%" height="15" fill="rgb(240,119,24)" fg:x="16790" fg:w="28"/><text x="39.1635%" y="847.50"></text></g><g><title>core::hash::Hasher::write_usize (28 samples, 0.06%)</title><rect x="38.9135%" y="821" width="0.0649%" height="15" fill="rgb(209,194,42)" fg:x="16790" fg:w="28"/><text x="39.1635%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (96 samples, 0.22%)</title><rect x="38.7906%" y="933" width="0.2225%" height="15" fill="rgb(247,200,46)" fg:x="16737" fg:w="96"/><text x="39.0406%" y="943.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (96 samples, 0.22%)</title><rect x="38.7906%" y="917" width="0.2225%" height="15" fill="rgb(218,76,16)" fg:x="16737" fg:w="96"/><text x="39.0406%" y="927.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (15 samples, 0.03%)</title><rect x="38.9784%" y="901" width="0.0348%" height="15" fill="rgb(225,21,48)" fg:x="16818" fg:w="15"/><text x="39.2284%" y="911.50"></text></g><g><title>core::hash::Hasher::write_usize (14 samples, 0.03%)</title><rect x="38.9807%" y="885" width="0.0324%" height="15" fill="rgb(239,223,50)" fg:x="16819" fg:w="14"/><text x="39.2307%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="38.9830%" y="869" width="0.0301%" height="15" fill="rgb(244,45,21)" fg:x="16820" fg:w="13"/><text x="39.2330%" y="879.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="38.9830%" y="853" width="0.0301%" height="15" fill="rgb(232,33,43)" fg:x="16820" fg:w="13"/><text x="39.2330%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="38.9830%" y="837" width="0.0301%" height="15" fill="rgb(209,8,3)" fg:x="16820" fg:w="13"/><text x="39.2330%" y="847.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="39.0016%" y="821" width="0.0116%" height="15" fill="rgb(214,25,53)" fg:x="16828" fg:w="5"/><text x="39.2516%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="39.1360%" y="821" width="0.0185%" height="15" fill="rgb(254,186,54)" fg:x="16886" fg:w="8"/><text x="39.3860%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="39.1105%" y="837" width="0.0510%" height="15" fill="rgb(208,174,49)" fg:x="16875" fg:w="22"/><text x="39.3605%" y="847.50"></text></g><g><title>core::hash::sip::u8to64_le (22 samples, 0.05%)</title><rect x="39.1707%" y="837" width="0.0510%" height="15" fill="rgb(233,191,51)" fg:x="16901" fg:w="22"/><text x="39.4207%" y="847.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (84 samples, 0.19%)</title><rect x="39.0340%" y="885" width="0.1947%" height="15" fill="rgb(222,134,10)" fg:x="16842" fg:w="84"/><text x="39.2840%" y="895.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (84 samples, 0.19%)</title><rect x="39.0340%" y="869" width="0.1947%" height="15" fill="rgb(230,226,20)" fg:x="16842" fg:w="84"/><text x="39.2840%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (84 samples, 0.19%)</title><rect x="39.0340%" y="853" width="0.1947%" height="15" fill="rgb(251,111,25)" fg:x="16842" fg:w="84"/><text x="39.2840%" y="863.50"></text></g><g><title>core::hash::Hash::hash_slice (302 samples, 0.70%)</title><rect x="38.5403%" y="981" width="0.6999%" height="15" fill="rgb(224,40,46)" fg:x="16629" fg:w="302"/><text x="38.7903%" y="991.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (302 samples, 0.70%)</title><rect x="38.5403%" y="965" width="0.6999%" height="15" fill="rgb(236,108,47)" fg:x="16629" fg:w="302"/><text x="38.7903%" y="975.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (211 samples, 0.49%)</title><rect x="38.7512%" y="949" width="0.4890%" height="15" fill="rgb(234,93,0)" fg:x="16720" fg:w="211"/><text x="39.0012%" y="959.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (98 samples, 0.23%)</title><rect x="39.0131%" y="933" width="0.2271%" height="15" fill="rgb(224,213,32)" fg:x="16833" fg:w="98"/><text x="39.2631%" y="943.50"></text></g><g><title>core::hash::Hasher::write_isize (98 samples, 0.23%)</title><rect x="39.0131%" y="917" width="0.2271%" height="15" fill="rgb(251,11,48)" fg:x="16833" fg:w="98"/><text x="39.2631%" y="927.50"></text></g><g><title>core::hash::Hasher::write_usize (97 samples, 0.22%)</title><rect x="39.0155%" y="901" width="0.2248%" height="15" fill="rgb(236,173,5)" fg:x="16834" fg:w="97"/><text x="39.2655%" y="911.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="39.2287%" y="885" width="0.0116%" height="15" fill="rgb(230,95,12)" fg:x="16926" fg:w="5"/><text x="39.4787%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="39.2843%" y="901" width="0.0185%" height="15" fill="rgb(232,209,1)" fg:x="16950" fg:w="8"/><text x="39.5343%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="39.2426%" y="949" width="0.0811%" height="15" fill="rgb(232,6,1)" fg:x="16932" fg:w="35"/><text x="39.4926%" y="959.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="39.2426%" y="933" width="0.0811%" height="15" fill="rgb(210,224,50)" fg:x="16932" fg:w="35"/><text x="39.4926%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (35 samples, 0.08%)</title><rect x="39.2426%" y="917" width="0.0811%" height="15" fill="rgb(228,127,35)" fg:x="16932" fg:w="35"/><text x="39.4926%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="39.3075%" y="901" width="0.0162%" height="15" fill="rgb(245,102,45)" fg:x="16960" fg:w="7"/><text x="39.5575%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (339 samples, 0.79%)</title><rect x="38.5403%" y="1013" width="0.7857%" height="15" fill="rgb(214,1,49)" fg:x="16629" fg:w="339"/><text x="38.7903%" y="1023.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (339 samples, 0.79%)</title><rect x="38.5403%" y="997" width="0.7857%" height="15" fill="rgb(226,163,40)" fg:x="16629" fg:w="339"/><text x="38.7903%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (37 samples, 0.09%)</title><rect x="39.2403%" y="981" width="0.0858%" height="15" fill="rgb(239,212,28)" fg:x="16931" fg:w="37"/><text x="39.4903%" y="991.50"></text></g><g><title>core::hash::Hasher::write_usize (36 samples, 0.08%)</title><rect x="39.2426%" y="965" width="0.0834%" height="15" fill="rgb(220,20,13)" fg:x="16932" fg:w="36"/><text x="39.4926%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (23 samples, 0.05%)</title><rect x="39.5138%" y="901" width="0.0533%" height="15" fill="rgb(210,164,35)" fg:x="17049" fg:w="23"/><text x="39.7638%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (53 samples, 0.12%)</title><rect x="39.4720%" y="917" width="0.1228%" height="15" fill="rgb(248,109,41)" fg:x="17031" fg:w="53"/><text x="39.7220%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="39.5671%" y="901" width="0.0278%" height="15" fill="rgb(238,23,50)" fg:x="17072" fg:w="12"/><text x="39.8171%" y="911.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="39.5949%" y="917" width="0.0116%" height="15" fill="rgb(211,48,49)" fg:x="17084" fg:w="5"/><text x="39.8449%" y="927.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="39.5949%" y="901" width="0.0116%" height="15" fill="rgb(223,36,21)" fg:x="17084" fg:w="5"/><text x="39.8449%" y="911.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="39.5949%" y="885" width="0.0116%" height="15" fill="rgb(207,123,46)" fg:x="17084" fg:w="5"/><text x="39.8449%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (144 samples, 0.33%)</title><rect x="39.3515%" y="965" width="0.3337%" height="15" fill="rgb(240,218,32)" fg:x="16979" fg:w="144"/><text x="39.6015%" y="975.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (144 samples, 0.33%)</title><rect x="39.3515%" y="949" width="0.3337%" height="15" fill="rgb(252,5,43)" fg:x="16979" fg:w="144"/><text x="39.6015%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (144 samples, 0.33%)</title><rect x="39.3515%" y="933" width="0.3337%" height="15" fill="rgb(252,84,19)" fg:x="16979" fg:w="144"/><text x="39.6015%" y="943.50"></text></g><g><title>core::hash::sip::u8to64_le (34 samples, 0.08%)</title><rect x="39.6065%" y="917" width="0.0788%" height="15" fill="rgb(243,152,39)" fg:x="17089" fg:w="34"/><text x="39.8565%" y="927.50"></text></g><g><title>core::hash::Hash::hash_slice (654 samples, 1.52%)</title><rect x="38.1881%" y="1061" width="1.5157%" height="15" fill="rgb(234,160,15)" fg:x="16477" fg:w="654"/><text x="38.4381%" y="1071.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (654 samples, 1.52%)</title><rect x="38.1881%" y="1045" width="1.5157%" height="15" fill="rgb(237,34,20)" fg:x="16477" fg:w="654"/><text x="38.4381%" y="1055.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (524 samples, 1.21%)</title><rect x="38.4894%" y="1029" width="1.2145%" height="15" fill="rgb(229,97,13)" fg:x="16607" fg:w="524"/><text x="38.7394%" y="1039.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (163 samples, 0.38%)</title><rect x="39.3260%" y="1013" width="0.3778%" height="15" fill="rgb(234,71,50)" fg:x="16968" fg:w="163"/><text x="39.5760%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_isize (163 samples, 0.38%)</title><rect x="39.3260%" y="997" width="0.3778%" height="15" fill="rgb(253,155,4)" fg:x="16968" fg:w="163"/><text x="39.5760%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_usize (163 samples, 0.38%)</title><rect x="39.3260%" y="981" width="0.3778%" height="15" fill="rgb(222,185,37)" fg:x="16968" fg:w="163"/><text x="39.5760%" y="991.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (8 samples, 0.02%)</title><rect x="39.6853%" y="965" width="0.0185%" height="15" fill="rgb(251,177,13)" fg:x="17123" fg:w="8"/><text x="39.9353%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="39.7849%" y="965" width="0.0232%" height="15" fill="rgb(250,179,40)" fg:x="17166" fg:w="10"/><text x="40.0349%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="39.7687%" y="981" width="0.0510%" height="15" fill="rgb(242,44,2)" fg:x="17159" fg:w="22"/><text x="40.0187%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="39.8081%" y="965" width="0.0116%" height="15" fill="rgb(216,177,13)" fg:x="17176" fg:w="5"/><text x="40.0581%" y="975.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="39.7108%" y="1029" width="0.1669%" height="15" fill="rgb(216,106,43)" fg:x="17134" fg:w="72"/><text x="39.9608%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="39.7108%" y="1013" width="0.1669%" height="15" fill="rgb(216,183,2)" fg:x="17134" fg:w="72"/><text x="39.9608%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="39.7108%" y="997" width="0.1669%" height="15" fill="rgb(249,75,3)" fg:x="17134" fg:w="72"/><text x="39.9608%" y="1007.50"></text></g><g><title>core::hash::sip::u8to64_le (22 samples, 0.05%)</title><rect x="39.8266%" y="981" width="0.0510%" height="15" fill="rgb(219,67,39)" fg:x="17184" fg:w="22"/><text x="40.0766%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (730 samples, 1.69%)</title><rect x="38.1881%" y="1093" width="1.6919%" height="15" fill="rgb(253,228,2)" fg:x="16477" fg:w="730"/><text x="38.4381%" y="1103.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (730 samples, 1.69%)</title><rect x="38.1881%" y="1077" width="1.6919%" height="15" fill="rgb(235,138,27)" fg:x="16477" fg:w="730"/><text x="38.4381%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (76 samples, 0.18%)</title><rect x="39.7038%" y="1061" width="0.1761%" height="15" fill="rgb(236,97,51)" fg:x="17131" fg:w="76"/><text x="39.9538%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_usize (76 samples, 0.18%)</title><rect x="39.7038%" y="1045" width="0.1761%" height="15" fill="rgb(240,80,30)" fg:x="17131" fg:w="76"/><text x="39.9538%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (30 samples, 0.07%)</title><rect x="40.1048%" y="981" width="0.0695%" height="15" fill="rgb(230,178,19)" fg:x="17304" fg:w="30"/><text x="40.3548%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (69 samples, 0.16%)</title><rect x="40.0700%" y="997" width="0.1599%" height="15" fill="rgb(210,190,27)" fg:x="17289" fg:w="69"/><text x="40.3200%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (24 samples, 0.06%)</title><rect x="40.1743%" y="981" width="0.0556%" height="15" fill="rgb(222,107,31)" fg:x="17334" fg:w="24"/><text x="40.4243%" y="991.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="40.2299%" y="997" width="0.0116%" height="15" fill="rgb(216,127,34)" fg:x="17358" fg:w="5"/><text x="40.4799%" y="1007.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="40.2299%" y="981" width="0.0116%" height="15" fill="rgb(234,116,52)" fg:x="17358" fg:w="5"/><text x="40.4799%" y="991.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="40.2299%" y="965" width="0.0116%" height="15" fill="rgb(222,124,15)" fg:x="17358" fg:w="5"/><text x="40.4799%" y="975.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="40.2415%" y="997" width="0.0834%" height="15" fill="rgb(231,179,28)" fg:x="17363" fg:w="36"/><text x="40.4915%" y="1007.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="40.3133%" y="981" width="0.0116%" height="15" fill="rgb(226,93,45)" fg:x="17394" fg:w="5"/><text x="40.5633%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="39.9193%" y="1045" width="0.4079%" height="15" fill="rgb(215,8,51)" fg:x="17224" fg:w="176"/><text x="40.1693%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="39.9193%" y="1029" width="0.4079%" height="15" fill="rgb(223,106,5)" fg:x="17224" fg:w="176"/><text x="40.1693%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="39.9193%" y="1013" width="0.4079%" height="15" fill="rgb(250,191,5)" fg:x="17224" fg:w="176"/><text x="40.1693%" y="1023.50"></text></g><g><title>core::hash::Hash::hash_slice (1,104 samples, 2.56%)</title><rect x="37.7964%" y="1141" width="2.5587%" height="15" fill="rgb(242,132,44)" fg:x="16308" fg:w="1104"/><text x="38.0464%" y="1151.50">co..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,104 samples, 2.56%)</title><rect x="37.7964%" y="1125" width="2.5587%" height="15" fill="rgb(251,152,29)" fg:x="16308" fg:w="1104"/><text x="38.0464%" y="1135.50">co..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (967 samples, 2.24%)</title><rect x="38.1139%" y="1109" width="2.2412%" height="15" fill="rgb(218,179,5)" fg:x="16445" fg:w="967"/><text x="38.3639%" y="1119.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (205 samples, 0.48%)</title><rect x="39.8799%" y="1093" width="0.4751%" height="15" fill="rgb(227,67,19)" fg:x="17207" fg:w="205"/><text x="40.1299%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_isize (205 samples, 0.48%)</title><rect x="39.8799%" y="1077" width="0.4751%" height="15" fill="rgb(233,119,31)" fg:x="17207" fg:w="205"/><text x="40.1299%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_usize (202 samples, 0.47%)</title><rect x="39.8869%" y="1061" width="0.4682%" height="15" fill="rgb(241,120,22)" fg:x="17210" fg:w="202"/><text x="40.1369%" y="1071.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (12 samples, 0.03%)</title><rect x="40.3273%" y="1045" width="0.0278%" height="15" fill="rgb(224,102,30)" fg:x="17400" fg:w="12"/><text x="40.5773%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="40.4825%" y="1045" width="0.0139%" height="15" fill="rgb(210,164,37)" fg:x="17467" fg:w="6"/><text x="40.7325%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="40.4431%" y="1061" width="0.0579%" height="15" fill="rgb(226,191,16)" fg:x="17450" fg:w="25"/><text x="40.6931%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="40.3782%" y="1109" width="0.1692%" height="15" fill="rgb(214,40,45)" fg:x="17422" fg:w="73"/><text x="40.6282%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="40.3782%" y="1093" width="0.1692%" height="15" fill="rgb(244,29,26)" fg:x="17422" fg:w="73"/><text x="40.6282%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="40.3782%" y="1077" width="0.1692%" height="15" fill="rgb(216,16,5)" fg:x="17422" fg:w="73"/><text x="40.6282%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (19 samples, 0.04%)</title><rect x="40.5034%" y="1061" width="0.0440%" height="15" fill="rgb(249,76,35)" fg:x="17476" fg:w="19"/><text x="40.7534%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,191 samples, 2.76%)</title><rect x="37.7964%" y="1173" width="2.7603%" height="15" fill="rgb(207,11,44)" fg:x="16308" fg:w="1191"/><text x="38.0464%" y="1183.50">&lt;a..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,191 samples, 2.76%)</title><rect x="37.7964%" y="1157" width="2.7603%" height="15" fill="rgb(228,190,49)" fg:x="16308" fg:w="1191"/><text x="38.0464%" y="1167.50">co..</text></g><g><title>core::hash::Hasher::write_length_prefix (87 samples, 0.20%)</title><rect x="40.3551%" y="1141" width="0.2016%" height="15" fill="rgb(214,173,12)" fg:x="17412" fg:w="87"/><text x="40.6051%" y="1151.50"></text></g><g><title>core::hash::Hasher::write_usize (84 samples, 0.19%)</title><rect x="40.3620%" y="1125" width="0.1947%" height="15" fill="rgb(218,26,35)" fg:x="17415" fg:w="84"/><text x="40.6120%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (23 samples, 0.05%)</title><rect x="40.8626%" y="1061" width="0.0533%" height="15" fill="rgb(220,200,19)" fg:x="17631" fg:w="23"/><text x="41.1126%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (68 samples, 0.16%)</title><rect x="40.7908%" y="1077" width="0.1576%" height="15" fill="rgb(239,95,49)" fg:x="17600" fg:w="68"/><text x="41.0408%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="40.9159%" y="1061" width="0.0324%" height="15" fill="rgb(235,85,53)" fg:x="17654" fg:w="14"/><text x="41.1659%" y="1071.50"></text></g><g><title>core::cmp::min (9 samples, 0.02%)</title><rect x="40.9484%" y="1077" width="0.0209%" height="15" fill="rgb(233,133,31)" fg:x="17668" fg:w="9"/><text x="41.1984%" y="1087.50"></text></g><g><title>core::cmp::Ord::min (9 samples, 0.02%)</title><rect x="40.9484%" y="1061" width="0.0209%" height="15" fill="rgb(218,25,20)" fg:x="17668" fg:w="9"/><text x="41.1984%" y="1071.50"></text></g><g><title>core::cmp::min_by (9 samples, 0.02%)</title><rect x="40.9484%" y="1045" width="0.0209%" height="15" fill="rgb(252,210,38)" fg:x="17668" fg:w="9"/><text x="41.1984%" y="1055.50"></text></g><g><title>core::hash::sip::u8to64_le (63 samples, 0.15%)</title><rect x="40.9692%" y="1077" width="0.1460%" height="15" fill="rgb(242,134,21)" fg:x="17677" fg:w="63"/><text x="41.2192%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (229 samples, 0.53%)</title><rect x="40.5868%" y="1125" width="0.5307%" height="15" fill="rgb(213,28,48)" fg:x="17512" fg:w="229"/><text x="40.8368%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (229 samples, 0.53%)</title><rect x="40.5868%" y="1109" width="0.5307%" height="15" fill="rgb(250,196,2)" fg:x="17512" fg:w="229"/><text x="40.8368%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (229 samples, 0.53%)</title><rect x="40.5868%" y="1093" width="0.5307%" height="15" fill="rgb(227,5,17)" fg:x="17512" fg:w="229"/><text x="40.8368%" y="1103.50"></text></g><g><title>core::hash::Hash::hash_slice (1,640 samples, 3.80%)</title><rect x="37.3491%" y="1221" width="3.8010%" height="15" fill="rgb(221,226,24)" fg:x="16115" fg:w="1640"/><text x="37.5991%" y="1231.50">core..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,640 samples, 3.80%)</title><rect x="37.3491%" y="1205" width="3.8010%" height="15" fill="rgb(211,5,48)" fg:x="16115" fg:w="1640"/><text x="37.5991%" y="1215.50">core..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,488 samples, 3.45%)</title><rect x="37.7013%" y="1189" width="3.4487%" height="15" fill="rgb(219,150,6)" fg:x="16267" fg:w="1488"/><text x="37.9513%" y="1199.50">&lt;sl..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (256 samples, 0.59%)</title><rect x="40.5567%" y="1173" width="0.5933%" height="15" fill="rgb(251,46,16)" fg:x="17499" fg:w="256"/><text x="40.8067%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_isize (256 samples, 0.59%)</title><rect x="40.5567%" y="1157" width="0.5933%" height="15" fill="rgb(220,204,40)" fg:x="17499" fg:w="256"/><text x="40.8067%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_usize (252 samples, 0.58%)</title><rect x="40.5660%" y="1141" width="0.5840%" height="15" fill="rgb(211,85,2)" fg:x="17503" fg:w="252"/><text x="40.8160%" y="1151.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (14 samples, 0.03%)</title><rect x="41.1176%" y="1125" width="0.0324%" height="15" fill="rgb(229,17,7)" fg:x="17741" fg:w="14"/><text x="41.3676%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="41.2566%" y="1125" width="0.0162%" height="15" fill="rgb(239,72,28)" fg:x="17801" fg:w="7"/><text x="41.5066%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (19 samples, 0.04%)</title><rect x="41.2335%" y="1141" width="0.0440%" height="15" fill="rgb(230,47,54)" fg:x="17791" fg:w="19"/><text x="41.4835%" y="1151.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="41.1593%" y="1189" width="0.1715%" height="15" fill="rgb(214,50,8)" fg:x="17759" fg:w="74"/><text x="41.4093%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="41.1593%" y="1173" width="0.1715%" height="15" fill="rgb(216,198,43)" fg:x="17759" fg:w="74"/><text x="41.4093%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="41.1593%" y="1157" width="0.1715%" height="15" fill="rgb(234,20,35)" fg:x="17759" fg:w="74"/><text x="41.4093%" y="1167.50"></text></g><g><title>core::hash::sip::u8to64_le (22 samples, 0.05%)</title><rect x="41.2798%" y="1141" width="0.0510%" height="15" fill="rgb(254,45,19)" fg:x="17811" fg:w="22"/><text x="41.5298%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,721 samples, 3.99%)</title><rect x="37.3491%" y="1253" width="3.9887%" height="15" fill="rgb(219,14,44)" fg:x="16115" fg:w="1721"/><text x="37.5991%" y="1263.50">&lt;all..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,721 samples, 3.99%)</title><rect x="37.3491%" y="1237" width="3.9887%" height="15" fill="rgb(217,220,26)" fg:x="16115" fg:w="1721"/><text x="37.5991%" y="1247.50">core..</text></g><g><title>core::hash::Hasher::write_length_prefix (81 samples, 0.19%)</title><rect x="41.1500%" y="1221" width="0.1877%" height="15" fill="rgb(213,158,28)" fg:x="17755" fg:w="81"/><text x="41.4000%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_usize (79 samples, 0.18%)</title><rect x="41.1547%" y="1205" width="0.1831%" height="15" fill="rgb(252,51,52)" fg:x="17757" fg:w="79"/><text x="41.4047%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (22 samples, 0.05%)</title><rect x="41.5301%" y="1141" width="0.0510%" height="15" fill="rgb(246,89,16)" fg:x="17919" fg:w="22"/><text x="41.7801%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (53 samples, 0.12%)</title><rect x="41.4861%" y="1157" width="0.1228%" height="15" fill="rgb(216,158,49)" fg:x="17900" fg:w="53"/><text x="41.7361%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="41.5811%" y="1141" width="0.0278%" height="15" fill="rgb(236,107,19)" fg:x="17941" fg:w="12"/><text x="41.8311%" y="1151.50"></text></g><g><title>core::hash::sip::u8to64_le (35 samples, 0.08%)</title><rect x="41.6182%" y="1157" width="0.0811%" height="15" fill="rgb(228,185,30)" fg:x="17957" fg:w="35"/><text x="41.8682%" y="1167.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="41.6877%" y="1141" width="0.0116%" height="15" fill="rgb(246,134,8)" fg:x="17987" fg:w="5"/><text x="41.9377%" y="1151.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (139 samples, 0.32%)</title><rect x="41.3795%" y="1205" width="0.3222%" height="15" fill="rgb(214,143,50)" fg:x="17854" fg:w="139"/><text x="41.6295%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (139 samples, 0.32%)</title><rect x="41.3795%" y="1189" width="0.3222%" height="15" fill="rgb(228,75,8)" fg:x="17854" fg:w="139"/><text x="41.6295%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (139 samples, 0.32%)</title><rect x="41.3795%" y="1173" width="0.3222%" height="15" fill="rgb(207,175,4)" fg:x="17854" fg:w="139"/><text x="41.6295%" y="1183.50"></text></g><g><title>core::hash::Hash::hash_slice (1,993 samples, 4.62%)</title><rect x="37.0964%" y="1301" width="4.6191%" height="15" fill="rgb(205,108,24)" fg:x="16006" fg:w="1993"/><text x="37.3464%" y="1311.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,993 samples, 4.62%)</title><rect x="37.0964%" y="1285" width="4.6191%" height="15" fill="rgb(244,120,49)" fg:x="16006" fg:w="1993"/><text x="37.3464%" y="1295.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,909 samples, 4.42%)</title><rect x="37.2911%" y="1269" width="4.4244%" height="15" fill="rgb(223,47,38)" fg:x="16090" fg:w="1909"/><text x="37.5411%" y="1279.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (163 samples, 0.38%)</title><rect x="41.3378%" y="1253" width="0.3778%" height="15" fill="rgb(229,179,11)" fg:x="17836" fg:w="163"/><text x="41.5878%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_isize (163 samples, 0.38%)</title><rect x="41.3378%" y="1237" width="0.3778%" height="15" fill="rgb(231,122,1)" fg:x="17836" fg:w="163"/><text x="41.5878%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_usize (158 samples, 0.37%)</title><rect x="41.3493%" y="1221" width="0.3662%" height="15" fill="rgb(245,119,9)" fg:x="17841" fg:w="158"/><text x="41.5993%" y="1231.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="41.7016%" y="1205" width="0.0139%" height="15" fill="rgb(241,163,25)" fg:x="17993" fg:w="6"/><text x="41.9516%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="41.7920%" y="1221" width="0.0417%" height="15" fill="rgb(217,214,3)" fg:x="18032" fg:w="18"/><text x="42.0420%" y="1231.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="41.7271%" y="1269" width="0.1321%" height="15" fill="rgb(240,86,28)" fg:x="18004" fg:w="57"/><text x="41.9771%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="41.7271%" y="1253" width="0.1321%" height="15" fill="rgb(215,47,9)" fg:x="18004" fg:w="57"/><text x="41.9771%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="41.7271%" y="1237" width="0.1321%" height="15" fill="rgb(252,25,45)" fg:x="18004" fg:w="57"/><text x="41.9771%" y="1247.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="41.8360%" y="1221" width="0.0232%" height="15" fill="rgb(251,164,9)" fg:x="18051" fg:w="10"/><text x="42.0860%" y="1231.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,056 samples, 4.77%)</title><rect x="37.0964%" y="1333" width="4.7651%" height="15" fill="rgb(233,194,0)" fg:x="16006" fg:w="2056"/><text x="37.3464%" y="1343.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,056 samples, 4.77%)</title><rect x="37.0964%" y="1317" width="4.7651%" height="15" fill="rgb(249,111,24)" fg:x="16006" fg:w="2056"/><text x="37.3464%" y="1327.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (63 samples, 0.15%)</title><rect x="41.7155%" y="1301" width="0.1460%" height="15" fill="rgb(250,223,3)" fg:x="17999" fg:w="63"/><text x="41.9655%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_usize (61 samples, 0.14%)</title><rect x="41.7202%" y="1285" width="0.1414%" height="15" fill="rgb(236,178,37)" fg:x="18001" fg:w="61"/><text x="41.9702%" y="1295.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="41.9658%" y="1221" width="0.0162%" height="15" fill="rgb(241,158,50)" fg:x="18107" fg:w="7"/><text x="42.2158%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="41.9450%" y="1237" width="0.0579%" height="15" fill="rgb(213,121,41)" fg:x="18098" fg:w="25"/><text x="42.1950%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.02%)</title><rect x="41.9821%" y="1221" width="0.0209%" height="15" fill="rgb(240,92,3)" fg:x="18114" fg:w="9"/><text x="42.2321%" y="1231.50"></text></g><g><title>core::hash::sip::u8to64_le (19 samples, 0.04%)</title><rect x="42.0029%" y="1237" width="0.0440%" height="15" fill="rgb(205,123,3)" fg:x="18123" fg:w="19"/><text x="42.2529%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="41.8731%" y="1285" width="0.1761%" height="15" fill="rgb(205,97,47)" fg:x="18067" fg:w="76"/><text x="42.1231%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="41.8731%" y="1269" width="0.1761%" height="15" fill="rgb(247,152,14)" fg:x="18067" fg:w="76"/><text x="42.1231%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="41.8731%" y="1253" width="0.1761%" height="15" fill="rgb(248,195,53)" fg:x="18067" fg:w="76"/><text x="42.1231%" y="1263.50"></text></g><g><title>core::hash::Hash::hash_slice (2,189 samples, 5.07%)</title><rect x="36.9875%" y="1381" width="5.0734%" height="15" fill="rgb(226,201,16)" fg:x="15959" fg:w="2189"/><text x="37.2375%" y="1391.50">core::..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,189 samples, 5.07%)</title><rect x="36.9875%" y="1365" width="5.0734%" height="15" fill="rgb(205,98,0)" fg:x="15959" fg:w="2189"/><text x="37.2375%" y="1375.50">core::..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,155 samples, 4.99%)</title><rect x="37.0663%" y="1349" width="4.9946%" height="15" fill="rgb(214,191,48)" fg:x="15993" fg:w="2155"/><text x="37.3163%" y="1359.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (86 samples, 0.20%)</title><rect x="41.8615%" y="1333" width="0.1993%" height="15" fill="rgb(237,112,39)" fg:x="18062" fg:w="86"/><text x="42.1115%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_isize (86 samples, 0.20%)</title><rect x="41.8615%" y="1317" width="0.1993%" height="15" fill="rgb(247,203,27)" fg:x="18062" fg:w="86"/><text x="42.1115%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_usize (83 samples, 0.19%)</title><rect x="41.8685%" y="1301" width="0.1924%" height="15" fill="rgb(235,124,28)" fg:x="18065" fg:w="83"/><text x="42.1185%" y="1311.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="42.0493%" y="1285" width="0.0116%" height="15" fill="rgb(208,207,46)" fg:x="18143" fg:w="5"/><text x="42.2993%" y="1295.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="42.1026%" y="1285" width="0.0139%" height="15" fill="rgb(234,176,4)" fg:x="18166" fg:w="6"/><text x="42.3526%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (11 samples, 0.03%)</title><rect x="42.0979%" y="1301" width="0.0255%" height="15" fill="rgb(230,133,28)" fg:x="18164" fg:w="11"/><text x="42.3479%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,223 samples, 5.15%)</title><rect x="36.9875%" y="1413" width="5.1522%" height="15" fill="rgb(211,137,40)" fg:x="15959" fg:w="2223"/><text x="37.2375%" y="1423.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,223 samples, 5.15%)</title><rect x="36.9875%" y="1397" width="5.1522%" height="15" fill="rgb(254,35,13)" fg:x="15959" fg:w="2223"/><text x="37.2375%" y="1407.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (34 samples, 0.08%)</title><rect x="42.0609%" y="1381" width="0.0788%" height="15" fill="rgb(225,49,51)" fg:x="18148" fg:w="34"/><text x="42.3109%" y="1391.50"></text></g><g><title>core::hash::Hasher::write_usize (33 samples, 0.08%)</title><rect x="42.0632%" y="1365" width="0.0765%" height="15" fill="rgb(251,10,15)" fg:x="18149" fg:w="33"/><text x="42.3132%" y="1375.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="42.0655%" y="1349" width="0.0742%" height="15" fill="rgb(228,207,15)" fg:x="18150" fg:w="32"/><text x="42.3155%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="42.0655%" y="1333" width="0.0742%" height="15" fill="rgb(241,99,19)" fg:x="18150" fg:w="32"/><text x="42.3155%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="42.0655%" y="1317" width="0.0742%" height="15" fill="rgb(207,104,49)" fg:x="18150" fg:w="32"/><text x="42.3155%" y="1327.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="42.1234%" y="1301" width="0.0162%" height="15" fill="rgb(234,99,18)" fg:x="18175" fg:w="7"/><text x="42.3734%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (6 samples, 0.01%)</title><rect x="42.1814%" y="1317" width="0.0139%" height="15" fill="rgb(213,191,49)" fg:x="18200" fg:w="6"/><text x="42.4314%" y="1327.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,258 samples, 5.23%)</title><rect x="36.9759%" y="1429" width="5.2333%" height="15" fill="rgb(210,226,19)" fg:x="15954" fg:w="2258"/><text x="37.2259%" y="1439.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (30 samples, 0.07%)</title><rect x="42.1397%" y="1413" width="0.0695%" height="15" fill="rgb(229,97,18)" fg:x="18182" fg:w="30"/><text x="42.3897%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_isize (30 samples, 0.07%)</title><rect x="42.1397%" y="1397" width="0.0695%" height="15" fill="rgb(211,167,15)" fg:x="18182" fg:w="30"/><text x="42.3897%" y="1407.50"></text></g><g><title>core::hash::Hasher::write_usize (30 samples, 0.07%)</title><rect x="42.1397%" y="1381" width="0.0695%" height="15" fill="rgb(210,169,34)" fg:x="18182" fg:w="30"/><text x="42.3897%" y="1391.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="42.1443%" y="1365" width="0.0649%" height="15" fill="rgb(241,121,31)" fg:x="18184" fg:w="28"/><text x="42.3943%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="42.1443%" y="1349" width="0.0649%" height="15" fill="rgb(232,40,11)" fg:x="18184" fg:w="28"/><text x="42.3943%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="42.1443%" y="1333" width="0.0649%" height="15" fill="rgb(205,86,26)" fg:x="18184" fg:w="28"/><text x="42.3943%" y="1343.50"></text></g><g><title>core::hash::sip::u8to64_le (6 samples, 0.01%)</title><rect x="42.1953%" y="1317" width="0.0139%" height="15" fill="rgb(231,126,28)" fg:x="18206" fg:w="6"/><text x="42.4453%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (9 samples, 0.02%)</title><rect x="42.2092%" y="1381" width="0.0209%" height="15" fill="rgb(219,221,18)" fg:x="18212" fg:w="9"/><text x="42.4592%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (9 samples, 0.02%)</title><rect x="42.2092%" y="1365" width="0.0209%" height="15" fill="rgb(211,40,0)" fg:x="18212" fg:w="9"/><text x="42.4592%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (9 samples, 0.02%)</title><rect x="42.2092%" y="1349" width="0.0209%" height="15" fill="rgb(239,85,43)" fg:x="18212" fg:w="9"/><text x="42.4592%" y="1359.50"></text></g><g><title>hashbrown::map::make_insert_hash (2,293 samples, 5.31%)</title><rect x="36.9180%" y="1493" width="5.3144%" height="15" fill="rgb(231,55,21)" fg:x="15929" fg:w="2293"/><text x="37.1680%" y="1503.50">hashbro..</text></g><g><title>core::hash::BuildHasher::hash_one (2,293 samples, 5.31%)</title><rect x="36.9180%" y="1477" width="5.3144%" height="15" fill="rgb(225,184,43)" fg:x="15929" fg:w="2293"/><text x="37.1680%" y="1487.50">core::h..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,270 samples, 5.26%)</title><rect x="36.9713%" y="1461" width="5.2611%" height="15" fill="rgb(251,158,41)" fg:x="15952" fg:w="2270"/><text x="37.2213%" y="1471.50">core::..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,270 samples, 5.26%)</title><rect x="36.9713%" y="1445" width="5.2611%" height="15" fill="rgb(234,159,37)" fg:x="15952" fg:w="2270"/><text x="37.2213%" y="1455.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (10 samples, 0.02%)</title><rect x="42.2092%" y="1429" width="0.0232%" height="15" fill="rgb(216,204,22)" fg:x="18212" fg:w="10"/><text x="42.4592%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_isize (10 samples, 0.02%)</title><rect x="42.2092%" y="1413" width="0.0232%" height="15" fill="rgb(214,17,3)" fg:x="18212" fg:w="10"/><text x="42.4592%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_usize (10 samples, 0.02%)</title><rect x="42.2092%" y="1397" width="0.0232%" height="15" fill="rgb(212,111,17)" fg:x="18212" fg:w="10"/><text x="42.4592%" y="1407.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (12 samples, 0.03%)</title><rect x="42.2324%" y="1493" width="0.0278%" height="15" fill="rgb(221,157,24)" fg:x="18222" fg:w="12"/><text x="42.4824%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (12 samples, 0.03%)</title><rect x="42.2324%" y="1477" width="0.0278%" height="15" fill="rgb(252,16,13)" fg:x="18222" fg:w="12"/><text x="42.4824%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_inner (11 samples, 0.03%)</title><rect x="42.2347%" y="1461" width="0.0255%" height="15" fill="rgb(221,62,2)" fg:x="18223" fg:w="11"/><text x="42.4847%" y="1471.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (2,326 samples, 5.39%)</title><rect x="36.9018%" y="1541" width="5.3909%" height="15" fill="rgb(247,87,22)" fg:x="15922" fg:w="2326"/><text x="37.1518%" y="1551.50">std::co..</text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (2,326 samples, 5.39%)</title><rect x="36.9018%" y="1525" width="5.3909%" height="15" fill="rgb(215,73,9)" fg:x="15922" fg:w="2326"/><text x="37.1518%" y="1535.50">hashbro..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (2,326 samples, 5.39%)</title><rect x="36.9018%" y="1509" width="5.3909%" height="15" fill="rgb(207,175,33)" fg:x="15922" fg:w="2326"/><text x="37.1518%" y="1519.50">hashbro..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (14 samples, 0.03%)</title><rect x="42.2602%" y="1493" width="0.0324%" height="15" fill="rgb(243,129,54)" fg:x="18234" fg:w="14"/><text x="42.5102%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::record_item_insert_at (5 samples, 0.01%)</title><rect x="42.2810%" y="1477" width="0.0116%" height="15" fill="rgb(227,119,45)" fg:x="18243" fg:w="5"/><text x="42.5310%" y="1487.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::default::Default&gt;::default (6 samples, 0.01%)</title><rect x="42.3367%" y="1525" width="0.0139%" height="15" fill="rgb(205,109,36)" fg:x="18267" fg:w="6"/><text x="42.5867%" y="1535.50"></text></g><g><title>std::collections::hash::map::RandomState::new (6 samples, 0.01%)</title><rect x="42.3367%" y="1509" width="0.0139%" height="15" fill="rgb(205,6,39)" fg:x="18267" fg:w="6"/><text x="42.5867%" y="1519.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (6 samples, 0.01%)</title><rect x="42.3367%" y="1493" width="0.0139%" height="15" fill="rgb(221,32,16)" fg:x="18267" fg:w="6"/><text x="42.5867%" y="1503.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (6 samples, 0.01%)</title><rect x="42.3367%" y="1477" width="0.0139%" height="15" fill="rgb(228,144,50)" fg:x="18267" fg:w="6"/><text x="42.5867%" y="1487.50"></text></g><g><title>std::collections::hash::map::RandomState::new::{{closure}} (5 samples, 0.01%)</title><rect x="42.3390%" y="1461" width="0.0116%" height="15" fill="rgb(229,201,53)" fg:x="18268" fg:w="5"/><text x="42.5890%" y="1471.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::set (5 samples, 0.01%)</title><rect x="42.3390%" y="1445" width="0.0116%" height="15" fill="rgb(249,153,27)" fg:x="18268" fg:w="5"/><text x="42.5890%" y="1455.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::replace (5 samples, 0.01%)</title><rect x="42.3390%" y="1429" width="0.0116%" height="15" fill="rgb(227,106,25)" fg:x="18268" fg:w="5"/><text x="42.5890%" y="1439.50"></text></g><g><title>core::mem::replace (5 samples, 0.01%)</title><rect x="42.3390%" y="1413" width="0.0116%" height="15" fill="rgb(230,65,29)" fg:x="18268" fg:w="5"/><text x="42.5890%" y="1423.50"></text></g><g><title>core::ptr::write (5 samples, 0.01%)</title><rect x="42.3390%" y="1397" width="0.0116%" height="15" fill="rgb(221,57,46)" fg:x="18268" fg:w="5"/><text x="42.5890%" y="1407.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write_bytes (151 samples, 0.35%)</title><rect x="42.3622%" y="1429" width="0.3500%" height="15" fill="rgb(229,161,17)" fg:x="18278" fg:w="151"/><text x="42.6122%" y="1439.50"></text></g><g><title>core::intrinsics::write_bytes (151 samples, 0.35%)</title><rect x="42.3622%" y="1413" width="0.3500%" height="15" fill="rgb(222,213,11)" fg:x="18278" fg:w="151"/><text x="42.6122%" y="1423.50"></text></g><g><title>[libc.so.6] (148 samples, 0.34%)</title><rect x="42.3691%" y="1397" width="0.3430%" height="15" fill="rgb(235,35,13)" fg:x="18281" fg:w="148"/><text x="42.6191%" y="1407.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (248 samples, 0.57%)</title><rect x="42.7237%" y="1413" width="0.5748%" height="15" fill="rgb(233,158,34)" fg:x="18434" fg:w="248"/><text x="42.9737%" y="1423.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (248 samples, 0.57%)</title><rect x="42.7237%" y="1397" width="0.5748%" height="15" fill="rgb(215,151,48)" fg:x="18434" fg:w="248"/><text x="42.9737%" y="1407.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (248 samples, 0.57%)</title><rect x="42.7237%" y="1381" width="0.5748%" height="15" fill="rgb(229,84,14)" fg:x="18434" fg:w="248"/><text x="42.9737%" y="1391.50"></text></g><g><title>alloc::alloc::alloc (246 samples, 0.57%)</title><rect x="42.7283%" y="1365" width="0.5701%" height="15" fill="rgb(229,68,14)" fg:x="18436" fg:w="246"/><text x="42.9783%" y="1375.50"></text></g><g><title>malloc (244 samples, 0.57%)</title><rect x="42.7330%" y="1349" width="0.5655%" height="15" fill="rgb(243,106,26)" fg:x="18438" fg:w="244"/><text x="42.9830%" y="1359.50"></text></g><g><title>[libc.so.6] (242 samples, 0.56%)</title><rect x="42.7376%" y="1333" width="0.5609%" height="15" fill="rgb(206,45,38)" fg:x="18440" fg:w="242"/><text x="42.9876%" y="1343.50"></text></g><g><title>[libc.so.6] (136 samples, 0.32%)</title><rect x="42.9833%" y="1317" width="0.3152%" height="15" fill="rgb(226,6,15)" fg:x="18546" fg:w="136"/><text x="43.2333%" y="1327.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (254 samples, 0.59%)</title><rect x="42.7121%" y="1429" width="0.5887%" height="15" fill="rgb(232,22,54)" fg:x="18429" fg:w="254"/><text x="42.9621%" y="1439.50"></text></g><g><title>slimp::Rule::concretions (5,624 samples, 13.03%)</title><rect x="30.2825%" y="1557" width="13.0345%" height="15" fill="rgb(229,222,32)" fg:x="13066" fg:w="5624"/><text x="30.5325%" y="1567.50">slimp::Rule::concret..</text></g><g><title>std::collections::hash::set::HashSet&lt;T&gt;::with_capacity (442 samples, 1.02%)</title><rect x="42.2926%" y="1541" width="1.0244%" height="15" fill="rgb(228,62,29)" fg:x="18248" fg:w="442"/><text x="42.5426%" y="1551.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S&gt;::with_capacity_and_hasher (417 samples, 0.97%)</title><rect x="42.3506%" y="1525" width="0.9665%" height="15" fill="rgb(251,103,34)" fg:x="18273" fg:w="417"/><text x="42.6006%" y="1535.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (417 samples, 0.97%)</title><rect x="42.3506%" y="1509" width="0.9665%" height="15" fill="rgb(233,12,30)" fg:x="18273" fg:w="417"/><text x="42.6006%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (417 samples, 0.97%)</title><rect x="42.3506%" y="1493" width="0.9665%" height="15" fill="rgb(238,52,0)" fg:x="18273" fg:w="417"/><text x="42.6006%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (416 samples, 0.96%)</title><rect x="42.3529%" y="1477" width="0.9641%" height="15" fill="rgb(223,98,5)" fg:x="18274" fg:w="416"/><text x="42.6029%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (412 samples, 0.95%)</title><rect x="42.3622%" y="1461" width="0.9549%" height="15" fill="rgb(228,75,37)" fg:x="18278" fg:w="412"/><text x="42.6122%" y="1471.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (412 samples, 0.95%)</title><rect x="42.3622%" y="1445" width="0.9549%" height="15" fill="rgb(205,115,49)" fg:x="18278" fg:w="412"/><text x="42.6122%" y="1455.50"></text></g><g><title>hashbrown::raw::capacity_to_buckets (7 samples, 0.02%)</title><rect x="43.3008%" y="1429" width="0.0162%" height="15" fill="rgb(250,154,43)" fg:x="18683" fg:w="7"/><text x="43.5508%" y="1439.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="43.3263%" y="1477" width="0.0232%" height="15" fill="rgb(226,43,29)" fg:x="18694" fg:w="10"/><text x="43.5763%" y="1487.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="43.3263%" y="1461" width="0.0232%" height="15" fill="rgb(249,228,39)" fg:x="18694" fg:w="10"/><text x="43.5763%" y="1471.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (10 samples, 0.02%)</title><rect x="43.3263%" y="1445" width="0.0232%" height="15" fill="rgb(216,79,43)" fg:x="18694" fg:w="10"/><text x="43.5763%" y="1455.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (9 samples, 0.02%)</title><rect x="43.3286%" y="1429" width="0.0209%" height="15" fill="rgb(228,95,12)" fg:x="18695" fg:w="9"/><text x="43.5786%" y="1439.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (9 samples, 0.02%)</title><rect x="43.3286%" y="1413" width="0.0209%" height="15" fill="rgb(249,221,15)" fg:x="18695" fg:w="9"/><text x="43.5786%" y="1423.50"></text></g><g><title>alloc::alloc::alloc (9 samples, 0.02%)</title><rect x="43.3286%" y="1397" width="0.0209%" height="15" fill="rgb(233,34,13)" fg:x="18695" fg:w="9"/><text x="43.5786%" y="1407.50"></text></g><g><title>malloc (5 samples, 0.01%)</title><rect x="43.3379%" y="1381" width="0.0116%" height="15" fill="rgb(214,103,39)" fg:x="18699" fg:w="5"/><text x="43.5879%" y="1391.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (15 samples, 0.03%)</title><rect x="43.3263%" y="1541" width="0.0348%" height="15" fill="rgb(251,126,39)" fg:x="18694" fg:w="15"/><text x="43.5763%" y="1551.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (15 samples, 0.03%)</title><rect x="43.3263%" y="1525" width="0.0348%" height="15" fill="rgb(214,216,36)" fg:x="18694" fg:w="15"/><text x="43.5763%" y="1535.50"></text></g><g><title>alloc::slice::hack::to_vec (15 samples, 0.03%)</title><rect x="43.3263%" y="1509" width="0.0348%" height="15" fill="rgb(220,221,8)" fg:x="18694" fg:w="15"/><text x="43.5763%" y="1519.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (15 samples, 0.03%)</title><rect x="43.3263%" y="1493" width="0.0348%" height="15" fill="rgb(240,216,3)" fg:x="18694" fg:w="15"/><text x="43.5763%" y="1503.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (5 samples, 0.01%)</title><rect x="43.3495%" y="1477" width="0.0116%" height="15" fill="rgb(232,218,17)" fg:x="18704" fg:w="5"/><text x="43.5995%" y="1487.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="43.3495%" y="1461" width="0.0116%" height="15" fill="rgb(229,163,45)" fg:x="18704" fg:w="5"/><text x="43.5995%" y="1471.50"></text></g><g><title>[libc.so.6] (5 samples, 0.01%)</title><rect x="43.3495%" y="1445" width="0.0116%" height="15" fill="rgb(231,110,42)" fg:x="18704" fg:w="5"/><text x="43.5995%" y="1455.50"></text></g><g><title>cfree (8 samples, 0.02%)</title><rect x="43.3611%" y="1541" width="0.0185%" height="15" fill="rgb(208,170,48)" fg:x="18709" fg:w="8"/><text x="43.6111%" y="1551.50"></text></g><g><title>[libc.so.6] (7 samples, 0.02%)</title><rect x="43.3634%" y="1525" width="0.0162%" height="15" fill="rgb(239,116,25)" fg:x="18710" fg:w="7"/><text x="43.6134%" y="1535.50"></text></g><g><title>cfree (9 samples, 0.02%)</title><rect x="43.4051%" y="1445" width="0.0209%" height="15" fill="rgb(219,200,50)" fg:x="18728" fg:w="9"/><text x="43.6551%" y="1455.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="43.4121%" y="1429" width="0.0139%" height="15" fill="rgb(245,200,0)" fg:x="18731" fg:w="6"/><text x="43.6621%" y="1439.50"></text></g><g><title>cfree (5 samples, 0.01%)</title><rect x="43.4352%" y="1381" width="0.0116%" height="15" fill="rgb(245,119,33)" fg:x="18741" fg:w="5"/><text x="43.6852%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 0.02%)</title><rect x="43.4468%" y="1365" width="0.0185%" height="15" fill="rgb(231,125,12)" fg:x="18746" fg:w="8"/><text x="43.6968%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (8 samples, 0.02%)</title><rect x="43.4468%" y="1349" width="0.0185%" height="15" fill="rgb(216,96,41)" fg:x="18746" fg:w="8"/><text x="43.6968%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (7 samples, 0.02%)</title><rect x="43.4491%" y="1333" width="0.0162%" height="15" fill="rgb(248,43,45)" fg:x="18747" fg:w="7"/><text x="43.6991%" y="1343.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (18 samples, 0.04%)</title><rect x="43.4260%" y="1429" width="0.0417%" height="15" fill="rgb(217,222,7)" fg:x="18737" fg:w="18"/><text x="43.6760%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (18 samples, 0.04%)</title><rect x="43.4260%" y="1413" width="0.0417%" height="15" fill="rgb(233,28,6)" fg:x="18737" fg:w="18"/><text x="43.6760%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (17 samples, 0.04%)</title><rect x="43.4283%" y="1397" width="0.0394%" height="15" fill="rgb(231,218,15)" fg:x="18738" fg:w="17"/><text x="43.6783%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (9 samples, 0.02%)</title><rect x="43.4468%" y="1381" width="0.0209%" height="15" fill="rgb(226,171,48)" fg:x="18746" fg:w="9"/><text x="43.6968%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (39 samples, 0.09%)</title><rect x="43.3796%" y="1541" width="0.0904%" height="15" fill="rgb(235,201,9)" fg:x="18717" fg:w="39"/><text x="43.6296%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (34 samples, 0.08%)</title><rect x="43.3912%" y="1525" width="0.0788%" height="15" fill="rgb(217,80,15)" fg:x="18722" fg:w="34"/><text x="43.6412%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (33 samples, 0.08%)</title><rect x="43.3935%" y="1509" width="0.0765%" height="15" fill="rgb(219,152,8)" fg:x="18723" fg:w="33"/><text x="43.6435%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (33 samples, 0.08%)</title><rect x="43.3935%" y="1493" width="0.0765%" height="15" fill="rgb(243,107,38)" fg:x="18723" fg:w="33"/><text x="43.6435%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (33 samples, 0.08%)</title><rect x="43.3935%" y="1477" width="0.0765%" height="15" fill="rgb(231,17,5)" fg:x="18723" fg:w="33"/><text x="43.6435%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (31 samples, 0.07%)</title><rect x="43.3982%" y="1461" width="0.0718%" height="15" fill="rgb(209,25,54)" fg:x="18725" fg:w="31"/><text x="43.6482%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (19 samples, 0.04%)</title><rect x="43.4260%" y="1445" width="0.0440%" height="15" fill="rgb(219,0,2)" fg:x="18737" fg:w="19"/><text x="43.6760%" y="1455.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (11 samples, 0.03%)</title><rect x="43.5697%" y="1285" width="0.0255%" height="15" fill="rgb(246,9,5)" fg:x="18799" fg:w="11"/><text x="43.8197%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (7 samples, 0.02%)</title><rect x="43.5789%" y="1269" width="0.0162%" height="15" fill="rgb(226,159,4)" fg:x="18803" fg:w="7"/><text x="43.8289%" y="1279.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (7 samples, 0.02%)</title><rect x="43.5789%" y="1253" width="0.0162%" height="15" fill="rgb(219,175,34)" fg:x="18803" fg:w="7"/><text x="43.8289%" y="1263.50"></text></g><g><title>alloc::slice::hack::to_vec (7 samples, 0.02%)</title><rect x="43.5789%" y="1237" width="0.0162%" height="15" fill="rgb(236,10,46)" fg:x="18803" fg:w="7"/><text x="43.8289%" y="1247.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (7 samples, 0.02%)</title><rect x="43.5789%" y="1221" width="0.0162%" height="15" fill="rgb(240,211,16)" fg:x="18803" fg:w="7"/><text x="43.8289%" y="1231.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (6 samples, 0.01%)</title><rect x="43.5812%" y="1205" width="0.0139%" height="15" fill="rgb(205,3,43)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1215.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (6 samples, 0.01%)</title><rect x="43.5812%" y="1189" width="0.0139%" height="15" fill="rgb(245,7,22)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1199.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (6 samples, 0.01%)</title><rect x="43.5812%" y="1173" width="0.0139%" height="15" fill="rgb(239,132,32)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1183.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (6 samples, 0.01%)</title><rect x="43.5812%" y="1157" width="0.0139%" height="15" fill="rgb(228,202,34)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1167.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (6 samples, 0.01%)</title><rect x="43.5812%" y="1141" width="0.0139%" height="15" fill="rgb(254,200,22)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1151.50"></text></g><g><title>alloc::alloc::alloc (6 samples, 0.01%)</title><rect x="43.5812%" y="1125" width="0.0139%" height="15" fill="rgb(219,10,39)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1135.50"></text></g><g><title>malloc (6 samples, 0.01%)</title><rect x="43.5812%" y="1109" width="0.0139%" height="15" fill="rgb(226,210,39)" fg:x="18804" fg:w="6"/><text x="43.8312%" y="1119.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="43.5998%" y="1237" width="0.0162%" height="15" fill="rgb(208,219,16)" fg:x="18812" fg:w="7"/><text x="43.8498%" y="1247.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="43.5998%" y="1221" width="0.0162%" height="15" fill="rgb(216,158,51)" fg:x="18812" fg:w="7"/><text x="43.8498%" y="1231.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="43.5998%" y="1205" width="0.0162%" height="15" fill="rgb(233,14,44)" fg:x="18812" fg:w="7"/><text x="43.8498%" y="1215.50"></text></g><g><title>malloc (7 samples, 0.02%)</title><rect x="43.5998%" y="1189" width="0.0162%" height="15" fill="rgb(237,97,39)" fg:x="18812" fg:w="7"/><text x="43.8498%" y="1199.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="43.5952%" y="1285" width="0.0232%" height="15" fill="rgb(218,198,43)" fg:x="18810" fg:w="10"/><text x="43.8452%" y="1295.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="43.5975%" y="1269" width="0.0209%" height="15" fill="rgb(231,104,20)" fg:x="18811" fg:w="9"/><text x="43.8475%" y="1279.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (9 samples, 0.02%)</title><rect x="43.5975%" y="1253" width="0.0209%" height="15" fill="rgb(254,36,13)" fg:x="18811" fg:w="9"/><text x="43.8475%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (24 samples, 0.06%)</title><rect x="43.5673%" y="1349" width="0.0556%" height="15" fill="rgb(248,14,50)" fg:x="18798" fg:w="24"/><text x="43.8173%" y="1359.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (24 samples, 0.06%)</title><rect x="43.5673%" y="1333" width="0.0556%" height="15" fill="rgb(217,107,29)" fg:x="18798" fg:w="24"/><text x="43.8173%" y="1343.50"></text></g><g><title>alloc::slice::hack::to_vec (24 samples, 0.06%)</title><rect x="43.5673%" y="1317" width="0.0556%" height="15" fill="rgb(251,169,33)" fg:x="18798" fg:w="24"/><text x="43.8173%" y="1327.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (24 samples, 0.06%)</title><rect x="43.5673%" y="1301" width="0.0556%" height="15" fill="rgb(217,108,32)" fg:x="18798" fg:w="24"/><text x="43.8173%" y="1311.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (28 samples, 0.06%)</title><rect x="43.5604%" y="1365" width="0.0649%" height="15" fill="rgb(219,66,42)" fg:x="18795" fg:w="28"/><text x="43.8104%" y="1375.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="43.6253%" y="1365" width="0.0209%" height="15" fill="rgb(206,180,7)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1375.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="43.6253%" y="1349" width="0.0209%" height="15" fill="rgb(208,226,31)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1359.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (9 samples, 0.02%)</title><rect x="43.6253%" y="1333" width="0.0209%" height="15" fill="rgb(218,26,49)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1343.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (9 samples, 0.02%)</title><rect x="43.6253%" y="1317" width="0.0209%" height="15" fill="rgb(233,197,48)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1327.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (9 samples, 0.02%)</title><rect x="43.6253%" y="1301" width="0.0209%" height="15" fill="rgb(252,181,51)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1311.50"></text></g><g><title>alloc::alloc::alloc (9 samples, 0.02%)</title><rect x="43.6253%" y="1285" width="0.0209%" height="15" fill="rgb(253,90,19)" fg:x="18823" fg:w="9"/><text x="43.8753%" y="1295.50"></text></g><g><title>malloc (6 samples, 0.01%)</title><rect x="43.6322%" y="1269" width="0.0139%" height="15" fill="rgb(215,171,30)" fg:x="18826" fg:w="6"/><text x="43.8822%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (45 samples, 0.10%)</title><rect x="43.5465%" y="1429" width="0.1043%" height="15" fill="rgb(214,222,9)" fg:x="18789" fg:w="45"/><text x="43.7965%" y="1439.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (44 samples, 0.10%)</title><rect x="43.5488%" y="1413" width="0.1020%" height="15" fill="rgb(223,3,22)" fg:x="18790" fg:w="44"/><text x="43.7988%" y="1423.50"></text></g><g><title>alloc::slice::hack::to_vec (44 samples, 0.10%)</title><rect x="43.5488%" y="1397" width="0.1020%" height="15" fill="rgb(225,196,46)" fg:x="18790" fg:w="44"/><text x="43.7988%" y="1407.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (44 samples, 0.10%)</title><rect x="43.5488%" y="1381" width="0.1020%" height="15" fill="rgb(209,110,37)" fg:x="18790" fg:w="44"/><text x="43.7988%" y="1391.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (56 samples, 0.13%)</title><rect x="43.5279%" y="1445" width="0.1298%" height="15" fill="rgb(249,89,12)" fg:x="18781" fg:w="56"/><text x="43.7779%" y="1455.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (13 samples, 0.03%)</title><rect x="43.6647%" y="1397" width="0.0301%" height="15" fill="rgb(226,27,33)" fg:x="18840" fg:w="13"/><text x="43.9147%" y="1407.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (13 samples, 0.03%)</title><rect x="43.6647%" y="1381" width="0.0301%" height="15" fill="rgb(213,82,22)" fg:x="18840" fg:w="13"/><text x="43.9147%" y="1391.50"></text></g><g><title>alloc::alloc::alloc (13 samples, 0.03%)</title><rect x="43.6647%" y="1365" width="0.0301%" height="15" fill="rgb(248,140,0)" fg:x="18840" fg:w="13"/><text x="43.9147%" y="1375.50"></text></g><g><title>malloc (8 samples, 0.02%)</title><rect x="43.6763%" y="1349" width="0.0185%" height="15" fill="rgb(228,106,3)" fg:x="18845" fg:w="8"/><text x="43.9263%" y="1359.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (16 samples, 0.04%)</title><rect x="43.6600%" y="1445" width="0.0371%" height="15" fill="rgb(209,23,37)" fg:x="18838" fg:w="16"/><text x="43.9100%" y="1455.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (14 samples, 0.03%)</title><rect x="43.6647%" y="1429" width="0.0324%" height="15" fill="rgb(241,93,50)" fg:x="18840" fg:w="14"/><text x="43.9147%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (14 samples, 0.03%)</title><rect x="43.6647%" y="1413" width="0.0324%" height="15" fill="rgb(253,46,43)" fg:x="18840" fg:w="14"/><text x="43.9147%" y="1423.50"></text></g><g><title>slimp::Rule::var_replace (100 samples, 0.23%)</title><rect x="43.4700%" y="1541" width="0.2318%" height="15" fill="rgb(226,206,43)" fg:x="18756" fg:w="100"/><text x="43.7200%" y="1551.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (96 samples, 0.22%)</title><rect x="43.4793%" y="1525" width="0.2225%" height="15" fill="rgb(217,54,7)" fg:x="18760" fg:w="96"/><text x="43.7293%" y="1535.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (77 samples, 0.18%)</title><rect x="43.5233%" y="1509" width="0.1785%" height="15" fill="rgb(223,5,52)" fg:x="18779" fg:w="77"/><text x="43.7733%" y="1519.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (76 samples, 0.18%)</title><rect x="43.5256%" y="1493" width="0.1761%" height="15" fill="rgb(206,52,46)" fg:x="18780" fg:w="76"/><text x="43.7756%" y="1503.50"></text></g><g><title>alloc::slice::hack::to_vec (76 samples, 0.18%)</title><rect x="43.5256%" y="1477" width="0.1761%" height="15" fill="rgb(253,136,11)" fg:x="18780" fg:w="76"/><text x="43.7756%" y="1487.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (76 samples, 0.18%)</title><rect x="43.5256%" y="1461" width="0.1761%" height="15" fill="rgb(208,106,33)" fg:x="18780" fg:w="76"/><text x="43.7756%" y="1471.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.02%)</title><rect x="43.7481%" y="1381" width="0.0185%" height="15" fill="rgb(206,54,4)" fg:x="18876" fg:w="8"/><text x="43.9981%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (32 samples, 0.07%)</title><rect x="43.7667%" y="1365" width="0.0742%" height="15" fill="rgb(213,3,15)" fg:x="18884" fg:w="32"/><text x="44.0167%" y="1375.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (32 samples, 0.07%)</title><rect x="43.7667%" y="1349" width="0.0742%" height="15" fill="rgb(252,211,39)" fg:x="18884" fg:w="32"/><text x="44.0167%" y="1359.50"></text></g><g><title>core::ptr::write (32 samples, 0.07%)</title><rect x="43.7667%" y="1333" width="0.0742%" height="15" fill="rgb(223,6,36)" fg:x="18884" fg:w="32"/><text x="44.0167%" y="1343.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (23 samples, 0.05%)</title><rect x="43.8918%" y="1317" width="0.0533%" height="15" fill="rgb(252,169,45)" fg:x="18938" fg:w="23"/><text x="44.1418%" y="1327.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (23 samples, 0.05%)</title><rect x="43.8918%" y="1301" width="0.0533%" height="15" fill="rgb(212,48,26)" fg:x="18938" fg:w="23"/><text x="44.1418%" y="1311.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.01%)</title><rect x="43.9683%" y="1173" width="0.0139%" height="15" fill="rgb(251,102,48)" fg:x="18971" fg:w="6"/><text x="44.2183%" y="1183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (107 samples, 0.25%)</title><rect x="43.9822%" y="1157" width="0.2480%" height="15" fill="rgb(243,208,16)" fg:x="18977" fg:w="107"/><text x="44.2322%" y="1167.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (107 samples, 0.25%)</title><rect x="43.9822%" y="1141" width="0.2480%" height="15" fill="rgb(219,96,24)" fg:x="18977" fg:w="107"/><text x="44.2322%" y="1151.50"></text></g><g><title>core::ptr::write (107 samples, 0.25%)</title><rect x="43.9822%" y="1125" width="0.2480%" height="15" fill="rgb(219,33,29)" fg:x="18977" fg:w="107"/><text x="44.2322%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (9 samples, 0.02%)</title><rect x="44.4179%" y="805" width="0.0209%" height="15" fill="rgb(223,176,5)" fg:x="19165" fg:w="9"/><text x="44.6679%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (7 samples, 0.02%)</title><rect x="44.4226%" y="789" width="0.0162%" height="15" fill="rgb(228,140,14)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (7 samples, 0.02%)</title><rect x="44.4226%" y="773" width="0.0162%" height="15" fill="rgb(217,179,31)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="44.4226%" y="757" width="0.0162%" height="15" fill="rgb(230,9,30)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="44.4226%" y="741" width="0.0162%" height="15" fill="rgb(230,136,20)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="751.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="44.4226%" y="725" width="0.0162%" height="15" fill="rgb(215,210,22)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="735.50"></text></g><g><title>malloc (7 samples, 0.02%)</title><rect x="44.4226%" y="709" width="0.0162%" height="15" fill="rgb(218,43,5)" fg:x="19167" fg:w="7"/><text x="44.6726%" y="719.50"></text></g><g><title>[libc.so.6] (5 samples, 0.01%)</title><rect x="44.4272%" y="693" width="0.0116%" height="15" fill="rgb(216,11,5)" fg:x="19169" fg:w="5"/><text x="44.6772%" y="703.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (16 samples, 0.04%)</title><rect x="44.4086%" y="885" width="0.0371%" height="15" fill="rgb(209,82,29)" fg:x="19161" fg:w="16"/><text x="44.6586%" y="895.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (15 samples, 0.03%)</title><rect x="44.4110%" y="869" width="0.0348%" height="15" fill="rgb(244,115,12)" fg:x="19162" fg:w="15"/><text x="44.6610%" y="879.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (14 samples, 0.03%)</title><rect x="44.4133%" y="853" width="0.0324%" height="15" fill="rgb(222,82,18)" fg:x="19163" fg:w="14"/><text x="44.6633%" y="863.50"></text></g><g><title>alloc::slice::hack::to_vec (14 samples, 0.03%)</title><rect x="44.4133%" y="837" width="0.0324%" height="15" fill="rgb(249,227,8)" fg:x="19163" fg:w="14"/><text x="44.6633%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (14 samples, 0.03%)</title><rect x="44.4133%" y="821" width="0.0324%" height="15" fill="rgb(253,141,45)" fg:x="19163" fg:w="14"/><text x="44.6633%" y="831.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (31 samples, 0.07%)</title><rect x="44.4040%" y="965" width="0.0718%" height="15" fill="rgb(234,184,4)" fg:x="19159" fg:w="31"/><text x="44.6540%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (30 samples, 0.07%)</title><rect x="44.4063%" y="949" width="0.0695%" height="15" fill="rgb(218,194,23)" fg:x="19160" fg:w="30"/><text x="44.6563%" y="959.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (29 samples, 0.07%)</title><rect x="44.4086%" y="933" width="0.0672%" height="15" fill="rgb(235,66,41)" fg:x="19161" fg:w="29"/><text x="44.6586%" y="943.50"></text></g><g><title>alloc::slice::hack::to_vec (29 samples, 0.07%)</title><rect x="44.4086%" y="917" width="0.0672%" height="15" fill="rgb(245,217,1)" fg:x="19161" fg:w="29"/><text x="44.6586%" y="927.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (29 samples, 0.07%)</title><rect x="44.4086%" y="901" width="0.0672%" height="15" fill="rgb(229,91,1)" fg:x="19161" fg:w="29"/><text x="44.6586%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="44.4480%" y="885" width="0.0278%" height="15" fill="rgb(207,101,30)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="44.4480%" y="869" width="0.0278%" height="15" fill="rgb(223,82,49)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (12 samples, 0.03%)</title><rect x="44.4480%" y="853" width="0.0278%" height="15" fill="rgb(218,167,17)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="863.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (12 samples, 0.03%)</title><rect x="44.4480%" y="837" width="0.0278%" height="15" fill="rgb(208,103,14)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="847.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (12 samples, 0.03%)</title><rect x="44.4480%" y="821" width="0.0278%" height="15" fill="rgb(238,20,8)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="831.50"></text></g><g><title>alloc::alloc::alloc (12 samples, 0.03%)</title><rect x="44.4480%" y="805" width="0.0278%" height="15" fill="rgb(218,80,54)" fg:x="19178" fg:w="12"/><text x="44.6980%" y="815.50"></text></g><g><title>malloc (11 samples, 0.03%)</title><rect x="44.4504%" y="789" width="0.0255%" height="15" fill="rgb(240,144,17)" fg:x="19179" fg:w="11"/><text x="44.7004%" y="799.50"></text></g><g><title>[libc.so.6] (9 samples, 0.02%)</title><rect x="44.4550%" y="773" width="0.0209%" height="15" fill="rgb(245,27,50)" fg:x="19181" fg:w="9"/><text x="44.7050%" y="783.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (22 samples, 0.05%)</title><rect x="44.4759%" y="965" width="0.0510%" height="15" fill="rgb(251,51,7)" fg:x="19190" fg:w="22"/><text x="44.7259%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (19 samples, 0.04%)</title><rect x="44.4828%" y="949" width="0.0440%" height="15" fill="rgb(245,217,29)" fg:x="19193" fg:w="19"/><text x="44.7328%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (19 samples, 0.04%)</title><rect x="44.4828%" y="933" width="0.0440%" height="15" fill="rgb(221,176,29)" fg:x="19193" fg:w="19"/><text x="44.7328%" y="943.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (18 samples, 0.04%)</title><rect x="44.4851%" y="917" width="0.0417%" height="15" fill="rgb(212,180,24)" fg:x="19194" fg:w="18"/><text x="44.7351%" y="927.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (18 samples, 0.04%)</title><rect x="44.4851%" y="901" width="0.0417%" height="15" fill="rgb(254,24,2)" fg:x="19194" fg:w="18"/><text x="44.7351%" y="911.50"></text></g><g><title>alloc::alloc::alloc (18 samples, 0.04%)</title><rect x="44.4851%" y="885" width="0.0417%" height="15" fill="rgb(230,100,2)" fg:x="19194" fg:w="18"/><text x="44.7351%" y="895.50"></text></g><g><title>malloc (18 samples, 0.04%)</title><rect x="44.4851%" y="869" width="0.0417%" height="15" fill="rgb(219,142,25)" fg:x="19194" fg:w="18"/><text x="44.7351%" y="879.50"></text></g><g><title>[libc.so.6] (13 samples, 0.03%)</title><rect x="44.4967%" y="853" width="0.0301%" height="15" fill="rgb(240,73,43)" fg:x="19199" fg:w="13"/><text x="44.7467%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (55 samples, 0.13%)</title><rect x="44.4017%" y="1029" width="0.1275%" height="15" fill="rgb(214,114,15)" fg:x="19158" fg:w="55"/><text x="44.6517%" y="1039.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (55 samples, 0.13%)</title><rect x="44.4017%" y="1013" width="0.1275%" height="15" fill="rgb(207,130,4)" fg:x="19158" fg:w="55"/><text x="44.6517%" y="1023.50"></text></g><g><title>alloc::slice::hack::to_vec (55 samples, 0.13%)</title><rect x="44.4017%" y="997" width="0.1275%" height="15" fill="rgb(221,25,40)" fg:x="19158" fg:w="55"/><text x="44.6517%" y="1007.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (55 samples, 0.13%)</title><rect x="44.4017%" y="981" width="0.1275%" height="15" fill="rgb(241,184,7)" fg:x="19158" fg:w="55"/><text x="44.6517%" y="991.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (61 samples, 0.14%)</title><rect x="44.3901%" y="1045" width="0.1414%" height="15" fill="rgb(235,159,4)" fg:x="19153" fg:w="61"/><text x="44.6401%" y="1055.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (33 samples, 0.08%)</title><rect x="44.5315%" y="1045" width="0.0765%" height="15" fill="rgb(214,87,48)" fg:x="19214" fg:w="33"/><text x="44.7815%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (33 samples, 0.08%)</title><rect x="44.5315%" y="1029" width="0.0765%" height="15" fill="rgb(246,198,24)" fg:x="19214" fg:w="33"/><text x="44.7815%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (33 samples, 0.08%)</title><rect x="44.5315%" y="1013" width="0.0765%" height="15" fill="rgb(209,66,40)" fg:x="19214" fg:w="33"/><text x="44.7815%" y="1023.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (32 samples, 0.07%)</title><rect x="44.5338%" y="997" width="0.0742%" height="15" fill="rgb(233,147,39)" fg:x="19215" fg:w="32"/><text x="44.7838%" y="1007.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (32 samples, 0.07%)</title><rect x="44.5338%" y="981" width="0.0742%" height="15" fill="rgb(231,145,52)" fg:x="19215" fg:w="32"/><text x="44.7838%" y="991.50"></text></g><g><title>alloc::alloc::alloc (32 samples, 0.07%)</title><rect x="44.5338%" y="965" width="0.0742%" height="15" fill="rgb(206,20,26)" fg:x="19215" fg:w="32"/><text x="44.7838%" y="975.50"></text></g><g><title>malloc (29 samples, 0.07%)</title><rect x="44.5408%" y="949" width="0.0672%" height="15" fill="rgb(238,220,4)" fg:x="19218" fg:w="29"/><text x="44.7908%" y="959.50"></text></g><g><title>[libc.so.6] (21 samples, 0.05%)</title><rect x="44.5593%" y="933" width="0.0487%" height="15" fill="rgb(252,195,42)" fg:x="19226" fg:w="21"/><text x="44.8093%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (105 samples, 0.24%)</title><rect x="44.3785%" y="1109" width="0.2434%" height="15" fill="rgb(209,10,6)" fg:x="19148" fg:w="105"/><text x="44.6285%" y="1119.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (105 samples, 0.24%)</title><rect x="44.3785%" y="1093" width="0.2434%" height="15" fill="rgb(229,3,52)" fg:x="19148" fg:w="105"/><text x="44.6285%" y="1103.50"></text></g><g><title>alloc::slice::hack::to_vec (105 samples, 0.24%)</title><rect x="44.3785%" y="1077" width="0.2434%" height="15" fill="rgb(253,49,37)" fg:x="19148" fg:w="105"/><text x="44.6285%" y="1087.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (105 samples, 0.24%)</title><rect x="44.3785%" y="1061" width="0.2434%" height="15" fill="rgb(240,103,49)" fg:x="19148" fg:w="105"/><text x="44.6285%" y="1071.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (6 samples, 0.01%)</title><rect x="44.6080%" y="1045" width="0.0139%" height="15" fill="rgb(250,182,30)" fg:x="19247" fg:w="6"/><text x="44.8580%" y="1055.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (39 samples, 0.09%)</title><rect x="44.6242%" y="1109" width="0.0904%" height="15" fill="rgb(248,8,30)" fg:x="19254" fg:w="39"/><text x="44.8742%" y="1119.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (39 samples, 0.09%)</title><rect x="44.6242%" y="1093" width="0.0904%" height="15" fill="rgb(237,120,30)" fg:x="19254" fg:w="39"/><text x="44.8742%" y="1103.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="44.7331%" y="965" width="0.0116%" height="15" fill="rgb(221,146,34)" fg:x="19301" fg:w="5"/><text x="44.9831%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (106 samples, 0.25%)</title><rect x="44.7447%" y="949" width="0.2457%" height="15" fill="rgb(242,55,13)" fg:x="19306" fg:w="106"/><text x="44.9947%" y="959.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (106 samples, 0.25%)</title><rect x="44.7447%" y="933" width="0.2457%" height="15" fill="rgb(242,112,31)" fg:x="19306" fg:w="106"/><text x="44.9947%" y="943.50"></text></g><g><title>core::ptr::write (106 samples, 0.25%)</title><rect x="44.7447%" y="917" width="0.2457%" height="15" fill="rgb(249,192,27)" fg:x="19306" fg:w="106"/><text x="44.9947%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (14 samples, 0.03%)</title><rect x="45.1596%" y="597" width="0.0324%" height="15" fill="rgb(208,204,44)" fg:x="19485" fg:w="14"/><text x="45.4096%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (13 samples, 0.03%)</title><rect x="45.1619%" y="581" width="0.0301%" height="15" fill="rgb(208,93,54)" fg:x="19486" fg:w="13"/><text x="45.4119%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (13 samples, 0.03%)</title><rect x="45.1619%" y="565" width="0.0301%" height="15" fill="rgb(242,1,31)" fg:x="19486" fg:w="13"/><text x="45.4119%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (12 samples, 0.03%)</title><rect x="45.1642%" y="549" width="0.0278%" height="15" fill="rgb(241,83,25)" fg:x="19487" fg:w="12"/><text x="45.4142%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (12 samples, 0.03%)</title><rect x="45.1642%" y="533" width="0.0278%" height="15" fill="rgb(205,169,50)" fg:x="19487" fg:w="12"/><text x="45.4142%" y="543.50"></text></g><g><title>alloc::alloc::alloc (12 samples, 0.03%)</title><rect x="45.1642%" y="517" width="0.0278%" height="15" fill="rgb(239,186,37)" fg:x="19487" fg:w="12"/><text x="45.4142%" y="527.50"></text></g><g><title>malloc (11 samples, 0.03%)</title><rect x="45.1665%" y="501" width="0.0255%" height="15" fill="rgb(205,221,10)" fg:x="19488" fg:w="11"/><text x="45.4165%" y="511.50"></text></g><g><title>[libc.so.6] (7 samples, 0.02%)</title><rect x="45.1758%" y="485" width="0.0162%" height="15" fill="rgb(218,196,15)" fg:x="19492" fg:w="7"/><text x="45.4258%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="45.1573%" y="661" width="0.0394%" height="15" fill="rgb(218,196,35)" fg:x="19484" fg:w="17"/><text x="45.4073%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (16 samples, 0.04%)</title><rect x="45.1596%" y="645" width="0.0371%" height="15" fill="rgb(233,63,24)" fg:x="19485" fg:w="16"/><text x="45.4096%" y="655.50"></text></g><g><title>alloc::slice::hack::to_vec (16 samples, 0.04%)</title><rect x="45.1596%" y="629" width="0.0371%" height="15" fill="rgb(225,8,4)" fg:x="19485" fg:w="16"/><text x="45.4096%" y="639.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (16 samples, 0.04%)</title><rect x="45.1596%" y="613" width="0.0371%" height="15" fill="rgb(234,105,35)" fg:x="19485" fg:w="16"/><text x="45.4096%" y="623.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (20 samples, 0.05%)</title><rect x="45.1526%" y="677" width="0.0464%" height="15" fill="rgb(236,21,32)" fg:x="19482" fg:w="20"/><text x="45.4026%" y="687.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="45.1990%" y="677" width="0.0278%" height="15" fill="rgb(228,109,6)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="687.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (12 samples, 0.03%)</title><rect x="45.1990%" y="661" width="0.0278%" height="15" fill="rgb(229,215,31)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (12 samples, 0.03%)</title><rect x="45.1990%" y="645" width="0.0278%" height="15" fill="rgb(221,52,54)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (12 samples, 0.03%)</title><rect x="45.1990%" y="629" width="0.0278%" height="15" fill="rgb(252,129,43)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="639.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (12 samples, 0.03%)</title><rect x="45.1990%" y="613" width="0.0278%" height="15" fill="rgb(248,183,27)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="623.50"></text></g><g><title>alloc::alloc::alloc (12 samples, 0.03%)</title><rect x="45.1990%" y="597" width="0.0278%" height="15" fill="rgb(250,0,22)" fg:x="19502" fg:w="12"/><text x="45.4490%" y="607.50"></text></g><g><title>malloc (11 samples, 0.03%)</title><rect x="45.2013%" y="581" width="0.0255%" height="15" fill="rgb(213,166,10)" fg:x="19503" fg:w="11"/><text x="45.4513%" y="591.50"></text></g><g><title>[libc.so.6] (8 samples, 0.02%)</title><rect x="45.2082%" y="565" width="0.0185%" height="15" fill="rgb(207,163,36)" fg:x="19506" fg:w="8"/><text x="45.4582%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (35 samples, 0.08%)</title><rect x="45.1480%" y="741" width="0.0811%" height="15" fill="rgb(208,122,22)" fg:x="19480" fg:w="35"/><text x="45.3980%" y="751.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (35 samples, 0.08%)</title><rect x="45.1480%" y="725" width="0.0811%" height="15" fill="rgb(207,104,49)" fg:x="19480" fg:w="35"/><text x="45.3980%" y="735.50"></text></g><g><title>alloc::slice::hack::to_vec (35 samples, 0.08%)</title><rect x="45.1480%" y="709" width="0.0811%" height="15" fill="rgb(248,211,50)" fg:x="19480" fg:w="35"/><text x="45.3980%" y="719.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (35 samples, 0.08%)</title><rect x="45.1480%" y="693" width="0.0811%" height="15" fill="rgb(217,13,45)" fg:x="19480" fg:w="35"/><text x="45.3980%" y="703.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (41 samples, 0.10%)</title><rect x="45.1364%" y="757" width="0.0950%" height="15" fill="rgb(211,216,49)" fg:x="19475" fg:w="41"/><text x="45.3864%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (24 samples, 0.06%)</title><rect x="45.2407%" y="709" width="0.0556%" height="15" fill="rgb(221,58,53)" fg:x="19520" fg:w="24"/><text x="45.4907%" y="719.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (24 samples, 0.06%)</title><rect x="45.2407%" y="693" width="0.0556%" height="15" fill="rgb(220,112,41)" fg:x="19520" fg:w="24"/><text x="45.4907%" y="703.50"></text></g><g><title>alloc::alloc::alloc (24 samples, 0.06%)</title><rect x="45.2407%" y="677" width="0.0556%" height="15" fill="rgb(236,38,28)" fg:x="19520" fg:w="24"/><text x="45.4907%" y="687.50"></text></g><g><title>malloc (23 samples, 0.05%)</title><rect x="45.2430%" y="661" width="0.0533%" height="15" fill="rgb(227,195,22)" fg:x="19521" fg:w="23"/><text x="45.4930%" y="671.50"></text></g><g><title>[libc.so.6] (17 samples, 0.04%)</title><rect x="45.2569%" y="645" width="0.0394%" height="15" fill="rgb(214,55,33)" fg:x="19527" fg:w="17"/><text x="45.5069%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (27 samples, 0.06%)</title><rect x="45.2361%" y="757" width="0.0626%" height="15" fill="rgb(248,80,13)" fg:x="19518" fg:w="27"/><text x="45.4861%" y="767.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (26 samples, 0.06%)</title><rect x="45.2384%" y="741" width="0.0603%" height="15" fill="rgb(238,52,6)" fg:x="19519" fg:w="26"/><text x="45.4884%" y="751.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (26 samples, 0.06%)</title><rect x="45.2384%" y="725" width="0.0603%" height="15" fill="rgb(224,198,47)" fg:x="19519" fg:w="26"/><text x="45.4884%" y="735.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (80 samples, 0.19%)</title><rect x="45.1225%" y="837" width="0.1854%" height="15" fill="rgb(233,171,20)" fg:x="19469" fg:w="80"/><text x="45.3725%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (77 samples, 0.18%)</title><rect x="45.1294%" y="821" width="0.1785%" height="15" fill="rgb(241,30,25)" fg:x="19472" fg:w="77"/><text x="45.3794%" y="831.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (77 samples, 0.18%)</title><rect x="45.1294%" y="805" width="0.1785%" height="15" fill="rgb(207,171,38)" fg:x="19472" fg:w="77"/><text x="45.3794%" y="815.50"></text></g><g><title>alloc::slice::hack::to_vec (77 samples, 0.18%)</title><rect x="45.1294%" y="789" width="0.1785%" height="15" fill="rgb(234,70,1)" fg:x="19472" fg:w="77"/><text x="45.3794%" y="799.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (77 samples, 0.18%)</title><rect x="45.1294%" y="773" width="0.1785%" height="15" fill="rgb(232,178,18)" fg:x="19472" fg:w="77"/><text x="45.3794%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (26 samples, 0.06%)</title><rect x="45.3102%" y="789" width="0.0603%" height="15" fill="rgb(241,78,40)" fg:x="19550" fg:w="26"/><text x="45.5602%" y="799.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (26 samples, 0.06%)</title><rect x="45.3102%" y="773" width="0.0603%" height="15" fill="rgb(222,35,25)" fg:x="19550" fg:w="26"/><text x="45.5602%" y="783.50"></text></g><g><title>alloc::alloc::alloc (26 samples, 0.06%)</title><rect x="45.3102%" y="757" width="0.0603%" height="15" fill="rgb(207,92,16)" fg:x="19550" fg:w="26"/><text x="45.5602%" y="767.50"></text></g><g><title>malloc (24 samples, 0.06%)</title><rect x="45.3149%" y="741" width="0.0556%" height="15" fill="rgb(216,59,51)" fg:x="19552" fg:w="24"/><text x="45.5649%" y="751.50"></text></g><g><title>[libc.so.6] (16 samples, 0.04%)</title><rect x="45.3334%" y="725" width="0.0371%" height="15" fill="rgb(213,80,28)" fg:x="19560" fg:w="16"/><text x="45.5834%" y="735.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (28 samples, 0.06%)</title><rect x="45.3079%" y="837" width="0.0649%" height="15" fill="rgb(220,93,7)" fg:x="19549" fg:w="28"/><text x="45.5579%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (27 samples, 0.06%)</title><rect x="45.3102%" y="821" width="0.0626%" height="15" fill="rgb(225,24,44)" fg:x="19550" fg:w="27"/><text x="45.5602%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (27 samples, 0.06%)</title><rect x="45.3102%" y="805" width="0.0626%" height="15" fill="rgb(243,74,40)" fg:x="19550" fg:w="27"/><text x="45.5602%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (115 samples, 0.27%)</title><rect x="45.1179%" y="901" width="0.2665%" height="15" fill="rgb(228,39,7)" fg:x="19467" fg:w="115"/><text x="45.3679%" y="911.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (115 samples, 0.27%)</title><rect x="45.1179%" y="885" width="0.2665%" height="15" fill="rgb(227,79,8)" fg:x="19467" fg:w="115"/><text x="45.3679%" y="895.50"></text></g><g><title>alloc::slice::hack::to_vec (115 samples, 0.27%)</title><rect x="45.1179%" y="869" width="0.2665%" height="15" fill="rgb(236,58,11)" fg:x="19467" fg:w="115"/><text x="45.3679%" y="879.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (115 samples, 0.27%)</title><rect x="45.1179%" y="853" width="0.2665%" height="15" fill="rgb(249,63,35)" fg:x="19467" fg:w="115"/><text x="45.3679%" y="863.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (5 samples, 0.01%)</title><rect x="45.3728%" y="837" width="0.0116%" height="15" fill="rgb(252,114,16)" fg:x="19577" fg:w="5"/><text x="45.6228%" y="847.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (41 samples, 0.10%)</title><rect x="45.3844%" y="901" width="0.0950%" height="15" fill="rgb(254,151,24)" fg:x="19582" fg:w="41"/><text x="45.6344%" y="911.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (41 samples, 0.10%)</title><rect x="45.3844%" y="885" width="0.0950%" height="15" fill="rgb(253,54,39)" fg:x="19582" fg:w="41"/><text x="45.6344%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (100 samples, 0.23%)</title><rect x="45.5072%" y="741" width="0.2318%" height="15" fill="rgb(243,25,45)" fg:x="19635" fg:w="100"/><text x="45.7572%" y="751.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (100 samples, 0.23%)</title><rect x="45.5072%" y="725" width="0.2318%" height="15" fill="rgb(234,134,9)" fg:x="19635" fg:w="100"/><text x="45.7572%" y="735.50"></text></g><g><title>core::ptr::write (100 samples, 0.23%)</title><rect x="45.5072%" y="709" width="0.2318%" height="15" fill="rgb(227,166,31)" fg:x="19635" fg:w="100"/><text x="45.7572%" y="719.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (29 samples, 0.07%)</title><rect x="45.8039%" y="693" width="0.0672%" height="15" fill="rgb(245,143,41)" fg:x="19763" fg:w="29"/><text x="46.0539%" y="703.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (29 samples, 0.07%)</title><rect x="45.8039%" y="677" width="0.0672%" height="15" fill="rgb(238,181,32)" fg:x="19763" fg:w="29"/><text x="46.0539%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (67 samples, 0.16%)</title><rect x="45.8896%" y="533" width="0.1553%" height="15" fill="rgb(224,113,18)" fg:x="19800" fg:w="67"/><text x="46.1396%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (67 samples, 0.16%)</title><rect x="45.8896%" y="517" width="0.1553%" height="15" fill="rgb(240,229,28)" fg:x="19800" fg:w="67"/><text x="46.1396%" y="527.50"></text></g><g><title>core::ptr::write (67 samples, 0.16%)</title><rect x="45.8896%" y="501" width="0.1553%" height="15" fill="rgb(250,185,3)" fg:x="19800" fg:w="67"/><text x="46.1396%" y="511.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (23 samples, 0.05%)</title><rect x="46.0890%" y="485" width="0.0533%" height="15" fill="rgb(212,59,25)" fg:x="19886" fg:w="23"/><text x="46.3390%" y="495.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (23 samples, 0.05%)</title><rect x="46.0890%" y="469" width="0.0533%" height="15" fill="rgb(221,87,20)" fg:x="19886" fg:w="23"/><text x="46.3390%" y="479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (38 samples, 0.09%)</title><rect x="46.1515%" y="325" width="0.0881%" height="15" fill="rgb(213,74,28)" fg:x="19913" fg:w="38"/><text x="46.4015%" y="335.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (38 samples, 0.09%)</title><rect x="46.1515%" y="309" width="0.0881%" height="15" fill="rgb(224,132,34)" fg:x="19913" fg:w="38"/><text x="46.4015%" y="319.50"></text></g><g><title>core::ptr::write (38 samples, 0.09%)</title><rect x="46.1515%" y="293" width="0.0881%" height="15" fill="rgb(222,101,24)" fg:x="19913" fg:w="38"/><text x="46.4015%" y="303.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (14 samples, 0.03%)</title><rect x="46.2836%" y="277" width="0.0324%" height="15" fill="rgb(254,142,4)" fg:x="19970" fg:w="14"/><text x="46.5336%" y="287.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (14 samples, 0.03%)</title><rect x="46.2836%" y="261" width="0.0324%" height="15" fill="rgb(230,229,49)" fg:x="19970" fg:w="14"/><text x="46.5336%" y="271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (18 samples, 0.04%)</title><rect x="46.3184%" y="117" width="0.0417%" height="15" fill="rgb(238,70,47)" fg:x="19985" fg:w="18"/><text x="46.5684%" y="127.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (18 samples, 0.04%)</title><rect x="46.3184%" y="101" width="0.0417%" height="15" fill="rgb(231,160,17)" fg:x="19985" fg:w="18"/><text x="46.5684%" y="111.50"></text></g><g><title>core::ptr::write (18 samples, 0.04%)</title><rect x="46.3184%" y="85" width="0.0417%" height="15" fill="rgb(218,68,53)" fg:x="19985" fg:w="18"/><text x="46.5684%" y="95.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 (27 samples, 0.06%)</title><rect x="46.3184%" y="213" width="0.0626%" height="15" fill="rgb(236,111,10)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="223.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (27 samples, 0.06%)</title><rect x="46.3184%" y="197" width="0.0626%" height="15" fill="rgb(224,34,41)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="207.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (27 samples, 0.06%)</title><rect x="46.3184%" y="181" width="0.0626%" height="15" fill="rgb(241,118,19)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="191.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (27 samples, 0.06%)</title><rect x="46.3184%" y="165" width="0.0626%" height="15" fill="rgb(238,129,25)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="175.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (27 samples, 0.06%)</title><rect x="46.3184%" y="149" width="0.0626%" height="15" fill="rgb(238,22,31)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="159.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (27 samples, 0.06%)</title><rect x="46.3184%" y="133" width="0.0626%" height="15" fill="rgb(222,174,48)" fg:x="19985" fg:w="27"/><text x="46.5684%" y="143.50"></text></g><g><title>slimp::rw::{{closure}} (9 samples, 0.02%)</title><rect x="46.3601%" y="117" width="0.0209%" height="15" fill="rgb(206,152,40)" fg:x="20003" fg:w="9"/><text x="46.6101%" y="127.50"></text></g><g><title>slimp::Sexp::rw (9 samples, 0.02%)</title><rect x="46.3601%" y="101" width="0.0209%" height="15" fill="rgb(218,99,54)" fg:x="20003" fg:w="9"/><text x="46.6101%" y="111.50"></text></g><g><title>slimp::rw (9 samples, 0.02%)</title><rect x="46.3601%" y="85" width="0.0209%" height="15" fill="rgb(220,174,26)" fg:x="20003" fg:w="9"/><text x="46.6101%" y="95.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (6 samples, 0.01%)</title><rect x="46.3671%" y="69" width="0.0139%" height="15" fill="rgb(245,116,9)" fg:x="20006" fg:w="6"/><text x="46.6171%" y="79.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="46.3671%" y="53" width="0.0139%" height="15" fill="rgb(209,72,35)" fg:x="20006" fg:w="6"/><text x="46.6171%" y="63.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (110 samples, 0.25%)</title><rect x="46.1515%" y="341" width="0.2549%" height="15" fill="rgb(226,126,21)" fg:x="19913" fg:w="110"/><text x="46.4015%" y="351.50"></text></g><g><title>slimp::rw::{{closure}} (72 samples, 0.17%)</title><rect x="46.2396%" y="325" width="0.1669%" height="15" fill="rgb(227,192,1)" fg:x="19951" fg:w="72"/><text x="46.4896%" y="335.50"></text></g><g><title>slimp::Sexp::rw (72 samples, 0.17%)</title><rect x="46.2396%" y="309" width="0.1669%" height="15" fill="rgb(237,180,29)" fg:x="19951" fg:w="72"/><text x="46.4896%" y="319.50"></text></g><g><title>slimp::rw (66 samples, 0.15%)</title><rect x="46.2535%" y="293" width="0.1530%" height="15" fill="rgb(230,197,35)" fg:x="19957" fg:w="66"/><text x="46.5035%" y="303.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (39 samples, 0.09%)</title><rect x="46.3161%" y="277" width="0.0904%" height="15" fill="rgb(246,193,31)" fg:x="19984" fg:w="39"/><text x="46.5661%" y="287.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (39 samples, 0.09%)</title><rect x="46.3161%" y="261" width="0.0904%" height="15" fill="rgb(241,36,4)" fg:x="19984" fg:w="39"/><text x="46.5661%" y="271.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 (38 samples, 0.09%)</title><rect x="46.3184%" y="245" width="0.0881%" height="15" fill="rgb(241,130,17)" fg:x="19985" fg:w="38"/><text x="46.5684%" y="255.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 (38 samples, 0.09%)</title><rect x="46.3184%" y="229" width="0.0881%" height="15" fill="rgb(206,137,32)" fg:x="19985" fg:w="38"/><text x="46.5684%" y="239.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (11 samples, 0.03%)</title><rect x="46.3810%" y="213" width="0.0255%" height="15" fill="rgb(237,228,51)" fg:x="20012" fg:w="11"/><text x="46.6310%" y="223.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (11 samples, 0.03%)</title><rect x="46.3810%" y="197" width="0.0255%" height="15" fill="rgb(243,6,42)" fg:x="20012" fg:w="11"/><text x="46.6310%" y="207.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (10 samples, 0.02%)</title><rect x="46.3833%" y="181" width="0.0232%" height="15" fill="rgb(251,74,28)" fg:x="20013" fg:w="10"/><text x="46.6333%" y="191.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (10 samples, 0.02%)</title><rect x="46.3833%" y="165" width="0.0232%" height="15" fill="rgb(218,20,49)" fg:x="20013" fg:w="10"/><text x="46.6333%" y="175.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (10 samples, 0.02%)</title><rect x="46.3833%" y="149" width="0.0232%" height="15" fill="rgb(238,28,14)" fg:x="20013" fg:w="10"/><text x="46.6333%" y="159.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (10 samples, 0.02%)</title><rect x="46.3833%" y="133" width="0.0232%" height="15" fill="rgb(229,40,46)" fg:x="20013" fg:w="10"/><text x="46.6333%" y="143.50"></text></g><g><title>alloc::alloc::alloc (10 samples, 0.02%)</title><rect x="46.3833%" y="117" width="0.0232%" height="15" fill="rgb(244,195,20)" fg:x="20013" fg:w="10"/><text x="46.6333%" y="127.50"></text></g><g><title>malloc (7 samples, 0.02%)</title><rect x="46.3902%" y="101" width="0.0162%" height="15" fill="rgb(253,56,35)" fg:x="20016" fg:w="7"/><text x="46.6402%" y="111.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 (112 samples, 0.26%)</title><rect x="46.1492%" y="421" width="0.2596%" height="15" fill="rgb(210,149,44)" fg:x="19912" fg:w="112"/><text x="46.3992%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (112 samples, 0.26%)</title><rect x="46.1492%" y="405" width="0.2596%" height="15" fill="rgb(240,135,12)" fg:x="19912" fg:w="112"/><text x="46.3992%" y="415.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (112 samples, 0.26%)</title><rect x="46.1492%" y="389" width="0.2596%" height="15" fill="rgb(251,24,50)" fg:x="19912" fg:w="112"/><text x="46.3992%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (112 samples, 0.26%)</title><rect x="46.1492%" y="373" width="0.2596%" height="15" fill="rgb(243,200,47)" fg:x="19912" fg:w="112"/><text x="46.3992%" y="383.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (112 samples, 0.26%)</title><rect x="46.1492%" y="357" width="0.2596%" height="15" fill="rgb(224,166,26)" fg:x="19912" fg:w="112"/><text x="46.3992%" y="367.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 (252 samples, 0.58%)</title><rect x="45.8873%" y="629" width="0.5840%" height="15" fill="rgb(233,0,47)" fg:x="19799" fg:w="252"/><text x="46.1373%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (252 samples, 0.58%)</title><rect x="45.8873%" y="613" width="0.5840%" height="15" fill="rgb(253,80,5)" fg:x="19799" fg:w="252"/><text x="46.1373%" y="623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (252 samples, 0.58%)</title><rect x="45.8873%" y="597" width="0.5840%" height="15" fill="rgb(214,133,25)" fg:x="19799" fg:w="252"/><text x="46.1373%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (252 samples, 0.58%)</title><rect x="45.8873%" y="581" width="0.5840%" height="15" fill="rgb(209,27,14)" fg:x="19799" fg:w="252"/><text x="46.1373%" y="591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (252 samples, 0.58%)</title><rect x="45.8873%" y="565" width="0.5840%" height="15" fill="rgb(219,102,51)" fg:x="19799" fg:w="252"/><text x="46.1373%" y="575.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (251 samples, 0.58%)</title><rect x="45.8896%" y="549" width="0.5817%" height="15" fill="rgb(237,18,16)" fg:x="19800" fg:w="251"/><text x="46.1396%" y="559.50"></text></g><g><title>slimp::rw::{{closure}} (184 samples, 0.43%)</title><rect x="46.0449%" y="533" width="0.4264%" height="15" fill="rgb(241,85,17)" fg:x="19867" fg:w="184"/><text x="46.2949%" y="543.50"></text></g><g><title>slimp::Sexp::rw (184 samples, 0.43%)</title><rect x="46.0449%" y="517" width="0.4264%" height="15" fill="rgb(236,90,42)" fg:x="19867" fg:w="184"/><text x="46.2949%" y="527.50"></text></g><g><title>slimp::rw (182 samples, 0.42%)</title><rect x="46.0496%" y="501" width="0.4218%" height="15" fill="rgb(249,57,21)" fg:x="19869" fg:w="182"/><text x="46.2996%" y="511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (142 samples, 0.33%)</title><rect x="46.1423%" y="485" width="0.3291%" height="15" fill="rgb(243,12,36)" fg:x="19909" fg:w="142"/><text x="46.3923%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (142 samples, 0.33%)</title><rect x="46.1423%" y="469" width="0.3291%" height="15" fill="rgb(253,128,47)" fg:x="19909" fg:w="142"/><text x="46.3923%" y="479.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 (141 samples, 0.33%)</title><rect x="46.1446%" y="453" width="0.3268%" height="15" fill="rgb(207,33,20)" fg:x="19910" fg:w="141"/><text x="46.3946%" y="463.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 (140 samples, 0.32%)</title><rect x="46.1469%" y="437" width="0.3245%" height="15" fill="rgb(233,215,35)" fg:x="19911" fg:w="140"/><text x="46.3969%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (26 samples, 0.06%)</title><rect x="46.4111%" y="421" width="0.0603%" height="15" fill="rgb(249,188,52)" fg:x="20025" fg:w="26"/><text x="46.6611%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (26 samples, 0.06%)</title><rect x="46.4111%" y="405" width="0.0603%" height="15" fill="rgb(225,12,32)" fg:x="20025" fg:w="26"/><text x="46.6611%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (25 samples, 0.06%)</title><rect x="46.4134%" y="389" width="0.0579%" height="15" fill="rgb(247,98,14)" fg:x="20026" fg:w="25"/><text x="46.6634%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (25 samples, 0.06%)</title><rect x="46.4134%" y="373" width="0.0579%" height="15" fill="rgb(247,219,48)" fg:x="20026" fg:w="25"/><text x="46.6634%" y="383.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (24 samples, 0.06%)</title><rect x="46.4157%" y="357" width="0.0556%" height="15" fill="rgb(253,60,48)" fg:x="20027" fg:w="24"/><text x="46.6657%" y="367.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (24 samples, 0.06%)</title><rect x="46.4157%" y="341" width="0.0556%" height="15" fill="rgb(245,15,52)" fg:x="20027" fg:w="24"/><text x="46.6657%" y="351.50"></text></g><g><title>alloc::alloc::alloc (24 samples, 0.06%)</title><rect x="46.4157%" y="325" width="0.0556%" height="15" fill="rgb(220,133,28)" fg:x="20027" fg:w="24"/><text x="46.6657%" y="335.50"></text></g><g><title>malloc (20 samples, 0.05%)</title><rect x="46.4250%" y="309" width="0.0464%" height="15" fill="rgb(217,180,4)" fg:x="20031" fg:w="20"/><text x="46.6750%" y="319.50"></text></g><g><title>[libc.so.6] (14 samples, 0.03%)</title><rect x="46.4389%" y="293" width="0.0324%" height="15" fill="rgb(251,24,1)" fg:x="20037" fg:w="14"/><text x="46.6889%" y="303.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (43 samples, 0.10%)</title><rect x="46.5015%" y="565" width="0.0997%" height="15" fill="rgb(212,185,49)" fg:x="20064" fg:w="43"/><text x="46.7515%" y="575.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (43 samples, 0.10%)</title><rect x="46.5015%" y="549" width="0.0997%" height="15" fill="rgb(215,175,22)" fg:x="20064" fg:w="43"/><text x="46.7515%" y="559.50"></text></g><g><title>alloc::alloc::alloc (43 samples, 0.10%)</title><rect x="46.5015%" y="533" width="0.0997%" height="15" fill="rgb(250,205,14)" fg:x="20064" fg:w="43"/><text x="46.7515%" y="543.50"></text></g><g><title>malloc (39 samples, 0.09%)</title><rect x="46.5108%" y="517" width="0.0904%" height="15" fill="rgb(225,211,22)" fg:x="20068" fg:w="39"/><text x="46.7608%" y="527.50"></text></g><g><title>[libc.so.6] (15 samples, 0.03%)</title><rect x="46.5664%" y="501" width="0.0348%" height="15" fill="rgb(251,179,42)" fg:x="20092" fg:w="15"/><text x="46.8164%" y="511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (316 samples, 0.73%)</title><rect x="45.8711%" y="693" width="0.7324%" height="15" fill="rgb(208,216,51)" fg:x="19792" fg:w="316"/><text x="46.1211%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (316 samples, 0.73%)</title><rect x="45.8711%" y="677" width="0.7324%" height="15" fill="rgb(235,36,11)" fg:x="19792" fg:w="316"/><text x="46.1211%" y="687.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 (314 samples, 0.73%)</title><rect x="45.8757%" y="661" width="0.7277%" height="15" fill="rgb(213,189,28)" fg:x="19794" fg:w="314"/><text x="46.1257%" y="671.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 (313 samples, 0.73%)</title><rect x="45.8780%" y="645" width="0.7254%" height="15" fill="rgb(227,203,42)" fg:x="19795" fg:w="313"/><text x="46.1280%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (54 samples, 0.13%)</title><rect x="46.4783%" y="629" width="0.1252%" height="15" fill="rgb(244,72,36)" fg:x="20054" fg:w="54"/><text x="46.7283%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (54 samples, 0.13%)</title><rect x="46.4783%" y="613" width="0.1252%" height="15" fill="rgb(213,53,17)" fg:x="20054" fg:w="54"/><text x="46.7283%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (50 samples, 0.12%)</title><rect x="46.4876%" y="597" width="0.1159%" height="15" fill="rgb(207,167,3)" fg:x="20058" fg:w="50"/><text x="46.7376%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (50 samples, 0.12%)</title><rect x="46.4876%" y="581" width="0.1159%" height="15" fill="rgb(216,98,30)" fg:x="20058" fg:w="50"/><text x="46.7376%" y="591.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 (480 samples, 1.11%)</title><rect x="45.5026%" y="837" width="1.1125%" height="15" fill="rgb(236,123,15)" fg:x="19633" fg:w="480"/><text x="45.7526%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (480 samples, 1.11%)</title><rect x="45.5026%" y="821" width="1.1125%" height="15" fill="rgb(248,81,50)" fg:x="19633" fg:w="480"/><text x="45.7526%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (480 samples, 1.11%)</title><rect x="45.5026%" y="805" width="1.1125%" height="15" fill="rgb(214,120,4)" fg:x="19633" fg:w="480"/><text x="45.7526%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (480 samples, 1.11%)</title><rect x="45.5026%" y="789" width="1.1125%" height="15" fill="rgb(208,179,34)" fg:x="19633" fg:w="480"/><text x="45.7526%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (480 samples, 1.11%)</title><rect x="45.5026%" y="773" width="1.1125%" height="15" fill="rgb(227,140,7)" fg:x="19633" fg:w="480"/><text x="45.7526%" y="783.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (478 samples, 1.11%)</title><rect x="45.5072%" y="757" width="1.1078%" height="15" fill="rgb(214,22,6)" fg:x="19635" fg:w="478"/><text x="45.7572%" y="767.50"></text></g><g><title>slimp::rw::{{closure}} (378 samples, 0.88%)</title><rect x="45.7390%" y="741" width="0.8761%" height="15" fill="rgb(207,137,27)" fg:x="19735" fg:w="378"/><text x="45.9890%" y="751.50"></text></g><g><title>slimp::Sexp::rw (378 samples, 0.88%)</title><rect x="45.7390%" y="725" width="0.8761%" height="15" fill="rgb(210,8,46)" fg:x="19735" fg:w="378"/><text x="45.9890%" y="735.50"></text></g><g><title>slimp::rw (373 samples, 0.86%)</title><rect x="45.7506%" y="709" width="0.8645%" height="15" fill="rgb(240,16,54)" fg:x="19740" fg:w="373"/><text x="46.0006%" y="719.50"></text></g><g><title>__rdl_alloc (5 samples, 0.01%)</title><rect x="46.6521%" y="725" width="0.0116%" height="15" fill="rgb(211,209,29)" fg:x="20129" fg:w="5"/><text x="46.9021%" y="735.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (5 samples, 0.01%)</title><rect x="46.6521%" y="709" width="0.0116%" height="15" fill="rgb(226,228,24)" fg:x="20129" fg:w="5"/><text x="46.9021%" y="719.50"></text></g><g><title>__rust_alloc (5 samples, 0.01%)</title><rect x="46.6637%" y="725" width="0.0116%" height="15" fill="rgb(222,84,9)" fg:x="20134" fg:w="5"/><text x="46.9137%" y="735.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (71 samples, 0.16%)</title><rect x="46.6475%" y="773" width="0.1646%" height="15" fill="rgb(234,203,30)" fg:x="20127" fg:w="71"/><text x="46.8975%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (71 samples, 0.16%)</title><rect x="46.6475%" y="757" width="0.1646%" height="15" fill="rgb(238,109,14)" fg:x="20127" fg:w="71"/><text x="46.8975%" y="767.50"></text></g><g><title>alloc::alloc::alloc (71 samples, 0.16%)</title><rect x="46.6475%" y="741" width="0.1646%" height="15" fill="rgb(233,206,34)" fg:x="20127" fg:w="71"/><text x="46.8975%" y="751.50"></text></g><g><title>malloc (59 samples, 0.14%)</title><rect x="46.6753%" y="725" width="0.1367%" height="15" fill="rgb(220,167,47)" fg:x="20139" fg:w="59"/><text x="46.9253%" y="735.50"></text></g><g><title>[libc.so.6] (28 samples, 0.06%)</title><rect x="46.7472%" y="709" width="0.0649%" height="15" fill="rgb(238,105,10)" fg:x="20170" fg:w="28"/><text x="46.9972%" y="719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (577 samples, 1.34%)</title><rect x="45.4794%" y="901" width="1.3373%" height="15" fill="rgb(213,227,17)" fg:x="19623" fg:w="577"/><text x="45.7294%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (577 samples, 1.34%)</title><rect x="45.4794%" y="885" width="1.3373%" height="15" fill="rgb(217,132,38)" fg:x="19623" fg:w="577"/><text x="45.7294%" y="895.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 (572 samples, 1.33%)</title><rect x="45.4910%" y="869" width="1.3257%" height="15" fill="rgb(242,146,4)" fg:x="19628" fg:w="572"/><text x="45.7410%" y="879.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 (571 samples, 1.32%)</title><rect x="45.4933%" y="853" width="1.3234%" height="15" fill="rgb(212,61,9)" fg:x="19629" fg:w="571"/><text x="45.7433%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (86 samples, 0.20%)</title><rect x="46.6174%" y="837" width="0.1993%" height="15" fill="rgb(247,126,22)" fg:x="20114" fg:w="86"/><text x="46.8674%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (86 samples, 0.20%)</title><rect x="46.6174%" y="821" width="0.1993%" height="15" fill="rgb(220,196,2)" fg:x="20114" fg:w="86"/><text x="46.8674%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (77 samples, 0.18%)</title><rect x="46.6382%" y="805" width="0.1785%" height="15" fill="rgb(208,46,4)" fg:x="20123" fg:w="77"/><text x="46.8882%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (77 samples, 0.18%)</title><rect x="46.6382%" y="789" width="0.1785%" height="15" fill="rgb(252,104,46)" fg:x="20123" fg:w="77"/><text x="46.8882%" y="799.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (901 samples, 2.09%)</title><rect x="44.7447%" y="965" width="2.0882%" height="15" fill="rgb(237,152,48)" fg:x="19306" fg:w="901"/><text x="44.9947%" y="975.50">c..</text></g><g><title>slimp::rw::{{closure}} (795 samples, 1.84%)</title><rect x="44.9904%" y="949" width="1.8425%" height="15" fill="rgb(221,59,37)" fg:x="19412" fg:w="795"/><text x="45.2404%" y="959.50">s..</text></g><g><title>slimp::Sexp::rw (795 samples, 1.84%)</title><rect x="44.9904%" y="933" width="1.8425%" height="15" fill="rgb(209,202,51)" fg:x="19412" fg:w="795"/><text x="45.2404%" y="943.50">s..</text></g><g><title>slimp::rw (785 samples, 1.82%)</title><rect x="45.0136%" y="917" width="1.8194%" height="15" fill="rgb(228,81,30)" fg:x="19422" fg:w="785"/><text x="45.2636%" y="927.50">s..</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 (909 samples, 2.11%)</title><rect x="44.7331%" y="1045" width="2.1068%" height="15" fill="rgb(227,42,39)" fg:x="19301" fg:w="909"/><text x="44.9831%" y="1055.50">&lt;..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (909 samples, 2.11%)</title><rect x="44.7331%" y="1029" width="2.1068%" height="15" fill="rgb(221,26,2)" fg:x="19301" fg:w="909"/><text x="44.9831%" y="1039.50">a..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (909 samples, 2.11%)</title><rect x="44.7331%" y="1013" width="2.1068%" height="15" fill="rgb(254,61,31)" fg:x="19301" fg:w="909"/><text x="44.9831%" y="1023.50">c..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (909 samples, 2.11%)</title><rect x="44.7331%" y="997" width="2.1068%" height="15" fill="rgb(222,173,38)" fg:x="19301" fg:w="909"/><text x="44.9831%" y="1007.50">&lt;..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (909 samples, 2.11%)</title><rect x="44.7331%" y="981" width="2.1068%" height="15" fill="rgb(218,50,12)" fg:x="19301" fg:w="909"/><text x="44.9831%" y="991.50">c..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (7 samples, 0.02%)</title><rect x="46.8399%" y="1045" width="0.0162%" height="15" fill="rgb(223,88,40)" fg:x="20210" fg:w="7"/><text x="47.0899%" y="1055.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (7 samples, 0.02%)</title><rect x="46.8399%" y="1029" width="0.0162%" height="15" fill="rgb(237,54,19)" fg:x="20210" fg:w="7"/><text x="47.0899%" y="1039.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::sub_ptr (7 samples, 0.02%)</title><rect x="46.8399%" y="1013" width="0.0162%" height="15" fill="rgb(251,129,25)" fg:x="20210" fg:w="7"/><text x="47.0899%" y="1023.50"></text></g><g><title>__rdl_alloc (6 samples, 0.01%)</title><rect x="46.8955%" y="933" width="0.0139%" height="15" fill="rgb(238,97,19)" fg:x="20234" fg:w="6"/><text x="47.1455%" y="943.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (6 samples, 0.01%)</title><rect x="46.8955%" y="917" width="0.0139%" height="15" fill="rgb(240,169,18)" fg:x="20234" fg:w="6"/><text x="47.1455%" y="927.50"></text></g><g><title>__rust_alloc (7 samples, 0.02%)</title><rect x="46.9094%" y="933" width="0.0162%" height="15" fill="rgb(230,187,49)" fg:x="20240" fg:w="7"/><text x="47.1594%" y="943.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (93 samples, 0.22%)</title><rect x="46.8932%" y="981" width="0.2155%" height="15" fill="rgb(209,44,26)" fg:x="20233" fg:w="93"/><text x="47.1432%" y="991.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (93 samples, 0.22%)</title><rect x="46.8932%" y="965" width="0.2155%" height="15" fill="rgb(244,0,6)" fg:x="20233" fg:w="93"/><text x="47.1432%" y="975.50"></text></g><g><title>alloc::alloc::alloc (93 samples, 0.22%)</title><rect x="46.8932%" y="949" width="0.2155%" height="15" fill="rgb(248,18,21)" fg:x="20233" fg:w="93"/><text x="47.1432%" y="959.50"></text></g><g><title>malloc (79 samples, 0.18%)</title><rect x="46.9256%" y="933" width="0.1831%" height="15" fill="rgb(245,180,19)" fg:x="20247" fg:w="79"/><text x="47.1756%" y="943.50"></text></g><g><title>[libc.so.6] (34 samples, 0.08%)</title><rect x="47.0299%" y="917" width="0.0788%" height="15" fill="rgb(252,118,36)" fg:x="20292" fg:w="34"/><text x="47.2799%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,035 samples, 2.40%)</title><rect x="44.7146%" y="1109" width="2.3988%" height="15" fill="rgb(210,224,19)" fg:x="19293" fg:w="1035"/><text x="44.9646%" y="1119.50">co..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,035 samples, 2.40%)</title><rect x="44.7146%" y="1093" width="2.3988%" height="15" fill="rgb(218,30,24)" fg:x="19293" fg:w="1035"/><text x="44.9646%" y="1103.50">&lt;a..</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,032 samples, 2.39%)</title><rect x="44.7215%" y="1077" width="2.3918%" height="15" fill="rgb(219,75,50)" fg:x="19296" fg:w="1032"/><text x="44.9715%" y="1087.50">&lt;a..</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,029 samples, 2.38%)</title><rect x="44.7285%" y="1061" width="2.3849%" height="15" fill="rgb(234,72,50)" fg:x="19299" fg:w="1029"/><text x="44.9785%" y="1071.50">&lt;a..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (111 samples, 0.26%)</title><rect x="46.8561%" y="1045" width="0.2573%" height="15" fill="rgb(219,100,48)" fg:x="20217" fg:w="111"/><text x="47.1061%" y="1055.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (111 samples, 0.26%)</title><rect x="46.8561%" y="1029" width="0.2573%" height="15" fill="rgb(253,5,41)" fg:x="20217" fg:w="111"/><text x="47.1061%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (103 samples, 0.24%)</title><rect x="46.8746%" y="1013" width="0.2387%" height="15" fill="rgb(247,181,11)" fg:x="20225" fg:w="103"/><text x="47.1246%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (103 samples, 0.24%)</title><rect x="46.8746%" y="997" width="0.2387%" height="15" fill="rgb(222,223,25)" fg:x="20225" fg:w="103"/><text x="47.1246%" y="1007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (7 samples, 0.02%)</title><rect x="47.1134%" y="1109" width="0.0162%" height="15" fill="rgb(214,198,28)" fg:x="20328" fg:w="7"/><text x="47.3634%" y="1119.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (7 samples, 0.02%)</title><rect x="47.1134%" y="1093" width="0.0162%" height="15" fill="rgb(230,46,43)" fg:x="20328" fg:w="7"/><text x="47.3634%" y="1103.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,370 samples, 3.18%)</title><rect x="43.9683%" y="1253" width="3.1752%" height="15" fill="rgb(233,65,53)" fg:x="18971" fg:w="1370"/><text x="44.2183%" y="1263.50">&lt;al..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (1,370 samples, 3.18%)</title><rect x="43.9683%" y="1237" width="3.1752%" height="15" fill="rgb(221,121,27)" fg:x="18971" fg:w="1370"/><text x="44.2183%" y="1247.50">all..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1,370 samples, 3.18%)</title><rect x="43.9683%" y="1221" width="3.1752%" height="15" fill="rgb(247,70,47)" fg:x="18971" fg:w="1370"/><text x="44.2183%" y="1231.50">cor..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1,370 samples, 3.18%)</title><rect x="43.9683%" y="1205" width="3.1752%" height="15" fill="rgb(228,85,35)" fg:x="18971" fg:w="1370"/><text x="44.2183%" y="1215.50">&lt;co..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (1,370 samples, 3.18%)</title><rect x="43.9683%" y="1189" width="3.1752%" height="15" fill="rgb(209,50,18)" fg:x="18971" fg:w="1370"/><text x="44.2183%" y="1199.50">cor..</text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1,364 samples, 3.16%)</title><rect x="43.9822%" y="1173" width="3.1613%" height="15" fill="rgb(250,19,35)" fg:x="18977" fg:w="1364"/><text x="44.2322%" y="1183.50">cor..</text></g><g><title>slimp::rw::{{closure}} (1,257 samples, 2.91%)</title><rect x="44.2302%" y="1157" width="2.9133%" height="15" fill="rgb(253,107,29)" fg:x="19084" fg:w="1257"/><text x="44.4802%" y="1167.50">sl..</text></g><g><title>slimp::Sexp::rw (1,257 samples, 2.91%)</title><rect x="44.2302%" y="1141" width="2.9133%" height="15" fill="rgb(252,179,29)" fg:x="19084" fg:w="1257"/><text x="44.4802%" y="1151.50">sl..</text></g><g><title>slimp::rw (1,245 samples, 2.89%)</title><rect x="44.2580%" y="1125" width="2.8855%" height="15" fill="rgb(238,194,6)" fg:x="19096" fg:w="1245"/><text x="44.5080%" y="1135.50">sl..</text></g><g><title>core::slice::&lt;impl [T]&gt;::iter (6 samples, 0.01%)</title><rect x="47.1296%" y="1109" width="0.0139%" height="15" fill="rgb(238,164,29)" fg:x="20335" fg:w="6"/><text x="47.3796%" y="1119.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::new (6 samples, 0.01%)</title><rect x="47.1296%" y="1093" width="0.0139%" height="15" fill="rgb(224,25,9)" fg:x="20335" fg:w="6"/><text x="47.3796%" y="1103.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::add (6 samples, 0.01%)</title><rect x="47.1296%" y="1077" width="0.0139%" height="15" fill="rgb(244,153,23)" fg:x="20335" fg:w="6"/><text x="47.3796%" y="1087.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset (6 samples, 0.01%)</title><rect x="47.1296%" y="1061" width="0.0139%" height="15" fill="rgb(212,203,14)" fg:x="20335" fg:w="6"/><text x="47.3796%" y="1071.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (11 samples, 0.03%)</title><rect x="47.1435%" y="1253" width="0.0255%" height="15" fill="rgb(220,164,20)" fg:x="20341" fg:w="11"/><text x="47.3935%" y="1263.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (11 samples, 0.03%)</title><rect x="47.1435%" y="1237" width="0.0255%" height="15" fill="rgb(222,203,48)" fg:x="20341" fg:w="11"/><text x="47.3935%" y="1247.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::sub_ptr (11 samples, 0.03%)</title><rect x="47.1435%" y="1221" width="0.0255%" height="15" fill="rgb(215,159,22)" fg:x="20341" fg:w="11"/><text x="47.3935%" y="1231.50"></text></g><g><title>__rdl_alloc (8 samples, 0.02%)</title><rect x="47.2246%" y="1141" width="0.0185%" height="15" fill="rgb(216,183,47)" fg:x="20376" fg:w="8"/><text x="47.4746%" y="1151.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (8 samples, 0.02%)</title><rect x="47.2246%" y="1125" width="0.0185%" height="15" fill="rgb(229,195,25)" fg:x="20376" fg:w="8"/><text x="47.4746%" y="1135.50"></text></g><g><title>__rust_alloc (5 samples, 0.01%)</title><rect x="47.2431%" y="1141" width="0.0116%" height="15" fill="rgb(224,132,51)" fg:x="20384" fg:w="5"/><text x="47.4931%" y="1151.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (99 samples, 0.23%)</title><rect x="47.2223%" y="1189" width="0.2294%" height="15" fill="rgb(240,63,7)" fg:x="20375" fg:w="99"/><text x="47.4723%" y="1199.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (99 samples, 0.23%)</title><rect x="47.2223%" y="1173" width="0.2294%" height="15" fill="rgb(249,182,41)" fg:x="20375" fg:w="99"/><text x="47.4723%" y="1183.50"></text></g><g><title>alloc::alloc::alloc (99 samples, 0.23%)</title><rect x="47.2223%" y="1157" width="0.2294%" height="15" fill="rgb(243,47,26)" fg:x="20375" fg:w="99"/><text x="47.4723%" y="1167.50"></text></g><g><title>malloc (85 samples, 0.20%)</title><rect x="47.2547%" y="1141" width="0.1970%" height="15" fill="rgb(233,48,2)" fg:x="20389" fg:w="85"/><text x="47.5047%" y="1151.50"></text></g><g><title>[libc.so.6] (39 samples, 0.09%)</title><rect x="47.3613%" y="1125" width="0.0904%" height="15" fill="rgb(244,165,34)" fg:x="20435" fg:w="39"/><text x="47.6113%" y="1135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,518 samples, 3.52%)</title><rect x="43.9451%" y="1317" width="3.5182%" height="15" fill="rgb(207,89,7)" fg:x="18961" fg:w="1518"/><text x="44.1951%" y="1327.50">cor..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,518 samples, 3.52%)</title><rect x="43.9451%" y="1301" width="3.5182%" height="15" fill="rgb(244,117,36)" fg:x="18961" fg:w="1518"/><text x="44.1951%" y="1311.50">&lt;al..</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,516 samples, 3.51%)</title><rect x="43.9498%" y="1285" width="3.5136%" height="15" fill="rgb(226,144,34)" fg:x="18963" fg:w="1516"/><text x="44.1998%" y="1295.50">&lt;al..</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,514 samples, 3.51%)</title><rect x="43.9544%" y="1269" width="3.5089%" height="15" fill="rgb(213,23,19)" fg:x="18965" fg:w="1514"/><text x="44.2044%" y="1279.50">&lt;al..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (127 samples, 0.29%)</title><rect x="47.1690%" y="1253" width="0.2943%" height="15" fill="rgb(217,75,12)" fg:x="20352" fg:w="127"/><text x="47.4190%" y="1263.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (127 samples, 0.29%)</title><rect x="47.1690%" y="1237" width="0.2943%" height="15" fill="rgb(224,159,17)" fg:x="20352" fg:w="127"/><text x="47.4190%" y="1247.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (115 samples, 0.27%)</title><rect x="47.1968%" y="1221" width="0.2665%" height="15" fill="rgb(217,118,1)" fg:x="20364" fg:w="115"/><text x="47.4468%" y="1231.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (115 samples, 0.27%)</title><rect x="47.1968%" y="1205" width="0.2665%" height="15" fill="rgb(232,180,48)" fg:x="20364" fg:w="115"/><text x="47.4468%" y="1215.50"></text></g><g><title>core::alloc::layout::Layout::array (5 samples, 0.01%)</title><rect x="47.4517%" y="1189" width="0.0116%" height="15" fill="rgb(230,27,33)" fg:x="20474" fg:w="5"/><text x="47.7017%" y="1199.50"></text></g><g><title>core::alloc::layout::Layout::array::inner (5 samples, 0.01%)</title><rect x="47.4517%" y="1173" width="0.0116%" height="15" fill="rgb(205,31,21)" fg:x="20474" fg:w="5"/><text x="47.7017%" y="1183.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1,602 samples, 3.71%)</title><rect x="43.7667%" y="1381" width="3.7129%" height="15" fill="rgb(253,59,4)" fg:x="18884" fg:w="1602"/><text x="44.0167%" y="1391.50">core..</text></g><g><title>slimp::rw::{{closure}} (1,570 samples, 3.64%)</title><rect x="43.8408%" y="1365" width="3.6387%" height="15" fill="rgb(224,201,9)" fg:x="18916" fg:w="1570"/><text x="44.0908%" y="1375.50">slim..</text></g><g><title>slimp::Sexp::rw (1,570 samples, 3.64%)</title><rect x="43.8408%" y="1349" width="3.6387%" height="15" fill="rgb(229,206,30)" fg:x="18916" fg:w="1570"/><text x="44.0908%" y="1359.50">slim..</text></g><g><title>slimp::rw (1,567 samples, 3.63%)</title><rect x="43.8478%" y="1333" width="3.6318%" height="15" fill="rgb(212,67,47)" fg:x="18919" fg:w="1567"/><text x="44.0978%" y="1343.50">slim..</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,612 samples, 3.74%)</title><rect x="43.7481%" y="1461" width="3.7361%" height="15" fill="rgb(211,96,50)" fg:x="18876" fg:w="1612"/><text x="43.9981%" y="1471.50">&lt;all..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (1,612 samples, 3.74%)</title><rect x="43.7481%" y="1445" width="3.7361%" height="15" fill="rgb(252,114,18)" fg:x="18876" fg:w="1612"/><text x="43.9981%" y="1455.50">allo..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1,612 samples, 3.74%)</title><rect x="43.7481%" y="1429" width="3.7361%" height="15" fill="rgb(223,58,37)" fg:x="18876" fg:w="1612"/><text x="43.9981%" y="1439.50">core..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1,612 samples, 3.74%)</title><rect x="43.7481%" y="1413" width="3.7361%" height="15" fill="rgb(237,70,4)" fg:x="18876" fg:w="1612"/><text x="43.9981%" y="1423.50">&lt;cor..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (1,612 samples, 3.74%)</title><rect x="43.7481%" y="1397" width="3.7361%" height="15" fill="rgb(244,85,46)" fg:x="18876" fg:w="1612"/><text x="43.9981%" y="1407.50">core..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (58 samples, 0.13%)</title><rect x="47.5097%" y="1397" width="0.1344%" height="15" fill="rgb(223,39,52)" fg:x="20499" fg:w="58"/><text x="47.7597%" y="1407.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (58 samples, 0.13%)</title><rect x="47.5097%" y="1381" width="0.1344%" height="15" fill="rgb(218,200,14)" fg:x="20499" fg:w="58"/><text x="47.7597%" y="1391.50"></text></g><g><title>alloc::alloc::alloc (58 samples, 0.13%)</title><rect x="47.5097%" y="1365" width="0.1344%" height="15" fill="rgb(208,171,16)" fg:x="20499" fg:w="58"/><text x="47.7597%" y="1375.50"></text></g><g><title>malloc (53 samples, 0.12%)</title><rect x="47.5213%" y="1349" width="0.1228%" height="15" fill="rgb(234,200,18)" fg:x="20504" fg:w="53"/><text x="47.7713%" y="1359.50"></text></g><g><title>[libc.so.6] (14 samples, 0.03%)</title><rect x="47.6117%" y="1333" width="0.0324%" height="15" fill="rgb(228,45,11)" fg:x="20543" fg:w="14"/><text x="47.8617%" y="1343.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,687 samples, 3.91%)</title><rect x="43.7365%" y="1525" width="3.9099%" height="15" fill="rgb(237,182,11)" fg:x="18871" fg:w="1687"/><text x="43.9865%" y="1535.50">core..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,687 samples, 3.91%)</title><rect x="43.7365%" y="1509" width="3.9099%" height="15" fill="rgb(241,175,49)" fg:x="18871" fg:w="1687"/><text x="43.9865%" y="1519.50">&lt;all..</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,684 samples, 3.90%)</title><rect x="43.7435%" y="1493" width="3.9029%" height="15" fill="rgb(247,38,35)" fg:x="18874" fg:w="1684"/><text x="43.9935%" y="1503.50">&lt;all..</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,684 samples, 3.90%)</title><rect x="43.7435%" y="1477" width="3.9029%" height="15" fill="rgb(228,39,49)" fg:x="18874" fg:w="1684"/><text x="43.9935%" y="1487.50">&lt;all..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (70 samples, 0.16%)</title><rect x="47.4842%" y="1461" width="0.1622%" height="15" fill="rgb(226,101,26)" fg:x="20488" fg:w="70"/><text x="47.7342%" y="1471.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (70 samples, 0.16%)</title><rect x="47.4842%" y="1445" width="0.1622%" height="15" fill="rgb(206,141,19)" fg:x="20488" fg:w="70"/><text x="47.7342%" y="1455.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (68 samples, 0.16%)</title><rect x="47.4888%" y="1429" width="0.1576%" height="15" fill="rgb(211,200,13)" fg:x="20490" fg:w="68"/><text x="47.7388%" y="1439.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (68 samples, 0.16%)</title><rect x="47.4888%" y="1413" width="0.1576%" height="15" fill="rgb(241,121,6)" fg:x="20490" fg:w="68"/><text x="47.7388%" y="1423.50"></text></g><g><title>slimp::Rule::concrify (1,872 samples, 4.34%)</title><rect x="43.3170%" y="1557" width="4.3387%" height="15" fill="rgb(234,221,29)" fg:x="18690" fg:w="1872"/><text x="43.5670%" y="1567.50">slimp..</text></g><g><title>slimp::rw (1,706 samples, 3.95%)</title><rect x="43.7018%" y="1541" width="3.9539%" height="15" fill="rgb(229,136,5)" fg:x="18856" fg:w="1706"/><text x="43.9518%" y="1551.50">slim..</text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="47.7113%" y="1413" width="0.0209%" height="15" fill="rgb(238,36,11)" fg:x="20586" fg:w="9"/><text x="47.9613%" y="1423.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (27 samples, 0.06%)</title><rect x="47.6765%" y="1477" width="0.0626%" height="15" fill="rgb(251,55,41)" fg:x="20571" fg:w="27"/><text x="47.9265%" y="1487.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (27 samples, 0.06%)</title><rect x="47.6765%" y="1461" width="0.0626%" height="15" fill="rgb(242,34,40)" fg:x="20571" fg:w="27"/><text x="47.9265%" y="1471.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (27 samples, 0.06%)</title><rect x="47.6765%" y="1445" width="0.0626%" height="15" fill="rgb(215,42,17)" fg:x="20571" fg:w="27"/><text x="47.9265%" y="1455.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (16 samples, 0.04%)</title><rect x="47.7020%" y="1429" width="0.0371%" height="15" fill="rgb(207,44,46)" fg:x="20582" fg:w="16"/><text x="47.9520%" y="1439.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.02%)</title><rect x="47.7716%" y="1365" width="0.0185%" height="15" fill="rgb(211,206,28)" fg:x="20612" fg:w="8"/><text x="48.0216%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (6 samples, 0.01%)</title><rect x="47.8087%" y="1269" width="0.0139%" height="15" fill="rgb(237,167,16)" fg:x="20628" fg:w="6"/><text x="48.0587%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (21 samples, 0.05%)</title><rect x="47.7924%" y="1317" width="0.0487%" height="15" fill="rgb(233,66,6)" fg:x="20621" fg:w="21"/><text x="48.0424%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (21 samples, 0.05%)</title><rect x="47.7924%" y="1301" width="0.0487%" height="15" fill="rgb(246,123,29)" fg:x="20621" fg:w="21"/><text x="48.0424%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (21 samples, 0.05%)</title><rect x="47.7924%" y="1285" width="0.0487%" height="15" fill="rgb(209,62,40)" fg:x="20621" fg:w="21"/><text x="48.0424%" y="1295.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="47.8249%" y="1269" width="0.0162%" height="15" fill="rgb(218,4,25)" fg:x="20635" fg:w="7"/><text x="48.0749%" y="1279.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (23 samples, 0.05%)</title><rect x="47.7901%" y="1365" width="0.0533%" height="15" fill="rgb(253,91,49)" fg:x="20620" fg:w="23"/><text x="48.0401%" y="1375.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (23 samples, 0.05%)</title><rect x="47.7901%" y="1349" width="0.0533%" height="15" fill="rgb(228,155,29)" fg:x="20620" fg:w="23"/><text x="48.0401%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_u32 (22 samples, 0.05%)</title><rect x="47.7924%" y="1333" width="0.0510%" height="15" fill="rgb(243,57,37)" fg:x="20621" fg:w="22"/><text x="48.0424%" y="1343.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="47.8990%" y="1285" width="0.0301%" height="15" fill="rgb(244,167,17)" fg:x="20667" fg:w="13"/><text x="48.1490%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="48.0126%" y="1189" width="0.0417%" height="15" fill="rgb(207,181,38)" fg:x="20716" fg:w="18"/><text x="48.2626%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="48.0404%" y="1173" width="0.0139%" height="15" fill="rgb(211,8,23)" fg:x="20728" fg:w="6"/><text x="48.2904%" y="1183.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (75 samples, 0.17%)</title><rect x="47.9292%" y="1285" width="0.1738%" height="15" fill="rgb(235,11,44)" fg:x="20680" fg:w="75"/><text x="48.1792%" y="1295.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (63 samples, 0.15%)</title><rect x="47.9570%" y="1269" width="0.1460%" height="15" fill="rgb(248,18,52)" fg:x="20692" fg:w="63"/><text x="48.2070%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_u32 (57 samples, 0.13%)</title><rect x="47.9709%" y="1253" width="0.1321%" height="15" fill="rgb(208,4,7)" fg:x="20698" fg:w="57"/><text x="48.2209%" y="1263.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="47.9709%" y="1237" width="0.1321%" height="15" fill="rgb(240,17,39)" fg:x="20698" fg:w="57"/><text x="48.2209%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="47.9709%" y="1221" width="0.1321%" height="15" fill="rgb(207,170,3)" fg:x="20698" fg:w="57"/><text x="48.2209%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="47.9709%" y="1205" width="0.1321%" height="15" fill="rgb(236,100,52)" fg:x="20698" fg:w="57"/><text x="48.2209%" y="1215.50"></text></g><g><title>core::hash::sip::u8to64_le (20 samples, 0.05%)</title><rect x="48.0566%" y="1189" width="0.0464%" height="15" fill="rgb(246,78,51)" fg:x="20735" fg:w="20"/><text x="48.3066%" y="1199.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="48.1957%" y="1205" width="0.0301%" height="15" fill="rgb(211,17,15)" fg:x="20795" fg:w="13"/><text x="48.4457%" y="1215.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (5 samples, 0.01%)</title><rect x="48.2142%" y="1189" width="0.0116%" height="15" fill="rgb(209,59,46)" fg:x="20803" fg:w="5"/><text x="48.4642%" y="1199.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (5 samples, 0.01%)</title><rect x="48.2142%" y="1173" width="0.0116%" height="15" fill="rgb(210,92,25)" fg:x="20803" fg:w="5"/><text x="48.4642%" y="1183.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (5 samples, 0.01%)</title><rect x="48.2142%" y="1157" width="0.0116%" height="15" fill="rgb(238,174,52)" fg:x="20803" fg:w="5"/><text x="48.4642%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="48.3185%" y="1093" width="0.0116%" height="15" fill="rgb(230,73,7)" fg:x="20848" fg:w="5"/><text x="48.5685%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (27 samples, 0.06%)</title><rect x="48.3000%" y="1109" width="0.0626%" height="15" fill="rgb(243,124,40)" fg:x="20840" fg:w="27"/><text x="48.5500%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="48.3301%" y="1093" width="0.0324%" height="15" fill="rgb(244,170,11)" fg:x="20853" fg:w="14"/><text x="48.5801%" y="1103.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="48.3626%" y="1109" width="0.0116%" height="15" fill="rgb(207,114,54)" fg:x="20867" fg:w="5"/><text x="48.6126%" y="1119.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="48.3626%" y="1093" width="0.0116%" height="15" fill="rgb(205,42,20)" fg:x="20867" fg:w="5"/><text x="48.6126%" y="1103.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="48.3626%" y="1077" width="0.0116%" height="15" fill="rgb(230,30,28)" fg:x="20867" fg:w="5"/><text x="48.6126%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (86 samples, 0.20%)</title><rect x="48.2444%" y="1157" width="0.1993%" height="15" fill="rgb(205,73,54)" fg:x="20816" fg:w="86"/><text x="48.4944%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (86 samples, 0.20%)</title><rect x="48.2444%" y="1141" width="0.1993%" height="15" fill="rgb(254,227,23)" fg:x="20816" fg:w="86"/><text x="48.4944%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (86 samples, 0.20%)</title><rect x="48.2444%" y="1125" width="0.1993%" height="15" fill="rgb(228,202,34)" fg:x="20816" fg:w="86"/><text x="48.4944%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (30 samples, 0.07%)</title><rect x="48.3742%" y="1109" width="0.0695%" height="15" fill="rgb(222,225,37)" fg:x="20872" fg:w="30"/><text x="48.6242%" y="1119.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (97 samples, 0.22%)</title><rect x="48.2258%" y="1205" width="0.2248%" height="15" fill="rgb(221,14,54)" fg:x="20808" fg:w="97"/><text x="48.4758%" y="1215.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (94 samples, 0.22%)</title><rect x="48.2328%" y="1189" width="0.2179%" height="15" fill="rgb(254,102,2)" fg:x="20811" fg:w="94"/><text x="48.4828%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_u32 (89 samples, 0.21%)</title><rect x="48.2444%" y="1173" width="0.2063%" height="15" fill="rgb(232,104,17)" fg:x="20816" fg:w="89"/><text x="48.4944%" y="1183.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (16 samples, 0.04%)</title><rect x="48.5434%" y="1125" width="0.0371%" height="15" fill="rgb(250,220,14)" fg:x="20945" fg:w="16"/><text x="48.7934%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="48.7010%" y="1013" width="0.0139%" height="15" fill="rgb(241,158,9)" fg:x="21013" fg:w="6"/><text x="48.9510%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (30 samples, 0.07%)</title><rect x="48.6778%" y="1029" width="0.0695%" height="15" fill="rgb(246,9,43)" fg:x="21003" fg:w="30"/><text x="48.9278%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="48.7149%" y="1013" width="0.0324%" height="15" fill="rgb(206,73,33)" fg:x="21019" fg:w="14"/><text x="48.9649%" y="1023.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="48.7473%" y="1029" width="0.0139%" height="15" fill="rgb(222,79,8)" fg:x="21033" fg:w="6"/><text x="48.9973%" y="1039.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="48.7473%" y="1013" width="0.0139%" height="15" fill="rgb(234,8,54)" fg:x="21033" fg:w="6"/><text x="48.9973%" y="1023.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="48.7473%" y="997" width="0.0139%" height="15" fill="rgb(209,134,38)" fg:x="21033" fg:w="6"/><text x="48.9973%" y="1007.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="48.6129%" y="1077" width="0.2086%" height="15" fill="rgb(230,127,29)" fg:x="20975" fg:w="90"/><text x="48.8629%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="48.6129%" y="1061" width="0.2086%" height="15" fill="rgb(242,44,41)" fg:x="20975" fg:w="90"/><text x="48.8629%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="48.6129%" y="1045" width="0.2086%" height="15" fill="rgb(222,56,43)" fg:x="20975" fg:w="90"/><text x="48.8629%" y="1055.50"></text></g><g><title>core::hash::sip::u8to64_le (26 samples, 0.06%)</title><rect x="48.7612%" y="1029" width="0.0603%" height="15" fill="rgb(238,39,47)" fg:x="21039" fg:w="26"/><text x="49.0112%" y="1039.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (106 samples, 0.25%)</title><rect x="48.5804%" y="1125" width="0.2457%" height="15" fill="rgb(226,79,43)" fg:x="20961" fg:w="106"/><text x="48.8304%" y="1135.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (98 samples, 0.23%)</title><rect x="48.5990%" y="1109" width="0.2271%" height="15" fill="rgb(242,105,53)" fg:x="20969" fg:w="98"/><text x="48.8490%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_u32 (92 samples, 0.21%)</title><rect x="48.6129%" y="1093" width="0.2132%" height="15" fill="rgb(251,132,46)" fg:x="20975" fg:w="92"/><text x="48.8629%" y="1103.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="48.9234%" y="1045" width="0.0162%" height="15" fill="rgb(231,77,14)" fg:x="21109" fg:w="7"/><text x="49.1734%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="49.0834%" y="933" width="0.0209%" height="15" fill="rgb(240,135,9)" fg:x="21178" fg:w="9"/><text x="49.3334%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (31 samples, 0.07%)</title><rect x="49.0509%" y="949" width="0.0718%" height="15" fill="rgb(248,109,14)" fg:x="21164" fg:w="31"/><text x="49.3009%" y="959.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="49.1042%" y="933" width="0.0185%" height="15" fill="rgb(227,146,52)" fg:x="21187" fg:w="8"/><text x="49.3542%" y="943.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (114 samples, 0.26%)</title><rect x="48.9397%" y="1045" width="0.2642%" height="15" fill="rgb(232,54,3)" fg:x="21116" fg:w="114"/><text x="49.1897%" y="1055.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (105 samples, 0.24%)</title><rect x="48.9605%" y="1029" width="0.2434%" height="15" fill="rgb(229,201,43)" fg:x="21125" fg:w="105"/><text x="49.2105%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_u32 (99 samples, 0.23%)</title><rect x="48.9744%" y="1013" width="0.2294%" height="15" fill="rgb(252,161,33)" fg:x="21131" fg:w="99"/><text x="49.2244%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="48.9744%" y="997" width="0.2294%" height="15" fill="rgb(226,146,40)" fg:x="21131" fg:w="99"/><text x="49.2244%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="48.9744%" y="981" width="0.2294%" height="15" fill="rgb(219,47,25)" fg:x="21131" fg:w="99"/><text x="49.2244%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="48.9744%" y="965" width="0.2294%" height="15" fill="rgb(250,135,13)" fg:x="21131" fg:w="99"/><text x="49.2244%" y="975.50"></text></g><g><title>core::hash::sip::u8to64_le (31 samples, 0.07%)</title><rect x="49.1320%" y="949" width="0.0718%" height="15" fill="rgb(219,229,18)" fg:x="21199" fg:w="31"/><text x="49.3820%" y="959.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="49.2757%" y="965" width="0.0301%" height="15" fill="rgb(217,152,27)" fg:x="21261" fg:w="13"/><text x="49.5257%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (14 samples, 0.03%)</title><rect x="49.3522%" y="869" width="0.0324%" height="15" fill="rgb(225,71,47)" fg:x="21294" fg:w="14"/><text x="49.6022%" y="879.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="49.3731%" y="853" width="0.0116%" height="15" fill="rgb(220,139,14)" fg:x="21303" fg:w="5"/><text x="49.6231%" y="863.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (60 samples, 0.14%)</title><rect x="49.3059%" y="965" width="0.1391%" height="15" fill="rgb(247,54,32)" fg:x="21274" fg:w="60"/><text x="49.5559%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (58 samples, 0.13%)</title><rect x="49.3105%" y="949" width="0.1344%" height="15" fill="rgb(252,131,39)" fg:x="21276" fg:w="58"/><text x="49.5605%" y="959.50"></text></g><g><title>core::hash::Hasher::write_u32 (57 samples, 0.13%)</title><rect x="49.3128%" y="933" width="0.1321%" height="15" fill="rgb(210,108,39)" fg:x="21277" fg:w="57"/><text x="49.5628%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="49.3128%" y="917" width="0.1321%" height="15" fill="rgb(205,23,29)" fg:x="21277" fg:w="57"/><text x="49.5628%" y="927.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="49.3128%" y="901" width="0.1321%" height="15" fill="rgb(246,139,46)" fg:x="21277" fg:w="57"/><text x="49.5628%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (57 samples, 0.13%)</title><rect x="49.3128%" y="885" width="0.1321%" height="15" fill="rgb(250,81,26)" fg:x="21277" fg:w="57"/><text x="49.5628%" y="895.50"></text></g><g><title>core::hash::sip::u8to64_le (23 samples, 0.05%)</title><rect x="49.3916%" y="869" width="0.0533%" height="15" fill="rgb(214,104,7)" fg:x="21311" fg:w="23"/><text x="49.6416%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="49.5191%" y="789" width="0.0185%" height="15" fill="rgb(233,189,8)" fg:x="21366" fg:w="8"/><text x="49.7691%" y="799.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="49.4982%" y="885" width="0.0649%" height="15" fill="rgb(228,141,17)" fg:x="21357" fg:w="28"/><text x="49.7482%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (27 samples, 0.06%)</title><rect x="49.5005%" y="869" width="0.0626%" height="15" fill="rgb(247,157,1)" fg:x="21358" fg:w="27"/><text x="49.7505%" y="879.50"></text></g><g><title>core::hash::Hasher::write_u32 (25 samples, 0.06%)</title><rect x="49.5052%" y="853" width="0.0579%" height="15" fill="rgb(249,225,5)" fg:x="21360" fg:w="25"/><text x="49.7552%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="49.5052%" y="837" width="0.0579%" height="15" fill="rgb(242,55,13)" fg:x="21360" fg:w="25"/><text x="49.7552%" y="847.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="49.5052%" y="821" width="0.0579%" height="15" fill="rgb(230,49,50)" fg:x="21360" fg:w="25"/><text x="49.7552%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="49.5052%" y="805" width="0.0579%" height="15" fill="rgb(241,111,38)" fg:x="21360" fg:w="25"/><text x="49.7552%" y="815.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="49.5376%" y="789" width="0.0255%" height="15" fill="rgb(252,155,4)" fg:x="21374" fg:w="11"/><text x="49.7876%" y="799.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="49.6211%" y="757" width="0.0116%" height="15" fill="rgb(212,69,32)" fg:x="21410" fg:w="5"/><text x="49.8711%" y="767.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (11 samples, 0.03%)</title><rect x="49.6141%" y="773" width="0.0255%" height="15" fill="rgb(243,107,47)" fg:x="21407" fg:w="11"/><text x="49.8641%" y="783.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="49.5793%" y="821" width="0.0718%" height="15" fill="rgb(247,130,12)" fg:x="21392" fg:w="31"/><text x="49.8293%" y="831.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="49.5793%" y="805" width="0.0718%" height="15" fill="rgb(233,74,16)" fg:x="21392" fg:w="31"/><text x="49.8293%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="49.5793%" y="789" width="0.0718%" height="15" fill="rgb(208,58,18)" fg:x="21392" fg:w="31"/><text x="49.8293%" y="799.50"></text></g><g><title>core::hash::Hash::hash_slice (73 samples, 0.17%)</title><rect x="49.4843%" y="917" width="0.1692%" height="15" fill="rgb(242,225,1)" fg:x="21351" fg:w="73"/><text x="49.7343%" y="927.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (73 samples, 0.17%)</title><rect x="49.4843%" y="901" width="0.1692%" height="15" fill="rgb(249,39,40)" fg:x="21351" fg:w="73"/><text x="49.7343%" y="911.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (39 samples, 0.09%)</title><rect x="49.5631%" y="885" width="0.0904%" height="15" fill="rgb(207,72,44)" fg:x="21385" fg:w="39"/><text x="49.8131%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (34 samples, 0.08%)</title><rect x="49.5747%" y="869" width="0.0788%" height="15" fill="rgb(215,193,12)" fg:x="21390" fg:w="34"/><text x="49.8247%" y="879.50"></text></g><g><title>core::hash::Hasher::write_isize (34 samples, 0.08%)</title><rect x="49.5747%" y="853" width="0.0788%" height="15" fill="rgb(248,41,39)" fg:x="21390" fg:w="34"/><text x="49.8247%" y="863.50"></text></g><g><title>core::hash::Hasher::write_usize (33 samples, 0.08%)</title><rect x="49.5770%" y="837" width="0.0765%" height="15" fill="rgb(253,85,4)" fg:x="21391" fg:w="33"/><text x="49.8270%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (86 samples, 0.20%)</title><rect x="49.4843%" y="949" width="0.1993%" height="15" fill="rgb(243,70,31)" fg:x="21351" fg:w="86"/><text x="49.7343%" y="959.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (86 samples, 0.20%)</title><rect x="49.4843%" y="933" width="0.1993%" height="15" fill="rgb(253,195,26)" fg:x="21351" fg:w="86"/><text x="49.7343%" y="943.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (13 samples, 0.03%)</title><rect x="49.6535%" y="917" width="0.0301%" height="15" fill="rgb(243,42,11)" fg:x="21424" fg:w="13"/><text x="49.9035%" y="927.50"></text></g><g><title>core::hash::Hasher::write_usize (13 samples, 0.03%)</title><rect x="49.6535%" y="901" width="0.0301%" height="15" fill="rgb(239,66,17)" fg:x="21424" fg:w="13"/><text x="49.9035%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="49.6535%" y="885" width="0.0301%" height="15" fill="rgb(217,132,21)" fg:x="21424" fg:w="13"/><text x="49.9035%" y="895.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="49.6535%" y="869" width="0.0301%" height="15" fill="rgb(252,202,21)" fg:x="21424" fg:w="13"/><text x="49.9035%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="49.6535%" y="853" width="0.0301%" height="15" fill="rgb(233,98,36)" fg:x="21424" fg:w="13"/><text x="49.9035%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (17 samples, 0.04%)</title><rect x="49.7810%" y="837" width="0.0394%" height="15" fill="rgb(216,153,54)" fg:x="21479" fg:w="17"/><text x="50.0310%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (34 samples, 0.08%)</title><rect x="49.7601%" y="853" width="0.0788%" height="15" fill="rgb(250,99,7)" fg:x="21470" fg:w="34"/><text x="50.0101%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="49.8204%" y="837" width="0.0185%" height="15" fill="rgb(207,56,50)" fg:x="21496" fg:w="8"/><text x="50.0704%" y="847.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="49.8459%" y="853" width="0.0394%" height="15" fill="rgb(244,61,34)" fg:x="21507" fg:w="17"/><text x="50.0959%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="49.7045%" y="901" width="0.1831%" height="15" fill="rgb(241,50,38)" fg:x="21446" fg:w="79"/><text x="49.9545%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="49.7045%" y="885" width="0.1831%" height="15" fill="rgb(212,166,30)" fg:x="21446" fg:w="79"/><text x="49.9545%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="49.7045%" y="869" width="0.1831%" height="15" fill="rgb(249,127,32)" fg:x="21446" fg:w="79"/><text x="49.9545%" y="879.50"></text></g><g><title>core::hash::Hash::hash_slice (277 samples, 0.64%)</title><rect x="49.2688%" y="997" width="0.6420%" height="15" fill="rgb(209,103,0)" fg:x="21258" fg:w="277"/><text x="49.5188%" y="1007.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (277 samples, 0.64%)</title><rect x="49.2688%" y="981" width="0.6420%" height="15" fill="rgb(238,209,51)" fg:x="21258" fg:w="277"/><text x="49.5188%" y="991.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (201 samples, 0.47%)</title><rect x="49.4449%" y="965" width="0.4658%" height="15" fill="rgb(237,56,23)" fg:x="21334" fg:w="201"/><text x="49.6949%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (98 samples, 0.23%)</title><rect x="49.6836%" y="949" width="0.2271%" height="15" fill="rgb(215,153,46)" fg:x="21437" fg:w="98"/><text x="49.9336%" y="959.50"></text></g><g><title>core::hash::Hasher::write_isize (98 samples, 0.23%)</title><rect x="49.6836%" y="933" width="0.2271%" height="15" fill="rgb(224,49,31)" fg:x="21437" fg:w="98"/><text x="49.9336%" y="943.50"></text></g><g><title>core::hash::Hasher::write_usize (96 samples, 0.22%)</title><rect x="49.6883%" y="917" width="0.2225%" height="15" fill="rgb(250,18,42)" fg:x="21439" fg:w="96"/><text x="49.9383%" y="927.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (10 samples, 0.02%)</title><rect x="49.8876%" y="901" width="0.0232%" height="15" fill="rgb(215,176,39)" fg:x="21525" fg:w="10"/><text x="50.1376%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="49.9571%" y="901" width="0.0139%" height="15" fill="rgb(223,77,29)" fg:x="21555" fg:w="6"/><text x="50.2071%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.03%)</title><rect x="49.9479%" y="917" width="0.0278%" height="15" fill="rgb(234,94,52)" fg:x="21551" fg:w="12"/><text x="50.1979%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="49.9224%" y="965" width="0.0858%" height="15" fill="rgb(220,154,50)" fg:x="21540" fg:w="37"/><text x="50.1724%" y="975.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="49.9224%" y="949" width="0.0858%" height="15" fill="rgb(212,11,10)" fg:x="21540" fg:w="37"/><text x="50.1724%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="49.9224%" y="933" width="0.0858%" height="15" fill="rgb(205,166,19)" fg:x="21540" fg:w="37"/><text x="50.1724%" y="943.50"></text></g><g><title>core::hash::sip::u8to64_le (12 samples, 0.03%)</title><rect x="49.9803%" y="917" width="0.0278%" height="15" fill="rgb(244,198,16)" fg:x="21565" fg:w="12"/><text x="50.2303%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (321 samples, 0.74%)</title><rect x="49.2688%" y="1029" width="0.7440%" height="15" fill="rgb(219,69,12)" fg:x="21258" fg:w="321"/><text x="49.5188%" y="1039.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (321 samples, 0.74%)</title><rect x="49.2688%" y="1013" width="0.7440%" height="15" fill="rgb(245,30,7)" fg:x="21258" fg:w="321"/><text x="49.5188%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (44 samples, 0.10%)</title><rect x="49.9108%" y="997" width="0.1020%" height="15" fill="rgb(218,221,48)" fg:x="21535" fg:w="44"/><text x="50.1608%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_usize (42 samples, 0.10%)</title><rect x="49.9154%" y="981" width="0.0973%" height="15" fill="rgb(216,66,15)" fg:x="21537" fg:w="42"/><text x="50.1654%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (25 samples, 0.06%)</title><rect x="50.1750%" y="917" width="0.0579%" height="15" fill="rgb(226,122,50)" fg:x="21649" fg:w="25"/><text x="50.4250%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (47 samples, 0.11%)</title><rect x="50.1518%" y="933" width="0.1089%" height="15" fill="rgb(239,156,16)" fg:x="21639" fg:w="47"/><text x="50.4018%" y="943.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="50.2329%" y="917" width="0.0278%" height="15" fill="rgb(224,27,38)" fg:x="21674" fg:w="12"/><text x="50.4829%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (41 samples, 0.10%)</title><rect x="50.2677%" y="933" width="0.0950%" height="15" fill="rgb(224,39,27)" fg:x="21689" fg:w="41"/><text x="50.5177%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (146 samples, 0.34%)</title><rect x="50.0313%" y="981" width="0.3384%" height="15" fill="rgb(215,92,29)" fg:x="21587" fg:w="146"/><text x="50.2813%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (146 samples, 0.34%)</title><rect x="50.0313%" y="965" width="0.3384%" height="15" fill="rgb(207,159,16)" fg:x="21587" fg:w="146"/><text x="50.2813%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (146 samples, 0.34%)</title><rect x="50.0313%" y="949" width="0.3384%" height="15" fill="rgb(238,163,47)" fg:x="21587" fg:w="146"/><text x="50.2813%" y="959.50"></text></g><g><title>core::hash::Hash::hash_slice (637 samples, 1.48%)</title><rect x="48.9072%" y="1077" width="1.4763%" height="15" fill="rgb(219,91,49)" fg:x="21102" fg:w="637"/><text x="49.1572%" y="1087.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (637 samples, 1.48%)</title><rect x="48.9072%" y="1061" width="1.4763%" height="15" fill="rgb(227,167,31)" fg:x="21102" fg:w="637"/><text x="49.1572%" y="1071.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (509 samples, 1.18%)</title><rect x="49.2039%" y="1045" width="1.1797%" height="15" fill="rgb(234,80,54)" fg:x="21230" fg:w="509"/><text x="49.4539%" y="1055.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (160 samples, 0.37%)</title><rect x="50.0127%" y="1029" width="0.3708%" height="15" fill="rgb(212,114,2)" fg:x="21579" fg:w="160"/><text x="50.2627%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_isize (160 samples, 0.37%)</title><rect x="50.0127%" y="1013" width="0.3708%" height="15" fill="rgb(234,50,24)" fg:x="21579" fg:w="160"/><text x="50.2627%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_usize (157 samples, 0.36%)</title><rect x="50.0197%" y="997" width="0.3639%" height="15" fill="rgb(221,68,8)" fg:x="21582" fg:w="157"/><text x="50.2697%" y="1007.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="50.3697%" y="981" width="0.0139%" height="15" fill="rgb(254,180,31)" fg:x="21733" fg:w="6"/><text x="50.6197%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="50.4346%" y="981" width="0.0209%" height="15" fill="rgb(247,130,50)" fg:x="21761" fg:w="9"/><text x="50.6846%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (17 samples, 0.04%)</title><rect x="50.4253%" y="997" width="0.0394%" height="15" fill="rgb(211,109,4)" fg:x="21757" fg:w="17"/><text x="50.6753%" y="1007.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="50.3882%" y="1045" width="0.1182%" height="15" fill="rgb(238,50,21)" fg:x="21741" fg:w="51"/><text x="50.6382%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="50.3882%" y="1029" width="0.1182%" height="15" fill="rgb(225,57,45)" fg:x="21741" fg:w="51"/><text x="50.6382%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="50.3882%" y="1013" width="0.1182%" height="15" fill="rgb(209,196,50)" fg:x="21741" fg:w="51"/><text x="50.6382%" y="1023.50"></text></g><g><title>core::hash::sip::u8to64_le (18 samples, 0.04%)</title><rect x="50.4647%" y="997" width="0.0417%" height="15" fill="rgb(242,140,13)" fg:x="21774" fg:w="18"/><text x="50.7147%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (691 samples, 1.60%)</title><rect x="48.9072%" y="1109" width="1.6015%" height="15" fill="rgb(217,111,7)" fg:x="21102" fg:w="691"/><text x="49.1572%" y="1119.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (691 samples, 1.60%)</title><rect x="48.9072%" y="1093" width="1.6015%" height="15" fill="rgb(253,193,51)" fg:x="21102" fg:w="691"/><text x="49.1572%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (54 samples, 0.13%)</title><rect x="50.3836%" y="1077" width="0.1252%" height="15" fill="rgb(252,70,29)" fg:x="21739" fg:w="54"/><text x="50.6336%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_usize (52 samples, 0.12%)</title><rect x="50.3882%" y="1061" width="0.1205%" height="15" fill="rgb(232,127,12)" fg:x="21741" fg:w="52"/><text x="50.6382%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (36 samples, 0.08%)</title><rect x="50.7544%" y="997" width="0.0834%" height="15" fill="rgb(211,180,21)" fg:x="21899" fg:w="36"/><text x="51.0044%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (62 samples, 0.14%)</title><rect x="50.7359%" y="1013" width="0.1437%" height="15" fill="rgb(229,72,13)" fg:x="21891" fg:w="62"/><text x="50.9859%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (18 samples, 0.04%)</title><rect x="50.8378%" y="997" width="0.0417%" height="15" fill="rgb(240,211,49)" fg:x="21935" fg:w="18"/><text x="51.0878%" y="1007.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="50.8796%" y="1013" width="0.0116%" height="15" fill="rgb(219,149,40)" fg:x="21953" fg:w="5"/><text x="51.1296%" y="1023.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="50.8796%" y="997" width="0.0116%" height="15" fill="rgb(210,127,46)" fg:x="21953" fg:w="5"/><text x="51.1296%" y="1007.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="50.8796%" y="981" width="0.0116%" height="15" fill="rgb(220,106,7)" fg:x="21953" fg:w="5"/><text x="51.1296%" y="991.50"></text></g><g><title>core::hash::sip::u8to64_le (38 samples, 0.09%)</title><rect x="50.8911%" y="1013" width="0.0881%" height="15" fill="rgb(249,31,22)" fg:x="21958" fg:w="38"/><text x="51.1411%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="50.5458%" y="1061" width="0.4357%" height="15" fill="rgb(253,1,49)" fg:x="21809" fg:w="188"/><text x="50.7958%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="50.5458%" y="1045" width="0.4357%" height="15" fill="rgb(227,144,33)" fg:x="21809" fg:w="188"/><text x="50.7958%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="50.5458%" y="1029" width="0.4357%" height="15" fill="rgb(249,163,44)" fg:x="21809" fg:w="188"/><text x="50.7958%" y="1039.50"></text></g><g><title>core::hash::Hash::hash_slice (1,069 samples, 2.48%)</title><rect x="48.5248%" y="1157" width="2.4776%" height="15" fill="rgb(234,15,39)" fg:x="20937" fg:w="1069"/><text x="48.7748%" y="1167.50">co..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,069 samples, 2.48%)</title><rect x="48.5248%" y="1141" width="2.4776%" height="15" fill="rgb(207,66,16)" fg:x="20937" fg:w="1069"/><text x="48.7748%" y="1151.50">co..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (939 samples, 2.18%)</title><rect x="48.8261%" y="1125" width="2.1763%" height="15" fill="rgb(233,112,24)" fg:x="21067" fg:w="939"/><text x="49.0761%" y="1135.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (213 samples, 0.49%)</title><rect x="50.5087%" y="1109" width="0.4937%" height="15" fill="rgb(230,90,22)" fg:x="21793" fg:w="213"/><text x="50.7587%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_isize (213 samples, 0.49%)</title><rect x="50.5087%" y="1093" width="0.4937%" height="15" fill="rgb(229,61,13)" fg:x="21793" fg:w="213"/><text x="50.7587%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_usize (209 samples, 0.48%)</title><rect x="50.5180%" y="1077" width="0.4844%" height="15" fill="rgb(225,57,24)" fg:x="21797" fg:w="209"/><text x="50.7680%" y="1087.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (9 samples, 0.02%)</title><rect x="50.9815%" y="1061" width="0.0209%" height="15" fill="rgb(208,169,48)" fg:x="21997" fg:w="9"/><text x="51.2315%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (19 samples, 0.04%)</title><rect x="51.0766%" y="1077" width="0.0440%" height="15" fill="rgb(244,218,51)" fg:x="22038" fg:w="19"/><text x="51.3266%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="51.1044%" y="1061" width="0.0162%" height="15" fill="rgb(214,148,10)" fg:x="22050" fg:w="7"/><text x="51.3544%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="51.0117%" y="1125" width="0.1530%" height="15" fill="rgb(225,174,27)" fg:x="22010" fg:w="66"/><text x="51.2617%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="51.0117%" y="1109" width="0.1530%" height="15" fill="rgb(230,96,26)" fg:x="22010" fg:w="66"/><text x="51.2617%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="51.0117%" y="1093" width="0.1530%" height="15" fill="rgb(232,10,30)" fg:x="22010" fg:w="66"/><text x="51.2617%" y="1103.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="51.1299%" y="1077" width="0.0348%" height="15" fill="rgb(222,8,50)" fg:x="22061" fg:w="15"/><text x="51.3799%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,140 samples, 2.64%)</title><rect x="48.5248%" y="1189" width="2.6421%" height="15" fill="rgb(213,81,27)" fg:x="20937" fg:w="1140"/><text x="48.7748%" y="1199.50">&lt;a..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,140 samples, 2.64%)</title><rect x="48.5248%" y="1173" width="2.6421%" height="15" fill="rgb(245,50,10)" fg:x="20937" fg:w="1140"/><text x="48.7748%" y="1183.50">co..</text></g><g><title>core::hash::Hasher::write_length_prefix (71 samples, 0.16%)</title><rect x="51.0024%" y="1157" width="0.1646%" height="15" fill="rgb(216,100,18)" fg:x="22006" fg:w="71"/><text x="51.2524%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_usize (69 samples, 0.16%)</title><rect x="51.0070%" y="1141" width="0.1599%" height="15" fill="rgb(236,147,54)" fg:x="22008" fg:w="69"/><text x="51.2570%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (30 samples, 0.07%)</title><rect x="51.4010%" y="1077" width="0.0695%" height="15" fill="rgb(205,143,26)" fg:x="22178" fg:w="30"/><text x="51.6510%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (62 samples, 0.14%)</title><rect x="51.3639%" y="1093" width="0.1437%" height="15" fill="rgb(236,26,9)" fg:x="22162" fg:w="62"/><text x="51.6139%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (16 samples, 0.04%)</title><rect x="51.4706%" y="1077" width="0.0371%" height="15" fill="rgb(221,165,53)" fg:x="22208" fg:w="16"/><text x="51.7206%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (42 samples, 0.10%)</title><rect x="51.5123%" y="1093" width="0.0973%" height="15" fill="rgb(214,110,17)" fg:x="22226" fg:w="42"/><text x="51.7623%" y="1103.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="51.5957%" y="1077" width="0.0139%" height="15" fill="rgb(237,197,12)" fg:x="22262" fg:w="6"/><text x="51.8457%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="51.2040%" y="1141" width="0.4079%" height="15" fill="rgb(205,84,17)" fg:x="22093" fg:w="176"/><text x="51.4540%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="51.2040%" y="1125" width="0.4079%" height="15" fill="rgb(237,18,45)" fg:x="22093" fg:w="176"/><text x="51.4540%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (176 samples, 0.41%)</title><rect x="51.2040%" y="1109" width="0.4079%" height="15" fill="rgb(221,87,14)" fg:x="22093" fg:w="176"/><text x="51.4540%" y="1119.50"></text></g><g><title>core::hash::Hash::hash_slice (1,491 samples, 3.46%)</title><rect x="48.1818%" y="1237" width="3.4556%" height="15" fill="rgb(238,186,15)" fg:x="20789" fg:w="1491"/><text x="48.4318%" y="1247.50">cor..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,491 samples, 3.46%)</title><rect x="48.1818%" y="1221" width="3.4556%" height="15" fill="rgb(208,115,11)" fg:x="20789" fg:w="1491"/><text x="48.4318%" y="1231.50">cor..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,375 samples, 3.19%)</title><rect x="48.4506%" y="1205" width="3.1868%" height="15" fill="rgb(254,175,0)" fg:x="20905" fg:w="1375"/><text x="48.7006%" y="1215.50">&lt;sl..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (203 samples, 0.47%)</title><rect x="51.1669%" y="1189" width="0.4705%" height="15" fill="rgb(227,24,42)" fg:x="22077" fg:w="203"/><text x="51.4169%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_isize (203 samples, 0.47%)</title><rect x="51.1669%" y="1173" width="0.4705%" height="15" fill="rgb(223,211,37)" fg:x="22077" fg:w="203"/><text x="51.4169%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_usize (200 samples, 0.46%)</title><rect x="51.1739%" y="1157" width="0.4635%" height="15" fill="rgb(235,49,27)" fg:x="22080" fg:w="200"/><text x="51.4239%" y="1167.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (11 samples, 0.03%)</title><rect x="51.6119%" y="1141" width="0.0255%" height="15" fill="rgb(254,97,51)" fg:x="22269" fg:w="11"/><text x="51.8619%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="51.7209%" y="1141" width="0.0232%" height="15" fill="rgb(249,51,40)" fg:x="22316" fg:w="10"/><text x="51.9709%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="51.7070%" y="1157" width="0.0417%" height="15" fill="rgb(210,128,45)" fg:x="22310" fg:w="18"/><text x="51.9570%" y="1167.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (62 samples, 0.14%)</title><rect x="51.6560%" y="1205" width="0.1437%" height="15" fill="rgb(224,137,50)" fg:x="22288" fg:w="62"/><text x="51.9060%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (62 samples, 0.14%)</title><rect x="51.6560%" y="1189" width="0.1437%" height="15" fill="rgb(242,15,9)" fg:x="22288" fg:w="62"/><text x="51.9060%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (62 samples, 0.14%)</title><rect x="51.6560%" y="1173" width="0.1437%" height="15" fill="rgb(233,187,41)" fg:x="22288" fg:w="62"/><text x="51.9060%" y="1183.50"></text></g><g><title>core::hash::sip::u8to64_le (18 samples, 0.04%)</title><rect x="51.7579%" y="1157" width="0.0417%" height="15" fill="rgb(227,2,29)" fg:x="22332" fg:w="18"/><text x="52.0079%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,563 samples, 3.62%)</title><rect x="48.1818%" y="1269" width="3.6225%" height="15" fill="rgb(222,70,3)" fg:x="20789" fg:w="1563"/><text x="48.4318%" y="1279.50">&lt;all..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,563 samples, 3.62%)</title><rect x="48.1818%" y="1253" width="3.6225%" height="15" fill="rgb(213,11,42)" fg:x="20789" fg:w="1563"/><text x="48.4318%" y="1263.50">core..</text></g><g><title>core::hash::Hasher::write_length_prefix (72 samples, 0.17%)</title><rect x="51.6374%" y="1237" width="0.1669%" height="15" fill="rgb(225,150,9)" fg:x="22280" fg:w="72"/><text x="51.8874%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_usize (70 samples, 0.16%)</title><rect x="51.6421%" y="1221" width="0.1622%" height="15" fill="rgb(230,162,45)" fg:x="22282" fg:w="70"/><text x="51.8921%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (23 samples, 0.05%)</title><rect x="52.0083%" y="1157" width="0.0533%" height="15" fill="rgb(222,14,52)" fg:x="22440" fg:w="23"/><text x="52.2583%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (56 samples, 0.13%)</title><rect x="51.9828%" y="1173" width="0.1298%" height="15" fill="rgb(254,198,14)" fg:x="22429" fg:w="56"/><text x="52.2328%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (22 samples, 0.05%)</title><rect x="52.0616%" y="1157" width="0.0510%" height="15" fill="rgb(220,217,30)" fg:x="22463" fg:w="22"/><text x="52.3116%" y="1167.50"></text></g><g><title>core::hash::sip::u8to64_le (32 samples, 0.07%)</title><rect x="52.1195%" y="1173" width="0.0742%" height="15" fill="rgb(215,146,41)" fg:x="22488" fg:w="32"/><text x="52.3695%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (151 samples, 0.35%)</title><rect x="51.8507%" y="1221" width="0.3500%" height="15" fill="rgb(217,27,36)" fg:x="22372" fg:w="151"/><text x="52.1007%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (151 samples, 0.35%)</title><rect x="51.8507%" y="1205" width="0.3500%" height="15" fill="rgb(219,218,39)" fg:x="22372" fg:w="151"/><text x="52.1007%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (151 samples, 0.35%)</title><rect x="51.8507%" y="1189" width="0.3500%" height="15" fill="rgb(219,4,42)" fg:x="22372" fg:w="151"/><text x="52.1007%" y="1199.50"></text></g><g><title>core::hash::Hash::hash_slice (1,878 samples, 4.35%)</title><rect x="47.8689%" y="1317" width="4.3526%" height="15" fill="rgb(249,119,36)" fg:x="20654" fg:w="1878"/><text x="48.1189%" y="1327.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,878 samples, 4.35%)</title><rect x="47.8689%" y="1301" width="4.3526%" height="15" fill="rgb(209,23,33)" fg:x="20654" fg:w="1878"/><text x="48.1189%" y="1311.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,777 samples, 4.12%)</title><rect x="48.1030%" y="1285" width="4.1185%" height="15" fill="rgb(211,10,0)" fg:x="20755" fg:w="1777"/><text x="48.3530%" y="1295.50">&lt;sli..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (180 samples, 0.42%)</title><rect x="51.8043%" y="1269" width="0.4172%" height="15" fill="rgb(208,99,37)" fg:x="22352" fg:w="180"/><text x="52.0543%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_isize (180 samples, 0.42%)</title><rect x="51.8043%" y="1253" width="0.4172%" height="15" fill="rgb(213,132,31)" fg:x="22352" fg:w="180"/><text x="52.0543%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_usize (175 samples, 0.41%)</title><rect x="51.8159%" y="1237" width="0.4056%" height="15" fill="rgb(243,129,40)" fg:x="22357" fg:w="175"/><text x="52.0659%" y="1247.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (9 samples, 0.02%)</title><rect x="52.2006%" y="1221" width="0.0209%" height="15" fill="rgb(210,66,33)" fg:x="22523" fg:w="9"/><text x="52.4506%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="52.3304%" y="1221" width="0.0209%" height="15" fill="rgb(209,189,4)" fg:x="22579" fg:w="9"/><text x="52.5804%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (20 samples, 0.05%)</title><rect x="52.3095%" y="1237" width="0.0464%" height="15" fill="rgb(214,107,37)" fg:x="22570" fg:w="20"/><text x="52.5595%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="52.2377%" y="1285" width="0.1530%" height="15" fill="rgb(245,88,54)" fg:x="22539" fg:w="66"/><text x="52.4877%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="52.2377%" y="1269" width="0.1530%" height="15" fill="rgb(205,146,20)" fg:x="22539" fg:w="66"/><text x="52.4877%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (66 samples, 0.15%)</title><rect x="52.2377%" y="1253" width="0.1530%" height="15" fill="rgb(220,161,25)" fg:x="22539" fg:w="66"/><text x="52.4877%" y="1263.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="52.3652%" y="1237" width="0.0255%" height="15" fill="rgb(215,152,15)" fg:x="22594" fg:w="11"/><text x="52.6152%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,952 samples, 4.52%)</title><rect x="47.8689%" y="1349" width="4.5241%" height="15" fill="rgb(233,192,44)" fg:x="20654" fg:w="1952"/><text x="48.1189%" y="1359.50">&lt;allo..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,952 samples, 4.52%)</title><rect x="47.8689%" y="1333" width="4.5241%" height="15" fill="rgb(240,170,46)" fg:x="20654" fg:w="1952"/><text x="48.1189%" y="1343.50">core:..</text></g><g><title>core::hash::Hasher::write_length_prefix (74 samples, 0.17%)</title><rect x="52.2215%" y="1317" width="0.1715%" height="15" fill="rgb(207,104,33)" fg:x="22532" fg:w="74"/><text x="52.4715%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_usize (69 samples, 0.16%)</title><rect x="52.2331%" y="1301" width="0.1599%" height="15" fill="rgb(219,21,39)" fg:x="22537" fg:w="69"/><text x="52.4831%" y="1311.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (11 samples, 0.03%)</title><rect x="52.4996%" y="1237" width="0.0255%" height="15" fill="rgb(214,133,29)" fg:x="22652" fg:w="11"/><text x="52.7496%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (35 samples, 0.08%)</title><rect x="52.4718%" y="1253" width="0.0811%" height="15" fill="rgb(226,93,6)" fg:x="22640" fg:w="35"/><text x="52.7218%" y="1263.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="52.5251%" y="1237" width="0.0278%" height="15" fill="rgb(252,222,34)" fg:x="22663" fg:w="12"/><text x="52.7751%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="52.4092%" y="1301" width="0.1692%" height="15" fill="rgb(252,92,48)" fg:x="22613" fg:w="73"/><text x="52.6592%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="52.4092%" y="1285" width="0.1692%" height="15" fill="rgb(245,223,24)" fg:x="22613" fg:w="73"/><text x="52.6592%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="52.4092%" y="1269" width="0.1692%" height="15" fill="rgb(205,176,3)" fg:x="22613" fg:w="73"/><text x="52.6592%" y="1279.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="52.5552%" y="1253" width="0.0232%" height="15" fill="rgb(235,151,15)" fg:x="22676" fg:w="10"/><text x="52.8052%" y="1263.50"></text></g><g><title>core::hash::Hash::hash_slice (2,079 samples, 4.82%)</title><rect x="47.7669%" y="1397" width="4.8184%" height="15" fill="rgb(237,209,11)" fg:x="20610" fg:w="2079"/><text x="48.0169%" y="1407.50">core::..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,079 samples, 4.82%)</title><rect x="47.7669%" y="1381" width="4.8184%" height="15" fill="rgb(243,227,24)" fg:x="20610" fg:w="2079"/><text x="48.0169%" y="1391.50">core::..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,046 samples, 4.74%)</title><rect x="47.8434%" y="1365" width="4.7419%" height="15" fill="rgb(239,193,16)" fg:x="20643" fg:w="2046"/><text x="48.0934%" y="1375.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (83 samples, 0.19%)</title><rect x="52.3930%" y="1349" width="0.1924%" height="15" fill="rgb(231,27,9)" fg:x="22606" fg:w="83"/><text x="52.6430%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_isize (83 samples, 0.19%)</title><rect x="52.3930%" y="1333" width="0.1924%" height="15" fill="rgb(219,169,10)" fg:x="22606" fg:w="83"/><text x="52.6430%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_usize (83 samples, 0.19%)</title><rect x="52.3930%" y="1317" width="0.1924%" height="15" fill="rgb(244,229,43)" fg:x="22606" fg:w="83"/><text x="52.6430%" y="1327.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="52.6247%" y="1301" width="0.0139%" height="15" fill="rgb(254,38,20)" fg:x="22706" fg:w="6"/><text x="52.8747%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (15 samples, 0.03%)</title><rect x="52.6085%" y="1317" width="0.0348%" height="15" fill="rgb(250,47,30)" fg:x="22699" fg:w="15"/><text x="52.8585%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,112 samples, 4.89%)</title><rect x="47.7669%" y="1429" width="4.8949%" height="15" fill="rgb(224,124,36)" fg:x="20610" fg:w="2112"/><text x="48.0169%" y="1439.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,112 samples, 4.89%)</title><rect x="47.7669%" y="1413" width="4.8949%" height="15" fill="rgb(246,68,51)" fg:x="20610" fg:w="2112"/><text x="48.0169%" y="1423.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (33 samples, 0.08%)</title><rect x="52.5853%" y="1397" width="0.0765%" height="15" fill="rgb(253,43,49)" fg:x="22689" fg:w="33"/><text x="52.8353%" y="1407.50"></text></g><g><title>core::hash::Hasher::write_usize (33 samples, 0.08%)</title><rect x="52.5853%" y="1381" width="0.0765%" height="15" fill="rgb(219,54,36)" fg:x="22689" fg:w="33"/><text x="52.8353%" y="1391.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="52.5877%" y="1365" width="0.0742%" height="15" fill="rgb(227,133,34)" fg:x="22690" fg:w="32"/><text x="52.8377%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="52.5877%" y="1349" width="0.0742%" height="15" fill="rgb(247,227,15)" fg:x="22690" fg:w="32"/><text x="52.8377%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (32 samples, 0.07%)</title><rect x="52.5877%" y="1333" width="0.0742%" height="15" fill="rgb(229,96,14)" fg:x="22690" fg:w="32"/><text x="52.8377%" y="1343.50"></text></g><g><title>core::hash::sip::u8to64_le (6 samples, 0.01%)</title><rect x="52.6479%" y="1317" width="0.0139%" height="15" fill="rgb(220,79,17)" fg:x="22716" fg:w="6"/><text x="52.8979%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="52.6781%" y="1333" width="0.0185%" height="15" fill="rgb(205,131,53)" fg:x="22729" fg:w="8"/><text x="52.9281%" y="1343.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,144 samples, 4.97%)</title><rect x="47.7507%" y="1445" width="4.9691%" height="15" fill="rgb(209,50,29)" fg:x="20603" fg:w="2144"/><text x="48.0007%" y="1455.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (25 samples, 0.06%)</title><rect x="52.6618%" y="1429" width="0.0579%" height="15" fill="rgb(245,86,46)" fg:x="22722" fg:w="25"/><text x="52.9118%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_isize (25 samples, 0.06%)</title><rect x="52.6618%" y="1413" width="0.0579%" height="15" fill="rgb(235,66,46)" fg:x="22722" fg:w="25"/><text x="52.9118%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_usize (25 samples, 0.06%)</title><rect x="52.6618%" y="1397" width="0.0579%" height="15" fill="rgb(232,148,31)" fg:x="22722" fg:w="25"/><text x="52.9118%" y="1407.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (24 samples, 0.06%)</title><rect x="52.6641%" y="1381" width="0.0556%" height="15" fill="rgb(217,149,8)" fg:x="22723" fg:w="24"/><text x="52.9141%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (24 samples, 0.06%)</title><rect x="52.6641%" y="1365" width="0.0556%" height="15" fill="rgb(209,183,11)" fg:x="22723" fg:w="24"/><text x="52.9141%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (24 samples, 0.06%)</title><rect x="52.6641%" y="1349" width="0.0556%" height="15" fill="rgb(208,55,20)" fg:x="22723" fg:w="24"/><text x="52.9141%" y="1359.50"></text></g><g><title>core::hash::sip::u8to64_le (9 samples, 0.02%)</title><rect x="52.6989%" y="1333" width="0.0209%" height="15" fill="rgb(218,39,14)" fg:x="22738" fg:w="9"/><text x="52.9489%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="52.7267%" y="1349" width="0.0116%" height="15" fill="rgb(216,169,33)" fg:x="22750" fg:w="5"/><text x="52.9767%" y="1359.50"></text></g><g><title>hashbrown::map::make_insert_hash (2,188 samples, 5.07%)</title><rect x="47.6765%" y="1509" width="5.0710%" height="15" fill="rgb(233,80,24)" fg:x="20571" fg:w="2188"/><text x="47.9265%" y="1519.50">hashbr..</text></g><g><title>core::hash::BuildHasher::hash_one (2,188 samples, 5.07%)</title><rect x="47.6765%" y="1493" width="5.0710%" height="15" fill="rgb(213,179,31)" fg:x="20571" fg:w="2188"/><text x="47.9265%" y="1503.50">core::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,157 samples, 5.00%)</title><rect x="47.7484%" y="1477" width="4.9992%" height="15" fill="rgb(209,19,5)" fg:x="20602" fg:w="2157"/><text x="47.9984%" y="1487.50">core::..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,157 samples, 5.00%)</title><rect x="47.7484%" y="1461" width="4.9992%" height="15" fill="rgb(219,18,35)" fg:x="20602" fg:w="2157"/><text x="47.9984%" y="1471.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (12 samples, 0.03%)</title><rect x="52.7198%" y="1445" width="0.0278%" height="15" fill="rgb(209,169,16)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1455.50"></text></g><g><title>core::hash::Hasher::write_isize (12 samples, 0.03%)</title><rect x="52.7198%" y="1429" width="0.0278%" height="15" fill="rgb(245,90,51)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_usize (12 samples, 0.03%)</title><rect x="52.7198%" y="1413" width="0.0278%" height="15" fill="rgb(220,99,45)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1423.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="52.7198%" y="1397" width="0.0278%" height="15" fill="rgb(249,89,25)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="52.7198%" y="1381" width="0.0278%" height="15" fill="rgb(239,193,0)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="52.7198%" y="1365" width="0.0278%" height="15" fill="rgb(231,126,1)" fg:x="22747" fg:w="12"/><text x="52.9698%" y="1375.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (6 samples, 0.01%)</title><rect x="52.7638%" y="1461" width="0.0139%" height="15" fill="rgb(243,166,3)" fg:x="22766" fg:w="6"/><text x="53.0138%" y="1471.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (6 samples, 0.01%)</title><rect x="52.7638%" y="1445" width="0.0139%" height="15" fill="rgb(223,22,34)" fg:x="22766" fg:w="6"/><text x="53.0138%" y="1455.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="52.7638%" y="1429" width="0.0139%" height="15" fill="rgb(251,52,51)" fg:x="22766" fg:w="6"/><text x="53.0138%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (18 samples, 0.04%)</title><rect x="52.7476%" y="1509" width="0.0417%" height="15" fill="rgb(221,165,28)" fg:x="22759" fg:w="18"/><text x="52.9976%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (18 samples, 0.04%)</title><rect x="52.7476%" y="1493" width="0.0417%" height="15" fill="rgb(218,121,47)" fg:x="22759" fg:w="18"/><text x="52.9976%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_inner (18 samples, 0.04%)</title><rect x="52.7476%" y="1477" width="0.0417%" height="15" fill="rgb(209,120,9)" fg:x="22759" fg:w="18"/><text x="52.9976%" y="1487.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (2,229 samples, 5.17%)</title><rect x="47.6580%" y="1557" width="5.1661%" height="15" fill="rgb(236,68,12)" fg:x="20563" fg:w="2229"/><text x="47.9080%" y="1567.50">std::c..</text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (2,229 samples, 5.17%)</title><rect x="47.6580%" y="1541" width="5.1661%" height="15" fill="rgb(225,194,26)" fg:x="20563" fg:w="2229"/><text x="47.9080%" y="1551.50">hashbr..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (2,229 samples, 5.17%)</title><rect x="47.6580%" y="1525" width="5.1661%" height="15" fill="rgb(231,84,39)" fg:x="20563" fg:w="2229"/><text x="47.9080%" y="1535.50">hashbr..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (15 samples, 0.03%)</title><rect x="52.7893%" y="1509" width="0.0348%" height="15" fill="rgb(210,11,45)" fg:x="22777" fg:w="15"/><text x="53.0393%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::record_item_insert_at (7 samples, 0.02%)</title><rect x="52.8078%" y="1493" width="0.0162%" height="15" fill="rgb(224,54,52)" fg:x="22785" fg:w="7"/><text x="53.0578%" y="1503.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write_bytes (6 samples, 0.01%)</title><rect x="52.8310%" y="1445" width="0.0139%" height="15" fill="rgb(238,102,14)" fg:x="22795" fg:w="6"/><text x="53.0810%" y="1455.50"></text></g><g><title>core::intrinsics::write_bytes (6 samples, 0.01%)</title><rect x="52.8310%" y="1429" width="0.0139%" height="15" fill="rgb(243,160,52)" fg:x="22795" fg:w="6"/><text x="53.0810%" y="1439.50"></text></g><g><title>[libc.so.6] (6 samples, 0.01%)</title><rect x="52.8310%" y="1413" width="0.0139%" height="15" fill="rgb(216,114,19)" fg:x="22795" fg:w="6"/><text x="53.0810%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (35 samples, 0.08%)</title><rect x="52.8449%" y="1445" width="0.0811%" height="15" fill="rgb(244,166,37)" fg:x="22801" fg:w="35"/><text x="53.0949%" y="1455.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (35 samples, 0.08%)</title><rect x="52.8449%" y="1429" width="0.0811%" height="15" fill="rgb(246,29,44)" fg:x="22801" fg:w="35"/><text x="53.0949%" y="1439.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (35 samples, 0.08%)</title><rect x="52.8449%" y="1413" width="0.0811%" height="15" fill="rgb(215,56,53)" fg:x="22801" fg:w="35"/><text x="53.0949%" y="1423.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (35 samples, 0.08%)</title><rect x="52.8449%" y="1397" width="0.0811%" height="15" fill="rgb(217,60,2)" fg:x="22801" fg:w="35"/><text x="53.0949%" y="1407.50"></text></g><g><title>alloc::alloc::alloc (35 samples, 0.08%)</title><rect x="52.8449%" y="1381" width="0.0811%" height="15" fill="rgb(207,26,24)" fg:x="22801" fg:w="35"/><text x="53.0949%" y="1391.50"></text></g><g><title>malloc (34 samples, 0.08%)</title><rect x="52.8472%" y="1365" width="0.0788%" height="15" fill="rgb(252,210,15)" fg:x="22802" fg:w="34"/><text x="53.0972%" y="1375.50"></text></g><g><title>[libc.so.6] (32 samples, 0.07%)</title><rect x="52.8519%" y="1349" width="0.0742%" height="15" fill="rgb(253,209,26)" fg:x="22804" fg:w="32"/><text x="53.1019%" y="1359.50"></text></g><g><title>[libc.so.6] (26 samples, 0.06%)</title><rect x="52.8658%" y="1333" width="0.0603%" height="15" fill="rgb(238,170,14)" fg:x="22810" fg:w="26"/><text x="53.1158%" y="1343.50"></text></g><g><title>slimp::Rule::concretions (10,588 samples, 24.54%)</title><rect x="28.3890%" y="1573" width="24.5394%" height="15" fill="rgb(216,178,15)" fg:x="12249" fg:w="10588"/><text x="28.6390%" y="1583.50">slimp::Rule::concretions</text></g><g><title>std::collections::hash::set::HashSet&lt;T&gt;::with_capacity (45 samples, 0.10%)</title><rect x="52.8241%" y="1557" width="0.1043%" height="15" fill="rgb(250,197,2)" fg:x="22792" fg:w="45"/><text x="53.0741%" y="1567.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S&gt;::with_capacity_and_hasher (42 samples, 0.10%)</title><rect x="52.8310%" y="1541" width="0.0973%" height="15" fill="rgb(212,70,42)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1551.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (42 samples, 0.10%)</title><rect x="52.8310%" y="1525" width="0.0973%" height="15" fill="rgb(227,213,9)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1535.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (42 samples, 0.10%)</title><rect x="52.8310%" y="1509" width="0.0973%" height="15" fill="rgb(245,99,25)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (42 samples, 0.10%)</title><rect x="52.8310%" y="1493" width="0.0973%" height="15" fill="rgb(250,82,29)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (42 samples, 0.10%)</title><rect x="52.8310%" y="1477" width="0.0973%" height="15" fill="rgb(241,226,54)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (42 samples, 0.10%)</title><rect x="52.8310%" y="1461" width="0.0973%" height="15" fill="rgb(221,99,41)" fg:x="22795" fg:w="42"/><text x="53.0810%" y="1471.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.9539%" y="1461" width="0.0116%" height="15" fill="rgb(213,90,21)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1471.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.9539%" y="1445" width="0.0116%" height="15" fill="rgb(205,208,24)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1455.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (5 samples, 0.01%)</title><rect x="52.9539%" y="1429" width="0.0116%" height="15" fill="rgb(246,31,12)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1439.50"></text></g><g><title>alloc::slice::hack::to_vec (5 samples, 0.01%)</title><rect x="52.9539%" y="1413" width="0.0116%" height="15" fill="rgb(213,154,6)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1423.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (5 samples, 0.01%)</title><rect x="52.9539%" y="1397" width="0.0116%" height="15" fill="rgb(222,163,29)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1407.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.9539%" y="1381" width="0.0116%" height="15" fill="rgb(227,201,8)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.9539%" y="1365" width="0.0116%" height="15" fill="rgb(233,9,32)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1375.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (5 samples, 0.01%)</title><rect x="52.9539%" y="1349" width="0.0116%" height="15" fill="rgb(217,54,24)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1359.50"></text></g><g><title>alloc::slice::hack::to_vec (5 samples, 0.01%)</title><rect x="52.9539%" y="1333" width="0.0116%" height="15" fill="rgb(235,192,0)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1343.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (5 samples, 0.01%)</title><rect x="52.9539%" y="1317" width="0.0116%" height="15" fill="rgb(235,45,9)" fg:x="22848" fg:w="5"/><text x="53.2039%" y="1327.50"></text></g><g><title>slimp::Rule::var_replace (13 samples, 0.03%)</title><rect x="52.9423%" y="1557" width="0.0301%" height="15" fill="rgb(246,42,40)" fg:x="22843" fg:w="13"/><text x="53.1923%" y="1567.50"></text></g><g><title>&lt;slimp::Sexp as core::clone::Clone&gt;::clone (11 samples, 0.03%)</title><rect x="52.9469%" y="1541" width="0.0255%" height="15" fill="rgb(248,111,24)" fg:x="22845" fg:w="11"/><text x="53.1969%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="52.9539%" y="1525" width="0.0185%" height="15" fill="rgb(249,65,22)" fg:x="22848" fg:w="8"/><text x="53.2039%" y="1535.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (8 samples, 0.02%)</title><rect x="52.9539%" y="1509" width="0.0185%" height="15" fill="rgb(238,111,51)" fg:x="22848" fg:w="8"/><text x="53.2039%" y="1519.50"></text></g><g><title>alloc::slice::hack::to_vec (8 samples, 0.02%)</title><rect x="52.9539%" y="1493" width="0.0185%" height="15" fill="rgb(250,118,22)" fg:x="22848" fg:w="8"/><text x="53.2039%" y="1503.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (8 samples, 0.02%)</title><rect x="52.9539%" y="1477" width="0.0185%" height="15" fill="rgb(234,84,26)" fg:x="22848" fg:w="8"/><text x="53.2039%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="53.0118%" y="1125" width="0.0185%" height="15" fill="rgb(243,172,12)" fg:x="22873" fg:w="8"/><text x="53.2618%" y="1135.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (7 samples, 0.02%)</title><rect x="53.0141%" y="1109" width="0.0162%" height="15" fill="rgb(236,150,49)" fg:x="22874" fg:w="7"/><text x="53.2641%" y="1119.50"></text></g><g><title>alloc::slice::hack::to_vec (7 samples, 0.02%)</title><rect x="53.0141%" y="1093" width="0.0162%" height="15" fill="rgb(225,197,26)" fg:x="22874" fg:w="7"/><text x="53.2641%" y="1103.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (7 samples, 0.02%)</title><rect x="53.0141%" y="1077" width="0.0162%" height="15" fill="rgb(214,17,42)" fg:x="22874" fg:w="7"/><text x="53.2641%" y="1087.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (11 samples, 0.03%)</title><rect x="53.0303%" y="1125" width="0.0255%" height="15" fill="rgb(224,165,40)" fg:x="22881" fg:w="11"/><text x="53.2803%" y="1135.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (11 samples, 0.03%)</title><rect x="53.0303%" y="1109" width="0.0255%" height="15" fill="rgb(246,100,4)" fg:x="22881" fg:w="11"/><text x="53.2803%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (10 samples, 0.02%)</title><rect x="53.0582%" y="965" width="0.0232%" height="15" fill="rgb(222,103,0)" fg:x="22893" fg:w="10"/><text x="53.3082%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (10 samples, 0.02%)</title><rect x="53.0582%" y="949" width="0.0232%" height="15" fill="rgb(227,189,26)" fg:x="22893" fg:w="10"/><text x="53.3082%" y="959.50"></text></g><g><title>core::ptr::write (10 samples, 0.02%)</title><rect x="53.0582%" y="933" width="0.0232%" height="15" fill="rgb(214,202,17)" fg:x="22893" fg:w="10"/><text x="53.3082%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="53.0929%" y="917" width="0.0139%" height="15" fill="rgb(229,111,3)" fg:x="22908" fg:w="6"/><text x="53.3429%" y="927.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (6 samples, 0.01%)</title><rect x="53.0929%" y="901" width="0.0139%" height="15" fill="rgb(229,172,15)" fg:x="22908" fg:w="6"/><text x="53.3429%" y="911.50"></text></g><g><title>alloc::slice::hack::to_vec (6 samples, 0.01%)</title><rect x="53.0929%" y="885" width="0.0139%" height="15" fill="rgb(230,224,35)" fg:x="22908" fg:w="6"/><text x="53.3429%" y="895.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (6 samples, 0.01%)</title><rect x="53.0929%" y="869" width="0.0139%" height="15" fill="rgb(251,141,6)" fg:x="22908" fg:w="6"/><text x="53.3429%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (5 samples, 0.01%)</title><rect x="53.1207%" y="549" width="0.0116%" height="15" fill="rgb(225,208,6)" fg:x="22920" fg:w="5"/><text x="53.3707%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (5 samples, 0.01%)</title><rect x="53.1207%" y="533" width="0.0116%" height="15" fill="rgb(246,181,16)" fg:x="22920" fg:w="5"/><text x="53.3707%" y="543.50"></text></g><g><title>core::ptr::write (5 samples, 0.01%)</title><rect x="53.1207%" y="517" width="0.0116%" height="15" fill="rgb(227,129,36)" fg:x="22920" fg:w="5"/><text x="53.3707%" y="527.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (5 samples, 0.01%)</title><rect x="53.1346%" y="501" width="0.0116%" height="15" fill="rgb(248,117,24)" fg:x="22926" fg:w="5"/><text x="53.3846%" y="511.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (5 samples, 0.01%)</title><rect x="53.1346%" y="485" width="0.0116%" height="15" fill="rgb(214,185,35)" fg:x="22926" fg:w="5"/><text x="53.3846%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (8 samples, 0.02%)</title><rect x="53.1462%" y="437" width="0.0185%" height="15" fill="rgb(236,150,34)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (8 samples, 0.02%)</title><rect x="53.1462%" y="421" width="0.0185%" height="15" fill="rgb(243,228,27)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (8 samples, 0.02%)</title><rect x="53.1462%" y="405" width="0.0185%" height="15" fill="rgb(245,77,44)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.02%)</title><rect x="53.1462%" y="389" width="0.0185%" height="15" fill="rgb(235,214,42)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.02%)</title><rect x="53.1462%" y="373" width="0.0185%" height="15" fill="rgb(221,74,3)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="383.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (8 samples, 0.02%)</title><rect x="53.1462%" y="357" width="0.0185%" height="15" fill="rgb(206,121,29)" fg:x="22931" fg:w="8"/><text x="53.3962%" y="367.50"></text></g><g><title>slimp::rw::{{closure}} (6 samples, 0.01%)</title><rect x="53.1509%" y="341" width="0.0139%" height="15" fill="rgb(249,131,53)" fg:x="22933" fg:w="6"/><text x="53.4009%" y="351.50"></text></g><g><title>slimp::Sexp::rw (6 samples, 0.01%)</title><rect x="53.1509%" y="325" width="0.0139%" height="15" fill="rgb(236,170,29)" fg:x="22933" fg:w="6"/><text x="53.4009%" y="335.50"></text></g><g><title>slimp::rw (6 samples, 0.01%)</title><rect x="53.1509%" y="309" width="0.0139%" height="15" fill="rgb(247,96,15)" fg:x="22933" fg:w="6"/><text x="53.4009%" y="319.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (21 samples, 0.05%)</title><rect x="53.1207%" y="565" width="0.0487%" height="15" fill="rgb(211,210,7)" fg:x="22920" fg:w="21"/><text x="53.3707%" y="575.50"></text></g><g><title>slimp::rw::{{closure}} (16 samples, 0.04%)</title><rect x="53.1323%" y="549" width="0.0371%" height="15" fill="rgb(240,88,50)" fg:x="22925" fg:w="16"/><text x="53.3823%" y="559.50"></text></g><g><title>slimp::Sexp::rw (16 samples, 0.04%)</title><rect x="53.1323%" y="533" width="0.0371%" height="15" fill="rgb(209,229,26)" fg:x="22925" fg:w="16"/><text x="53.3823%" y="543.50"></text></g><g><title>slimp::rw (16 samples, 0.04%)</title><rect x="53.1323%" y="517" width="0.0371%" height="15" fill="rgb(210,68,23)" fg:x="22925" fg:w="16"/><text x="53.3823%" y="527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (10 samples, 0.02%)</title><rect x="53.1462%" y="501" width="0.0232%" height="15" fill="rgb(229,180,13)" fg:x="22931" fg:w="10"/><text x="53.3962%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (10 samples, 0.02%)</title><rect x="53.1462%" y="485" width="0.0232%" height="15" fill="rgb(236,53,44)" fg:x="22931" fg:w="10"/><text x="53.3962%" y="495.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 (10 samples, 0.02%)</title><rect x="53.1462%" y="469" width="0.0232%" height="15" fill="rgb(244,214,29)" fg:x="22931" fg:w="10"/><text x="53.3962%" y="479.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 (10 samples, 0.02%)</title><rect x="53.1462%" y="453" width="0.0232%" height="15" fill="rgb(220,75,29)" fg:x="22931" fg:w="10"/><text x="53.3962%" y="463.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 (22 samples, 0.05%)</title><rect x="53.1207%" y="645" width="0.0510%" height="15" fill="rgb(214,183,37)" fg:x="22920" fg:w="22"/><text x="53.3707%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (22 samples, 0.05%)</title><rect x="53.1207%" y="629" width="0.0510%" height="15" fill="rgb(239,117,29)" fg:x="22920" fg:w="22"/><text x="53.3707%" y="639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (22 samples, 0.05%)</title><rect x="53.1207%" y="613" width="0.0510%" height="15" fill="rgb(237,171,35)" fg:x="22920" fg:w="22"/><text x="53.3707%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (22 samples, 0.05%)</title><rect x="53.1207%" y="597" width="0.0510%" height="15" fill="rgb(229,178,53)" fg:x="22920" fg:w="22"/><text x="53.3707%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (22 samples, 0.05%)</title><rect x="53.1207%" y="581" width="0.0510%" height="15" fill="rgb(210,102,19)" fg:x="22920" fg:w="22"/><text x="53.3707%" y="591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (25 samples, 0.06%)</title><rect x="53.1207%" y="709" width="0.0579%" height="15" fill="rgb(235,127,22)" fg:x="22920" fg:w="25"/><text x="53.3707%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (25 samples, 0.06%)</title><rect x="53.1207%" y="693" width="0.0579%" height="15" fill="rgb(244,31,31)" fg:x="22920" fg:w="25"/><text x="53.3707%" y="703.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 (25 samples, 0.06%)</title><rect x="53.1207%" y="677" width="0.0579%" height="15" fill="rgb(231,43,21)" fg:x="22920" fg:w="25"/><text x="53.3707%" y="687.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 (25 samples, 0.06%)</title><rect x="53.1207%" y="661" width="0.0579%" height="15" fill="rgb(217,131,35)" fg:x="22920" fg:w="25"/><text x="53.3707%" y="671.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 (29 samples, 0.07%)</title><rect x="53.1138%" y="853" width="0.0672%" height="15" fill="rgb(221,149,4)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (29 samples, 0.07%)</title><rect x="53.1138%" y="837" width="0.0672%" height="15" fill="rgb(232,170,28)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (29 samples, 0.07%)</title><rect x="53.1138%" y="821" width="0.0672%" height="15" fill="rgb(238,56,10)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="831.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (29 samples, 0.07%)</title><rect x="53.1138%" y="805" width="0.0672%" height="15" fill="rgb(235,196,14)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (29 samples, 0.07%)</title><rect x="53.1138%" y="789" width="0.0672%" height="15" fill="rgb(216,45,48)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="799.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (29 samples, 0.07%)</title><rect x="53.1138%" y="773" width="0.0672%" height="15" fill="rgb(238,213,17)" fg:x="22917" fg:w="29"/><text x="53.3638%" y="783.50"></text></g><g><title>slimp::rw::{{closure}} (26 samples, 0.06%)</title><rect x="53.1207%" y="757" width="0.0603%" height="15" fill="rgb(212,13,2)" fg:x="22920" fg:w="26"/><text x="53.3707%" y="767.50"></text></g><g><title>slimp::Sexp::rw (26 samples, 0.06%)</title><rect x="53.1207%" y="741" width="0.0603%" height="15" fill="rgb(240,114,20)" fg:x="22920" fg:w="26"/><text x="53.3707%" y="751.50"></text></g><g><title>slimp::rw (26 samples, 0.06%)</title><rect x="53.1207%" y="725" width="0.0603%" height="15" fill="rgb(228,41,40)" fg:x="22920" fg:w="26"/><text x="53.3707%" y="735.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 (61 samples, 0.14%)</title><rect x="53.0582%" y="1061" width="0.1414%" height="15" fill="rgb(244,132,35)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="1071.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (61 samples, 0.14%)</title><rect x="53.0582%" y="1045" width="0.1414%" height="15" fill="rgb(253,189,4)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (61 samples, 0.14%)</title><rect x="53.0582%" y="1029" width="0.1414%" height="15" fill="rgb(224,37,19)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="1039.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (61 samples, 0.14%)</title><rect x="53.0582%" y="1013" width="0.1414%" height="15" fill="rgb(235,223,18)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="1023.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (61 samples, 0.14%)</title><rect x="53.0582%" y="997" width="0.1414%" height="15" fill="rgb(235,163,25)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="1007.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (61 samples, 0.14%)</title><rect x="53.0582%" y="981" width="0.1414%" height="15" fill="rgb(217,145,28)" fg:x="22893" fg:w="61"/><text x="53.3082%" y="991.50"></text></g><g><title>slimp::rw::{{closure}} (51 samples, 0.12%)</title><rect x="53.0813%" y="965" width="0.1182%" height="15" fill="rgb(223,223,32)" fg:x="22903" fg:w="51"/><text x="53.3313%" y="975.50"></text></g><g><title>slimp::Sexp::rw (51 samples, 0.12%)</title><rect x="53.0813%" y="949" width="0.1182%" height="15" fill="rgb(227,189,39)" fg:x="22903" fg:w="51"/><text x="53.3313%" y="959.50"></text></g><g><title>slimp::rw (48 samples, 0.11%)</title><rect x="53.0883%" y="933" width="0.1112%" height="15" fill="rgb(248,10,22)" fg:x="22906" fg:w="48"/><text x="53.3383%" y="943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (37 samples, 0.09%)</title><rect x="53.1138%" y="917" width="0.0858%" height="15" fill="rgb(248,46,39)" fg:x="22917" fg:w="37"/><text x="53.3638%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (37 samples, 0.09%)</title><rect x="53.1138%" y="901" width="0.0858%" height="15" fill="rgb(248,113,48)" fg:x="22917" fg:w="37"/><text x="53.3638%" y="911.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 (37 samples, 0.09%)</title><rect x="53.1138%" y="885" width="0.0858%" height="15" fill="rgb(245,16,25)" fg:x="22917" fg:w="37"/><text x="53.3638%" y="895.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 (37 samples, 0.09%)</title><rect x="53.1138%" y="869" width="0.0858%" height="15" fill="rgb(249,152,16)" fg:x="22917" fg:w="37"/><text x="53.3638%" y="879.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (8 samples, 0.02%)</title><rect x="53.1810%" y="853" width="0.0185%" height="15" fill="rgb(250,16,1)" fg:x="22946" fg:w="8"/><text x="53.4310%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (8 samples, 0.02%)</title><rect x="53.1810%" y="837" width="0.0185%" height="15" fill="rgb(249,138,3)" fg:x="22946" fg:w="8"/><text x="53.4310%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (8 samples, 0.02%)</title><rect x="53.1810%" y="821" width="0.0185%" height="15" fill="rgb(227,71,41)" fg:x="22946" fg:w="8"/><text x="53.4310%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (8 samples, 0.02%)</title><rect x="53.1810%" y="805" width="0.0185%" height="15" fill="rgb(209,184,23)" fg:x="22946" fg:w="8"/><text x="53.4310%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="53.1833%" y="789" width="0.0162%" height="15" fill="rgb(223,215,31)" fg:x="22947" fg:w="7"/><text x="53.4333%" y="799.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="53.1833%" y="773" width="0.0162%" height="15" fill="rgb(210,146,28)" fg:x="22947" fg:w="7"/><text x="53.4333%" y="783.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="53.1833%" y="757" width="0.0162%" height="15" fill="rgb(209,183,41)" fg:x="22947" fg:w="7"/><text x="53.4333%" y="767.50"></text></g><g><title>malloc (7 samples, 0.02%)</title><rect x="53.1833%" y="741" width="0.0162%" height="15" fill="rgb(209,224,45)" fg:x="22947" fg:w="7"/><text x="53.4333%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (66 samples, 0.15%)</title><rect x="53.0558%" y="1125" width="0.1530%" height="15" fill="rgb(224,209,51)" fg:x="22892" fg:w="66"/><text x="53.3058%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (66 samples, 0.15%)</title><rect x="53.0558%" y="1109" width="0.1530%" height="15" fill="rgb(223,17,39)" fg:x="22892" fg:w="66"/><text x="53.3058%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (66 samples, 0.15%)</title><rect x="53.0558%" y="1093" width="0.1530%" height="15" fill="rgb(234,204,37)" fg:x="22892" fg:w="66"/><text x="53.3058%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (65 samples, 0.15%)</title><rect x="53.0582%" y="1077" width="0.1506%" height="15" fill="rgb(236,120,5)" fg:x="22893" fg:w="65"/><text x="53.3082%" y="1087.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (95 samples, 0.22%)</title><rect x="52.9909%" y="1189" width="0.2202%" height="15" fill="rgb(248,97,27)" fg:x="22864" fg:w="95"/><text x="53.2409%" y="1199.50"></text></g><g><title>slimp::rw::{{closure}} (91 samples, 0.21%)</title><rect x="53.0002%" y="1173" width="0.2109%" height="15" fill="rgb(240,66,17)" fg:x="22868" fg:w="91"/><text x="53.2502%" y="1183.50"></text></g><g><title>slimp::Sexp::rw (91 samples, 0.21%)</title><rect x="53.0002%" y="1157" width="0.2109%" height="15" fill="rgb(210,79,3)" fg:x="22868" fg:w="91"/><text x="53.2502%" y="1167.50"></text></g><g><title>slimp::rw (91 samples, 0.21%)</title><rect x="53.0002%" y="1141" width="0.2109%" height="15" fill="rgb(214,176,27)" fg:x="22868" fg:w="91"/><text x="53.2502%" y="1151.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 (96 samples, 0.22%)</title><rect x="52.9909%" y="1269" width="0.2225%" height="15" fill="rgb(235,185,3)" fg:x="22864" fg:w="96"/><text x="53.2409%" y="1279.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (96 samples, 0.22%)</title><rect x="52.9909%" y="1253" width="0.2225%" height="15" fill="rgb(227,24,12)" fg:x="22864" fg:w="96"/><text x="53.2409%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (96 samples, 0.22%)</title><rect x="52.9909%" y="1237" width="0.2225%" height="15" fill="rgb(252,169,48)" fg:x="22864" fg:w="96"/><text x="53.2409%" y="1247.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (96 samples, 0.22%)</title><rect x="52.9909%" y="1221" width="0.2225%" height="15" fill="rgb(212,65,1)" fg:x="22864" fg:w="96"/><text x="53.2409%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (96 samples, 0.22%)</title><rect x="52.9909%" y="1205" width="0.2225%" height="15" fill="rgb(242,39,24)" fg:x="22864" fg:w="96"/><text x="53.2409%" y="1215.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (12 samples, 0.03%)</title><rect x="53.2134%" y="1205" width="0.0278%" height="15" fill="rgb(249,32,23)" fg:x="22960" fg:w="12"/><text x="53.4634%" y="1215.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (12 samples, 0.03%)</title><rect x="53.2134%" y="1189" width="0.0278%" height="15" fill="rgb(251,195,23)" fg:x="22960" fg:w="12"/><text x="53.4634%" y="1199.50"></text></g><g><title>alloc::alloc::alloc (12 samples, 0.03%)</title><rect x="53.2134%" y="1173" width="0.0278%" height="15" fill="rgb(236,174,8)" fg:x="22960" fg:w="12"/><text x="53.4634%" y="1183.50"></text></g><g><title>malloc (10 samples, 0.02%)</title><rect x="53.2181%" y="1157" width="0.0232%" height="15" fill="rgb(220,197,8)" fg:x="22962" fg:w="10"/><text x="53.4681%" y="1167.50"></text></g><g><title>[libc.so.6] (5 samples, 0.01%)</title><rect x="53.2297%" y="1141" width="0.0116%" height="15" fill="rgb(240,108,37)" fg:x="22967" fg:w="5"/><text x="53.4797%" y="1151.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 (115 samples, 0.27%)</title><rect x="52.9770%" y="1477" width="0.2665%" height="15" fill="rgb(232,176,24)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1487.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (115 samples, 0.27%)</title><rect x="52.9770%" y="1461" width="0.2665%" height="15" fill="rgb(243,35,29)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1471.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (115 samples, 0.27%)</title><rect x="52.9770%" y="1445" width="0.2665%" height="15" fill="rgb(210,37,18)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1455.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (115 samples, 0.27%)</title><rect x="52.9770%" y="1429" width="0.2665%" height="15" fill="rgb(224,184,40)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (115 samples, 0.27%)</title><rect x="52.9770%" y="1413" width="0.2665%" height="15" fill="rgb(236,39,29)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1423.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (115 samples, 0.27%)</title><rect x="52.9770%" y="1397" width="0.2665%" height="15" fill="rgb(232,48,39)" fg:x="22858" fg:w="115"/><text x="53.2270%" y="1407.50"></text></g><g><title>slimp::rw::{{closure}} (112 samples, 0.26%)</title><rect x="52.9840%" y="1381" width="0.2596%" height="15" fill="rgb(236,34,42)" fg:x="22861" fg:w="112"/><text x="53.2340%" y="1391.50"></text></g><g><title>slimp::Sexp::rw (112 samples, 0.26%)</title><rect x="52.9840%" y="1365" width="0.2596%" height="15" fill="rgb(243,106,37)" fg:x="22861" fg:w="112"/><text x="53.2340%" y="1375.50"></text></g><g><title>slimp::rw (111 samples, 0.26%)</title><rect x="52.9863%" y="1349" width="0.2573%" height="15" fill="rgb(218,96,6)" fg:x="22862" fg:w="111"/><text x="53.2363%" y="1359.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (109 samples, 0.25%)</title><rect x="52.9909%" y="1333" width="0.2526%" height="15" fill="rgb(235,130,12)" fg:x="22864" fg:w="109"/><text x="53.2409%" y="1343.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (109 samples, 0.25%)</title><rect x="52.9909%" y="1317" width="0.2526%" height="15" fill="rgb(231,95,0)" fg:x="22864" fg:w="109"/><text x="53.2409%" y="1327.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 (109 samples, 0.25%)</title><rect x="52.9909%" y="1301" width="0.2526%" height="15" fill="rgb(228,12,23)" fg:x="22864" fg:w="109"/><text x="53.2409%" y="1311.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 (109 samples, 0.25%)</title><rect x="52.9909%" y="1285" width="0.2526%" height="15" fill="rgb(216,12,1)" fg:x="22864" fg:w="109"/><text x="53.2409%" y="1295.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (13 samples, 0.03%)</title><rect x="53.2134%" y="1269" width="0.0301%" height="15" fill="rgb(219,59,3)" fg:x="22960" fg:w="13"/><text x="53.4634%" y="1279.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (13 samples, 0.03%)</title><rect x="53.2134%" y="1253" width="0.0301%" height="15" fill="rgb(215,208,46)" fg:x="22960" fg:w="13"/><text x="53.4634%" y="1263.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (13 samples, 0.03%)</title><rect x="53.2134%" y="1237" width="0.0301%" height="15" fill="rgb(254,224,29)" fg:x="22960" fg:w="13"/><text x="53.4634%" y="1247.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (13 samples, 0.03%)</title><rect x="53.2134%" y="1221" width="0.0301%" height="15" fill="rgb(232,14,29)" fg:x="22960" fg:w="13"/><text x="53.4634%" y="1231.50"></text></g><g><title>slimp::Rule::concrify (141 samples, 0.33%)</title><rect x="52.9284%" y="1573" width="0.3268%" height="15" fill="rgb(208,45,52)" fg:x="22837" fg:w="141"/><text x="53.1784%" y="1583.50"></text></g><g><title>slimp::rw (122 samples, 0.28%)</title><rect x="52.9724%" y="1557" width="0.2828%" height="15" fill="rgb(234,191,28)" fg:x="22856" fg:w="122"/><text x="53.2224%" y="1567.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (120 samples, 0.28%)</title><rect x="52.9770%" y="1541" width="0.2781%" height="15" fill="rgb(244,67,43)" fg:x="22858" fg:w="120"/><text x="53.2270%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (120 samples, 0.28%)</title><rect x="52.9770%" y="1525" width="0.2781%" height="15" fill="rgb(236,189,24)" fg:x="22858" fg:w="120"/><text x="53.2270%" y="1535.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 (120 samples, 0.28%)</title><rect x="52.9770%" y="1509" width="0.2781%" height="15" fill="rgb(239,214,33)" fg:x="22858" fg:w="120"/><text x="53.2270%" y="1519.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 (120 samples, 0.28%)</title><rect x="52.9770%" y="1493" width="0.2781%" height="15" fill="rgb(226,176,41)" fg:x="22858" fg:w="120"/><text x="53.2270%" y="1503.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (5 samples, 0.01%)</title><rect x="53.2436%" y="1477" width="0.0116%" height="15" fill="rgb(248,47,8)" fg:x="22973" fg:w="5"/><text x="53.4936%" y="1487.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (5 samples, 0.01%)</title><rect x="53.2436%" y="1461" width="0.0116%" height="15" fill="rgb(218,81,44)" fg:x="22973" fg:w="5"/><text x="53.4936%" y="1471.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="53.2737%" y="1445" width="0.0209%" height="15" fill="rgb(213,98,6)" fg:x="22986" fg:w="9"/><text x="53.5237%" y="1455.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="53.3131%" y="1429" width="0.0139%" height="15" fill="rgb(222,85,22)" fg:x="23003" fg:w="6"/><text x="53.5631%" y="1439.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (31 samples, 0.07%)</title><rect x="53.2691%" y="1493" width="0.0718%" height="15" fill="rgb(239,46,39)" fg:x="22984" fg:w="31"/><text x="53.5191%" y="1503.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (31 samples, 0.07%)</title><rect x="53.2691%" y="1477" width="0.0718%" height="15" fill="rgb(237,12,29)" fg:x="22984" fg:w="31"/><text x="53.5191%" y="1487.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (31 samples, 0.07%)</title><rect x="53.2691%" y="1461" width="0.0718%" height="15" fill="rgb(214,77,8)" fg:x="22984" fg:w="31"/><text x="53.5191%" y="1471.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (20 samples, 0.05%)</title><rect x="53.2946%" y="1445" width="0.0464%" height="15" fill="rgb(217,168,37)" fg:x="22995" fg:w="20"/><text x="53.5446%" y="1455.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="53.3270%" y="1429" width="0.0139%" height="15" fill="rgb(221,217,23)" fg:x="23009" fg:w="6"/><text x="53.5770%" y="1439.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="53.3896%" y="1333" width="0.0301%" height="15" fill="rgb(243,229,36)" fg:x="23036" fg:w="13"/><text x="53.6396%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="53.3896%" y="1317" width="0.0301%" height="15" fill="rgb(251,163,40)" fg:x="23036" fg:w="13"/><text x="53.6396%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (13 samples, 0.03%)</title><rect x="53.3896%" y="1301" width="0.0301%" height="15" fill="rgb(237,222,12)" fg:x="23036" fg:w="13"/><text x="53.6396%" y="1311.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="53.4081%" y="1285" width="0.0116%" height="15" fill="rgb(248,132,6)" fg:x="23044" fg:w="5"/><text x="53.6581%" y="1295.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="53.3826%" y="1381" width="0.0394%" height="15" fill="rgb(227,167,50)" fg:x="23033" fg:w="17"/><text x="53.6326%" y="1391.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (16 samples, 0.04%)</title><rect x="53.3849%" y="1365" width="0.0371%" height="15" fill="rgb(242,84,37)" fg:x="23034" fg:w="16"/><text x="53.6349%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_u32 (14 samples, 0.03%)</title><rect x="53.3896%" y="1349" width="0.0324%" height="15" fill="rgb(212,4,50)" fg:x="23036" fg:w="14"/><text x="53.6396%" y="1359.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (13 samples, 0.03%)</title><rect x="53.4753%" y="1301" width="0.0301%" height="15" fill="rgb(230,228,32)" fg:x="23073" fg:w="13"/><text x="53.7253%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (20 samples, 0.05%)</title><rect x="53.5564%" y="1205" width="0.0464%" height="15" fill="rgb(248,217,23)" fg:x="23108" fg:w="20"/><text x="53.8064%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.02%)</title><rect x="53.5819%" y="1189" width="0.0209%" height="15" fill="rgb(238,197,32)" fg:x="23119" fg:w="9"/><text x="53.8319%" y="1199.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="53.6028%" y="1205" width="0.0116%" height="15" fill="rgb(236,106,1)" fg:x="23128" fg:w="5"/><text x="53.8528%" y="1215.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="53.6028%" y="1189" width="0.0116%" height="15" fill="rgb(219,228,13)" fg:x="23128" fg:w="5"/><text x="53.8528%" y="1199.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="53.6028%" y="1173" width="0.0116%" height="15" fill="rgb(238,30,35)" fg:x="23128" fg:w="5"/><text x="53.8528%" y="1183.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (62 samples, 0.14%)</title><rect x="53.5055%" y="1301" width="0.1437%" height="15" fill="rgb(236,70,23)" fg:x="23086" fg:w="62"/><text x="53.7555%" y="1311.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (61 samples, 0.14%)</title><rect x="53.5078%" y="1285" width="0.1414%" height="15" fill="rgb(249,104,48)" fg:x="23087" fg:w="61"/><text x="53.7578%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_u32 (58 samples, 0.13%)</title><rect x="53.5147%" y="1269" width="0.1344%" height="15" fill="rgb(254,117,50)" fg:x="23090" fg:w="58"/><text x="53.7647%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="53.5147%" y="1253" width="0.1344%" height="15" fill="rgb(223,152,4)" fg:x="23090" fg:w="58"/><text x="53.7647%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="53.5147%" y="1237" width="0.1344%" height="15" fill="rgb(245,6,2)" fg:x="23090" fg:w="58"/><text x="53.7647%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="53.5147%" y="1221" width="0.1344%" height="15" fill="rgb(249,150,24)" fg:x="23090" fg:w="58"/><text x="53.7647%" y="1231.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="53.6144%" y="1205" width="0.0348%" height="15" fill="rgb(228,185,42)" fg:x="23133" fg:w="15"/><text x="53.8644%" y="1215.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="53.7697%" y="1221" width="0.0116%" height="15" fill="rgb(226,39,33)" fg:x="23200" fg:w="5"/><text x="54.0197%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="53.9087%" y="1109" width="0.0185%" height="15" fill="rgb(221,166,19)" fg:x="23260" fg:w="8"/><text x="54.1587%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (28 samples, 0.06%)</title><rect x="53.8856%" y="1125" width="0.0649%" height="15" fill="rgb(209,109,2)" fg:x="23250" fg:w="28"/><text x="54.1356%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="53.9273%" y="1109" width="0.0232%" height="15" fill="rgb(252,216,26)" fg:x="23268" fg:w="10"/><text x="54.1773%" y="1119.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="53.9504%" y="1125" width="0.0116%" height="15" fill="rgb(227,173,36)" fg:x="23278" fg:w="5"/><text x="54.2004%" y="1135.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="53.9504%" y="1109" width="0.0116%" height="15" fill="rgb(209,90,7)" fg:x="23278" fg:w="5"/><text x="54.2004%" y="1119.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="53.9504%" y="1093" width="0.0116%" height="15" fill="rgb(250,194,11)" fg:x="23278" fg:w="5"/><text x="54.2004%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="53.8114%" y="1173" width="0.2179%" height="15" fill="rgb(220,72,50)" fg:x="23218" fg:w="94"/><text x="54.0614%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="53.8114%" y="1157" width="0.2179%" height="15" fill="rgb(222,106,48)" fg:x="23218" fg:w="94"/><text x="54.0614%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="53.8114%" y="1141" width="0.2179%" height="15" fill="rgb(216,220,45)" fg:x="23218" fg:w="94"/><text x="54.0614%" y="1151.50"></text></g><g><title>core::hash::sip::u8to64_le (29 samples, 0.07%)</title><rect x="53.9620%" y="1125" width="0.0672%" height="15" fill="rgb(234,112,18)" fg:x="23283" fg:w="29"/><text x="54.2120%" y="1135.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (109 samples, 0.25%)</title><rect x="53.7813%" y="1221" width="0.2526%" height="15" fill="rgb(206,179,9)" fg:x="23205" fg:w="109"/><text x="54.0313%" y="1231.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (106 samples, 0.25%)</title><rect x="53.7882%" y="1205" width="0.2457%" height="15" fill="rgb(215,115,40)" fg:x="23208" fg:w="106"/><text x="54.0382%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_u32 (96 samples, 0.22%)</title><rect x="53.8114%" y="1189" width="0.2225%" height="15" fill="rgb(222,69,34)" fg:x="23218" fg:w="96"/><text x="54.0614%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="54.2564%" y="1029" width="0.0185%" height="15" fill="rgb(209,161,10)" fg:x="23410" fg:w="8"/><text x="54.5064%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="54.2402%" y="1045" width="0.0556%" height="15" fill="rgb(217,6,38)" fg:x="23403" fg:w="24"/><text x="54.4902%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.02%)</title><rect x="54.2749%" y="1029" width="0.0209%" height="15" fill="rgb(229,229,48)" fg:x="23418" fg:w="9"/><text x="54.5249%" y="1039.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="54.2958%" y="1045" width="0.0139%" height="15" fill="rgb(225,21,28)" fg:x="23427" fg:w="6"/><text x="54.5458%" y="1055.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="54.2958%" y="1029" width="0.0139%" height="15" fill="rgb(206,33,13)" fg:x="23427" fg:w="6"/><text x="54.5458%" y="1039.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="54.2958%" y="1013" width="0.0139%" height="15" fill="rgb(242,178,17)" fg:x="23427" fg:w="6"/><text x="54.5458%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (97 samples, 0.22%)</title><rect x="54.1683%" y="1093" width="0.2248%" height="15" fill="rgb(220,162,5)" fg:x="23372" fg:w="97"/><text x="54.4183%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (97 samples, 0.22%)</title><rect x="54.1683%" y="1077" width="0.2248%" height="15" fill="rgb(210,33,43)" fg:x="23372" fg:w="97"/><text x="54.4183%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (97 samples, 0.22%)</title><rect x="54.1683%" y="1061" width="0.2248%" height="15" fill="rgb(216,116,54)" fg:x="23372" fg:w="97"/><text x="54.4183%" y="1071.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="54.3097%" y="1045" width="0.0834%" height="15" fill="rgb(249,92,24)" fg:x="23433" fg:w="36"/><text x="54.5597%" y="1055.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (111 samples, 0.26%)</title><rect x="54.1382%" y="1141" width="0.2573%" height="15" fill="rgb(231,189,14)" fg:x="23359" fg:w="111"/><text x="54.3882%" y="1151.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (100 samples, 0.23%)</title><rect x="54.1637%" y="1125" width="0.2318%" height="15" fill="rgb(230,8,41)" fg:x="23370" fg:w="100"/><text x="54.4137%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_u32 (98 samples, 0.23%)</title><rect x="54.1683%" y="1109" width="0.2271%" height="15" fill="rgb(249,7,27)" fg:x="23372" fg:w="98"/><text x="54.4183%" y="1119.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="54.4997%" y="1061" width="0.0255%" height="15" fill="rgb(232,86,5)" fg:x="23515" fg:w="11"/><text x="54.7497%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="54.6457%" y="949" width="0.0139%" height="15" fill="rgb(224,175,18)" fg:x="23578" fg:w="6"/><text x="54.8957%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (27 samples, 0.06%)</title><rect x="54.6179%" y="965" width="0.0626%" height="15" fill="rgb(220,129,12)" fg:x="23566" fg:w="27"/><text x="54.8679%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.02%)</title><rect x="54.6597%" y="949" width="0.0209%" height="15" fill="rgb(210,19,36)" fg:x="23584" fg:w="9"/><text x="54.9097%" y="959.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (106 samples, 0.25%)</title><rect x="54.5252%" y="1061" width="0.2457%" height="15" fill="rgb(219,96,14)" fg:x="23526" fg:w="106"/><text x="54.7752%" y="1071.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (100 samples, 0.23%)</title><rect x="54.5391%" y="1045" width="0.2318%" height="15" fill="rgb(249,106,1)" fg:x="23532" fg:w="100"/><text x="54.7891%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_u32 (94 samples, 0.22%)</title><rect x="54.5530%" y="1029" width="0.2179%" height="15" fill="rgb(249,155,20)" fg:x="23538" fg:w="94"/><text x="54.8030%" y="1039.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="54.5530%" y="1013" width="0.2179%" height="15" fill="rgb(244,168,9)" fg:x="23538" fg:w="94"/><text x="54.8030%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="54.5530%" y="997" width="0.2179%" height="15" fill="rgb(216,23,50)" fg:x="23538" fg:w="94"/><text x="54.8030%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (94 samples, 0.22%)</title><rect x="54.5530%" y="981" width="0.2179%" height="15" fill="rgb(224,219,20)" fg:x="23538" fg:w="94"/><text x="54.8030%" y="991.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="54.6875%" y="965" width="0.0834%" height="15" fill="rgb(222,156,15)" fg:x="23596" fg:w="36"/><text x="54.9375%" y="975.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="54.8543%" y="981" width="0.0255%" height="15" fill="rgb(231,97,17)" fg:x="23668" fg:w="11"/><text x="55.1043%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (17 samples, 0.04%)</title><rect x="54.9262%" y="885" width="0.0394%" height="15" fill="rgb(218,70,48)" fg:x="23699" fg:w="17"/><text x="55.1762%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="54.9540%" y="869" width="0.0116%" height="15" fill="rgb(212,196,52)" fg:x="23711" fg:w="5"/><text x="55.2040%" y="879.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="54.9656%" y="885" width="0.0116%" height="15" fill="rgb(243,203,18)" fg:x="23716" fg:w="5"/><text x="55.2156%" y="895.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="54.9656%" y="869" width="0.0116%" height="15" fill="rgb(252,125,41)" fg:x="23716" fg:w="5"/><text x="55.2156%" y="879.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="54.9656%" y="853" width="0.0116%" height="15" fill="rgb(223,180,33)" fg:x="23716" fg:w="5"/><text x="55.2156%" y="863.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (65 samples, 0.15%)</title><rect x="54.8798%" y="981" width="0.1506%" height="15" fill="rgb(254,159,46)" fg:x="23679" fg:w="65"/><text x="55.1298%" y="991.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (62 samples, 0.14%)</title><rect x="54.8868%" y="965" width="0.1437%" height="15" fill="rgb(254,38,10)" fg:x="23682" fg:w="62"/><text x="55.1368%" y="975.50"></text></g><g><title>core::hash::Hasher::write_u32 (61 samples, 0.14%)</title><rect x="54.8891%" y="949" width="0.1414%" height="15" fill="rgb(208,217,32)" fg:x="23683" fg:w="61"/><text x="55.1391%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="54.8891%" y="933" width="0.1414%" height="15" fill="rgb(221,120,13)" fg:x="23683" fg:w="61"/><text x="55.1391%" y="943.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="54.8891%" y="917" width="0.1414%" height="15" fill="rgb(246,54,52)" fg:x="23683" fg:w="61"/><text x="55.1391%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="54.8891%" y="901" width="0.1414%" height="15" fill="rgb(242,34,25)" fg:x="23683" fg:w="61"/><text x="55.1391%" y="911.50"></text></g><g><title>core::hash::sip::u8to64_le (23 samples, 0.05%)</title><rect x="54.9772%" y="885" width="0.0533%" height="15" fill="rgb(247,209,9)" fg:x="23721" fg:w="23"/><text x="55.2272%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (11 samples, 0.03%)</title><rect x="55.1093%" y="805" width="0.0255%" height="15" fill="rgb(228,71,26)" fg:x="23778" fg:w="11"/><text x="55.3593%" y="815.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="55.1209%" y="789" width="0.0139%" height="15" fill="rgb(222,145,49)" fg:x="23783" fg:w="6"/><text x="55.3709%" y="799.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="55.0838%" y="901" width="0.0742%" height="15" fill="rgb(218,121,17)" fg:x="23767" fg:w="32"/><text x="55.3338%" y="911.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (31 samples, 0.07%)</title><rect x="55.0861%" y="885" width="0.0718%" height="15" fill="rgb(244,50,7)" fg:x="23768" fg:w="31"/><text x="55.3361%" y="895.50"></text></g><g><title>core::hash::Hasher::write_u32 (30 samples, 0.07%)</title><rect x="55.0884%" y="869" width="0.0695%" height="15" fill="rgb(246,229,37)" fg:x="23769" fg:w="30"/><text x="55.3384%" y="879.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="55.0884%" y="853" width="0.0695%" height="15" fill="rgb(225,18,5)" fg:x="23769" fg:w="30"/><text x="55.3384%" y="863.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="55.0884%" y="837" width="0.0695%" height="15" fill="rgb(213,204,8)" fg:x="23769" fg:w="30"/><text x="55.3384%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="55.0884%" y="821" width="0.0695%" height="15" fill="rgb(238,103,6)" fg:x="23769" fg:w="30"/><text x="55.3384%" y="831.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="55.1348%" y="805" width="0.0232%" height="15" fill="rgb(222,25,35)" fg:x="23789" fg:w="10"/><text x="55.3848%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="55.2020%" y="789" width="0.0209%" height="15" fill="rgb(213,203,35)" fg:x="23818" fg:w="9"/><text x="55.4520%" y="799.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="55.1765%" y="837" width="0.0672%" height="15" fill="rgb(221,79,53)" fg:x="23807" fg:w="29"/><text x="55.4265%" y="847.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="55.1765%" y="821" width="0.0672%" height="15" fill="rgb(243,200,35)" fg:x="23807" fg:w="29"/><text x="55.4265%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="55.1765%" y="805" width="0.0672%" height="15" fill="rgb(248,60,25)" fg:x="23807" fg:w="29"/><text x="55.4265%" y="815.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="55.2275%" y="789" width="0.0162%" height="15" fill="rgb(227,53,46)" fg:x="23829" fg:w="7"/><text x="55.4775%" y="799.50"></text></g><g><title>core::hash::Hash::hash_slice (74 samples, 0.17%)</title><rect x="55.0791%" y="933" width="0.1715%" height="15" fill="rgb(216,120,32)" fg:x="23765" fg:w="74"/><text x="55.3291%" y="943.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (74 samples, 0.17%)</title><rect x="55.0791%" y="917" width="0.1715%" height="15" fill="rgb(220,134,1)" fg:x="23765" fg:w="74"/><text x="55.3291%" y="927.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (40 samples, 0.09%)</title><rect x="55.1579%" y="901" width="0.0927%" height="15" fill="rgb(237,168,5)" fg:x="23799" fg:w="40"/><text x="55.4079%" y="911.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (34 samples, 0.08%)</title><rect x="55.1719%" y="885" width="0.0788%" height="15" fill="rgb(231,100,33)" fg:x="23805" fg:w="34"/><text x="55.4219%" y="895.50"></text></g><g><title>core::hash::Hasher::write_isize (34 samples, 0.08%)</title><rect x="55.1719%" y="869" width="0.0788%" height="15" fill="rgb(236,177,47)" fg:x="23805" fg:w="34"/><text x="55.4219%" y="879.50"></text></g><g><title>core::hash::Hasher::write_usize (34 samples, 0.08%)</title><rect x="55.1719%" y="853" width="0.0788%" height="15" fill="rgb(235,7,49)" fg:x="23805" fg:w="34"/><text x="55.4219%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (6 samples, 0.01%)</title><rect x="55.2576%" y="853" width="0.0139%" height="15" fill="rgb(232,119,22)" fg:x="23842" fg:w="6"/><text x="55.5076%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="55.2507%" y="901" width="0.0324%" height="15" fill="rgb(254,73,53)" fg:x="23839" fg:w="14"/><text x="55.5007%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="55.2507%" y="885" width="0.0324%" height="15" fill="rgb(251,35,20)" fg:x="23839" fg:w="14"/><text x="55.5007%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="55.2507%" y="869" width="0.0324%" height="15" fill="rgb(241,119,20)" fg:x="23839" fg:w="14"/><text x="55.5007%" y="879.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="55.2715%" y="853" width="0.0116%" height="15" fill="rgb(207,102,14)" fg:x="23848" fg:w="5"/><text x="55.5215%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (89 samples, 0.21%)</title><rect x="55.0791%" y="965" width="0.2063%" height="15" fill="rgb(248,201,50)" fg:x="23765" fg:w="89"/><text x="55.3291%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (89 samples, 0.21%)</title><rect x="55.0791%" y="949" width="0.2063%" height="15" fill="rgb(222,185,44)" fg:x="23765" fg:w="89"/><text x="55.3291%" y="959.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (15 samples, 0.03%)</title><rect x="55.2507%" y="933" width="0.0348%" height="15" fill="rgb(218,107,18)" fg:x="23839" fg:w="15"/><text x="55.5007%" y="943.50"></text></g><g><title>core::hash::Hasher::write_usize (15 samples, 0.03%)</title><rect x="55.2507%" y="917" width="0.0348%" height="15" fill="rgb(237,177,39)" fg:x="23839" fg:w="15"/><text x="55.5007%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="55.3804%" y="853" width="0.0209%" height="15" fill="rgb(246,69,6)" fg:x="23895" fg:w="9"/><text x="55.6304%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="55.3619%" y="869" width="0.0579%" height="15" fill="rgb(234,208,37)" fg:x="23887" fg:w="25"/><text x="55.6119%" y="879.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="55.4013%" y="853" width="0.0185%" height="15" fill="rgb(225,4,6)" fg:x="23904" fg:w="8"/><text x="55.6513%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="55.2947%" y="917" width="0.1761%" height="15" fill="rgb(233,45,0)" fg:x="23858" fg:w="76"/><text x="55.5447%" y="927.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="55.2947%" y="901" width="0.1761%" height="15" fill="rgb(226,136,5)" fg:x="23858" fg:w="76"/><text x="55.5447%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (76 samples, 0.18%)</title><rect x="55.2947%" y="885" width="0.1761%" height="15" fill="rgb(211,91,47)" fg:x="23858" fg:w="76"/><text x="55.5447%" y="895.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="55.4222%" y="869" width="0.0487%" height="15" fill="rgb(242,88,51)" fg:x="23913" fg:w="21"/><text x="55.6722%" y="879.50"></text></g><g><title>core::hash::Hash::hash_slice (273 samples, 0.63%)</title><rect x="54.8497%" y="1013" width="0.6327%" height="15" fill="rgb(230,91,28)" fg:x="23666" fg:w="273"/><text x="55.0997%" y="1023.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (273 samples, 0.63%)</title><rect x="54.8497%" y="997" width="0.6327%" height="15" fill="rgb(254,186,29)" fg:x="23666" fg:w="273"/><text x="55.0997%" y="1007.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (195 samples, 0.45%)</title><rect x="55.0305%" y="981" width="0.4519%" height="15" fill="rgb(238,6,4)" fg:x="23744" fg:w="195"/><text x="55.2805%" y="991.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (85 samples, 0.20%)</title><rect x="55.2854%" y="965" width="0.1970%" height="15" fill="rgb(221,151,16)" fg:x="23854" fg:w="85"/><text x="55.5354%" y="975.50"></text></g><g><title>core::hash::Hasher::write_isize (85 samples, 0.20%)</title><rect x="55.2854%" y="949" width="0.1970%" height="15" fill="rgb(251,143,52)" fg:x="23854" fg:w="85"/><text x="55.5354%" y="959.50"></text></g><g><title>core::hash::Hasher::write_usize (85 samples, 0.20%)</title><rect x="55.2854%" y="933" width="0.1970%" height="15" fill="rgb(206,90,15)" fg:x="23854" fg:w="85"/><text x="55.5354%" y="943.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="55.4708%" y="917" width="0.0116%" height="15" fill="rgb(218,35,8)" fg:x="23934" fg:w="5"/><text x="55.7208%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="55.5195%" y="933" width="0.0162%" height="15" fill="rgb(239,215,6)" fg:x="23955" fg:w="7"/><text x="55.7695%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="55.4847%" y="981" width="0.0649%" height="15" fill="rgb(245,116,39)" fg:x="23940" fg:w="28"/><text x="55.7347%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="55.4847%" y="965" width="0.0649%" height="15" fill="rgb(242,65,28)" fg:x="23940" fg:w="28"/><text x="55.7347%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="55.4847%" y="949" width="0.0649%" height="15" fill="rgb(252,132,53)" fg:x="23940" fg:w="28"/><text x="55.7347%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (303 samples, 0.70%)</title><rect x="54.8497%" y="1045" width="0.7023%" height="15" fill="rgb(224,159,50)" fg:x="23666" fg:w="303"/><text x="55.0997%" y="1055.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (303 samples, 0.70%)</title><rect x="54.8497%" y="1029" width="0.7023%" height="15" fill="rgb(224,93,4)" fg:x="23666" fg:w="303"/><text x="55.0997%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (30 samples, 0.07%)</title><rect x="55.4824%" y="1013" width="0.0695%" height="15" fill="rgb(208,81,34)" fg:x="23939" fg:w="30"/><text x="55.7324%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_usize (30 samples, 0.07%)</title><rect x="55.4824%" y="997" width="0.0695%" height="15" fill="rgb(233,92,54)" fg:x="23939" fg:w="30"/><text x="55.7324%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (13 samples, 0.03%)</title><rect x="55.7096%" y="933" width="0.0301%" height="15" fill="rgb(237,21,14)" fg:x="24037" fg:w="13"/><text x="55.9596%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (46 samples, 0.11%)</title><rect x="55.6794%" y="949" width="0.1066%" height="15" fill="rgb(249,128,51)" fg:x="24024" fg:w="46"/><text x="55.9294%" y="959.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (20 samples, 0.05%)</title><rect x="55.7397%" y="933" width="0.0464%" height="15" fill="rgb(223,129,24)" fg:x="24050" fg:w="20"/><text x="55.9897%" y="943.50"></text></g><g><title>core::hash::sip::u8to64_le (40 samples, 0.09%)</title><rect x="55.7953%" y="949" width="0.0927%" height="15" fill="rgb(231,168,25)" fg:x="24074" fg:w="40"/><text x="56.0453%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (137 samples, 0.32%)</title><rect x="55.5728%" y="997" width="0.3175%" height="15" fill="rgb(224,39,20)" fg:x="23978" fg:w="137"/><text x="55.8228%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (137 samples, 0.32%)</title><rect x="55.5728%" y="981" width="0.3175%" height="15" fill="rgb(225,152,53)" fg:x="23978" fg:w="137"/><text x="55.8228%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (137 samples, 0.32%)</title><rect x="55.5728%" y="965" width="0.3175%" height="15" fill="rgb(252,17,24)" fg:x="23978" fg:w="137"/><text x="55.8228%" y="975.50"></text></g><g><title>core::hash::Hash::hash_slice (617 samples, 1.43%)</title><rect x="54.4789%" y="1093" width="1.4300%" height="15" fill="rgb(250,114,30)" fg:x="23506" fg:w="617"/><text x="54.7289%" y="1103.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (617 samples, 1.43%)</title><rect x="54.4789%" y="1077" width="1.4300%" height="15" fill="rgb(229,5,4)" fg:x="23506" fg:w="617"/><text x="54.7289%" y="1087.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (491 samples, 1.14%)</title><rect x="54.7709%" y="1061" width="1.1380%" height="15" fill="rgb(225,176,49)" fg:x="23632" fg:w="491"/><text x="55.0209%" y="1071.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (154 samples, 0.36%)</title><rect x="55.5520%" y="1045" width="0.3569%" height="15" fill="rgb(224,221,49)" fg:x="23969" fg:w="154"/><text x="55.8020%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_isize (154 samples, 0.36%)</title><rect x="55.5520%" y="1029" width="0.3569%" height="15" fill="rgb(253,169,27)" fg:x="23969" fg:w="154"/><text x="55.8020%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_usize (153 samples, 0.35%)</title><rect x="55.5543%" y="1013" width="0.3546%" height="15" fill="rgb(211,206,16)" fg:x="23970" fg:w="153"/><text x="55.8043%" y="1023.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (8 samples, 0.02%)</title><rect x="55.8903%" y="997" width="0.0185%" height="15" fill="rgb(244,87,35)" fg:x="24115" fg:w="8"/><text x="56.1403%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="55.9761%" y="997" width="0.0209%" height="15" fill="rgb(246,28,10)" fg:x="24152" fg:w="9"/><text x="56.2261%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="55.9575%" y="1013" width="0.0556%" height="15" fill="rgb(229,12,44)" fg:x="24144" fg:w="24"/><text x="56.2075%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="55.9969%" y="997" width="0.0162%" height="15" fill="rgb(210,145,37)" fg:x="24161" fg:w="7"/><text x="56.2469%" y="1007.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (64 samples, 0.15%)</title><rect x="55.9228%" y="1061" width="0.1483%" height="15" fill="rgb(227,112,52)" fg:x="24129" fg:w="64"/><text x="56.1728%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (64 samples, 0.15%)</title><rect x="55.9228%" y="1045" width="0.1483%" height="15" fill="rgb(238,155,34)" fg:x="24129" fg:w="64"/><text x="56.1728%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (64 samples, 0.15%)</title><rect x="55.9228%" y="1029" width="0.1483%" height="15" fill="rgb(239,226,36)" fg:x="24129" fg:w="64"/><text x="56.1728%" y="1039.50"></text></g><g><title>core::hash::sip::u8to64_le (23 samples, 0.05%)</title><rect x="56.0178%" y="1013" width="0.0533%" height="15" fill="rgb(230,16,23)" fg:x="24170" fg:w="23"/><text x="56.2678%" y="1023.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (689 samples, 1.60%)</title><rect x="54.4789%" y="1125" width="1.5969%" height="15" fill="rgb(236,171,36)" fg:x="23506" fg:w="689"/><text x="54.7289%" y="1135.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (689 samples, 1.60%)</title><rect x="54.4789%" y="1109" width="1.5969%" height="15" fill="rgb(221,22,14)" fg:x="23506" fg:w="689"/><text x="54.7289%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (72 samples, 0.17%)</title><rect x="55.9089%" y="1093" width="0.1669%" height="15" fill="rgb(242,43,11)" fg:x="24123" fg:w="72"/><text x="56.1589%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_usize (70 samples, 0.16%)</title><rect x="55.9135%" y="1077" width="0.1622%" height="15" fill="rgb(232,69,23)" fg:x="24125" fg:w="70"/><text x="56.1635%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (32 samples, 0.07%)</title><rect x="56.3145%" y="1013" width="0.0742%" height="15" fill="rgb(216,180,54)" fg:x="24298" fg:w="32"/><text x="56.5645%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (67 samples, 0.16%)</title><rect x="56.2866%" y="1029" width="0.1553%" height="15" fill="rgb(216,5,24)" fg:x="24286" fg:w="67"/><text x="56.5366%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (23 samples, 0.05%)</title><rect x="56.3886%" y="1013" width="0.0533%" height="15" fill="rgb(225,89,9)" fg:x="24330" fg:w="23"/><text x="56.6386%" y="1023.50"></text></g><g><title>core::hash::sip::u8to64_le (46 samples, 0.11%)</title><rect x="56.4442%" y="1029" width="0.1066%" height="15" fill="rgb(243,75,33)" fg:x="24354" fg:w="46"/><text x="56.6942%" y="1039.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (7 samples, 0.02%)</title><rect x="56.5346%" y="1013" width="0.0162%" height="15" fill="rgb(247,141,45)" fg:x="24393" fg:w="7"/><text x="56.7846%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (191 samples, 0.44%)</title><rect x="56.1151%" y="1077" width="0.4427%" height="15" fill="rgb(232,177,36)" fg:x="24212" fg:w="191"/><text x="56.3651%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (191 samples, 0.44%)</title><rect x="56.1151%" y="1061" width="0.4427%" height="15" fill="rgb(219,125,36)" fg:x="24212" fg:w="191"/><text x="56.3651%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (191 samples, 0.44%)</title><rect x="56.1151%" y="1045" width="0.4427%" height="15" fill="rgb(227,94,9)" fg:x="24212" fg:w="191"/><text x="56.3651%" y="1055.50"></text></g><g><title>core::hash::Hash::hash_slice (1,061 samples, 2.46%)</title><rect x="54.1127%" y="1173" width="2.4590%" height="15" fill="rgb(240,34,52)" fg:x="23348" fg:w="1061"/><text x="54.3627%" y="1183.50">co..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,061 samples, 2.46%)</title><rect x="54.1127%" y="1157" width="2.4590%" height="15" fill="rgb(216,45,12)" fg:x="23348" fg:w="1061"/><text x="54.3627%" y="1167.50">co..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (939 samples, 2.18%)</title><rect x="54.3954%" y="1141" width="2.1763%" height="15" fill="rgb(246,21,19)" fg:x="23470" fg:w="939"/><text x="54.6454%" y="1151.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (214 samples, 0.50%)</title><rect x="56.0757%" y="1125" width="0.4960%" height="15" fill="rgb(213,98,42)" fg:x="24195" fg:w="214"/><text x="56.3257%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_isize (214 samples, 0.50%)</title><rect x="56.0757%" y="1109" width="0.4960%" height="15" fill="rgb(250,136,47)" fg:x="24195" fg:w="214"/><text x="56.3257%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_usize (210 samples, 0.49%)</title><rect x="56.0850%" y="1093" width="0.4867%" height="15" fill="rgb(251,124,27)" fg:x="24199" fg:w="210"/><text x="56.3350%" y="1103.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="56.5578%" y="1077" width="0.0139%" height="15" fill="rgb(229,180,14)" fg:x="24403" fg:w="6"/><text x="56.8078%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="56.6737%" y="1077" width="0.0209%" height="15" fill="rgb(245,216,25)" fg:x="24453" fg:w="9"/><text x="56.9237%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="56.6528%" y="1093" width="0.0510%" height="15" fill="rgb(251,43,5)" fg:x="24444" fg:w="22"/><text x="56.9028%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (71 samples, 0.16%)</title><rect x="56.5833%" y="1141" width="0.1646%" height="15" fill="rgb(250,128,24)" fg:x="24414" fg:w="71"/><text x="56.8333%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (71 samples, 0.16%)</title><rect x="56.5833%" y="1125" width="0.1646%" height="15" fill="rgb(217,117,27)" fg:x="24414" fg:w="71"/><text x="56.8333%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (71 samples, 0.16%)</title><rect x="56.5833%" y="1109" width="0.1646%" height="15" fill="rgb(245,147,4)" fg:x="24414" fg:w="71"/><text x="56.8333%" y="1119.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="56.7131%" y="1093" width="0.0348%" height="15" fill="rgb(242,201,35)" fg:x="24470" fg:w="15"/><text x="56.9631%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,140 samples, 2.64%)</title><rect x="54.1127%" y="1205" width="2.6421%" height="15" fill="rgb(218,181,1)" fg:x="23348" fg:w="1140"/><text x="54.3627%" y="1215.50">&lt;a..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,140 samples, 2.64%)</title><rect x="54.1127%" y="1189" width="2.6421%" height="15" fill="rgb(222,6,29)" fg:x="23348" fg:w="1140"/><text x="54.3627%" y="1199.50">co..</text></g><g><title>core::hash::Hasher::write_length_prefix (79 samples, 0.18%)</title><rect x="56.5717%" y="1173" width="0.1831%" height="15" fill="rgb(208,186,3)" fg:x="24409" fg:w="79"/><text x="56.8217%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_usize (78 samples, 0.18%)</title><rect x="56.5740%" y="1157" width="0.1808%" height="15" fill="rgb(216,36,26)" fg:x="24410" fg:w="78"/><text x="56.8240%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (22 samples, 0.05%)</title><rect x="56.9889%" y="1093" width="0.0510%" height="15" fill="rgb(248,201,23)" fg:x="24589" fg:w="22"/><text x="57.2389%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (59 samples, 0.14%)</title><rect x="56.9449%" y="1109" width="0.1367%" height="15" fill="rgb(251,170,31)" fg:x="24570" fg:w="59"/><text x="57.1949%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (18 samples, 0.04%)</title><rect x="57.0399%" y="1093" width="0.0417%" height="15" fill="rgb(207,110,25)" fg:x="24611" fg:w="18"/><text x="57.2899%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (168 samples, 0.39%)</title><rect x="56.7919%" y="1157" width="0.3894%" height="15" fill="rgb(250,54,15)" fg:x="24504" fg:w="168"/><text x="57.0419%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (168 samples, 0.39%)</title><rect x="56.7919%" y="1141" width="0.3894%" height="15" fill="rgb(227,68,33)" fg:x="24504" fg:w="168"/><text x="57.0419%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (168 samples, 0.39%)</title><rect x="56.7919%" y="1125" width="0.3894%" height="15" fill="rgb(238,34,41)" fg:x="24504" fg:w="168"/><text x="57.0419%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (40 samples, 0.09%)</title><rect x="57.0886%" y="1109" width="0.0927%" height="15" fill="rgb(220,11,15)" fg:x="24632" fg:w="40"/><text x="57.3386%" y="1119.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="57.1697%" y="1093" width="0.0116%" height="15" fill="rgb(246,111,35)" fg:x="24667" fg:w="5"/><text x="57.4197%" y="1103.50"></text></g><g><title>core::hash::Hash::hash_slice (1,491 samples, 3.46%)</title><rect x="53.7511%" y="1253" width="3.4556%" height="15" fill="rgb(209,88,53)" fg:x="23192" fg:w="1491"/><text x="54.0011%" y="1263.50">cor..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,491 samples, 3.46%)</title><rect x="53.7511%" y="1237" width="3.4556%" height="15" fill="rgb(231,185,47)" fg:x="23192" fg:w="1491"/><text x="54.0011%" y="1247.50">cor..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,369 samples, 3.17%)</title><rect x="54.0339%" y="1221" width="3.1729%" height="15" fill="rgb(233,154,1)" fg:x="23314" fg:w="1369"/><text x="54.2839%" y="1231.50">&lt;sl..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (195 samples, 0.45%)</title><rect x="56.7548%" y="1205" width="0.4519%" height="15" fill="rgb(225,15,46)" fg:x="24488" fg:w="195"/><text x="57.0048%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_isize (195 samples, 0.45%)</title><rect x="56.7548%" y="1189" width="0.4519%" height="15" fill="rgb(211,135,41)" fg:x="24488" fg:w="195"/><text x="57.0048%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_usize (189 samples, 0.44%)</title><rect x="56.7687%" y="1173" width="0.4380%" height="15" fill="rgb(208,54,0)" fg:x="24494" fg:w="189"/><text x="57.0187%" y="1183.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (11 samples, 0.03%)</title><rect x="57.1813%" y="1157" width="0.0255%" height="15" fill="rgb(244,136,14)" fg:x="24672" fg:w="11"/><text x="57.4313%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="57.2971%" y="1157" width="0.0162%" height="15" fill="rgb(241,56,14)" fg:x="24722" fg:w="7"/><text x="57.5471%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="57.2786%" y="1173" width="0.0510%" height="15" fill="rgb(205,80,24)" fg:x="24714" fg:w="22"/><text x="57.5286%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="57.3134%" y="1157" width="0.0162%" height="15" fill="rgb(220,57,4)" fg:x="24729" fg:w="7"/><text x="57.5634%" y="1167.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="57.2114%" y="1221" width="0.1692%" height="15" fill="rgb(226,193,50)" fg:x="24685" fg:w="73"/><text x="57.4614%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="57.2114%" y="1205" width="0.1692%" height="15" fill="rgb(231,168,22)" fg:x="24685" fg:w="73"/><text x="57.4614%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (73 samples, 0.17%)</title><rect x="57.2114%" y="1189" width="0.1692%" height="15" fill="rgb(254,215,14)" fg:x="24685" fg:w="73"/><text x="57.4614%" y="1199.50"></text></g><g><title>core::hash::sip::u8to64_le (20 samples, 0.05%)</title><rect x="57.3342%" y="1173" width="0.0464%" height="15" fill="rgb(211,115,16)" fg:x="24738" fg:w="20"/><text x="57.5842%" y="1183.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,567 samples, 3.63%)</title><rect x="53.7511%" y="1285" width="3.6318%" height="15" fill="rgb(236,210,16)" fg:x="23192" fg:w="1567"/><text x="54.0011%" y="1295.50">&lt;all..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,567 samples, 3.63%)</title><rect x="53.7511%" y="1269" width="3.6318%" height="15" fill="rgb(221,94,12)" fg:x="23192" fg:w="1567"/><text x="54.0011%" y="1279.50">core..</text></g><g><title>core::hash::Hasher::write_length_prefix (76 samples, 0.18%)</title><rect x="57.2068%" y="1253" width="0.1761%" height="15" fill="rgb(235,218,49)" fg:x="24683" fg:w="76"/><text x="57.4568%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_usize (76 samples, 0.18%)</title><rect x="57.2068%" y="1237" width="0.1761%" height="15" fill="rgb(217,114,14)" fg:x="24683" fg:w="76"/><text x="57.4568%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (24 samples, 0.06%)</title><rect x="57.5660%" y="1173" width="0.0556%" height="15" fill="rgb(216,145,22)" fg:x="24838" fg:w="24"/><text x="57.8160%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (53 samples, 0.12%)</title><rect x="57.5312%" y="1189" width="0.1228%" height="15" fill="rgb(217,112,39)" fg:x="24823" fg:w="53"/><text x="57.7812%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="57.6216%" y="1173" width="0.0324%" height="15" fill="rgb(225,85,32)" fg:x="24862" fg:w="14"/><text x="57.8716%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="57.4038%" y="1237" width="0.3245%" height="15" fill="rgb(245,209,47)" fg:x="24768" fg:w="140"/><text x="57.6538%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="57.4038%" y="1221" width="0.3245%" height="15" fill="rgb(218,220,15)" fg:x="24768" fg:w="140"/><text x="57.6538%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="57.4038%" y="1205" width="0.3245%" height="15" fill="rgb(222,202,31)" fg:x="24768" fg:w="140"/><text x="57.6538%" y="1215.50"></text></g><g><title>core::hash::sip::u8to64_le (31 samples, 0.07%)</title><rect x="57.6564%" y="1189" width="0.0718%" height="15" fill="rgb(243,203,4)" fg:x="24877" fg:w="31"/><text x="57.9064%" y="1199.50"></text></g><g><title>core::hash::Hash::hash_slice (1,851 samples, 4.29%)</title><rect x="53.4498%" y="1333" width="4.2900%" height="15" fill="rgb(237,92,17)" fg:x="23062" fg:w="1851"/><text x="53.6998%" y="1343.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,851 samples, 4.29%)</title><rect x="53.4498%" y="1317" width="4.2900%" height="15" fill="rgb(231,119,7)" fg:x="23062" fg:w="1851"/><text x="53.6998%" y="1327.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,765 samples, 4.09%)</title><rect x="53.6492%" y="1301" width="4.0907%" height="15" fill="rgb(237,82,41)" fg:x="23148" fg:w="1765"/><text x="53.8992%" y="1311.50">&lt;sli..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (154 samples, 0.36%)</title><rect x="57.3829%" y="1285" width="0.3569%" height="15" fill="rgb(226,81,48)" fg:x="24759" fg:w="154"/><text x="57.6329%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_isize (154 samples, 0.36%)</title><rect x="57.3829%" y="1269" width="0.3569%" height="15" fill="rgb(234,70,51)" fg:x="24759" fg:w="154"/><text x="57.6329%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_usize (154 samples, 0.36%)</title><rect x="57.3829%" y="1253" width="0.3569%" height="15" fill="rgb(251,86,4)" fg:x="24759" fg:w="154"/><text x="57.6329%" y="1263.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="57.7282%" y="1237" width="0.0116%" height="15" fill="rgb(244,144,28)" fg:x="24908" fg:w="5"/><text x="57.9782%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (11 samples, 0.03%)</title><rect x="57.8186%" y="1237" width="0.0255%" height="15" fill="rgb(232,161,39)" fg:x="24947" fg:w="11"/><text x="58.0686%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (27 samples, 0.06%)</title><rect x="57.8001%" y="1253" width="0.0626%" height="15" fill="rgb(247,34,51)" fg:x="24939" fg:w="27"/><text x="58.0501%" y="1263.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="57.8441%" y="1237" width="0.0185%" height="15" fill="rgb(225,132,2)" fg:x="24958" fg:w="8"/><text x="58.0941%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="57.7560%" y="1301" width="0.1391%" height="15" fill="rgb(209,159,44)" fg:x="24920" fg:w="60"/><text x="58.0060%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="57.7560%" y="1285" width="0.1391%" height="15" fill="rgb(251,214,1)" fg:x="24920" fg:w="60"/><text x="58.0060%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="57.7560%" y="1269" width="0.1391%" height="15" fill="rgb(247,84,47)" fg:x="24920" fg:w="60"/><text x="58.0060%" y="1279.50"></text></g><g><title>core::hash::sip::u8to64_le (13 samples, 0.03%)</title><rect x="57.8650%" y="1253" width="0.0301%" height="15" fill="rgb(240,111,43)" fg:x="24967" fg:w="13"/><text x="58.1150%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,919 samples, 4.45%)</title><rect x="53.4498%" y="1365" width="4.4476%" height="15" fill="rgb(215,214,35)" fg:x="23062" fg:w="1919"/><text x="53.6998%" y="1375.50">&lt;allo..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,919 samples, 4.45%)</title><rect x="53.4498%" y="1349" width="4.4476%" height="15" fill="rgb(248,207,23)" fg:x="23062" fg:w="1919"/><text x="53.6998%" y="1359.50">core:..</text></g><g><title>core::hash::Hasher::write_length_prefix (68 samples, 0.16%)</title><rect x="57.7398%" y="1333" width="0.1576%" height="15" fill="rgb(214,186,4)" fg:x="24913" fg:w="68"/><text x="57.9898%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_usize (64 samples, 0.15%)</title><rect x="57.7491%" y="1317" width="0.1483%" height="15" fill="rgb(220,133,22)" fg:x="24917" fg:w="64"/><text x="57.9991%" y="1327.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (15 samples, 0.03%)</title><rect x="58.0017%" y="1253" width="0.0348%" height="15" fill="rgb(239,134,19)" fg:x="25026" fg:w="15"/><text x="58.2517%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (35 samples, 0.08%)</title><rect x="57.9855%" y="1269" width="0.0811%" height="15" fill="rgb(250,140,9)" fg:x="25019" fg:w="35"/><text x="58.2355%" y="1279.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (13 samples, 0.03%)</title><rect x="58.0365%" y="1253" width="0.0301%" height="15" fill="rgb(225,59,14)" fg:x="25041" fg:w="13"/><text x="58.2865%" y="1263.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (80 samples, 0.19%)</title><rect x="57.9183%" y="1317" width="0.1854%" height="15" fill="rgb(214,152,51)" fg:x="24990" fg:w="80"/><text x="58.1683%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (80 samples, 0.19%)</title><rect x="57.9183%" y="1301" width="0.1854%" height="15" fill="rgb(251,227,43)" fg:x="24990" fg:w="80"/><text x="58.1683%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (80 samples, 0.19%)</title><rect x="57.9183%" y="1285" width="0.1854%" height="15" fill="rgb(241,96,17)" fg:x="24990" fg:w="80"/><text x="58.1683%" y="1295.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="58.0689%" y="1269" width="0.0348%" height="15" fill="rgb(234,198,43)" fg:x="25055" fg:w="15"/><text x="58.3189%" y="1279.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="58.0921%" y="1253" width="0.0116%" height="15" fill="rgb(220,108,29)" fg:x="25065" fg:w="5"/><text x="58.3421%" y="1263.50"></text></g><g><title>core::hash::Hash::hash_slice (2,045 samples, 4.74%)</title><rect x="53.3710%" y="1413" width="4.7396%" height="15" fill="rgb(226,163,33)" fg:x="23028" fg:w="2045"/><text x="53.6210%" y="1423.50">core::..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,045 samples, 4.74%)</title><rect x="53.3710%" y="1397" width="4.7396%" height="15" fill="rgb(205,194,45)" fg:x="23028" fg:w="2045"/><text x="53.6210%" y="1407.50">core::..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,023 samples, 4.69%)</title><rect x="53.4220%" y="1381" width="4.6886%" height="15" fill="rgb(206,143,44)" fg:x="23050" fg:w="2023"/><text x="53.6720%" y="1391.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (92 samples, 0.21%)</title><rect x="57.8974%" y="1365" width="0.2132%" height="15" fill="rgb(236,136,36)" fg:x="24981" fg:w="92"/><text x="58.1474%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_isize (92 samples, 0.21%)</title><rect x="57.8974%" y="1349" width="0.2132%" height="15" fill="rgb(249,172,42)" fg:x="24981" fg:w="92"/><text x="58.1474%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_usize (90 samples, 0.21%)</title><rect x="57.9021%" y="1333" width="0.2086%" height="15" fill="rgb(216,139,23)" fg:x="24983" fg:w="90"/><text x="58.1521%" y="1343.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="58.1477%" y="1317" width="0.0209%" height="15" fill="rgb(207,166,20)" fg:x="25089" fg:w="9"/><text x="58.3977%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (17 samples, 0.04%)</title><rect x="58.1408%" y="1333" width="0.0394%" height="15" fill="rgb(210,209,22)" fg:x="25086" fg:w="17"/><text x="58.3908%" y="1343.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="58.1686%" y="1317" width="0.0116%" height="15" fill="rgb(232,118,20)" fg:x="25098" fg:w="5"/><text x="58.4186%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,083 samples, 4.83%)</title><rect x="53.3710%" y="1445" width="4.8277%" height="15" fill="rgb(238,113,42)" fg:x="23028" fg:w="2083"/><text x="53.6210%" y="1455.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,083 samples, 4.83%)</title><rect x="53.3710%" y="1429" width="4.8277%" height="15" fill="rgb(231,42,5)" fg:x="23028" fg:w="2083"/><text x="53.6210%" y="1439.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (38 samples, 0.09%)</title><rect x="58.1106%" y="1413" width="0.0881%" height="15" fill="rgb(243,166,24)" fg:x="25073" fg:w="38"/><text x="58.3606%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_usize (36 samples, 0.08%)</title><rect x="58.1153%" y="1397" width="0.0834%" height="15" fill="rgb(237,226,12)" fg:x="25075" fg:w="36"/><text x="58.3653%" y="1407.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="58.1199%" y="1381" width="0.0788%" height="15" fill="rgb(229,133,24)" fg:x="25077" fg:w="34"/><text x="58.3699%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="58.1199%" y="1365" width="0.0788%" height="15" fill="rgb(238,33,43)" fg:x="25077" fg:w="34"/><text x="58.3699%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="58.1199%" y="1349" width="0.0788%" height="15" fill="rgb(227,59,38)" fg:x="25077" fg:w="34"/><text x="58.3699%" y="1359.50"></text></g><g><title>core::hash::sip::u8to64_le (8 samples, 0.02%)</title><rect x="58.1802%" y="1333" width="0.0185%" height="15" fill="rgb(230,97,0)" fg:x="25103" fg:w="8"/><text x="58.4302%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="58.2173%" y="1349" width="0.0185%" height="15" fill="rgb(250,173,50)" fg:x="25119" fg:w="8"/><text x="58.4673%" y="1359.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,112 samples, 4.89%)</title><rect x="53.3641%" y="1461" width="4.8949%" height="15" fill="rgb(240,15,50)" fg:x="23025" fg:w="2112"/><text x="53.6141%" y="1471.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (26 samples, 0.06%)</title><rect x="58.1987%" y="1445" width="0.0603%" height="15" fill="rgb(221,93,22)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1455.50"></text></g><g><title>core::hash::Hasher::write_isize (26 samples, 0.06%)</title><rect x="58.1987%" y="1429" width="0.0603%" height="15" fill="rgb(245,180,53)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_usize (26 samples, 0.06%)</title><rect x="58.1987%" y="1413" width="0.0603%" height="15" fill="rgb(231,88,51)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1423.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (26 samples, 0.06%)</title><rect x="58.1987%" y="1397" width="0.0603%" height="15" fill="rgb(240,58,21)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (26 samples, 0.06%)</title><rect x="58.1987%" y="1381" width="0.0603%" height="15" fill="rgb(237,21,10)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (26 samples, 0.06%)</title><rect x="58.1987%" y="1365" width="0.0603%" height="15" fill="rgb(218,43,11)" fg:x="25111" fg:w="26"/><text x="58.4487%" y="1375.50"></text></g><g><title>core::hash::sip::u8to64_le (9 samples, 0.02%)</title><rect x="58.2381%" y="1349" width="0.0209%" height="15" fill="rgb(218,221,29)" fg:x="25128" fg:w="9"/><text x="58.4881%" y="1359.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="58.2613%" y="1413" width="0.0232%" height="15" fill="rgb(214,118,42)" fg:x="25138" fg:w="10"/><text x="58.5113%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="58.2613%" y="1397" width="0.0232%" height="15" fill="rgb(251,200,26)" fg:x="25138" fg:w="10"/><text x="58.5113%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="58.2613%" y="1381" width="0.0232%" height="15" fill="rgb(237,101,39)" fg:x="25138" fg:w="10"/><text x="58.5113%" y="1391.50"></text></g><g><title>hashbrown::map::make_insert_hash (2,165 samples, 5.02%)</title><rect x="53.2691%" y="1525" width="5.0177%" height="15" fill="rgb(251,117,11)" fg:x="22984" fg:w="2165"/><text x="53.5191%" y="1535.50">hashbr..</text></g><g><title>core::hash::BuildHasher::hash_one (2,165 samples, 5.02%)</title><rect x="53.2691%" y="1509" width="5.0177%" height="15" fill="rgb(216,223,23)" fg:x="22984" fg:w="2165"/><text x="53.5191%" y="1519.50">core::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,130 samples, 4.94%)</title><rect x="53.3502%" y="1493" width="4.9366%" height="15" fill="rgb(251,54,12)" fg:x="23019" fg:w="2130"/><text x="53.6002%" y="1503.50">core::..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,130 samples, 4.94%)</title><rect x="53.3502%" y="1477" width="4.9366%" height="15" fill="rgb(254,176,54)" fg:x="23019" fg:w="2130"/><text x="53.6002%" y="1487.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (12 samples, 0.03%)</title><rect x="58.2590%" y="1461" width="0.0278%" height="15" fill="rgb(210,32,8)" fg:x="25137" fg:w="12"/><text x="58.5090%" y="1471.50"></text></g><g><title>core::hash::Hasher::write_isize (12 samples, 0.03%)</title><rect x="58.2590%" y="1445" width="0.0278%" height="15" fill="rgb(235,52,38)" fg:x="25137" fg:w="12"/><text x="58.5090%" y="1455.50"></text></g><g><title>core::hash::Hasher::write_usize (12 samples, 0.03%)</title><rect x="58.2590%" y="1429" width="0.0278%" height="15" fill="rgb(231,4,44)" fg:x="25137" fg:w="12"/><text x="58.5090%" y="1439.50"></text></g><g><title>hashbrown::map::equivalent_key::{{closure}} (19 samples, 0.04%)</title><rect x="58.3100%" y="1461" width="0.0440%" height="15" fill="rgb(249,2,32)" fg:x="25159" fg:w="19"/><text x="58.5600%" y="1471.50"></text></g><g><title>&lt;slimp::Rule as core::cmp::PartialEq&gt;::eq (19 samples, 0.04%)</title><rect x="58.3100%" y="1445" width="0.0440%" height="15" fill="rgb(224,65,26)" fg:x="25159" fg:w="19"/><text x="58.5600%" y="1455.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (18 samples, 0.04%)</title><rect x="58.3123%" y="1429" width="0.0417%" height="15" fill="rgb(250,73,40)" fg:x="25160" fg:w="18"/><text x="58.5623%" y="1439.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (15 samples, 0.03%)</title><rect x="58.3192%" y="1413" width="0.0348%" height="15" fill="rgb(253,177,16)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1423.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (15 samples, 0.03%)</title><rect x="58.3192%" y="1397" width="0.0348%" height="15" fill="rgb(217,32,34)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1407.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (15 samples, 0.03%)</title><rect x="58.3192%" y="1381" width="0.0348%" height="15" fill="rgb(212,7,10)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (15 samples, 0.03%)</title><rect x="58.3192%" y="1365" width="0.0348%" height="15" fill="rgb(245,89,8)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1375.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (15 samples, 0.03%)</title><rect x="58.3192%" y="1349" width="0.0348%" height="15" fill="rgb(237,16,53)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1359.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (15 samples, 0.03%)</title><rect x="58.3192%" y="1333" width="0.0348%" height="15" fill="rgb(250,204,30)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1343.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (15 samples, 0.03%)</title><rect x="58.3192%" y="1317" width="0.0348%" height="15" fill="rgb(208,77,27)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1327.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (15 samples, 0.03%)</title><rect x="58.3192%" y="1301" width="0.0348%" height="15" fill="rgb(250,204,28)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1311.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (15 samples, 0.03%)</title><rect x="58.3192%" y="1285" width="0.0348%" height="15" fill="rgb(244,63,21)" fg:x="25163" fg:w="15"/><text x="58.5692%" y="1295.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (12 samples, 0.03%)</title><rect x="58.3262%" y="1269" width="0.0278%" height="15" fill="rgb(236,85,44)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1279.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (12 samples, 0.03%)</title><rect x="58.3262%" y="1253" width="0.0278%" height="15" fill="rgb(215,98,4)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1263.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (12 samples, 0.03%)</title><rect x="58.3262%" y="1237" width="0.0278%" height="15" fill="rgb(235,38,11)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (12 samples, 0.03%)</title><rect x="58.3262%" y="1221" width="0.0278%" height="15" fill="rgb(254,186,25)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.03%)</title><rect x="58.3262%" y="1205" width="0.0278%" height="15" fill="rgb(225,55,31)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1215.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (12 samples, 0.03%)</title><rect x="58.3262%" y="1189" width="0.0278%" height="15" fill="rgb(211,15,21)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1199.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (12 samples, 0.03%)</title><rect x="58.3262%" y="1173" width="0.0278%" height="15" fill="rgb(215,187,41)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1183.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (12 samples, 0.03%)</title><rect x="58.3262%" y="1157" width="0.0278%" height="15" fill="rgb(248,69,32)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1167.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (12 samples, 0.03%)</title><rect x="58.3262%" y="1141" width="0.0278%" height="15" fill="rgb(252,102,52)" fg:x="25166" fg:w="12"/><text x="58.5762%" y="1151.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (9 samples, 0.02%)</title><rect x="58.3331%" y="1125" width="0.0209%" height="15" fill="rgb(253,140,32)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1135.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (9 samples, 0.02%)</title><rect x="58.3331%" y="1109" width="0.0209%" height="15" fill="rgb(216,56,42)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1119.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (9 samples, 0.02%)</title><rect x="58.3331%" y="1093" width="0.0209%" height="15" fill="rgb(216,184,14)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (9 samples, 0.02%)</title><rect x="58.3331%" y="1077" width="0.0209%" height="15" fill="rgb(237,187,27)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1087.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.02%)</title><rect x="58.3331%" y="1061" width="0.0209%" height="15" fill="rgb(219,65,3)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (9 samples, 0.02%)</title><rect x="58.3331%" y="1045" width="0.0209%" height="15" fill="rgb(245,83,25)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1055.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (9 samples, 0.02%)</title><rect x="58.3331%" y="1029" width="0.0209%" height="15" fill="rgb(214,205,45)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1039.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (9 samples, 0.02%)</title><rect x="58.3331%" y="1013" width="0.0209%" height="15" fill="rgb(241,20,18)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1023.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (9 samples, 0.02%)</title><rect x="58.3331%" y="997" width="0.0209%" height="15" fill="rgb(232,163,23)" fg:x="25169" fg:w="9"/><text x="58.5831%" y="1007.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find::{{closure}} (20 samples, 0.05%)</title><rect x="58.3100%" y="1477" width="0.0464%" height="15" fill="rgb(214,5,46)" fg:x="25159" fg:w="20"/><text x="58.5600%" y="1487.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (11 samples, 0.03%)</title><rect x="58.3610%" y="1477" width="0.0255%" height="15" fill="rgb(229,78,17)" fg:x="25181" fg:w="11"/><text x="58.6110%" y="1487.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (11 samples, 0.03%)</title><rect x="58.3610%" y="1461" width="0.0255%" height="15" fill="rgb(248,89,10)" fg:x="25181" fg:w="11"/><text x="58.6110%" y="1471.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (11 samples, 0.03%)</title><rect x="58.3610%" y="1445" width="0.0255%" height="15" fill="rgb(248,54,15)" fg:x="25181" fg:w="11"/><text x="58.6110%" y="1455.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (52 samples, 0.12%)</title><rect x="58.2868%" y="1525" width="0.1205%" height="15" fill="rgb(223,116,6)" fg:x="25149" fg:w="52"/><text x="58.5368%" y="1535.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (52 samples, 0.12%)</title><rect x="58.2868%" y="1509" width="0.1205%" height="15" fill="rgb(205,125,38)" fg:x="25149" fg:w="52"/><text x="58.5368%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_inner (50 samples, 0.12%)</title><rect x="58.2914%" y="1493" width="0.1159%" height="15" fill="rgb(251,78,38)" fg:x="25151" fg:w="50"/><text x="58.5414%" y="1503.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty (5 samples, 0.01%)</title><rect x="58.3957%" y="1477" width="0.0116%" height="15" fill="rgb(253,78,28)" fg:x="25196" fg:w="5"/><text x="58.6457%" y="1487.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_byte (5 samples, 0.01%)</title><rect x="58.3957%" y="1461" width="0.0116%" height="15" fill="rgb(209,120,3)" fg:x="25196" fg:w="5"/><text x="58.6457%" y="1471.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (5 samples, 0.01%)</title><rect x="58.3957%" y="1445" width="0.0116%" height="15" fill="rgb(238,229,9)" fg:x="25196" fg:w="5"/><text x="58.6457%" y="1455.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (14 samples, 0.03%)</title><rect x="58.4282%" y="1445" width="0.0324%" height="15" fill="rgb(253,159,18)" fg:x="25210" fg:w="14"/><text x="58.6782%" y="1455.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.03%)</title><rect x="58.4931%" y="1333" width="0.0278%" height="15" fill="rgb(244,42,34)" fg:x="25238" fg:w="12"/><text x="58.7431%" y="1343.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (14 samples, 0.03%)</title><rect x="58.5394%" y="1317" width="0.0324%" height="15" fill="rgb(224,8,7)" fg:x="25258" fg:w="14"/><text x="58.7894%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (49 samples, 0.11%)</title><rect x="58.4815%" y="1381" width="0.1136%" height="15" fill="rgb(210,201,45)" fg:x="25233" fg:w="49"/><text x="58.7315%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (49 samples, 0.11%)</title><rect x="58.4815%" y="1365" width="0.1136%" height="15" fill="rgb(252,185,21)" fg:x="25233" fg:w="49"/><text x="58.7315%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (49 samples, 0.11%)</title><rect x="58.4815%" y="1349" width="0.1136%" height="15" fill="rgb(223,131,1)" fg:x="25233" fg:w="49"/><text x="58.7315%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (32 samples, 0.07%)</title><rect x="58.5209%" y="1333" width="0.0742%" height="15" fill="rgb(245,141,16)" fg:x="25250" fg:w="32"/><text x="58.7709%" y="1343.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="58.5719%" y="1317" width="0.0232%" height="15" fill="rgb(229,55,45)" fg:x="25272" fg:w="10"/><text x="58.8219%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (8 samples, 0.02%)</title><rect x="58.5950%" y="1381" width="0.0185%" height="15" fill="rgb(208,92,15)" fg:x="25282" fg:w="8"/><text x="58.8450%" y="1391.50"></text></g><g><title>core::hash::sip::SipHasher13::new_with_keys (5 samples, 0.01%)</title><rect x="58.6020%" y="1365" width="0.0116%" height="15" fill="rgb(234,185,47)" fg:x="25285" fg:w="5"/><text x="58.8520%" y="1375.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::new_with_keys (5 samples, 0.01%)</title><rect x="58.6020%" y="1349" width="0.0116%" height="15" fill="rgb(253,104,50)" fg:x="25285" fg:w="5"/><text x="58.8520%" y="1359.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::reset (5 samples, 0.01%)</title><rect x="58.6020%" y="1333" width="0.0116%" height="15" fill="rgb(205,70,7)" fg:x="25285" fg:w="5"/><text x="58.8520%" y="1343.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="58.6622%" y="1269" width="0.0255%" height="15" fill="rgb(240,178,43)" fg:x="25311" fg:w="11"/><text x="58.9122%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="58.7202%" y="1173" width="0.0301%" height="15" fill="rgb(214,112,2)" fg:x="25336" fg:w="13"/><text x="58.9702%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="58.7318%" y="1157" width="0.0185%" height="15" fill="rgb(206,46,17)" fg:x="25341" fg:w="8"/><text x="58.9818%" y="1167.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (36 samples, 0.08%)</title><rect x="58.6970%" y="1221" width="0.0834%" height="15" fill="rgb(225,220,16)" fg:x="25326" fg:w="36"/><text x="58.9470%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (36 samples, 0.08%)</title><rect x="58.6970%" y="1205" width="0.0834%" height="15" fill="rgb(238,65,40)" fg:x="25326" fg:w="36"/><text x="58.9470%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (36 samples, 0.08%)</title><rect x="58.6970%" y="1189" width="0.0834%" height="15" fill="rgb(230,151,21)" fg:x="25326" fg:w="36"/><text x="58.9470%" y="1199.50"></text></g><g><title>core::hash::sip::u8to64_le (12 samples, 0.03%)</title><rect x="58.7526%" y="1173" width="0.0278%" height="15" fill="rgb(218,58,49)" fg:x="25350" fg:w="12"/><text x="59.0026%" y="1183.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (41 samples, 0.10%)</title><rect x="58.6877%" y="1269" width="0.0950%" height="15" fill="rgb(219,179,14)" fg:x="25322" fg:w="41"/><text x="58.9377%" y="1279.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (41 samples, 0.10%)</title><rect x="58.6877%" y="1253" width="0.0950%" height="15" fill="rgb(223,72,1)" fg:x="25322" fg:w="41"/><text x="58.9377%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_u32 (37 samples, 0.09%)</title><rect x="58.6970%" y="1237" width="0.0858%" height="15" fill="rgb(238,126,10)" fg:x="25326" fg:w="37"/><text x="58.9470%" y="1247.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="58.9659%" y="1189" width="0.0440%" height="15" fill="rgb(224,206,38)" fg:x="25442" fg:w="19"/><text x="59.2159%" y="1199.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (6 samples, 0.01%)</title><rect x="58.9960%" y="1173" width="0.0139%" height="15" fill="rgb(212,201,54)" fg:x="25455" fg:w="6"/><text x="59.2460%" y="1183.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (6 samples, 0.01%)</title><rect x="58.9960%" y="1157" width="0.0139%" height="15" fill="rgb(218,154,48)" fg:x="25455" fg:w="6"/><text x="59.2460%" y="1167.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (6 samples, 0.01%)</title><rect x="58.9960%" y="1141" width="0.0139%" height="15" fill="rgb(232,93,24)" fg:x="25455" fg:w="6"/><text x="59.2460%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="59.1582%" y="1077" width="0.0162%" height="15" fill="rgb(245,30,21)" fg:x="25525" fg:w="7"/><text x="59.4082%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (29 samples, 0.07%)</title><rect x="59.1327%" y="1093" width="0.0672%" height="15" fill="rgb(242,148,29)" fg:x="25514" fg:w="29"/><text x="59.3827%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="59.1745%" y="1077" width="0.0255%" height="15" fill="rgb(244,153,54)" fg:x="25532" fg:w="11"/><text x="59.4245%" y="1087.50"></text></g><g><title>core::cmp::min (8 samples, 0.02%)</title><rect x="59.1999%" y="1093" width="0.0185%" height="15" fill="rgb(252,87,22)" fg:x="25543" fg:w="8"/><text x="59.4499%" y="1103.50"></text></g><g><title>core::cmp::Ord::min (8 samples, 0.02%)</title><rect x="59.1999%" y="1077" width="0.0185%" height="15" fill="rgb(210,51,29)" fg:x="25543" fg:w="8"/><text x="59.4499%" y="1087.50"></text></g><g><title>core::cmp::min_by (8 samples, 0.02%)</title><rect x="59.1999%" y="1061" width="0.0185%" height="15" fill="rgb(242,136,47)" fg:x="25543" fg:w="8"/><text x="59.4499%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (114 samples, 0.26%)</title><rect x="59.0516%" y="1141" width="0.2642%" height="15" fill="rgb(238,68,4)" fg:x="25479" fg:w="114"/><text x="59.3016%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (114 samples, 0.26%)</title><rect x="59.0516%" y="1125" width="0.2642%" height="15" fill="rgb(242,161,30)" fg:x="25479" fg:w="114"/><text x="59.3016%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (114 samples, 0.26%)</title><rect x="59.0516%" y="1109" width="0.2642%" height="15" fill="rgb(218,58,44)" fg:x="25479" fg:w="114"/><text x="59.3016%" y="1119.50"></text></g><g><title>core::hash::sip::u8to64_le (42 samples, 0.10%)</title><rect x="59.2185%" y="1093" width="0.0973%" height="15" fill="rgb(252,125,32)" fg:x="25551" fg:w="42"/><text x="59.4685%" y="1103.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (133 samples, 0.31%)</title><rect x="59.0099%" y="1189" width="0.3082%" height="15" fill="rgb(219,178,0)" fg:x="25461" fg:w="133"/><text x="59.2599%" y="1199.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (125 samples, 0.29%)</title><rect x="59.0284%" y="1173" width="0.2897%" height="15" fill="rgb(213,152,7)" fg:x="25469" fg:w="125"/><text x="59.2784%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_u32 (115 samples, 0.27%)</title><rect x="59.0516%" y="1157" width="0.2665%" height="15" fill="rgb(249,109,34)" fg:x="25479" fg:w="115"/><text x="59.3016%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (20 samples, 0.05%)</title><rect x="59.5731%" y="1109" width="0.0464%" height="15" fill="rgb(232,96,21)" fg:x="25704" fg:w="20"/><text x="59.8231%" y="1119.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (7 samples, 0.02%)</title><rect x="59.6032%" y="1093" width="0.0162%" height="15" fill="rgb(228,27,39)" fg:x="25717" fg:w="7"/><text x="59.8532%" y="1103.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (7 samples, 0.02%)</title><rect x="59.6032%" y="1077" width="0.0162%" height="15" fill="rgb(211,182,52)" fg:x="25717" fg:w="7"/><text x="59.8532%" y="1087.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (7 samples, 0.02%)</title><rect x="59.6032%" y="1061" width="0.0162%" height="15" fill="rgb(234,178,38)" fg:x="25717" fg:w="7"/><text x="59.8532%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (12 samples, 0.03%)</title><rect x="59.8303%" y="997" width="0.0278%" height="15" fill="rgb(221,111,3)" fg:x="25815" fg:w="12"/><text x="60.0803%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (42 samples, 0.10%)</title><rect x="59.8049%" y="1013" width="0.0973%" height="15" fill="rgb(228,175,21)" fg:x="25804" fg:w="42"/><text x="60.0549%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (19 samples, 0.04%)</title><rect x="59.8582%" y="997" width="0.0440%" height="15" fill="rgb(228,174,43)" fg:x="25827" fg:w="19"/><text x="60.1082%" y="1007.50"></text></g><g><title>core::cmp::min (10 samples, 0.02%)</title><rect x="59.9022%" y="1013" width="0.0232%" height="15" fill="rgb(211,191,0)" fg:x="25846" fg:w="10"/><text x="60.1522%" y="1023.50"></text></g><g><title>core::cmp::Ord::min (10 samples, 0.02%)</title><rect x="59.9022%" y="997" width="0.0232%" height="15" fill="rgb(253,117,3)" fg:x="25846" fg:w="10"/><text x="60.1522%" y="1007.50"></text></g><g><title>core::cmp::min_by (10 samples, 0.02%)</title><rect x="59.9022%" y="981" width="0.0232%" height="15" fill="rgb(241,127,19)" fg:x="25846" fg:w="10"/><text x="60.1522%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (162 samples, 0.38%)</title><rect x="59.6681%" y="1061" width="0.3755%" height="15" fill="rgb(218,103,12)" fg:x="25745" fg:w="162"/><text x="59.9181%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (162 samples, 0.38%)</title><rect x="59.6681%" y="1045" width="0.3755%" height="15" fill="rgb(236,214,43)" fg:x="25745" fg:w="162"/><text x="59.9181%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (162 samples, 0.38%)</title><rect x="59.6681%" y="1029" width="0.3755%" height="15" fill="rgb(244,144,19)" fg:x="25745" fg:w="162"/><text x="59.9181%" y="1039.50"></text></g><g><title>core::hash::sip::u8to64_le (51 samples, 0.12%)</title><rect x="59.9254%" y="1013" width="0.1182%" height="15" fill="rgb(246,188,10)" fg:x="25856" fg:w="51"/><text x="60.1754%" y="1023.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (184 samples, 0.43%)</title><rect x="59.6194%" y="1109" width="0.4264%" height="15" fill="rgb(212,193,33)" fg:x="25724" fg:w="184"/><text x="59.8694%" y="1119.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (170 samples, 0.39%)</title><rect x="59.6519%" y="1093" width="0.3940%" height="15" fill="rgb(241,51,29)" fg:x="25738" fg:w="170"/><text x="59.9019%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_u32 (163 samples, 0.38%)</title><rect x="59.6681%" y="1077" width="0.3778%" height="15" fill="rgb(211,58,19)" fg:x="25745" fg:w="163"/><text x="59.9181%" y="1087.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (21 samples, 0.05%)</title><rect x="60.3680%" y="1029" width="0.0487%" height="15" fill="rgb(229,111,26)" fg:x="26047" fg:w="21"/><text x="60.6180%" y="1039.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (6 samples, 0.01%)</title><rect x="60.4028%" y="1013" width="0.0139%" height="15" fill="rgb(213,115,40)" fg:x="26062" fg:w="6"/><text x="60.6528%" y="1023.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (6 samples, 0.01%)</title><rect x="60.4028%" y="997" width="0.0139%" height="15" fill="rgb(209,56,44)" fg:x="26062" fg:w="6"/><text x="60.6528%" y="1007.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (6 samples, 0.01%)</title><rect x="60.4028%" y="981" width="0.0139%" height="15" fill="rgb(230,108,32)" fg:x="26062" fg:w="6"/><text x="60.6528%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (13 samples, 0.03%)</title><rect x="60.6415%" y="917" width="0.0301%" height="15" fill="rgb(216,165,31)" fg:x="26165" fg:w="13"/><text x="60.8915%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (53 samples, 0.12%)</title><rect x="60.5952%" y="933" width="0.1228%" height="15" fill="rgb(218,122,21)" fg:x="26145" fg:w="53"/><text x="60.8452%" y="943.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (20 samples, 0.05%)</title><rect x="60.6717%" y="917" width="0.0464%" height="15" fill="rgb(223,224,47)" fg:x="26178" fg:w="20"/><text x="60.9217%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="60.4700%" y="981" width="0.3778%" height="15" fill="rgb(238,102,44)" fg:x="26091" fg:w="163"/><text x="60.7200%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="60.4700%" y="965" width="0.3778%" height="15" fill="rgb(236,46,40)" fg:x="26091" fg:w="163"/><text x="60.7200%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="60.4700%" y="949" width="0.3778%" height="15" fill="rgb(247,202,50)" fg:x="26091" fg:w="163"/><text x="60.7200%" y="959.50"></text></g><g><title>core::hash::sip::u8to64_le (54 samples, 0.13%)</title><rect x="60.7226%" y="933" width="0.1252%" height="15" fill="rgb(209,99,20)" fg:x="26200" fg:w="54"/><text x="60.9726%" y="943.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (187 samples, 0.43%)</title><rect x="60.4167%" y="1029" width="0.4334%" height="15" fill="rgb(252,27,34)" fg:x="26068" fg:w="187"/><text x="60.6667%" y="1039.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (174 samples, 0.40%)</title><rect x="60.4468%" y="1013" width="0.4033%" height="15" fill="rgb(215,206,23)" fg:x="26081" fg:w="174"/><text x="60.6968%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_u32 (164 samples, 0.38%)</title><rect x="60.4700%" y="997" width="0.3801%" height="15" fill="rgb(212,135,36)" fg:x="26091" fg:w="164"/><text x="60.7200%" y="1007.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (20 samples, 0.05%)</title><rect x="61.1074%" y="949" width="0.0464%" height="15" fill="rgb(240,189,1)" fg:x="26366" fg:w="20"/><text x="61.3574%" y="959.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (7 samples, 0.02%)</title><rect x="61.1375%" y="933" width="0.0162%" height="15" fill="rgb(242,56,20)" fg:x="26379" fg:w="7"/><text x="61.3875%" y="943.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (7 samples, 0.02%)</title><rect x="61.1375%" y="917" width="0.0162%" height="15" fill="rgb(247,132,33)" fg:x="26379" fg:w="7"/><text x="61.3875%" y="927.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (7 samples, 0.02%)</title><rect x="61.1375%" y="901" width="0.0162%" height="15" fill="rgb(208,149,11)" fg:x="26379" fg:w="7"/><text x="61.3875%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (12 samples, 0.03%)</title><rect x="61.3484%" y="837" width="0.0278%" height="15" fill="rgb(211,33,11)" fg:x="26470" fg:w="12"/><text x="61.5984%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (57 samples, 0.13%)</title><rect x="61.3021%" y="853" width="0.1321%" height="15" fill="rgb(221,29,38)" fg:x="26450" fg:w="57"/><text x="61.5521%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (25 samples, 0.06%)</title><rect x="61.3762%" y="837" width="0.0579%" height="15" fill="rgb(206,182,49)" fg:x="26482" fg:w="25"/><text x="61.6262%" y="847.50"></text></g><g><title>core::cmp::min (8 samples, 0.02%)</title><rect x="61.4342%" y="853" width="0.0185%" height="15" fill="rgb(216,140,1)" fg:x="26507" fg:w="8"/><text x="61.6842%" y="863.50"></text></g><g><title>core::cmp::Ord::min (8 samples, 0.02%)</title><rect x="61.4342%" y="837" width="0.0185%" height="15" fill="rgb(232,57,40)" fg:x="26507" fg:w="8"/><text x="61.6842%" y="847.50"></text></g><g><title>core::cmp::min_by (8 samples, 0.02%)</title><rect x="61.4342%" y="821" width="0.0185%" height="15" fill="rgb(224,186,18)" fg:x="26507" fg:w="8"/><text x="61.6842%" y="831.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (161 samples, 0.37%)</title><rect x="61.2001%" y="901" width="0.3731%" height="15" fill="rgb(215,121,11)" fg:x="26406" fg:w="161"/><text x="61.4501%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (161 samples, 0.37%)</title><rect x="61.2001%" y="885" width="0.3731%" height="15" fill="rgb(245,147,10)" fg:x="26406" fg:w="161"/><text x="61.4501%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (161 samples, 0.37%)</title><rect x="61.2001%" y="869" width="0.3731%" height="15" fill="rgb(238,153,13)" fg:x="26406" fg:w="161"/><text x="61.4501%" y="879.50"></text></g><g><title>core::hash::sip::u8to64_le (52 samples, 0.12%)</title><rect x="61.4527%" y="853" width="0.1205%" height="15" fill="rgb(233,108,0)" fg:x="26515" fg:w="52"/><text x="61.7027%" y="863.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (184 samples, 0.43%)</title><rect x="61.1537%" y="949" width="0.4264%" height="15" fill="rgb(212,157,17)" fg:x="26386" fg:w="184"/><text x="61.4037%" y="959.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (172 samples, 0.40%)</title><rect x="61.1815%" y="933" width="0.3986%" height="15" fill="rgb(225,213,38)" fg:x="26398" fg:w="172"/><text x="61.4315%" y="943.50"></text></g><g><title>core::hash::Hasher::write_u32 (164 samples, 0.38%)</title><rect x="61.2001%" y="917" width="0.3801%" height="15" fill="rgb(248,16,11)" fg:x="26406" fg:w="164"/><text x="61.4501%" y="927.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.02%)</title><rect x="61.7795%" y="869" width="0.0185%" height="15" fill="rgb(241,33,4)" fg:x="26656" fg:w="8"/><text x="62.0295%" y="879.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="61.9441%" y="757" width="0.0139%" height="15" fill="rgb(222,26,43)" fg:x="26727" fg:w="6"/><text x="62.1941%" y="767.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (32 samples, 0.07%)</title><rect x="61.9023%" y="773" width="0.0742%" height="15" fill="rgb(243,29,36)" fg:x="26709" fg:w="32"/><text x="62.1523%" y="783.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="61.9580%" y="757" width="0.0185%" height="15" fill="rgb(241,9,27)" fg:x="26733" fg:w="8"/><text x="62.2080%" y="767.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="61.8490%" y="821" width="0.1970%" height="15" fill="rgb(205,117,26)" fg:x="26686" fg:w="85"/><text x="62.0990%" y="831.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="61.8490%" y="805" width="0.1970%" height="15" fill="rgb(209,80,39)" fg:x="26686" fg:w="85"/><text x="62.0990%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="61.8490%" y="789" width="0.1970%" height="15" fill="rgb(239,155,6)" fg:x="26686" fg:w="85"/><text x="62.0990%" y="799.50"></text></g><g><title>core::hash::sip::u8to64_le (30 samples, 0.07%)</title><rect x="61.9765%" y="773" width="0.0695%" height="15" fill="rgb(212,104,12)" fg:x="26741" fg:w="30"/><text x="62.2265%" y="783.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (109 samples, 0.25%)</title><rect x="61.7980%" y="869" width="0.2526%" height="15" fill="rgb(234,204,3)" fg:x="26664" fg:w="109"/><text x="62.0480%" y="879.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (97 samples, 0.22%)</title><rect x="61.8259%" y="853" width="0.2248%" height="15" fill="rgb(251,218,7)" fg:x="26676" fg:w="97"/><text x="62.0759%" y="863.50"></text></g><g><title>core::hash::Hasher::write_u32 (87 samples, 0.20%)</title><rect x="61.8490%" y="837" width="0.2016%" height="15" fill="rgb(221,81,32)" fg:x="26686" fg:w="87"/><text x="62.0990%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.03%)</title><rect x="62.2152%" y="693" width="0.0278%" height="15" fill="rgb(214,152,26)" fg:x="26844" fg:w="12"/><text x="62.4652%" y="703.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="62.2314%" y="677" width="0.0116%" height="15" fill="rgb(223,22,3)" fg:x="26851" fg:w="5"/><text x="62.4814%" y="687.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (58 samples, 0.13%)</title><rect x="62.1596%" y="789" width="0.1344%" height="15" fill="rgb(207,174,7)" fg:x="26820" fg:w="58"/><text x="62.4096%" y="799.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (55 samples, 0.13%)</title><rect x="62.1665%" y="773" width="0.1275%" height="15" fill="rgb(224,19,52)" fg:x="26823" fg:w="55"/><text x="62.4165%" y="783.50"></text></g><g><title>core::hash::Hasher::write_u32 (53 samples, 0.12%)</title><rect x="62.1712%" y="757" width="0.1228%" height="15" fill="rgb(228,24,14)" fg:x="26825" fg:w="53"/><text x="62.4212%" y="767.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="62.1712%" y="741" width="0.1228%" height="15" fill="rgb(230,153,43)" fg:x="26825" fg:w="53"/><text x="62.4212%" y="751.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="62.1712%" y="725" width="0.1228%" height="15" fill="rgb(231,106,12)" fg:x="26825" fg:w="53"/><text x="62.4212%" y="735.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (53 samples, 0.12%)</title><rect x="62.1712%" y="709" width="0.1228%" height="15" fill="rgb(215,92,2)" fg:x="26825" fg:w="53"/><text x="62.4212%" y="719.50"></text></g><g><title>core::hash::sip::u8to64_le (18 samples, 0.04%)</title><rect x="62.2523%" y="693" width="0.0417%" height="15" fill="rgb(249,143,25)" fg:x="26860" fg:w="18"/><text x="62.5023%" y="703.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="62.4308%" y="661" width="0.0139%" height="15" fill="rgb(252,7,35)" fg:x="26937" fg:w="6"/><text x="62.6808%" y="671.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (20 samples, 0.05%)</title><rect x="62.4169%" y="677" width="0.0464%" height="15" fill="rgb(216,69,40)" fg:x="26931" fg:w="20"/><text x="62.6669%" y="687.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="62.4447%" y="661" width="0.0185%" height="15" fill="rgb(240,36,33)" fg:x="26943" fg:w="8"/><text x="62.6947%" y="671.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="62.3589%" y="725" width="0.1553%" height="15" fill="rgb(231,128,14)" fg:x="26906" fg:w="67"/><text x="62.6089%" y="735.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="62.3589%" y="709" width="0.1553%" height="15" fill="rgb(245,143,14)" fg:x="26906" fg:w="67"/><text x="62.6089%" y="719.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="62.3589%" y="693" width="0.1553%" height="15" fill="rgb(222,130,28)" fg:x="26906" fg:w="67"/><text x="62.6089%" y="703.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="62.4655%" y="677" width="0.0487%" height="15" fill="rgb(212,10,48)" fg:x="26952" fg:w="21"/><text x="62.7155%" y="687.50"></text></g><g><title>core::hash::Hash::hash_slice (159 samples, 0.37%)</title><rect x="62.1526%" y="821" width="0.3685%" height="15" fill="rgb(254,118,45)" fg:x="26817" fg:w="159"/><text x="62.4026%" y="831.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (159 samples, 0.37%)</title><rect x="62.1526%" y="805" width="0.3685%" height="15" fill="rgb(228,6,45)" fg:x="26817" fg:w="159"/><text x="62.4026%" y="815.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (98 samples, 0.23%)</title><rect x="62.2940%" y="789" width="0.2271%" height="15" fill="rgb(241,18,35)" fg:x="26878" fg:w="98"/><text x="62.5440%" y="799.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (82 samples, 0.19%)</title><rect x="62.3311%" y="773" width="0.1900%" height="15" fill="rgb(227,214,53)" fg:x="26894" fg:w="82"/><text x="62.5811%" y="783.50"></text></g><g><title>core::hash::Hasher::write_isize (82 samples, 0.19%)</title><rect x="62.3311%" y="757" width="0.1900%" height="15" fill="rgb(224,107,51)" fg:x="26894" fg:w="82"/><text x="62.5811%" y="767.50"></text></g><g><title>core::hash::Hasher::write_usize (79 samples, 0.18%)</title><rect x="62.3381%" y="741" width="0.1831%" height="15" fill="rgb(248,60,28)" fg:x="26897" fg:w="79"/><text x="62.5881%" y="751.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="62.5513%" y="741" width="0.0209%" height="15" fill="rgb(249,101,23)" fg:x="26989" fg:w="9"/><text x="62.8013%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (188 samples, 0.44%)</title><rect x="62.1526%" y="853" width="0.4357%" height="15" fill="rgb(228,51,19)" fg:x="26817" fg:w="188"/><text x="62.4026%" y="863.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (188 samples, 0.44%)</title><rect x="62.1526%" y="837" width="0.4357%" height="15" fill="rgb(213,20,6)" fg:x="26817" fg:w="188"/><text x="62.4026%" y="847.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (29 samples, 0.07%)</title><rect x="62.5211%" y="821" width="0.0672%" height="15" fill="rgb(212,124,10)" fg:x="26976" fg:w="29"/><text x="62.7711%" y="831.50"></text></g><g><title>core::hash::Hasher::write_usize (25 samples, 0.06%)</title><rect x="62.5304%" y="805" width="0.0579%" height="15" fill="rgb(248,3,40)" fg:x="26980" fg:w="25"/><text x="62.7804%" y="815.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="62.5304%" y="789" width="0.0579%" height="15" fill="rgb(223,178,23)" fg:x="26980" fg:w="25"/><text x="62.7804%" y="799.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="62.5304%" y="773" width="0.0579%" height="15" fill="rgb(240,132,45)" fg:x="26980" fg:w="25"/><text x="62.7804%" y="783.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="62.5304%" y="757" width="0.0579%" height="15" fill="rgb(245,164,36)" fg:x="26980" fg:w="25"/><text x="62.7804%" y="767.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="62.5768%" y="741" width="0.0116%" height="15" fill="rgb(231,188,53)" fg:x="27000" fg:w="5"/><text x="62.8268%" y="751.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (36 samples, 0.08%)</title><rect x="62.7715%" y="741" width="0.0834%" height="15" fill="rgb(237,198,39)" fg:x="27084" fg:w="36"/><text x="63.0215%" y="751.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (64 samples, 0.15%)</title><rect x="62.7460%" y="757" width="0.1483%" height="15" fill="rgb(223,120,35)" fg:x="27073" fg:w="64"/><text x="62.9960%" y="767.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (17 samples, 0.04%)</title><rect x="62.8549%" y="741" width="0.0394%" height="15" fill="rgb(253,107,49)" fg:x="27120" fg:w="17"/><text x="63.1049%" y="751.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="62.8943%" y="757" width="0.0116%" height="15" fill="rgb(216,44,31)" fg:x="27137" fg:w="5"/><text x="63.1443%" y="767.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="62.8943%" y="741" width="0.0116%" height="15" fill="rgb(253,87,21)" fg:x="27137" fg:w="5"/><text x="63.1443%" y="751.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="62.8943%" y="725" width="0.0116%" height="15" fill="rgb(226,18,2)" fg:x="27137" fg:w="5"/><text x="63.1443%" y="735.50"></text></g><g><title>core::hash::sip::u8to64_le (39 samples, 0.09%)</title><rect x="62.9059%" y="757" width="0.0904%" height="15" fill="rgb(216,8,46)" fg:x="27142" fg:w="39"/><text x="63.1559%" y="767.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="62.9847%" y="741" width="0.0116%" height="15" fill="rgb(226,140,39)" fg:x="27176" fg:w="5"/><text x="63.2347%" y="751.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="62.6254%" y="805" width="0.3778%" height="15" fill="rgb(221,194,54)" fg:x="27021" fg:w="163"/><text x="62.8754%" y="815.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="62.6254%" y="789" width="0.3778%" height="15" fill="rgb(213,92,11)" fg:x="27021" fg:w="163"/><text x="62.8754%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (163 samples, 0.38%)</title><rect x="62.6254%" y="773" width="0.3778%" height="15" fill="rgb(229,162,46)" fg:x="27021" fg:w="163"/><text x="62.8754%" y="783.50"></text></g><g><title>core::hash::Hash::hash_slice (542 samples, 1.26%)</title><rect x="61.7563%" y="901" width="1.2562%" height="15" fill="rgb(214,111,36)" fg:x="26646" fg:w="542"/><text x="62.0063%" y="911.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (542 samples, 1.26%)</title><rect x="61.7563%" y="885" width="1.2562%" height="15" fill="rgb(207,6,21)" fg:x="26646" fg:w="542"/><text x="62.0063%" y="895.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (415 samples, 0.96%)</title><rect x="62.0507%" y="869" width="0.9618%" height="15" fill="rgb(213,127,38)" fg:x="26773" fg:w="415"/><text x="62.3007%" y="879.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (183 samples, 0.42%)</title><rect x="62.5884%" y="853" width="0.4241%" height="15" fill="rgb(238,118,32)" fg:x="27005" fg:w="183"/><text x="62.8384%" y="863.50"></text></g><g><title>core::hash::Hasher::write_isize (183 samples, 0.42%)</title><rect x="62.5884%" y="837" width="0.4241%" height="15" fill="rgb(240,139,39)" fg:x="27005" fg:w="183"/><text x="62.8384%" y="847.50"></text></g><g><title>core::hash::Hasher::write_usize (181 samples, 0.42%)</title><rect x="62.5930%" y="821" width="0.4195%" height="15" fill="rgb(235,10,37)" fg:x="27007" fg:w="181"/><text x="62.8430%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="63.1075%" y="805" width="0.0162%" height="15" fill="rgb(249,171,38)" fg:x="27229" fg:w="7"/><text x="63.3575%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="63.0867%" y="821" width="0.0510%" height="15" fill="rgb(242,144,32)" fg:x="27220" fg:w="22"/><text x="63.3367%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="63.1237%" y="805" width="0.0139%" height="15" fill="rgb(217,117,21)" fg:x="27236" fg:w="6"/><text x="63.3737%" y="815.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="63.0194%" y="869" width="0.1669%" height="15" fill="rgb(249,87,1)" fg:x="27191" fg:w="72"/><text x="63.2694%" y="879.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="63.0194%" y="853" width="0.1669%" height="15" fill="rgb(248,196,48)" fg:x="27191" fg:w="72"/><text x="63.2694%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (72 samples, 0.17%)</title><rect x="63.0194%" y="837" width="0.1669%" height="15" fill="rgb(251,206,33)" fg:x="27191" fg:w="72"/><text x="63.2694%" y="847.50"></text></g><g><title>core::hash::sip::u8to64_le (18 samples, 0.04%)</title><rect x="63.1446%" y="821" width="0.0417%" height="15" fill="rgb(232,141,28)" fg:x="27245" fg:w="18"/><text x="63.3946%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (618 samples, 1.43%)</title><rect x="61.7563%" y="933" width="1.4323%" height="15" fill="rgb(209,167,14)" fg:x="26646" fg:w="618"/><text x="62.0063%" y="943.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (618 samples, 1.43%)</title><rect x="61.7563%" y="917" width="1.4323%" height="15" fill="rgb(225,11,50)" fg:x="26646" fg:w="618"/><text x="62.0063%" y="927.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (76 samples, 0.18%)</title><rect x="63.0125%" y="901" width="0.1761%" height="15" fill="rgb(209,50,20)" fg:x="27188" fg:w="76"/><text x="63.2625%" y="911.50"></text></g><g><title>core::hash::Hasher::write_usize (73 samples, 0.17%)</title><rect x="63.0194%" y="885" width="0.1692%" height="15" fill="rgb(212,17,46)" fg:x="27191" fg:w="73"/><text x="63.2694%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (43 samples, 0.10%)</title><rect x="63.5270%" y="821" width="0.0997%" height="15" fill="rgb(216,101,39)" fg:x="27410" fg:w="43"/><text x="63.7770%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (100 samples, 0.23%)</title><rect x="63.4714%" y="837" width="0.2318%" height="15" fill="rgb(212,228,48)" fg:x="27386" fg:w="100"/><text x="63.7214%" y="847.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (33 samples, 0.08%)</title><rect x="63.6267%" y="821" width="0.0765%" height="15" fill="rgb(250,6,50)" fg:x="27453" fg:w="33"/><text x="63.8767%" y="831.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="63.7032%" y="837" width="0.0116%" height="15" fill="rgb(250,160,48)" fg:x="27486" fg:w="5"/><text x="63.9532%" y="847.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="63.7032%" y="821" width="0.0116%" height="15" fill="rgb(244,216,33)" fg:x="27486" fg:w="5"/><text x="63.9532%" y="831.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="63.7032%" y="805" width="0.0116%" height="15" fill="rgb(207,157,5)" fg:x="27486" fg:w="5"/><text x="63.9532%" y="815.50"></text></g><g><title>core::hash::sip::u8to64_le (68 samples, 0.16%)</title><rect x="63.7147%" y="837" width="0.1576%" height="15" fill="rgb(228,199,8)" fg:x="27491" fg:w="68"/><text x="63.9647%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (10 samples, 0.02%)</title><rect x="63.8492%" y="821" width="0.0232%" height="15" fill="rgb(227,80,20)" fg:x="27549" fg:w="10"/><text x="64.0992%" y="831.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (278 samples, 0.64%)</title><rect x="63.2350%" y="885" width="0.6443%" height="15" fill="rgb(222,9,33)" fg:x="27284" fg:w="278"/><text x="63.4850%" y="895.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (278 samples, 0.64%)</title><rect x="63.2350%" y="869" width="0.6443%" height="15" fill="rgb(239,44,28)" fg:x="27284" fg:w="278"/><text x="63.4850%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (278 samples, 0.64%)</title><rect x="63.2350%" y="853" width="0.6443%" height="15" fill="rgb(249,187,43)" fg:x="27284" fg:w="278"/><text x="63.4850%" y="863.50"></text></g><g><title>core::hash::Hash::hash_slice (1,223 samples, 2.83%)</title><rect x="61.0749%" y="981" width="2.8345%" height="15" fill="rgb(216,141,28)" fg:x="26352" fg:w="1223"/><text x="61.3249%" y="991.50">co..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,223 samples, 2.83%)</title><rect x="61.0749%" y="965" width="2.8345%" height="15" fill="rgb(230,154,53)" fg:x="26352" fg:w="1223"/><text x="61.3249%" y="975.50">co..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,005 samples, 2.33%)</title><rect x="61.5802%" y="949" width="2.3292%" height="15" fill="rgb(227,82,4)" fg:x="26570" fg:w="1005"/><text x="61.8302%" y="959.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (311 samples, 0.72%)</title><rect x="63.1886%" y="933" width="0.7208%" height="15" fill="rgb(220,107,16)" fg:x="27264" fg:w="311"/><text x="63.4386%" y="943.50"></text></g><g><title>core::hash::Hasher::write_isize (311 samples, 0.72%)</title><rect x="63.1886%" y="917" width="0.7208%" height="15" fill="rgb(207,187,2)" fg:x="27264" fg:w="311"/><text x="63.4386%" y="927.50"></text></g><g><title>core::hash::Hasher::write_usize (306 samples, 0.71%)</title><rect x="63.2002%" y="901" width="0.7092%" height="15" fill="rgb(210,162,52)" fg:x="27269" fg:w="306"/><text x="63.4502%" y="911.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (13 samples, 0.03%)</title><rect x="63.8793%" y="885" width="0.0301%" height="15" fill="rgb(217,216,49)" fg:x="27562" fg:w="13"/><text x="64.1293%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (18 samples, 0.04%)</title><rect x="64.0439%" y="885" width="0.0417%" height="15" fill="rgb(218,146,49)" fg:x="27633" fg:w="18"/><text x="64.2939%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (31 samples, 0.07%)</title><rect x="64.0207%" y="901" width="0.0718%" height="15" fill="rgb(216,55,40)" fg:x="27623" fg:w="31"/><text x="64.2707%" y="911.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="64.0925%" y="901" width="0.0139%" height="15" fill="rgb(208,196,21)" fg:x="27654" fg:w="6"/><text x="64.3425%" y="911.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="64.0925%" y="885" width="0.0139%" height="15" fill="rgb(242,117,42)" fg:x="27654" fg:w="6"/><text x="64.3425%" y="895.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="64.0925%" y="869" width="0.0139%" height="15" fill="rgb(210,11,23)" fg:x="27654" fg:w="6"/><text x="64.3425%" y="879.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (100 samples, 0.23%)</title><rect x="63.9280%" y="949" width="0.2318%" height="15" fill="rgb(217,110,2)" fg:x="27583" fg:w="100"/><text x="64.1780%" y="959.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (100 samples, 0.23%)</title><rect x="63.9280%" y="933" width="0.2318%" height="15" fill="rgb(229,77,54)" fg:x="27583" fg:w="100"/><text x="64.1780%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (100 samples, 0.23%)</title><rect x="63.9280%" y="917" width="0.2318%" height="15" fill="rgb(218,53,16)" fg:x="27583" fg:w="100"/><text x="64.1780%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (23 samples, 0.05%)</title><rect x="64.1064%" y="901" width="0.0533%" height="15" fill="rgb(215,38,13)" fg:x="27660" fg:w="23"/><text x="64.3564%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,334 samples, 3.09%)</title><rect x="61.0749%" y="1013" width="3.0918%" height="15" fill="rgb(235,42,18)" fg:x="26352" fg:w="1334"/><text x="61.3249%" y="1023.50">&lt;al..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,334 samples, 3.09%)</title><rect x="61.0749%" y="997" width="3.0918%" height="15" fill="rgb(219,66,54)" fg:x="26352" fg:w="1334"/><text x="61.3249%" y="1007.50">cor..</text></g><g><title>core::hash::Hasher::write_length_prefix (111 samples, 0.26%)</title><rect x="63.9094%" y="981" width="0.2573%" height="15" fill="rgb(222,205,4)" fg:x="27575" fg:w="111"/><text x="64.1594%" y="991.50"></text></g><g><title>core::hash::Hasher::write_usize (109 samples, 0.25%)</title><rect x="63.9141%" y="965" width="0.2526%" height="15" fill="rgb(227,213,46)" fg:x="27577" fg:w="109"/><text x="64.1641%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (47 samples, 0.11%)</title><rect x="64.6256%" y="901" width="0.1089%" height="15" fill="rgb(250,145,42)" fg:x="27884" fg:w="47"/><text x="64.8756%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (118 samples, 0.27%)</title><rect x="64.5421%" y="917" width="0.2735%" height="15" fill="rgb(219,15,2)" fg:x="27848" fg:w="118"/><text x="64.7921%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (35 samples, 0.08%)</title><rect x="64.7345%" y="901" width="0.0811%" height="15" fill="rgb(231,181,52)" fg:x="27931" fg:w="35"/><text x="64.9845%" y="911.50"></text></g><g><title>core::cmp::min (7 samples, 0.02%)</title><rect x="64.8156%" y="917" width="0.0162%" height="15" fill="rgb(235,1,42)" fg:x="27966" fg:w="7"/><text x="65.0656%" y="927.50"></text></g><g><title>core::cmp::Ord::min (7 samples, 0.02%)</title><rect x="64.8156%" y="901" width="0.0162%" height="15" fill="rgb(249,88,27)" fg:x="27966" fg:w="7"/><text x="65.0656%" y="911.50"></text></g><g><title>core::cmp::min_by (7 samples, 0.02%)</title><rect x="64.8156%" y="885" width="0.0162%" height="15" fill="rgb(235,145,16)" fg:x="27966" fg:w="7"/><text x="65.0656%" y="895.50"></text></g><g><title>core::hash::sip::u8to64_le (62 samples, 0.14%)</title><rect x="64.8319%" y="917" width="0.1437%" height="15" fill="rgb(237,114,19)" fg:x="27973" fg:w="62"/><text x="65.0819%" y="927.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="64.9640%" y="901" width="0.0116%" height="15" fill="rgb(238,51,50)" fg:x="28030" fg:w="5"/><text x="65.2140%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (319 samples, 0.74%)</title><rect x="64.2478%" y="965" width="0.7393%" height="15" fill="rgb(205,194,25)" fg:x="27721" fg:w="319"/><text x="64.4978%" y="975.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (319 samples, 0.74%)</title><rect x="64.2478%" y="949" width="0.7393%" height="15" fill="rgb(215,203,17)" fg:x="27721" fg:w="319"/><text x="64.4978%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (319 samples, 0.74%)</title><rect x="64.2478%" y="933" width="0.7393%" height="15" fill="rgb(233,112,49)" fg:x="27721" fg:w="319"/><text x="64.4978%" y="943.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="64.9755%" y="917" width="0.0116%" height="15" fill="rgb(241,130,26)" fg:x="28035" fg:w="5"/><text x="65.2255%" y="927.50"></text></g><g><title>core::hash::Hash::hash_slice (2,026 samples, 4.70%)</title><rect x="60.3356%" y="1061" width="4.6956%" height="15" fill="rgb(252,223,19)" fg:x="26033" fg:w="2026"/><text x="60.5856%" y="1071.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,026 samples, 4.70%)</title><rect x="60.3356%" y="1045" width="4.6956%" height="15" fill="rgb(211,95,25)" fg:x="26033" fg:w="2026"/><text x="60.5856%" y="1055.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,804 samples, 4.18%)</title><rect x="60.8501%" y="1029" width="4.1811%" height="15" fill="rgb(251,182,27)" fg:x="26255" fg:w="1804"/><text x="61.1001%" y="1039.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (373 samples, 0.86%)</title><rect x="64.1667%" y="1013" width="0.8645%" height="15" fill="rgb(238,24,4)" fg:x="27686" fg:w="373"/><text x="64.4167%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_isize (373 samples, 0.86%)</title><rect x="64.1667%" y="997" width="0.8645%" height="15" fill="rgb(224,220,25)" fg:x="27686" fg:w="373"/><text x="64.4167%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_usize (363 samples, 0.84%)</title><rect x="64.1899%" y="981" width="0.8413%" height="15" fill="rgb(239,133,26)" fg:x="27696" fg:w="363"/><text x="64.4399%" y="991.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (19 samples, 0.04%)</title><rect x="64.9871%" y="965" width="0.0440%" height="15" fill="rgb(211,94,48)" fg:x="28040" fg:w="19"/><text x="65.2371%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (16 samples, 0.04%)</title><rect x="65.1980%" y="965" width="0.0371%" height="15" fill="rgb(239,87,6)" fg:x="28131" fg:w="16"/><text x="65.4480%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (35 samples, 0.08%)</title><rect x="65.1679%" y="981" width="0.0811%" height="15" fill="rgb(227,62,0)" fg:x="28118" fg:w="35"/><text x="65.4179%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="65.2351%" y="965" width="0.0139%" height="15" fill="rgb(211,226,4)" fg:x="28147" fg:w="6"/><text x="65.4851%" y="975.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="65.2490%" y="981" width="0.0116%" height="15" fill="rgb(253,38,52)" fg:x="28153" fg:w="5"/><text x="65.4990%" y="991.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="65.2490%" y="965" width="0.0116%" height="15" fill="rgb(229,126,40)" fg:x="28153" fg:w="5"/><text x="65.4990%" y="975.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="65.2490%" y="949" width="0.0116%" height="15" fill="rgb(229,165,44)" fg:x="28153" fg:w="5"/><text x="65.4990%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (118 samples, 0.27%)</title><rect x="65.0613%" y="1029" width="0.2735%" height="15" fill="rgb(247,95,47)" fg:x="28072" fg:w="118"/><text x="65.3113%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (118 samples, 0.27%)</title><rect x="65.0613%" y="1013" width="0.2735%" height="15" fill="rgb(216,140,30)" fg:x="28072" fg:w="118"/><text x="65.3113%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (118 samples, 0.27%)</title><rect x="65.0613%" y="997" width="0.2735%" height="15" fill="rgb(246,214,8)" fg:x="28072" fg:w="118"/><text x="65.3113%" y="1007.50"></text></g><g><title>core::hash::sip::u8to64_le (32 samples, 0.07%)</title><rect x="65.2606%" y="981" width="0.0742%" height="15" fill="rgb(227,224,15)" fg:x="28158" fg:w="32"/><text x="65.5106%" y="991.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="65.3209%" y="965" width="0.0139%" height="15" fill="rgb(233,175,4)" fg:x="28184" fg:w="6"/><text x="65.5709%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,160 samples, 5.01%)</title><rect x="60.3356%" y="1093" width="5.0061%" height="15" fill="rgb(221,66,45)" fg:x="26033" fg:w="2160"/><text x="60.5856%" y="1103.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,160 samples, 5.01%)</title><rect x="60.3356%" y="1077" width="5.0061%" height="15" fill="rgb(221,178,18)" fg:x="26033" fg:w="2160"/><text x="60.5856%" y="1087.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (134 samples, 0.31%)</title><rect x="65.0312%" y="1061" width="0.3106%" height="15" fill="rgb(213,81,29)" fg:x="28059" fg:w="134"/><text x="65.2812%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_usize (127 samples, 0.29%)</title><rect x="65.0474%" y="1045" width="0.2943%" height="15" fill="rgb(220,89,49)" fg:x="28066" fg:w="127"/><text x="65.2974%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (51 samples, 0.12%)</title><rect x="65.7218%" y="981" width="0.1182%" height="15" fill="rgb(227,60,33)" fg:x="28357" fg:w="51"/><text x="65.9718%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (115 samples, 0.27%)</title><rect x="65.6361%" y="997" width="0.2665%" height="15" fill="rgb(205,113,12)" fg:x="28320" fg:w="115"/><text x="65.8861%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (27 samples, 0.06%)</title><rect x="65.8400%" y="981" width="0.0626%" height="15" fill="rgb(211,32,1)" fg:x="28408" fg:w="27"/><text x="66.0900%" y="991.50"></text></g><g><title>core::hash::sip::u8to64_le (80 samples, 0.19%)</title><rect x="65.9119%" y="997" width="0.1854%" height="15" fill="rgb(246,2,12)" fg:x="28439" fg:w="80"/><text x="66.1619%" y="1007.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (10 samples, 0.02%)</title><rect x="66.0741%" y="981" width="0.0232%" height="15" fill="rgb(243,37,27)" fg:x="28509" fg:w="10"/><text x="66.3241%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (305 samples, 0.71%)</title><rect x="65.3974%" y="1045" width="0.7069%" height="15" fill="rgb(248,211,31)" fg:x="28217" fg:w="305"/><text x="65.6474%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (305 samples, 0.71%)</title><rect x="65.3974%" y="1029" width="0.7069%" height="15" fill="rgb(242,146,47)" fg:x="28217" fg:w="305"/><text x="65.6474%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (305 samples, 0.71%)</title><rect x="65.3974%" y="1013" width="0.7069%" height="15" fill="rgb(206,70,20)" fg:x="28217" fg:w="305"/><text x="65.6474%" y="1023.50"></text></g><g><title>core::hash::Hash::hash_slice (2,844 samples, 6.59%)</title><rect x="59.5476%" y="1141" width="6.5914%" height="15" fill="rgb(215,10,51)" fg:x="25693" fg:w="2844"/><text x="59.7976%" y="1151.50">core::has..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,844 samples, 6.59%)</title><rect x="59.5476%" y="1125" width="6.5914%" height="15" fill="rgb(243,178,53)" fg:x="25693" fg:w="2844"/><text x="59.7976%" y="1135.50">core::has..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,629 samples, 6.09%)</title><rect x="60.0459%" y="1109" width="6.0931%" height="15" fill="rgb(233,221,20)" fg:x="25908" fg:w="2629"/><text x="60.2959%" y="1119.50">&lt;slimp::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (344 samples, 0.80%)</title><rect x="65.3417%" y="1093" width="0.7973%" height="15" fill="rgb(218,95,35)" fg:x="28193" fg:w="344"/><text x="65.5917%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_isize (344 samples, 0.80%)</title><rect x="65.3417%" y="1077" width="0.7973%" height="15" fill="rgb(229,13,5)" fg:x="28193" fg:w="344"/><text x="65.5917%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_usize (343 samples, 0.79%)</title><rect x="65.3441%" y="1061" width="0.7950%" height="15" fill="rgb(252,164,30)" fg:x="28194" fg:w="343"/><text x="65.5941%" y="1071.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (15 samples, 0.03%)</title><rect x="66.1042%" y="1045" width="0.0348%" height="15" fill="rgb(232,68,36)" fg:x="28522" fg:w="15"/><text x="66.3542%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (19 samples, 0.04%)</title><rect x="66.3244%" y="1045" width="0.0440%" height="15" fill="rgb(219,59,54)" fg:x="28617" fg:w="19"/><text x="66.5744%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (42 samples, 0.10%)</title><rect x="66.2873%" y="1061" width="0.0973%" height="15" fill="rgb(250,92,33)" fg:x="28601" fg:w="42"/><text x="66.5373%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="66.3685%" y="1045" width="0.0162%" height="15" fill="rgb(229,162,54)" fg:x="28636" fg:w="7"/><text x="66.6185%" y="1055.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="66.3847%" y="1061" width="0.0116%" height="15" fill="rgb(244,114,52)" fg:x="28643" fg:w="5"/><text x="66.6347%" y="1071.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="66.3847%" y="1045" width="0.0116%" height="15" fill="rgb(212,211,43)" fg:x="28643" fg:w="5"/><text x="66.6347%" y="1055.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="66.3847%" y="1029" width="0.0116%" height="15" fill="rgb(226,147,8)" fg:x="28643" fg:w="5"/><text x="66.6347%" y="1039.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (128 samples, 0.30%)</title><rect x="66.1645%" y="1109" width="0.2967%" height="15" fill="rgb(226,23,13)" fg:x="28548" fg:w="128"/><text x="66.4145%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (128 samples, 0.30%)</title><rect x="66.1645%" y="1093" width="0.2967%" height="15" fill="rgb(240,63,4)" fg:x="28548" fg:w="128"/><text x="66.4145%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (128 samples, 0.30%)</title><rect x="66.1645%" y="1077" width="0.2967%" height="15" fill="rgb(221,1,32)" fg:x="28548" fg:w="128"/><text x="66.4145%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (28 samples, 0.06%)</title><rect x="66.3963%" y="1061" width="0.0649%" height="15" fill="rgb(242,117,10)" fg:x="28648" fg:w="28"/><text x="66.6463%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,989 samples, 6.93%)</title><rect x="59.5476%" y="1173" width="6.9275%" height="15" fill="rgb(249,172,44)" fg:x="25693" fg:w="2989"/><text x="59.7976%" y="1183.50">&lt;alloc::v..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,989 samples, 6.93%)</title><rect x="59.5476%" y="1157" width="6.9275%" height="15" fill="rgb(244,46,45)" fg:x="25693" fg:w="2989"/><text x="59.7976%" y="1167.50">core::has..</text></g><g><title>core::hash::Hasher::write_length_prefix (145 samples, 0.34%)</title><rect x="66.1390%" y="1141" width="0.3361%" height="15" fill="rgb(206,43,17)" fg:x="28537" fg:w="145"/><text x="66.3890%" y="1151.50"></text></g><g><title>core::hash::Hasher::write_usize (141 samples, 0.33%)</title><rect x="66.1483%" y="1125" width="0.3268%" height="15" fill="rgb(239,218,39)" fg:x="28541" fg:w="141"/><text x="66.3983%" y="1135.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="66.4612%" y="1109" width="0.0139%" height="15" fill="rgb(208,169,54)" fg:x="28676" fg:w="6"/><text x="66.7112%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (50 samples, 0.12%)</title><rect x="66.7995%" y="1061" width="0.1159%" height="15" fill="rgb(247,25,42)" fg:x="28822" fg:w="50"/><text x="67.0495%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (95 samples, 0.22%)</title><rect x="66.7462%" y="1077" width="0.2202%" height="15" fill="rgb(226,23,31)" fg:x="28799" fg:w="95"/><text x="66.9962%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (22 samples, 0.05%)</title><rect x="66.9154%" y="1061" width="0.0510%" height="15" fill="rgb(247,16,28)" fg:x="28872" fg:w="22"/><text x="67.1654%" y="1071.50"></text></g><g><title>core::cmp::min (13 samples, 0.03%)</title><rect x="66.9664%" y="1077" width="0.0301%" height="15" fill="rgb(231,147,38)" fg:x="28894" fg:w="13"/><text x="67.2164%" y="1087.50"></text></g><g><title>core::cmp::Ord::min (13 samples, 0.03%)</title><rect x="66.9664%" y="1061" width="0.0301%" height="15" fill="rgb(253,81,48)" fg:x="28894" fg:w="13"/><text x="67.2164%" y="1071.50"></text></g><g><title>core::cmp::min_by (13 samples, 0.03%)</title><rect x="66.9664%" y="1045" width="0.0301%" height="15" fill="rgb(249,222,43)" fg:x="28894" fg:w="13"/><text x="67.2164%" y="1055.50"></text></g><g><title>core::hash::sip::u8to64_le (60 samples, 0.14%)</title><rect x="66.9965%" y="1077" width="0.1391%" height="15" fill="rgb(221,3,27)" fg:x="28907" fg:w="60"/><text x="67.2465%" y="1087.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="67.1217%" y="1061" width="0.0139%" height="15" fill="rgb(228,180,5)" fg:x="28961" fg:w="6"/><text x="67.3717%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (263 samples, 0.61%)</title><rect x="66.5307%" y="1125" width="0.6095%" height="15" fill="rgb(227,131,42)" fg:x="28706" fg:w="263"/><text x="66.7807%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (263 samples, 0.61%)</title><rect x="66.5307%" y="1109" width="0.6095%" height="15" fill="rgb(212,3,39)" fg:x="28706" fg:w="263"/><text x="66.7807%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (263 samples, 0.61%)</title><rect x="66.5307%" y="1093" width="0.6095%" height="15" fill="rgb(226,45,5)" fg:x="28706" fg:w="263"/><text x="66.7807%" y="1103.50"></text></g><g><title>core::hash::Hash::hash_slice (3,553 samples, 8.23%)</title><rect x="58.9334%" y="1221" width="8.2346%" height="15" fill="rgb(215,167,45)" fg:x="25428" fg:w="3553"/><text x="59.1834%" y="1231.50">core::hash:..</text></g><g><title>core::hash::Hash::hash_slice::rt (3,553 samples, 8.23%)</title><rect x="58.9334%" y="1205" width="8.2346%" height="15" fill="rgb(250,218,53)" fg:x="25428" fg:w="3553"/><text x="59.1834%" y="1215.50">core::hash:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (3,387 samples, 7.85%)</title><rect x="59.3181%" y="1189" width="7.8499%" height="15" fill="rgb(207,140,0)" fg:x="25594" fg:w="3387"/><text x="59.5681%" y="1199.50">&lt;slimp::Sex..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (299 samples, 0.69%)</title><rect x="66.4751%" y="1173" width="0.6930%" height="15" fill="rgb(238,133,51)" fg:x="28682" fg:w="299"/><text x="66.7251%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_isize (299 samples, 0.69%)</title><rect x="66.4751%" y="1157" width="0.6930%" height="15" fill="rgb(218,203,53)" fg:x="28682" fg:w="299"/><text x="66.7251%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_usize (291 samples, 0.67%)</title><rect x="66.4936%" y="1141" width="0.6744%" height="15" fill="rgb(226,184,25)" fg:x="28690" fg:w="291"/><text x="66.7436%" y="1151.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (12 samples, 0.03%)</title><rect x="67.1402%" y="1125" width="0.0278%" height="15" fill="rgb(231,121,21)" fg:x="28969" fg:w="12"/><text x="67.3902%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (14 samples, 0.03%)</title><rect x="67.3048%" y="1125" width="0.0324%" height="15" fill="rgb(251,14,34)" fg:x="29040" fg:w="14"/><text x="67.5548%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (41 samples, 0.10%)</title><rect x="67.2723%" y="1141" width="0.0950%" height="15" fill="rgb(249,193,11)" fg:x="29026" fg:w="41"/><text x="67.5223%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (13 samples, 0.03%)</title><rect x="67.3372%" y="1125" width="0.0301%" height="15" fill="rgb(220,172,37)" fg:x="29054" fg:w="13"/><text x="67.5872%" y="1135.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="67.1866%" y="1189" width="0.2225%" height="15" fill="rgb(231,229,43)" fg:x="28989" fg:w="96"/><text x="67.4366%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="67.1866%" y="1173" width="0.2225%" height="15" fill="rgb(250,161,5)" fg:x="28989" fg:w="96"/><text x="67.4366%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="67.1866%" y="1157" width="0.2225%" height="15" fill="rgb(218,225,18)" fg:x="28989" fg:w="96"/><text x="67.4366%" y="1167.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="67.3743%" y="1141" width="0.0348%" height="15" fill="rgb(245,45,42)" fg:x="29070" fg:w="15"/><text x="67.6243%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (3,658 samples, 8.48%)</title><rect x="58.9334%" y="1253" width="8.4780%" height="15" fill="rgb(211,115,1)" fg:x="25428" fg:w="3658"/><text x="59.1834%" y="1263.50">&lt;alloc::vec:..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (3,658 samples, 8.48%)</title><rect x="58.9334%" y="1237" width="8.4780%" height="15" fill="rgb(248,133,52)" fg:x="25428" fg:w="3658"/><text x="59.1834%" y="1247.50">core::hash::..</text></g><g><title>core::hash::Hasher::write_length_prefix (105 samples, 0.24%)</title><rect x="67.1681%" y="1221" width="0.2434%" height="15" fill="rgb(238,100,21)" fg:x="28981" fg:w="105"/><text x="67.4181%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_usize (101 samples, 0.23%)</title><rect x="67.1773%" y="1205" width="0.2341%" height="15" fill="rgb(247,144,11)" fg:x="28985" fg:w="101"/><text x="67.4273%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (15 samples, 0.03%)</title><rect x="67.5829%" y="1141" width="0.0348%" height="15" fill="rgb(206,164,16)" fg:x="29160" fg:w="15"/><text x="67.8329%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (38 samples, 0.09%)</title><rect x="67.5481%" y="1157" width="0.0881%" height="15" fill="rgb(222,34,3)" fg:x="29145" fg:w="38"/><text x="67.7981%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="67.6177%" y="1141" width="0.0185%" height="15" fill="rgb(248,82,4)" fg:x="29175" fg:w="8"/><text x="67.8677%" y="1151.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="67.6362%" y="1157" width="0.0116%" height="15" fill="rgb(228,81,46)" fg:x="29183" fg:w="5"/><text x="67.8862%" y="1167.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="67.6362%" y="1141" width="0.0116%" height="15" fill="rgb(227,67,47)" fg:x="29183" fg:w="5"/><text x="67.8862%" y="1151.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="67.6362%" y="1125" width="0.0116%" height="15" fill="rgb(215,93,53)" fg:x="29183" fg:w="5"/><text x="67.8862%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="67.6478%" y="1157" width="0.0487%" height="15" fill="rgb(248,194,39)" fg:x="29188" fg:w="21"/><text x="67.8978%" y="1167.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (110 samples, 0.25%)</title><rect x="67.4439%" y="1205" width="0.2549%" height="15" fill="rgb(215,5,19)" fg:x="29100" fg:w="110"/><text x="67.6939%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (110 samples, 0.25%)</title><rect x="67.4439%" y="1189" width="0.2549%" height="15" fill="rgb(226,215,51)" fg:x="29100" fg:w="110"/><text x="67.6939%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (110 samples, 0.25%)</title><rect x="67.4439%" y="1173" width="0.2549%" height="15" fill="rgb(225,56,26)" fg:x="29100" fg:w="110"/><text x="67.6939%" y="1183.50"></text></g><g><title>core::hash::Hash::hash_slice (3,913 samples, 9.07%)</title><rect x="58.6507%" y="1301" width="9.0690%" height="15" fill="rgb(222,75,29)" fg:x="25306" fg:w="3913"/><text x="58.9007%" y="1311.50">core::hash::H..</text></g><g><title>core::hash::Hash::hash_slice::rt (3,913 samples, 9.07%)</title><rect x="58.6507%" y="1285" width="9.0690%" height="15" fill="rgb(236,139,6)" fg:x="25306" fg:w="3913"/><text x="58.9007%" y="1295.50">core::hash::H..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (3,856 samples, 8.94%)</title><rect x="58.7828%" y="1269" width="8.9369%" height="15" fill="rgb(223,137,36)" fg:x="25363" fg:w="3856"/><text x="59.0328%" y="1279.50">&lt;slimp::Sexp ..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (133 samples, 0.31%)</title><rect x="67.4114%" y="1253" width="0.3082%" height="15" fill="rgb(226,99,2)" fg:x="29086" fg:w="133"/><text x="67.6614%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_isize (133 samples, 0.31%)</title><rect x="67.4114%" y="1237" width="0.3082%" height="15" fill="rgb(206,133,23)" fg:x="29086" fg:w="133"/><text x="67.6614%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_usize (129 samples, 0.30%)</title><rect x="67.4207%" y="1221" width="0.2990%" height="15" fill="rgb(243,173,15)" fg:x="29090" fg:w="129"/><text x="67.6707%" y="1231.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (9 samples, 0.02%)</title><rect x="67.6988%" y="1205" width="0.0209%" height="15" fill="rgb(228,69,28)" fg:x="29210" fg:w="9"/><text x="67.9488%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="67.7822%" y="1221" width="0.0301%" height="15" fill="rgb(212,51,22)" fg:x="29246" fg:w="13"/><text x="68.0322%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="67.7961%" y="1205" width="0.0162%" height="15" fill="rgb(227,113,0)" fg:x="29252" fg:w="7"/><text x="68.0461%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (3,963 samples, 9.18%)</title><rect x="58.6507%" y="1333" width="9.1849%" height="15" fill="rgb(252,84,27)" fg:x="25306" fg:w="3963"/><text x="58.9007%" y="1343.50">&lt;alloc::vec::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (3,963 samples, 9.18%)</title><rect x="58.6507%" y="1317" width="9.1849%" height="15" fill="rgb(223,145,39)" fg:x="25306" fg:w="3963"/><text x="58.9007%" y="1327.50">core::hash::i..</text></g><g><title>core::hash::Hasher::write_length_prefix (50 samples, 0.12%)</title><rect x="67.7197%" y="1301" width="0.1159%" height="15" fill="rgb(239,219,30)" fg:x="29219" fg:w="50"/><text x="67.9697%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_usize (49 samples, 0.11%)</title><rect x="67.7220%" y="1285" width="0.1136%" height="15" fill="rgb(224,196,39)" fg:x="29220" fg:w="49"/><text x="67.9720%" y="1295.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (47 samples, 0.11%)</title><rect x="67.7266%" y="1269" width="0.1089%" height="15" fill="rgb(205,35,43)" fg:x="29222" fg:w="47"/><text x="67.9766%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (47 samples, 0.11%)</title><rect x="67.7266%" y="1253" width="0.1089%" height="15" fill="rgb(228,201,21)" fg:x="29222" fg:w="47"/><text x="67.9766%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (47 samples, 0.11%)</title><rect x="67.7266%" y="1237" width="0.1089%" height="15" fill="rgb(237,118,16)" fg:x="29222" fg:w="47"/><text x="67.9766%" y="1247.50"></text></g><g><title>core::hash::sip::u8to64_le (8 samples, 0.02%)</title><rect x="67.8170%" y="1221" width="0.0185%" height="15" fill="rgb(241,17,19)" fg:x="29261" fg:w="8"/><text x="68.0670%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (15 samples, 0.03%)</title><rect x="67.8703%" y="1237" width="0.0348%" height="15" fill="rgb(214,10,25)" fg:x="29284" fg:w="15"/><text x="68.1203%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="67.8912%" y="1221" width="0.0139%" height="15" fill="rgb(238,37,29)" fg:x="29293" fg:w="6"/><text x="68.1412%" y="1231.50"></text></g><g><title>core::hash::sip::u8to64_le (12 samples, 0.03%)</title><rect x="67.9051%" y="1237" width="0.0278%" height="15" fill="rgb(253,83,25)" fg:x="29299" fg:w="12"/><text x="68.1551%" y="1247.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (4,013 samples, 9.30%)</title><rect x="58.6344%" y="1349" width="9.3008%" height="15" fill="rgb(234,192,12)" fg:x="25299" fg:w="4013"/><text x="58.8844%" y="1359.50">&lt;slimp::Sexp ..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (43 samples, 0.10%)</title><rect x="67.8355%" y="1333" width="0.0997%" height="15" fill="rgb(241,216,45)" fg:x="29269" fg:w="43"/><text x="68.0855%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_isize (43 samples, 0.10%)</title><rect x="67.8355%" y="1317" width="0.0997%" height="15" fill="rgb(242,22,33)" fg:x="29269" fg:w="43"/><text x="68.0855%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_usize (43 samples, 0.10%)</title><rect x="67.8355%" y="1301" width="0.0997%" height="15" fill="rgb(231,105,49)" fg:x="29269" fg:w="43"/><text x="68.0855%" y="1311.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (42 samples, 0.10%)</title><rect x="67.8379%" y="1285" width="0.0973%" height="15" fill="rgb(218,204,15)" fg:x="29270" fg:w="42"/><text x="68.0879%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (42 samples, 0.10%)</title><rect x="67.8379%" y="1269" width="0.0973%" height="15" fill="rgb(235,138,41)" fg:x="29270" fg:w="42"/><text x="68.0879%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (42 samples, 0.10%)</title><rect x="67.8379%" y="1253" width="0.0973%" height="15" fill="rgb(246,0,9)" fg:x="29270" fg:w="42"/><text x="68.0879%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="67.9700%" y="1253" width="0.0116%" height="15" fill="rgb(210,74,4)" fg:x="29327" fg:w="5"/><text x="68.2200%" y="1263.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="67.9422%" y="1301" width="0.0440%" height="15" fill="rgb(250,60,41)" fg:x="29315" fg:w="19"/><text x="68.1922%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="67.9422%" y="1285" width="0.0440%" height="15" fill="rgb(220,115,12)" fg:x="29315" fg:w="19"/><text x="68.1922%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="67.9422%" y="1269" width="0.0440%" height="15" fill="rgb(237,100,13)" fg:x="29315" fg:w="19"/><text x="68.1922%" y="1279.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (4,104 samples, 9.51%)</title><rect x="58.4792%" y="1445" width="9.5117%" height="15" fill="rgb(213,55,26)" fg:x="25232" fg:w="4104"/><text x="58.7292%" y="1455.50">hashbrown::raw..</text></g><g><title>hashbrown::map::make_hasher::{{closure}} (4,104 samples, 9.51%)</title><rect x="58.4792%" y="1429" width="9.5117%" height="15" fill="rgb(216,17,4)" fg:x="25232" fg:w="4104"/><text x="58.7292%" y="1439.50">hashbrown::map..</text></g><g><title>hashbrown::map::make_hash (4,104 samples, 9.51%)</title><rect x="58.4792%" y="1413" width="9.5117%" height="15" fill="rgb(220,153,47)" fg:x="25232" fg:w="4104"/><text x="58.7292%" y="1423.50">hashbrown::map..</text></g><g><title>core::hash::BuildHasher::hash_one (4,104 samples, 9.51%)</title><rect x="58.4792%" y="1397" width="9.5117%" height="15" fill="rgb(215,131,9)" fg:x="25232" fg:w="4104"/><text x="58.7292%" y="1407.50">core::hash::Bu..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (4,046 samples, 9.38%)</title><rect x="58.6136%" y="1381" width="9.3772%" height="15" fill="rgb(233,46,42)" fg:x="25290" fg:w="4046"/><text x="58.8636%" y="1391.50">core::hash::i..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (4,045 samples, 9.37%)</title><rect x="58.6159%" y="1365" width="9.3749%" height="15" fill="rgb(226,86,7)" fg:x="25291" fg:w="4045"/><text x="58.8659%" y="1375.50">&lt;slimp::Rule ..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (24 samples, 0.06%)</title><rect x="67.9352%" y="1349" width="0.0556%" height="15" fill="rgb(239,226,21)" fg:x="29312" fg:w="24"/><text x="68.1852%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_isize (24 samples, 0.06%)</title><rect x="67.9352%" y="1333" width="0.0556%" height="15" fill="rgb(244,137,22)" fg:x="29312" fg:w="24"/><text x="68.1852%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_usize (23 samples, 0.05%)</title><rect x="67.9375%" y="1317" width="0.0533%" height="15" fill="rgb(211,139,35)" fg:x="29313" fg:w="23"/><text x="68.1875%" y="1327.50"></text></g><g><title>hashbrown::raw::is_full (7 samples, 0.02%)</title><rect x="67.9978%" y="1413" width="0.0162%" height="15" fill="rgb(214,62,50)" fg:x="29339" fg:w="7"/><text x="68.2478%" y="1423.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (7 samples, 0.02%)</title><rect x="68.0140%" y="1413" width="0.0162%" height="15" fill="rgb(212,113,44)" fg:x="29346" fg:w="7"/><text x="68.2640%" y="1423.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (7 samples, 0.02%)</title><rect x="68.0140%" y="1397" width="0.0162%" height="15" fill="rgb(226,150,43)" fg:x="29346" fg:w="7"/><text x="68.2640%" y="1407.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (7 samples, 0.02%)</title><rect x="68.0140%" y="1381" width="0.0162%" height="15" fill="rgb(250,71,37)" fg:x="29346" fg:w="7"/><text x="68.2640%" y="1391.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_insert_slot (22 samples, 0.05%)</title><rect x="67.9931%" y="1429" width="0.0510%" height="15" fill="rgb(219,76,19)" fg:x="29337" fg:w="22"/><text x="68.2431%" y="1439.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty_or_deleted (6 samples, 0.01%)</title><rect x="68.0302%" y="1413" width="0.0139%" height="15" fill="rgb(250,39,11)" fg:x="29353" fg:w="6"/><text x="68.2802%" y="1423.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (6 samples, 0.01%)</title><rect x="68.0302%" y="1397" width="0.0139%" height="15" fill="rgb(230,64,31)" fg:x="29353" fg:w="6"/><text x="68.2802%" y="1407.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_insert_slot (29 samples, 0.07%)</title><rect x="67.9931%" y="1445" width="0.0672%" height="15" fill="rgb(208,222,23)" fg:x="29337" fg:w="29"/><text x="68.2431%" y="1455.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::set_ctrl_h2 (7 samples, 0.02%)</title><rect x="68.0441%" y="1429" width="0.0162%" height="15" fill="rgb(227,125,18)" fg:x="29359" fg:w="7"/><text x="68.2941%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::set_ctrl (7 samples, 0.02%)</title><rect x="68.0441%" y="1413" width="0.0162%" height="15" fill="rgb(234,210,9)" fg:x="29359" fg:w="7"/><text x="68.2941%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_resize (16 samples, 0.04%)</title><rect x="68.0604%" y="1445" width="0.0371%" height="15" fill="rgb(217,127,24)" fg:x="29366" fg:w="16"/><text x="68.3104%" y="1455.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (16 samples, 0.04%)</title><rect x="68.0604%" y="1429" width="0.0371%" height="15" fill="rgb(239,141,48)" fg:x="29366" fg:w="16"/><text x="68.3104%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (14 samples, 0.03%)</title><rect x="68.0650%" y="1413" width="0.0324%" height="15" fill="rgb(227,109,8)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1423.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (14 samples, 0.03%)</title><rect x="68.0650%" y="1397" width="0.0324%" height="15" fill="rgb(235,184,23)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1407.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (14 samples, 0.03%)</title><rect x="68.0650%" y="1381" width="0.0324%" height="15" fill="rgb(227,226,48)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1391.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (14 samples, 0.03%)</title><rect x="68.0650%" y="1365" width="0.0324%" height="15" fill="rgb(206,150,11)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1375.50"></text></g><g><title>alloc::alloc::alloc (14 samples, 0.03%)</title><rect x="68.0650%" y="1349" width="0.0324%" height="15" fill="rgb(254,2,33)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1359.50"></text></g><g><title>malloc (14 samples, 0.03%)</title><rect x="68.0650%" y="1333" width="0.0324%" height="15" fill="rgb(243,160,20)" fg:x="29368" fg:w="14"/><text x="68.3150%" y="1343.50"></text></g><g><title>[libc.so.6] (13 samples, 0.03%)</title><rect x="68.0673%" y="1317" width="0.0301%" height="15" fill="rgb(218,208,30)" fg:x="29369" fg:w="13"/><text x="68.3173%" y="1327.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (4,177 samples, 9.68%)</title><rect x="58.4189%" y="1509" width="9.6809%" height="15" fill="rgb(224,120,49)" fg:x="25206" fg:w="4177"/><text x="58.6689%" y="1519.50">hashbrown::raw..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (4,177 samples, 9.68%)</title><rect x="58.4189%" y="1493" width="9.6809%" height="15" fill="rgb(246,12,2)" fg:x="25206" fg:w="4177"/><text x="58.6689%" y="1503.50">hashbrown::raw..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (4,177 samples, 9.68%)</title><rect x="58.4189%" y="1477" width="9.6809%" height="15" fill="rgb(236,117,3)" fg:x="25206" fg:w="4177"/><text x="58.6689%" y="1487.50">hashbrown::raw..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (4,177 samples, 9.68%)</title><rect x="58.4189%" y="1461" width="9.6809%" height="15" fill="rgb(216,128,52)" fg:x="25206" fg:w="4177"/><text x="58.6689%" y="1471.50">hashbrown::raw..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_insert_slot (8 samples, 0.02%)</title><rect x="68.0998%" y="1509" width="0.0185%" height="15" fill="rgb(246,145,19)" fg:x="29383" fg:w="8"/><text x="68.3498%" y="1519.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (6,416 samples, 14.87%)</title><rect x="53.2552%" y="1573" width="14.8701%" height="15" fill="rgb(222,11,46)" fg:x="22978" fg:w="6416"/><text x="53.5052%" y="1583.50">std::collections::hash:..</text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (6,416 samples, 14.87%)</title><rect x="53.2552%" y="1557" width="14.8701%" height="15" fill="rgb(245,82,36)" fg:x="22978" fg:w="6416"/><text x="53.5052%" y="1567.50">hashbrown::set::HashSet..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (6,416 samples, 14.87%)</title><rect x="53.2552%" y="1541" width="14.8701%" height="15" fill="rgb(250,73,51)" fg:x="22978" fg:w="6416"/><text x="53.5052%" y="1551.50">hashbrown::map::HashMap..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (4,193 samples, 9.72%)</title><rect x="58.4073%" y="1525" width="9.7179%" height="15" fill="rgb(221,189,23)" fg:x="25201" fg:w="4193"/><text x="58.6573%" y="1535.50">hashbrown::raw..</text></g><g><title>slimp::Rule::concretions (17,247 samples, 39.97%)</title><rect x="28.1665%" y="1589" width="39.9727%" height="15" fill="rgb(210,33,7)" fg:x="12153" fg:w="17247"/><text x="28.4165%" y="1599.50">slimp::Rule::concretions</text></g><g><title>std::collections::hash::set::HashSet&lt;T&gt;::with_capacity (6 samples, 0.01%)</title><rect x="68.1252%" y="1573" width="0.0139%" height="15" fill="rgb(210,107,22)" fg:x="29394" fg:w="6"/><text x="68.3752%" y="1583.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S&gt;::with_capacity_and_hasher (6 samples, 0.01%)</title><rect x="68.1252%" y="1557" width="0.0139%" height="15" fill="rgb(222,116,37)" fg:x="29394" fg:w="6"/><text x="68.3752%" y="1567.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (6 samples, 0.01%)</title><rect x="68.1252%" y="1541" width="0.0139%" height="15" fill="rgb(254,17,48)" fg:x="29394" fg:w="6"/><text x="68.3752%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (6 samples, 0.01%)</title><rect x="68.1252%" y="1525" width="0.0139%" height="15" fill="rgb(224,36,32)" fg:x="29394" fg:w="6"/><text x="68.3752%" y="1535.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (6 samples, 0.01%)</title><rect x="68.1252%" y="1509" width="0.0139%" height="15" fill="rgb(232,90,46)" fg:x="29394" fg:w="6"/><text x="68.3752%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (5 samples, 0.01%)</title><rect x="68.1276%" y="1493" width="0.0116%" height="15" fill="rgb(241,66,40)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (5 samples, 0.01%)</title><rect x="68.1276%" y="1477" width="0.0116%" height="15" fill="rgb(249,184,29)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (5 samples, 0.01%)</title><rect x="68.1276%" y="1461" width="0.0116%" height="15" fill="rgb(231,181,1)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1471.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (5 samples, 0.01%)</title><rect x="68.1276%" y="1445" width="0.0116%" height="15" fill="rgb(224,94,2)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1455.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (5 samples, 0.01%)</title><rect x="68.1276%" y="1429" width="0.0116%" height="15" fill="rgb(229,170,15)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1439.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (5 samples, 0.01%)</title><rect x="68.1276%" y="1413" width="0.0116%" height="15" fill="rgb(240,127,35)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1423.50"></text></g><g><title>alloc::alloc::alloc (5 samples, 0.01%)</title><rect x="68.1276%" y="1397" width="0.0116%" height="15" fill="rgb(248,196,34)" fg:x="29395" fg:w="5"/><text x="68.3776%" y="1407.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 (10 samples, 0.02%)</title><rect x="68.1461%" y="1493" width="0.0232%" height="15" fill="rgb(236,137,7)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1503.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (10 samples, 0.02%)</title><rect x="68.1461%" y="1477" width="0.0232%" height="15" fill="rgb(235,127,16)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1487.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (10 samples, 0.02%)</title><rect x="68.1461%" y="1461" width="0.0232%" height="15" fill="rgb(250,192,54)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1471.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (10 samples, 0.02%)</title><rect x="68.1461%" y="1445" width="0.0232%" height="15" fill="rgb(218,98,20)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1455.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.02%)</title><rect x="68.1461%" y="1429" width="0.0232%" height="15" fill="rgb(230,176,47)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1439.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (10 samples, 0.02%)</title><rect x="68.1461%" y="1413" width="0.0232%" height="15" fill="rgb(244,2,33)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1423.50"></text></g><g><title>slimp::rw::{{closure}} (10 samples, 0.02%)</title><rect x="68.1461%" y="1397" width="0.0232%" height="15" fill="rgb(231,100,17)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1407.50"></text></g><g><title>slimp::Sexp::rw (10 samples, 0.02%)</title><rect x="68.1461%" y="1381" width="0.0232%" height="15" fill="rgb(245,23,12)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1391.50"></text></g><g><title>slimp::rw (10 samples, 0.02%)</title><rect x="68.1461%" y="1365" width="0.0232%" height="15" fill="rgb(249,55,22)" fg:x="29403" fg:w="10"/><text x="68.3961%" y="1375.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (9 samples, 0.02%)</title><rect x="68.1484%" y="1349" width="0.0209%" height="15" fill="rgb(207,134,9)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="68.1484%" y="1333" width="0.0209%" height="15" fill="rgb(218,134,0)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1343.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="68.1484%" y="1317" width="0.0209%" height="15" fill="rgb(213,212,33)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="68.1484%" y="1301" width="0.0209%" height="15" fill="rgb(252,106,18)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (9 samples, 0.02%)</title><rect x="68.1484%" y="1285" width="0.0209%" height="15" fill="rgb(208,126,42)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1295.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (9 samples, 0.02%)</title><rect x="68.1484%" y="1269" width="0.0209%" height="15" fill="rgb(246,175,29)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1279.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (9 samples, 0.02%)</title><rect x="68.1484%" y="1253" width="0.0209%" height="15" fill="rgb(215,13,50)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1263.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.02%)</title><rect x="68.1484%" y="1237" width="0.0209%" height="15" fill="rgb(216,172,15)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.02%)</title><rect x="68.1484%" y="1221" width="0.0209%" height="15" fill="rgb(212,103,13)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1231.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (9 samples, 0.02%)</title><rect x="68.1484%" y="1205" width="0.0209%" height="15" fill="rgb(231,171,36)" fg:x="29404" fg:w="9"/><text x="68.3984%" y="1215.50"></text></g><g><title>slimp::rw::{{closure}} (8 samples, 0.02%)</title><rect x="68.1507%" y="1189" width="0.0185%" height="15" fill="rgb(250,123,20)" fg:x="29405" fg:w="8"/><text x="68.4007%" y="1199.50"></text></g><g><title>slimp::Sexp::rw (8 samples, 0.02%)</title><rect x="68.1507%" y="1173" width="0.0185%" height="15" fill="rgb(212,53,50)" fg:x="29405" fg:w="8"/><text x="68.4007%" y="1183.50"></text></g><g><title>slimp::rw (8 samples, 0.02%)</title><rect x="68.1507%" y="1157" width="0.0185%" height="15" fill="rgb(243,54,12)" fg:x="29405" fg:w="8"/><text x="68.4007%" y="1167.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.01%)</title><rect x="68.1577%" y="1141" width="0.0116%" height="15" fill="rgb(234,101,34)" fg:x="29408" fg:w="5"/><text x="68.4077%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (5 samples, 0.01%)</title><rect x="68.1577%" y="1125" width="0.0116%" height="15" fill="rgb(254,67,22)" fg:x="29408" fg:w="5"/><text x="68.4077%" y="1135.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 (5 samples, 0.01%)</title><rect x="68.1577%" y="1109" width="0.0116%" height="15" fill="rgb(250,35,47)" fg:x="29408" fg:w="5"/><text x="68.4077%" y="1119.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 (5 samples, 0.01%)</title><rect x="68.1577%" y="1093" width="0.0116%" height="15" fill="rgb(226,126,38)" fg:x="29408" fg:w="5"/><text x="68.4077%" y="1103.50"></text></g><g><title>slimp::Rule::concrify (14 samples, 0.03%)</title><rect x="68.1392%" y="1589" width="0.0324%" height="15" fill="rgb(216,138,53)" fg:x="29400" fg:w="14"/><text x="68.3892%" y="1599.50"></text></g><g><title>slimp::rw (11 samples, 0.03%)</title><rect x="68.1461%" y="1573" width="0.0255%" height="15" fill="rgb(246,199,43)" fg:x="29403" fg:w="11"/><text x="68.3961%" y="1583.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (11 samples, 0.03%)</title><rect x="68.1461%" y="1557" width="0.0255%" height="15" fill="rgb(232,125,11)" fg:x="29403" fg:w="11"/><text x="68.3961%" y="1567.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (11 samples, 0.03%)</title><rect x="68.1461%" y="1541" width="0.0255%" height="15" fill="rgb(218,219,45)" fg:x="29403" fg:w="11"/><text x="68.3961%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (11 samples, 0.03%)</title><rect x="68.1461%" y="1525" width="0.0255%" height="15" fill="rgb(216,102,54)" fg:x="29403" fg:w="11"/><text x="68.3961%" y="1535.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (11 samples, 0.03%)</title><rect x="68.1461%" y="1509" width="0.0255%" height="15" fill="rgb(250,228,7)" fg:x="29403" fg:w="11"/><text x="68.3961%" y="1519.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="68.1925%" y="1461" width="0.0162%" height="15" fill="rgb(226,125,25)" fg:x="29423" fg:w="7"/><text x="68.4425%" y="1471.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="68.1855%" y="1509" width="0.0487%" height="15" fill="rgb(224,165,27)" fg:x="29420" fg:w="21"/><text x="68.4355%" y="1519.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="68.1855%" y="1493" width="0.0487%" height="15" fill="rgb(233,86,3)" fg:x="29420" fg:w="21"/><text x="68.4355%" y="1503.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="68.1855%" y="1477" width="0.0487%" height="15" fill="rgb(228,116,20)" fg:x="29420" fg:w="21"/><text x="68.4355%" y="1487.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (11 samples, 0.03%)</title><rect x="68.2087%" y="1461" width="0.0255%" height="15" fill="rgb(209,192,17)" fg:x="29430" fg:w="11"/><text x="68.4587%" y="1471.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="68.2574%" y="1397" width="0.0209%" height="15" fill="rgb(224,88,34)" fg:x="29451" fg:w="9"/><text x="68.5074%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="68.2944%" y="1301" width="0.0162%" height="15" fill="rgb(233,38,6)" fg:x="29467" fg:w="7"/><text x="68.5444%" y="1311.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (21 samples, 0.05%)</title><rect x="68.2782%" y="1397" width="0.0487%" height="15" fill="rgb(212,59,30)" fg:x="29460" fg:w="21"/><text x="68.5282%" y="1407.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (19 samples, 0.04%)</title><rect x="68.2828%" y="1381" width="0.0440%" height="15" fill="rgb(213,80,3)" fg:x="29462" fg:w="19"/><text x="68.5328%" y="1391.50"></text></g><g><title>core::hash::Hasher::write_u32 (17 samples, 0.04%)</title><rect x="68.2875%" y="1365" width="0.0394%" height="15" fill="rgb(251,178,7)" fg:x="29464" fg:w="17"/><text x="68.5375%" y="1375.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="68.2875%" y="1349" width="0.0394%" height="15" fill="rgb(213,154,26)" fg:x="29464" fg:w="17"/><text x="68.5375%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="68.2875%" y="1333" width="0.0394%" height="15" fill="rgb(238,165,49)" fg:x="29464" fg:w="17"/><text x="68.5375%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="68.2875%" y="1317" width="0.0394%" height="15" fill="rgb(248,91,46)" fg:x="29464" fg:w="17"/><text x="68.5375%" y="1327.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="68.3153%" y="1301" width="0.0116%" height="15" fill="rgb(244,21,52)" fg:x="29476" fg:w="5"/><text x="68.5653%" y="1311.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (12 samples, 0.03%)</title><rect x="68.4034%" y="1317" width="0.0278%" height="15" fill="rgb(247,122,20)" fg:x="29514" fg:w="12"/><text x="68.6534%" y="1327.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (7 samples, 0.02%)</title><rect x="68.4150%" y="1301" width="0.0162%" height="15" fill="rgb(218,27,9)" fg:x="29519" fg:w="7"/><text x="68.6650%" y="1311.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (7 samples, 0.02%)</title><rect x="68.4150%" y="1285" width="0.0162%" height="15" fill="rgb(246,7,6)" fg:x="29519" fg:w="7"/><text x="68.6650%" y="1295.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (7 samples, 0.02%)</title><rect x="68.4150%" y="1269" width="0.0162%" height="15" fill="rgb(227,135,54)" fg:x="29519" fg:w="7"/><text x="68.6650%" y="1279.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="68.5007%" y="1205" width="0.0116%" height="15" fill="rgb(247,14,11)" fg:x="29556" fg:w="5"/><text x="68.7507%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (14 samples, 0.03%)</title><rect x="68.4891%" y="1221" width="0.0324%" height="15" fill="rgb(206,149,34)" fg:x="29551" fg:w="14"/><text x="68.7391%" y="1231.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="68.4520%" y="1269" width="0.1506%" height="15" fill="rgb(227,228,4)" fg:x="29535" fg:w="65"/><text x="68.7020%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="68.4520%" y="1253" width="0.1506%" height="15" fill="rgb(238,218,28)" fg:x="29535" fg:w="65"/><text x="68.7020%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="68.4520%" y="1237" width="0.1506%" height="15" fill="rgb(252,86,40)" fg:x="29535" fg:w="65"/><text x="68.7020%" y="1247.50"></text></g><g><title>core::hash::sip::u8to64_le (31 samples, 0.07%)</title><rect x="68.5308%" y="1221" width="0.0718%" height="15" fill="rgb(251,225,11)" fg:x="29569" fg:w="31"/><text x="68.7808%" y="1231.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (75 samples, 0.17%)</title><rect x="68.4312%" y="1317" width="0.1738%" height="15" fill="rgb(206,46,49)" fg:x="29526" fg:w="75"/><text x="68.6812%" y="1327.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (69 samples, 0.16%)</title><rect x="68.4451%" y="1301" width="0.1599%" height="15" fill="rgb(245,128,24)" fg:x="29532" fg:w="69"/><text x="68.6951%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_u32 (66 samples, 0.15%)</title><rect x="68.4520%" y="1285" width="0.1530%" height="15" fill="rgb(219,177,34)" fg:x="29535" fg:w="66"/><text x="68.7020%" y="1295.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="68.7394%" y="1237" width="0.0440%" height="15" fill="rgb(218,60,48)" fg:x="29659" fg:w="19"/><text x="68.9894%" y="1247.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (11 samples, 0.03%)</title><rect x="68.7580%" y="1221" width="0.0255%" height="15" fill="rgb(221,11,5)" fg:x="29667" fg:w="11"/><text x="69.0080%" y="1231.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (11 samples, 0.03%)</title><rect x="68.7580%" y="1205" width="0.0255%" height="15" fill="rgb(220,148,13)" fg:x="29667" fg:w="11"/><text x="69.0080%" y="1215.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (11 samples, 0.03%)</title><rect x="68.7580%" y="1189" width="0.0255%" height="15" fill="rgb(210,16,3)" fg:x="29667" fg:w="11"/><text x="69.0080%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (26 samples, 0.06%)</title><rect x="68.8854%" y="1141" width="0.0603%" height="15" fill="rgb(236,80,2)" fg:x="29722" fg:w="26"/><text x="69.1354%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (13 samples, 0.03%)</title><rect x="68.9156%" y="1125" width="0.0301%" height="15" fill="rgb(239,129,19)" fg:x="29735" fg:w="13"/><text x="69.1656%" y="1135.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (112 samples, 0.26%)</title><rect x="68.7835%" y="1237" width="0.2596%" height="15" fill="rgb(220,106,35)" fg:x="29678" fg:w="112"/><text x="69.0335%" y="1247.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (104 samples, 0.24%)</title><rect x="68.8020%" y="1221" width="0.2410%" height="15" fill="rgb(252,139,45)" fg:x="29686" fg:w="104"/><text x="69.0520%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_u32 (98 samples, 0.23%)</title><rect x="68.8159%" y="1205" width="0.2271%" height="15" fill="rgb(229,8,36)" fg:x="29692" fg:w="98"/><text x="69.0659%" y="1215.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="68.8159%" y="1189" width="0.2271%" height="15" fill="rgb(230,126,33)" fg:x="29692" fg:w="98"/><text x="69.0659%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="68.8159%" y="1173" width="0.2271%" height="15" fill="rgb(239,140,21)" fg:x="29692" fg:w="98"/><text x="69.0659%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (98 samples, 0.23%)</title><rect x="68.8159%" y="1157" width="0.2271%" height="15" fill="rgb(254,104,9)" fg:x="29692" fg:w="98"/><text x="69.0659%" y="1167.50"></text></g><g><title>core::hash::sip::u8to64_le (39 samples, 0.09%)</title><rect x="68.9527%" y="1141" width="0.0904%" height="15" fill="rgb(239,52,14)" fg:x="29751" fg:w="39"/><text x="69.2027%" y="1151.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="69.2192%" y="1157" width="0.0209%" height="15" fill="rgb(208,227,44)" fg:x="29866" fg:w="9"/><text x="69.4692%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="69.3536%" y="1045" width="0.0139%" height="15" fill="rgb(246,18,19)" fg:x="29924" fg:w="6"/><text x="69.6036%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (28 samples, 0.06%)</title><rect x="69.3281%" y="1061" width="0.0649%" height="15" fill="rgb(235,228,25)" fg:x="29913" fg:w="28"/><text x="69.5781%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="69.3675%" y="1045" width="0.0255%" height="15" fill="rgb(240,156,20)" fg:x="29930" fg:w="11"/><text x="69.6175%" y="1055.50"></text></g><g><title>core::cmp::min (10 samples, 0.02%)</title><rect x="69.3930%" y="1061" width="0.0232%" height="15" fill="rgb(224,8,20)" fg:x="29941" fg:w="10"/><text x="69.6430%" y="1071.50"></text></g><g><title>core::cmp::Ord::min (10 samples, 0.02%)</title><rect x="69.3930%" y="1045" width="0.0232%" height="15" fill="rgb(214,12,52)" fg:x="29941" fg:w="10"/><text x="69.6430%" y="1055.50"></text></g><g><title>core::cmp::min_by (10 samples, 0.02%)</title><rect x="69.3930%" y="1029" width="0.0232%" height="15" fill="rgb(211,220,47)" fg:x="29941" fg:w="10"/><text x="69.6430%" y="1039.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="69.2655%" y="1109" width="0.2341%" height="15" fill="rgb(250,173,5)" fg:x="29886" fg:w="101"/><text x="69.5155%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="69.2655%" y="1093" width="0.2341%" height="15" fill="rgb(250,125,52)" fg:x="29886" fg:w="101"/><text x="69.5155%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="69.2655%" y="1077" width="0.2341%" height="15" fill="rgb(209,133,18)" fg:x="29886" fg:w="101"/><text x="69.5155%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="69.4162%" y="1061" width="0.0834%" height="15" fill="rgb(216,173,22)" fg:x="29951" fg:w="36"/><text x="69.6662%" y="1071.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (113 samples, 0.26%)</title><rect x="69.2400%" y="1157" width="0.2619%" height="15" fill="rgb(205,3,22)" fg:x="29875" fg:w="113"/><text x="69.4900%" y="1167.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (105 samples, 0.24%)</title><rect x="69.2586%" y="1141" width="0.2434%" height="15" fill="rgb(248,22,20)" fg:x="29883" fg:w="105"/><text x="69.5086%" y="1151.50"></text></g><g><title>core::hash::Hasher::write_u32 (102 samples, 0.24%)</title><rect x="69.2655%" y="1125" width="0.2364%" height="15" fill="rgb(233,6,29)" fg:x="29886" fg:w="102"/><text x="69.5155%" y="1135.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (10 samples, 0.02%)</title><rect x="69.6317%" y="1077" width="0.0232%" height="15" fill="rgb(240,22,54)" fg:x="30044" fg:w="10"/><text x="69.8817%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="69.7592%" y="965" width="0.0185%" height="15" fill="rgb(231,133,32)" fg:x="30099" fg:w="8"/><text x="70.0092%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (29 samples, 0.07%)</title><rect x="69.7291%" y="981" width="0.0672%" height="15" fill="rgb(248,193,4)" fg:x="30086" fg:w="29"/><text x="69.9791%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="69.7777%" y="965" width="0.0185%" height="15" fill="rgb(211,178,46)" fg:x="30107" fg:w="8"/><text x="70.0277%" y="975.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="69.7963%" y="981" width="0.0116%" height="15" fill="rgb(224,5,42)" fg:x="30115" fg:w="5"/><text x="70.0463%" y="991.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="69.7963%" y="965" width="0.0116%" height="15" fill="rgb(239,176,25)" fg:x="30115" fg:w="5"/><text x="70.0463%" y="975.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="69.7963%" y="949" width="0.0116%" height="15" fill="rgb(245,187,50)" fg:x="30115" fg:w="5"/><text x="70.0463%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="69.6734%" y="1029" width="0.2225%" height="15" fill="rgb(248,24,15)" fg:x="30062" fg:w="96"/><text x="69.9234%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="69.6734%" y="1013" width="0.2225%" height="15" fill="rgb(205,166,13)" fg:x="30062" fg:w="96"/><text x="69.9234%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (96 samples, 0.22%)</title><rect x="69.6734%" y="997" width="0.2225%" height="15" fill="rgb(208,114,23)" fg:x="30062" fg:w="96"/><text x="69.9234%" y="1007.50"></text></g><g><title>core::hash::sip::u8to64_le (38 samples, 0.09%)</title><rect x="69.8079%" y="981" width="0.0881%" height="15" fill="rgb(239,127,18)" fg:x="30120" fg:w="38"/><text x="70.0579%" y="991.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (105 samples, 0.24%)</title><rect x="69.6549%" y="1077" width="0.2434%" height="15" fill="rgb(219,154,28)" fg:x="30054" fg:w="105"/><text x="69.9049%" y="1087.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (98 samples, 0.23%)</title><rect x="69.6711%" y="1061" width="0.2271%" height="15" fill="rgb(225,157,23)" fg:x="30061" fg:w="98"/><text x="69.9211%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_u32 (97 samples, 0.22%)</title><rect x="69.6734%" y="1045" width="0.2248%" height="15" fill="rgb(219,8,6)" fg:x="30062" fg:w="97"/><text x="69.9234%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (19 samples, 0.04%)</title><rect x="70.0744%" y="901" width="0.0440%" height="15" fill="rgb(212,47,6)" fg:x="30235" fg:w="19"/><text x="70.3244%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="70.0906%" y="885" width="0.0278%" height="15" fill="rgb(224,190,4)" fg:x="30242" fg:w="12"/><text x="70.3406%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="70.0350%" y="949" width="0.1298%" height="15" fill="rgb(239,183,29)" fg:x="30218" fg:w="56"/><text x="70.2850%" y="959.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="70.0350%" y="933" width="0.1298%" height="15" fill="rgb(213,57,7)" fg:x="30218" fg:w="56"/><text x="70.2850%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="70.0350%" y="917" width="0.1298%" height="15" fill="rgb(216,148,1)" fg:x="30218" fg:w="56"/><text x="70.2850%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="70.1254%" y="901" width="0.0394%" height="15" fill="rgb(236,182,29)" fg:x="30257" fg:w="17"/><text x="70.3754%" y="911.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (65 samples, 0.15%)</title><rect x="70.0165%" y="997" width="0.1506%" height="15" fill="rgb(244,120,48)" fg:x="30210" fg:w="65"/><text x="70.2665%" y="1007.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (59 samples, 0.14%)</title><rect x="70.0304%" y="981" width="0.1367%" height="15" fill="rgb(206,71,34)" fg:x="30216" fg:w="59"/><text x="70.2804%" y="991.50"></text></g><g><title>core::hash::Hasher::write_u32 (57 samples, 0.13%)</title><rect x="70.0350%" y="965" width="0.1321%" height="15" fill="rgb(242,32,6)" fg:x="30218" fg:w="57"/><text x="70.2850%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (10 samples, 0.02%)</title><rect x="70.2598%" y="821" width="0.0232%" height="15" fill="rgb(241,35,3)" fg:x="30315" fg:w="10"/><text x="70.5098%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="70.2691%" y="805" width="0.0139%" height="15" fill="rgb(222,62,19)" fg:x="30319" fg:w="6"/><text x="70.5191%" y="815.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (34 samples, 0.08%)</title><rect x="70.2250%" y="917" width="0.0788%" height="15" fill="rgb(223,110,41)" fg:x="30300" fg:w="34"/><text x="70.4750%" y="927.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (31 samples, 0.07%)</title><rect x="70.2320%" y="901" width="0.0718%" height="15" fill="rgb(208,224,4)" fg:x="30303" fg:w="31"/><text x="70.4820%" y="911.50"></text></g><g><title>core::hash::Hasher::write_u32 (28 samples, 0.06%)</title><rect x="70.2390%" y="885" width="0.0649%" height="15" fill="rgb(241,137,19)" fg:x="30306" fg:w="28"/><text x="70.4890%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="70.2390%" y="869" width="0.0649%" height="15" fill="rgb(244,24,17)" fg:x="30306" fg:w="28"/><text x="70.4890%" y="879.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="70.2390%" y="853" width="0.0649%" height="15" fill="rgb(245,178,49)" fg:x="30306" fg:w="28"/><text x="70.4890%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (28 samples, 0.06%)</title><rect x="70.2390%" y="837" width="0.0649%" height="15" fill="rgb(219,160,38)" fg:x="30306" fg:w="28"/><text x="70.4890%" y="847.50"></text></g><g><title>core::hash::sip::u8to64_le (8 samples, 0.02%)</title><rect x="70.2853%" y="821" width="0.0185%" height="15" fill="rgb(228,137,14)" fg:x="30326" fg:w="8"/><text x="70.5353%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="70.3664%" y="789" width="0.0185%" height="15" fill="rgb(237,134,11)" fg:x="30361" fg:w="8"/><text x="70.6164%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="70.3548%" y="805" width="0.0417%" height="15" fill="rgb(211,126,44)" fg:x="30356" fg:w="18"/><text x="70.6048%" y="815.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="70.3850%" y="789" width="0.0116%" height="15" fill="rgb(226,171,33)" fg:x="30369" fg:w="5"/><text x="70.6350%" y="799.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="70.3293%" y="853" width="0.0788%" height="15" fill="rgb(253,99,13)" fg:x="30345" fg:w="34"/><text x="70.5793%" y="863.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="70.3293%" y="837" width="0.0788%" height="15" fill="rgb(244,48,7)" fg:x="30345" fg:w="34"/><text x="70.5793%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (34 samples, 0.08%)</title><rect x="70.3293%" y="821" width="0.0788%" height="15" fill="rgb(244,217,54)" fg:x="30345" fg:w="34"/><text x="70.5793%" y="831.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="70.3966%" y="805" width="0.0116%" height="15" fill="rgb(224,15,18)" fg:x="30374" fg:w="5"/><text x="70.6466%" y="815.50"></text></g><g><title>core::hash::Hash::hash_slice (85 samples, 0.20%)</title><rect x="70.2158%" y="949" width="0.1970%" height="15" fill="rgb(244,99,12)" fg:x="30296" fg:w="85"/><text x="70.4658%" y="959.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (85 samples, 0.20%)</title><rect x="70.2158%" y="933" width="0.1970%" height="15" fill="rgb(233,226,8)" fg:x="30296" fg:w="85"/><text x="70.4658%" y="943.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (47 samples, 0.11%)</title><rect x="70.3038%" y="917" width="0.1089%" height="15" fill="rgb(229,211,3)" fg:x="30334" fg:w="47"/><text x="70.5538%" y="927.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (39 samples, 0.09%)</title><rect x="70.3224%" y="901" width="0.0904%" height="15" fill="rgb(216,140,21)" fg:x="30342" fg:w="39"/><text x="70.5724%" y="911.50"></text></g><g><title>core::hash::Hasher::write_isize (39 samples, 0.09%)</title><rect x="70.3224%" y="885" width="0.0904%" height="15" fill="rgb(234,122,30)" fg:x="30342" fg:w="39"/><text x="70.5724%" y="895.50"></text></g><g><title>core::hash::Hasher::write_usize (38 samples, 0.09%)</title><rect x="70.3247%" y="869" width="0.0881%" height="15" fill="rgb(236,25,46)" fg:x="30343" fg:w="38"/><text x="70.5747%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (96 samples, 0.22%)</title><rect x="70.2158%" y="981" width="0.2225%" height="15" fill="rgb(217,52,54)" fg:x="30296" fg:w="96"/><text x="70.4658%" y="991.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (96 samples, 0.22%)</title><rect x="70.2158%" y="965" width="0.2225%" height="15" fill="rgb(222,29,26)" fg:x="30296" fg:w="96"/><text x="70.4658%" y="975.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (11 samples, 0.03%)</title><rect x="70.4128%" y="949" width="0.0255%" height="15" fill="rgb(216,177,29)" fg:x="30381" fg:w="11"/><text x="70.6628%" y="959.50"></text></g><g><title>core::hash::Hasher::write_usize (11 samples, 0.03%)</title><rect x="70.4128%" y="933" width="0.0255%" height="15" fill="rgb(247,136,51)" fg:x="30381" fg:w="11"/><text x="70.6628%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="70.4151%" y="917" width="0.0232%" height="15" fill="rgb(231,47,47)" fg:x="30382" fg:w="10"/><text x="70.6651%" y="927.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="70.4151%" y="901" width="0.0232%" height="15" fill="rgb(211,192,36)" fg:x="30382" fg:w="10"/><text x="70.6651%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="70.4151%" y="885" width="0.0232%" height="15" fill="rgb(229,156,32)" fg:x="30382" fg:w="10"/><text x="70.6651%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (14 samples, 0.03%)</title><rect x="70.5866%" y="869" width="0.0324%" height="15" fill="rgb(248,213,20)" fg:x="30456" fg:w="14"/><text x="70.8366%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (28 samples, 0.06%)</title><rect x="70.5611%" y="885" width="0.0649%" height="15" fill="rgb(217,64,7)" fg:x="30445" fg:w="28"/><text x="70.8111%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="70.4568%" y="933" width="0.1970%" height="15" fill="rgb(232,142,8)" fg:x="30400" fg:w="85"/><text x="70.7068%" y="943.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="70.4568%" y="917" width="0.1970%" height="15" fill="rgb(224,92,44)" fg:x="30400" fg:w="85"/><text x="70.7068%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (85 samples, 0.20%)</title><rect x="70.4568%" y="901" width="0.1970%" height="15" fill="rgb(214,169,17)" fg:x="30400" fg:w="85"/><text x="70.7068%" y="911.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="70.6283%" y="885" width="0.0255%" height="15" fill="rgb(210,59,37)" fg:x="30474" fg:w="11"/><text x="70.8783%" y="895.50"></text></g><g><title>core::hash::Hash::hash_slice (282 samples, 0.65%)</title><rect x="70.0049%" y="1029" width="0.6536%" height="15" fill="rgb(214,116,48)" fg:x="30205" fg:w="282"/><text x="70.2549%" y="1039.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (282 samples, 0.65%)</title><rect x="70.0049%" y="1013" width="0.6536%" height="15" fill="rgb(244,191,6)" fg:x="30205" fg:w="282"/><text x="70.2549%" y="1023.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (212 samples, 0.49%)</title><rect x="70.1671%" y="997" width="0.4913%" height="15" fill="rgb(241,50,52)" fg:x="30275" fg:w="212"/><text x="70.4171%" y="1007.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (95 samples, 0.22%)</title><rect x="70.4383%" y="981" width="0.2202%" height="15" fill="rgb(236,75,39)" fg:x="30392" fg:w="95"/><text x="70.6883%" y="991.50"></text></g><g><title>core::hash::Hasher::write_isize (95 samples, 0.22%)</title><rect x="70.4383%" y="965" width="0.2202%" height="15" fill="rgb(236,99,0)" fg:x="30392" fg:w="95"/><text x="70.6883%" y="975.50"></text></g><g><title>core::hash::Hasher::write_usize (95 samples, 0.22%)</title><rect x="70.4383%" y="949" width="0.2202%" height="15" fill="rgb(207,202,15)" fg:x="30392" fg:w="95"/><text x="70.6883%" y="959.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="70.7002%" y="933" width="0.0139%" height="15" fill="rgb(233,207,14)" fg:x="30505" fg:w="6"/><text x="70.9502%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="70.6886%" y="949" width="0.0301%" height="15" fill="rgb(226,27,51)" fg:x="30500" fg:w="13"/><text x="70.9386%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="70.6584%" y="997" width="0.0718%" height="15" fill="rgb(206,104,42)" fg:x="30487" fg:w="31"/><text x="70.9084%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="70.6584%" y="981" width="0.0718%" height="15" fill="rgb(212,225,4)" fg:x="30487" fg:w="31"/><text x="70.9084%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="70.6584%" y="965" width="0.0718%" height="15" fill="rgb(233,96,42)" fg:x="30487" fg:w="31"/><text x="70.9084%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (314 samples, 0.73%)</title><rect x="70.0049%" y="1061" width="0.7277%" height="15" fill="rgb(229,21,32)" fg:x="30205" fg:w="314"/><text x="70.2549%" y="1071.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (314 samples, 0.73%)</title><rect x="70.0049%" y="1045" width="0.7277%" height="15" fill="rgb(226,216,24)" fg:x="30205" fg:w="314"/><text x="70.2549%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (32 samples, 0.07%)</title><rect x="70.6584%" y="1029" width="0.0742%" height="15" fill="rgb(221,163,17)" fg:x="30487" fg:w="32"/><text x="70.9084%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_usize (32 samples, 0.07%)</title><rect x="70.6584%" y="1013" width="0.0742%" height="15" fill="rgb(216,216,42)" fg:x="30487" fg:w="32"/><text x="70.9084%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (23 samples, 0.05%)</title><rect x="70.9458%" y="949" width="0.0533%" height="15" fill="rgb(240,118,7)" fg:x="30611" fg:w="23"/><text x="71.1958%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (55 samples, 0.13%)</title><rect x="70.9064%" y="965" width="0.1275%" height="15" fill="rgb(221,67,37)" fg:x="30594" fg:w="55"/><text x="71.1564%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (15 samples, 0.03%)</title><rect x="70.9991%" y="949" width="0.0348%" height="15" fill="rgb(241,32,44)" fg:x="30634" fg:w="15"/><text x="71.2491%" y="959.50"></text></g><g><title>core::hash::sip::u8to64_le (35 samples, 0.08%)</title><rect x="71.0385%" y="965" width="0.0811%" height="15" fill="rgb(235,204,43)" fg:x="30651" fg:w="35"/><text x="71.2885%" y="975.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (152 samples, 0.35%)</title><rect x="70.7697%" y="1013" width="0.3523%" height="15" fill="rgb(213,116,10)" fg:x="30535" fg:w="152"/><text x="71.0197%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (152 samples, 0.35%)</title><rect x="70.7697%" y="997" width="0.3523%" height="15" fill="rgb(239,15,48)" fg:x="30535" fg:w="152"/><text x="71.0197%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (152 samples, 0.35%)</title><rect x="70.7697%" y="981" width="0.3523%" height="15" fill="rgb(207,123,36)" fg:x="30535" fg:w="152"/><text x="71.0197%" y="991.50"></text></g><g><title>core::hash::Hash::hash_slice (660 samples, 1.53%)</title><rect x="69.6155%" y="1109" width="1.5297%" height="15" fill="rgb(209,103,30)" fg:x="30037" fg:w="660"/><text x="69.8655%" y="1119.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (660 samples, 1.53%)</title><rect x="69.6155%" y="1093" width="1.5297%" height="15" fill="rgb(238,100,19)" fg:x="30037" fg:w="660"/><text x="69.8655%" y="1103.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (538 samples, 1.25%)</title><rect x="69.8983%" y="1077" width="1.2469%" height="15" fill="rgb(244,30,14)" fg:x="30159" fg:w="538"/><text x="70.1483%" y="1087.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (178 samples, 0.41%)</title><rect x="70.7326%" y="1061" width="0.4125%" height="15" fill="rgb(249,174,6)" fg:x="30519" fg:w="178"/><text x="70.9826%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_isize (178 samples, 0.41%)</title><rect x="70.7326%" y="1045" width="0.4125%" height="15" fill="rgb(235,213,41)" fg:x="30519" fg:w="178"/><text x="70.9826%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_usize (177 samples, 0.41%)</title><rect x="70.7349%" y="1029" width="0.4102%" height="15" fill="rgb(213,118,6)" fg:x="30520" fg:w="177"/><text x="70.9849%" y="1039.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (10 samples, 0.02%)</title><rect x="71.1220%" y="1013" width="0.0232%" height="15" fill="rgb(235,44,51)" fg:x="30687" fg:w="10"/><text x="71.3720%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="71.2170%" y="1013" width="0.0162%" height="15" fill="rgb(217,9,53)" fg:x="30728" fg:w="7"/><text x="71.4670%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (17 samples, 0.04%)</title><rect x="71.2031%" y="1029" width="0.0394%" height="15" fill="rgb(237,172,34)" fg:x="30722" fg:w="17"/><text x="71.4531%" y="1039.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (720 samples, 1.67%)</title><rect x="69.6155%" y="1141" width="1.6687%" height="15" fill="rgb(206,206,11)" fg:x="30037" fg:w="720"/><text x="69.8655%" y="1151.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (720 samples, 1.67%)</title><rect x="69.6155%" y="1125" width="1.6687%" height="15" fill="rgb(214,149,29)" fg:x="30037" fg:w="720"/><text x="69.8655%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (60 samples, 0.14%)</title><rect x="71.1452%" y="1109" width="0.1391%" height="15" fill="rgb(208,123,3)" fg:x="30697" fg:w="60"/><text x="71.3952%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_usize (58 samples, 0.13%)</title><rect x="71.1498%" y="1093" width="0.1344%" height="15" fill="rgb(229,126,4)" fg:x="30699" fg:w="58"/><text x="71.3998%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (54 samples, 0.13%)</title><rect x="71.1591%" y="1077" width="0.1252%" height="15" fill="rgb(222,92,36)" fg:x="30703" fg:w="54"/><text x="71.4091%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (54 samples, 0.13%)</title><rect x="71.1591%" y="1061" width="0.1252%" height="15" fill="rgb(216,39,41)" fg:x="30703" fg:w="54"/><text x="71.4091%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (54 samples, 0.13%)</title><rect x="71.1591%" y="1045" width="0.1252%" height="15" fill="rgb(253,127,28)" fg:x="30703" fg:w="54"/><text x="71.4091%" y="1055.50"></text></g><g><title>core::hash::sip::u8to64_le (14 samples, 0.03%)</title><rect x="71.2518%" y="1029" width="0.0324%" height="15" fill="rgb(249,152,51)" fg:x="30743" fg:w="14"/><text x="71.5018%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (28 samples, 0.06%)</title><rect x="71.5113%" y="1029" width="0.0649%" height="15" fill="rgb(209,123,42)" fg:x="30855" fg:w="28"/><text x="71.7613%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (61 samples, 0.14%)</title><rect x="71.4743%" y="1045" width="0.1414%" height="15" fill="rgb(241,118,22)" fg:x="30839" fg:w="61"/><text x="71.7243%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (17 samples, 0.04%)</title><rect x="71.5762%" y="1029" width="0.0394%" height="15" fill="rgb(208,25,7)" fg:x="30883" fg:w="17"/><text x="71.8262%" y="1039.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="71.6156%" y="1045" width="0.0139%" height="15" fill="rgb(243,144,39)" fg:x="30900" fg:w="6"/><text x="71.8656%" y="1055.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="71.6156%" y="1029" width="0.0139%" height="15" fill="rgb(250,50,5)" fg:x="30900" fg:w="6"/><text x="71.8656%" y="1039.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="71.6156%" y="1013" width="0.0139%" height="15" fill="rgb(207,67,11)" fg:x="30900" fg:w="6"/><text x="71.8656%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (181 samples, 0.42%)</title><rect x="71.3190%" y="1093" width="0.4195%" height="15" fill="rgb(245,204,40)" fg:x="30772" fg:w="181"/><text x="71.5690%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (181 samples, 0.42%)</title><rect x="71.3190%" y="1077" width="0.4195%" height="15" fill="rgb(238,228,24)" fg:x="30772" fg:w="181"/><text x="71.5690%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (181 samples, 0.42%)</title><rect x="71.3190%" y="1061" width="0.4195%" height="15" fill="rgb(217,116,22)" fg:x="30772" fg:w="181"/><text x="71.5690%" y="1071.50"></text></g><g><title>core::hash::sip::u8to64_le (47 samples, 0.11%)</title><rect x="71.6295%" y="1045" width="0.1089%" height="15" fill="rgb(234,98,12)" fg:x="30906" fg:w="47"/><text x="71.8795%" y="1055.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (9 samples, 0.02%)</title><rect x="71.7176%" y="1029" width="0.0209%" height="15" fill="rgb(242,170,50)" fg:x="30944" fg:w="9"/><text x="71.9676%" y="1039.50"></text></g><g><title>core::hash::Hash::hash_slice (1,102 samples, 2.55%)</title><rect x="69.2030%" y="1189" width="2.5541%" height="15" fill="rgb(235,7,5)" fg:x="29859" fg:w="1102"/><text x="69.4530%" y="1199.50">co..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,102 samples, 2.55%)</title><rect x="69.2030%" y="1173" width="2.5541%" height="15" fill="rgb(241,114,28)" fg:x="29859" fg:w="1102"/><text x="69.4530%" y="1183.50">co..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (973 samples, 2.26%)</title><rect x="69.5019%" y="1157" width="2.2551%" height="15" fill="rgb(246,112,42)" fg:x="29988" fg:w="973"/><text x="69.7519%" y="1167.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (204 samples, 0.47%)</title><rect x="71.2842%" y="1141" width="0.4728%" height="15" fill="rgb(248,228,14)" fg:x="30757" fg:w="204"/><text x="71.5342%" y="1151.50"></text></g><g><title>core::hash::Hasher::write_isize (204 samples, 0.47%)</title><rect x="71.2842%" y="1125" width="0.4728%" height="15" fill="rgb(208,133,18)" fg:x="30757" fg:w="204"/><text x="71.5342%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_usize (204 samples, 0.47%)</title><rect x="71.2842%" y="1109" width="0.4728%" height="15" fill="rgb(207,35,49)" fg:x="30757" fg:w="204"/><text x="71.5342%" y="1119.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (8 samples, 0.02%)</title><rect x="71.7385%" y="1093" width="0.0185%" height="15" fill="rgb(205,68,36)" fg:x="30953" fg:w="8"/><text x="71.9885%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="71.8914%" y="1093" width="0.0209%" height="15" fill="rgb(245,62,40)" fg:x="31019" fg:w="9"/><text x="72.1414%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="71.8683%" y="1109" width="0.0556%" height="15" fill="rgb(228,27,24)" fg:x="31009" fg:w="24"/><text x="72.1183%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="71.9123%" y="1093" width="0.0116%" height="15" fill="rgb(253,19,12)" fg:x="31028" fg:w="5"/><text x="72.1623%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (93 samples, 0.22%)</title><rect x="71.7709%" y="1157" width="0.2155%" height="15" fill="rgb(232,28,20)" fg:x="30967" fg:w="93"/><text x="72.0209%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (93 samples, 0.22%)</title><rect x="71.7709%" y="1141" width="0.2155%" height="15" fill="rgb(218,35,51)" fg:x="30967" fg:w="93"/><text x="72.0209%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (93 samples, 0.22%)</title><rect x="71.7709%" y="1125" width="0.2155%" height="15" fill="rgb(212,90,40)" fg:x="30967" fg:w="93"/><text x="72.0209%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (23 samples, 0.05%)</title><rect x="71.9332%" y="1109" width="0.0533%" height="15" fill="rgb(220,172,12)" fg:x="31037" fg:w="23"/><text x="72.1832%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,204 samples, 2.79%)</title><rect x="69.2030%" y="1221" width="2.7905%" height="15" fill="rgb(226,159,20)" fg:x="29859" fg:w="1204"/><text x="69.4530%" y="1231.50">&lt;a..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,204 samples, 2.79%)</title><rect x="69.2030%" y="1205" width="2.7905%" height="15" fill="rgb(234,205,16)" fg:x="29859" fg:w="1204"/><text x="69.4530%" y="1215.50">co..</text></g><g><title>core::hash::Hasher::write_length_prefix (102 samples, 0.24%)</title><rect x="71.7570%" y="1189" width="0.2364%" height="15" fill="rgb(207,9,39)" fg:x="30961" fg:w="102"/><text x="72.0070%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_usize (102 samples, 0.24%)</title><rect x="71.7570%" y="1173" width="0.2364%" height="15" fill="rgb(249,143,15)" fg:x="30961" fg:w="102"/><text x="72.0070%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (31 samples, 0.07%)</title><rect x="72.2066%" y="1109" width="0.0718%" height="15" fill="rgb(253,133,29)" fg:x="31155" fg:w="31"/><text x="72.4566%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (68 samples, 0.16%)</title><rect x="72.1719%" y="1125" width="0.1576%" height="15" fill="rgb(221,187,0)" fg:x="31140" fg:w="68"/><text x="72.4219%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (22 samples, 0.05%)</title><rect x="72.2785%" y="1109" width="0.0510%" height="15" fill="rgb(205,204,26)" fg:x="31186" fg:w="22"/><text x="72.5285%" y="1119.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="72.3295%" y="1125" width="0.0116%" height="15" fill="rgb(224,68,54)" fg:x="31208" fg:w="5"/><text x="72.5795%" y="1135.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="72.3295%" y="1109" width="0.0116%" height="15" fill="rgb(209,67,4)" fg:x="31208" fg:w="5"/><text x="72.5795%" y="1119.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="72.3295%" y="1093" width="0.0116%" height="15" fill="rgb(228,229,18)" fg:x="31208" fg:w="5"/><text x="72.5795%" y="1103.50"></text></g><g><title>core::hash::sip::u8to64_le (46 samples, 0.11%)</title><rect x="72.3411%" y="1125" width="0.1066%" height="15" fill="rgb(231,89,13)" fg:x="31213" fg:w="46"/><text x="72.5911%" y="1135.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="72.4361%" y="1109" width="0.0116%" height="15" fill="rgb(210,182,18)" fg:x="31254" fg:w="5"/><text x="72.6861%" y="1119.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (175 samples, 0.41%)</title><rect x="72.0467%" y="1173" width="0.4056%" height="15" fill="rgb(240,105,2)" fg:x="31086" fg:w="175"/><text x="72.2967%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (175 samples, 0.41%)</title><rect x="72.0467%" y="1157" width="0.4056%" height="15" fill="rgb(207,170,50)" fg:x="31086" fg:w="175"/><text x="72.2967%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (175 samples, 0.41%)</title><rect x="72.0467%" y="1141" width="0.4056%" height="15" fill="rgb(232,133,24)" fg:x="31086" fg:w="175"/><text x="72.2967%" y="1151.50"></text></g><g><title>core::hash::Hash::hash_slice (1,616 samples, 3.75%)</title><rect x="68.7325%" y="1269" width="3.7453%" height="15" fill="rgb(235,166,27)" fg:x="29656" fg:w="1616"/><text x="68.9825%" y="1279.50">core..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,616 samples, 3.75%)</title><rect x="68.7325%" y="1253" width="3.7453%" height="15" fill="rgb(209,19,13)" fg:x="29656" fg:w="1616"/><text x="68.9825%" y="1263.50">core..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,482 samples, 3.43%)</title><rect x="69.0430%" y="1237" width="3.4348%" height="15" fill="rgb(226,79,39)" fg:x="29790" fg:w="1482"/><text x="69.2930%" y="1247.50">&lt;sl..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (209 samples, 0.48%)</title><rect x="71.9934%" y="1221" width="0.4844%" height="15" fill="rgb(222,163,10)" fg:x="31063" fg:w="209"/><text x="72.2434%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_isize (209 samples, 0.48%)</title><rect x="71.9934%" y="1205" width="0.4844%" height="15" fill="rgb(214,44,19)" fg:x="31063" fg:w="209"/><text x="72.2434%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_usize (208 samples, 0.48%)</title><rect x="71.9957%" y="1189" width="0.4821%" height="15" fill="rgb(210,217,13)" fg:x="31064" fg:w="208"/><text x="72.2457%" y="1199.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (11 samples, 0.03%)</title><rect x="72.4523%" y="1173" width="0.0255%" height="15" fill="rgb(237,61,54)" fg:x="31261" fg:w="11"/><text x="72.7023%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="72.5752%" y="1173" width="0.0232%" height="15" fill="rgb(226,184,24)" fg:x="31314" fg:w="10"/><text x="72.8252%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="72.5473%" y="1189" width="0.0579%" height="15" fill="rgb(223,226,4)" fg:x="31302" fg:w="25"/><text x="72.7973%" y="1199.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="72.4894%" y="1237" width="0.1715%" height="15" fill="rgb(210,26,41)" fg:x="31277" fg:w="74"/><text x="72.7394%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="72.4894%" y="1221" width="0.1715%" height="15" fill="rgb(220,221,6)" fg:x="31277" fg:w="74"/><text x="72.7394%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (74 samples, 0.17%)</title><rect x="72.4894%" y="1205" width="0.1715%" height="15" fill="rgb(225,89,49)" fg:x="31277" fg:w="74"/><text x="72.7394%" y="1215.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="72.6122%" y="1189" width="0.0487%" height="15" fill="rgb(218,70,45)" fg:x="31330" fg:w="21"/><text x="72.8622%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,696 samples, 3.93%)</title><rect x="68.7325%" y="1301" width="3.9307%" height="15" fill="rgb(238,166,21)" fg:x="29656" fg:w="1696"/><text x="68.9825%" y="1311.50">&lt;all..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,696 samples, 3.93%)</title><rect x="68.7325%" y="1285" width="3.9307%" height="15" fill="rgb(224,141,44)" fg:x="29656" fg:w="1696"/><text x="68.9825%" y="1295.50">core..</text></g><g><title>core::hash::Hasher::write_length_prefix (80 samples, 0.19%)</title><rect x="72.4778%" y="1269" width="0.1854%" height="15" fill="rgb(230,12,49)" fg:x="31272" fg:w="80"/><text x="72.7278%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_usize (76 samples, 0.18%)</title><rect x="72.4871%" y="1253" width="0.1761%" height="15" fill="rgb(212,174,12)" fg:x="31276" fg:w="76"/><text x="72.7371%" y="1263.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (26 samples, 0.06%)</title><rect x="72.8486%" y="1189" width="0.0603%" height="15" fill="rgb(246,67,9)" fg:x="31432" fg:w="26"/><text x="73.0986%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (42 samples, 0.10%)</title><rect x="72.8301%" y="1205" width="0.0973%" height="15" fill="rgb(239,35,23)" fg:x="31424" fg:w="42"/><text x="73.0801%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="72.9089%" y="1189" width="0.0185%" height="15" fill="rgb(211,167,0)" fg:x="31458" fg:w="8"/><text x="73.1589%" y="1199.50"></text></g><g><title>core::hash::sip::u8to64_le (32 samples, 0.07%)</title><rect x="72.9321%" y="1205" width="0.0742%" height="15" fill="rgb(225,119,45)" fg:x="31468" fg:w="32"/><text x="73.1821%" y="1215.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="72.9946%" y="1189" width="0.0116%" height="15" fill="rgb(210,162,6)" fg:x="31495" fg:w="5"/><text x="73.2446%" y="1199.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="72.6864%" y="1253" width="0.3245%" height="15" fill="rgb(208,118,35)" fg:x="31362" fg:w="140"/><text x="72.9364%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="72.6864%" y="1237" width="0.3245%" height="15" fill="rgb(239,4,53)" fg:x="31362" fg:w="140"/><text x="72.9364%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (140 samples, 0.32%)</title><rect x="72.6864%" y="1221" width="0.3245%" height="15" fill="rgb(213,130,21)" fg:x="31362" fg:w="140"/><text x="72.9364%" y="1231.50"></text></g><g><title>core::hash::Hash::hash_slice (2,005 samples, 4.65%)</title><rect x="68.3871%" y="1349" width="4.6469%" height="15" fill="rgb(235,148,0)" fg:x="29507" fg:w="2005"/><text x="68.6371%" y="1359.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,005 samples, 4.65%)</title><rect x="68.3871%" y="1333" width="4.6469%" height="15" fill="rgb(244,224,18)" fg:x="29507" fg:w="2005"/><text x="68.6371%" y="1343.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,911 samples, 4.43%)</title><rect x="68.6050%" y="1317" width="4.4290%" height="15" fill="rgb(211,214,4)" fg:x="29601" fg:w="1911"/><text x="68.8550%" y="1327.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (160 samples, 0.37%)</title><rect x="72.6632%" y="1301" width="0.3708%" height="15" fill="rgb(206,119,25)" fg:x="31352" fg:w="160"/><text x="72.9132%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_isize (160 samples, 0.37%)</title><rect x="72.6632%" y="1285" width="0.3708%" height="15" fill="rgb(243,93,47)" fg:x="31352" fg:w="160"/><text x="72.9132%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_usize (158 samples, 0.37%)</title><rect x="72.6679%" y="1269" width="0.3662%" height="15" fill="rgb(224,194,6)" fg:x="31354" fg:w="158"/><text x="72.9179%" y="1279.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (10 samples, 0.02%)</title><rect x="73.0109%" y="1253" width="0.0232%" height="15" fill="rgb(243,229,6)" fg:x="31502" fg:w="10"/><text x="73.2609%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="73.0897%" y="1269" width="0.0417%" height="15" fill="rgb(207,23,50)" fg:x="31536" fg:w="18"/><text x="73.3397%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,059 samples, 4.77%)</title><rect x="68.3871%" y="1381" width="4.7721%" height="15" fill="rgb(253,192,32)" fg:x="29507" fg:w="2059"/><text x="68.6371%" y="1391.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,059 samples, 4.77%)</title><rect x="68.3871%" y="1365" width="4.7721%" height="15" fill="rgb(213,21,6)" fg:x="29507" fg:w="2059"/><text x="68.6371%" y="1375.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (54 samples, 0.13%)</title><rect x="73.0340%" y="1349" width="0.1252%" height="15" fill="rgb(243,151,13)" fg:x="31512" fg:w="54"/><text x="73.2840%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_usize (53 samples, 0.12%)</title><rect x="73.0364%" y="1333" width="0.1228%" height="15" fill="rgb(233,165,41)" fg:x="31513" fg:w="53"/><text x="73.2864%" y="1343.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (49 samples, 0.11%)</title><rect x="73.0456%" y="1317" width="0.1136%" height="15" fill="rgb(246,176,45)" fg:x="31517" fg:w="49"/><text x="73.2956%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (49 samples, 0.11%)</title><rect x="73.0456%" y="1301" width="0.1136%" height="15" fill="rgb(217,170,52)" fg:x="31517" fg:w="49"/><text x="73.2956%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (49 samples, 0.11%)</title><rect x="73.0456%" y="1285" width="0.1136%" height="15" fill="rgb(214,203,54)" fg:x="31517" fg:w="49"/><text x="73.2956%" y="1295.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="73.1360%" y="1269" width="0.0232%" height="15" fill="rgb(248,215,49)" fg:x="31556" fg:w="10"/><text x="73.3860%" y="1279.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="73.2797%" y="1269" width="0.0232%" height="15" fill="rgb(208,46,10)" fg:x="31618" fg:w="10"/><text x="73.5297%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (27 samples, 0.06%)</title><rect x="73.2473%" y="1285" width="0.0626%" height="15" fill="rgb(254,5,31)" fg:x="31604" fg:w="27"/><text x="73.4973%" y="1295.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (77 samples, 0.18%)</title><rect x="73.1754%" y="1333" width="0.1785%" height="15" fill="rgb(222,104,33)" fg:x="31573" fg:w="77"/><text x="73.4254%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (77 samples, 0.18%)</title><rect x="73.1754%" y="1317" width="0.1785%" height="15" fill="rgb(248,49,16)" fg:x="31573" fg:w="77"/><text x="73.4254%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (77 samples, 0.18%)</title><rect x="73.1754%" y="1301" width="0.1785%" height="15" fill="rgb(232,198,41)" fg:x="31573" fg:w="77"/><text x="73.4254%" y="1311.50"></text></g><g><title>core::hash::sip::u8to64_le (16 samples, 0.04%)</title><rect x="73.3168%" y="1285" width="0.0371%" height="15" fill="rgb(214,125,3)" fg:x="31634" fg:w="16"/><text x="73.5668%" y="1295.50"></text></g><g><title>core::hash::Hash::hash_slice (2,204 samples, 5.11%)</title><rect x="68.2527%" y="1429" width="5.1081%" height="15" fill="rgb(229,220,28)" fg:x="29449" fg:w="2204"/><text x="68.5027%" y="1439.50">core::..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,204 samples, 5.11%)</title><rect x="68.2527%" y="1413" width="5.1081%" height="15" fill="rgb(222,64,37)" fg:x="29449" fg:w="2204"/><text x="68.5027%" y="1423.50">core::..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,172 samples, 5.03%)</title><rect x="68.3269%" y="1397" width="5.0340%" height="15" fill="rgb(249,184,13)" fg:x="29481" fg:w="2172"/><text x="68.5769%" y="1407.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (87 samples, 0.20%)</title><rect x="73.1592%" y="1381" width="0.2016%" height="15" fill="rgb(252,176,6)" fg:x="31566" fg:w="87"/><text x="73.4092%" y="1391.50"></text></g><g><title>core::hash::Hasher::write_isize (87 samples, 0.20%)</title><rect x="73.1592%" y="1365" width="0.2016%" height="15" fill="rgb(228,153,7)" fg:x="31566" fg:w="87"/><text x="73.4092%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_usize (84 samples, 0.19%)</title><rect x="73.1662%" y="1349" width="0.1947%" height="15" fill="rgb(242,193,5)" fg:x="31569" fg:w="84"/><text x="73.4162%" y="1359.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="73.3747%" y="1397" width="0.0440%" height="15" fill="rgb(232,140,9)" fg:x="31659" fg:w="19"/><text x="73.6247%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="73.3747%" y="1381" width="0.0440%" height="15" fill="rgb(213,222,16)" fg:x="31659" fg:w="19"/><text x="73.6247%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="73.3747%" y="1365" width="0.0440%" height="15" fill="rgb(222,75,50)" fg:x="31659" fg:w="19"/><text x="73.6247%" y="1375.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="73.4026%" y="1349" width="0.0162%" height="15" fill="rgb(205,180,2)" fg:x="31671" fg:w="7"/><text x="73.6526%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,231 samples, 5.17%)</title><rect x="68.2527%" y="1461" width="5.1707%" height="15" fill="rgb(216,34,7)" fg:x="29449" fg:w="2231"/><text x="68.5027%" y="1471.50">&lt;alloc..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,231 samples, 5.17%)</title><rect x="68.2527%" y="1445" width="5.1707%" height="15" fill="rgb(253,16,32)" fg:x="29449" fg:w="2231"/><text x="68.5027%" y="1455.50">core::..</text></g><g><title>core::hash::Hasher::write_length_prefix (27 samples, 0.06%)</title><rect x="73.3608%" y="1429" width="0.0626%" height="15" fill="rgb(208,97,28)" fg:x="31653" fg:w="27"/><text x="73.6108%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_usize (24 samples, 0.06%)</title><rect x="73.3678%" y="1413" width="0.0556%" height="15" fill="rgb(225,92,11)" fg:x="31656" fg:w="24"/><text x="73.6178%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="73.4512%" y="1365" width="0.0116%" height="15" fill="rgb(243,38,12)" fg:x="31692" fg:w="5"/><text x="73.7012%" y="1375.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="73.4257%" y="1413" width="0.0579%" height="15" fill="rgb(208,139,16)" fg:x="31681" fg:w="25"/><text x="73.6757%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="73.4257%" y="1397" width="0.0579%" height="15" fill="rgb(227,24,9)" fg:x="31681" fg:w="25"/><text x="73.6757%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="73.4257%" y="1381" width="0.0579%" height="15" fill="rgb(206,62,11)" fg:x="31681" fg:w="25"/><text x="73.6757%" y="1391.50"></text></g><g><title>core::hash::sip::u8to64_le (8 samples, 0.02%)</title><rect x="73.4651%" y="1365" width="0.0185%" height="15" fill="rgb(228,134,27)" fg:x="31698" fg:w="8"/><text x="73.7151%" y="1375.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,263 samples, 5.24%)</title><rect x="68.2434%" y="1477" width="5.2449%" height="15" fill="rgb(205,55,33)" fg:x="29445" fg:w="2263"/><text x="68.4934%" y="1487.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (28 samples, 0.06%)</title><rect x="73.4234%" y="1461" width="0.0649%" height="15" fill="rgb(243,75,43)" fg:x="31680" fg:w="28"/><text x="73.6734%" y="1471.50"></text></g><g><title>core::hash::Hasher::write_isize (28 samples, 0.06%)</title><rect x="73.4234%" y="1445" width="0.0649%" height="15" fill="rgb(223,27,42)" fg:x="31680" fg:w="28"/><text x="73.6734%" y="1455.50"></text></g><g><title>core::hash::Hasher::write_usize (28 samples, 0.06%)</title><rect x="73.4234%" y="1429" width="0.0649%" height="15" fill="rgb(232,189,33)" fg:x="31680" fg:w="28"/><text x="73.6734%" y="1439.50"></text></g><g><title>hashbrown::map::make_insert_hash (2,296 samples, 5.32%)</title><rect x="68.1832%" y="1541" width="5.3213%" height="15" fill="rgb(210,9,39)" fg:x="29419" fg:w="2296"/><text x="68.4332%" y="1551.50">hashbro..</text></g><g><title>core::hash::BuildHasher::hash_one (2,296 samples, 5.32%)</title><rect x="68.1832%" y="1525" width="5.3213%" height="15" fill="rgb(242,85,26)" fg:x="29419" fg:w="2296"/><text x="68.4332%" y="1535.50">core::h..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,272 samples, 5.27%)</title><rect x="68.2388%" y="1509" width="5.2657%" height="15" fill="rgb(248,44,4)" fg:x="29443" fg:w="2272"/><text x="68.4888%" y="1519.50">core::..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,272 samples, 5.27%)</title><rect x="68.2388%" y="1493" width="5.2657%" height="15" fill="rgb(250,96,46)" fg:x="29443" fg:w="2272"/><text x="68.4888%" y="1503.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (7 samples, 0.02%)</title><rect x="73.4883%" y="1477" width="0.0162%" height="15" fill="rgb(229,116,26)" fg:x="31708" fg:w="7"/><text x="73.7383%" y="1487.50"></text></g><g><title>core::hash::Hasher::write_isize (7 samples, 0.02%)</title><rect x="73.4883%" y="1461" width="0.0162%" height="15" fill="rgb(246,94,34)" fg:x="31708" fg:w="7"/><text x="73.7383%" y="1471.50"></text></g><g><title>core::hash::Hasher::write_usize (7 samples, 0.02%)</title><rect x="73.4883%" y="1445" width="0.0162%" height="15" fill="rgb(251,73,21)" fg:x="31708" fg:w="7"/><text x="73.7383%" y="1455.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="73.4906%" y="1429" width="0.0139%" height="15" fill="rgb(254,121,25)" fg:x="31709" fg:w="6"/><text x="73.7406%" y="1439.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="73.4906%" y="1413" width="0.0139%" height="15" fill="rgb(215,161,49)" fg:x="31709" fg:w="6"/><text x="73.7406%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="73.4906%" y="1397" width="0.0139%" height="15" fill="rgb(221,43,13)" fg:x="31709" fg:w="6"/><text x="73.7406%" y="1407.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find::{{closure}} (54 samples, 0.13%)</title><rect x="73.5208%" y="1493" width="0.1252%" height="15" fill="rgb(249,5,37)" fg:x="31722" fg:w="54"/><text x="73.7708%" y="1503.50"></text></g><g><title>hashbrown::map::equivalent_key::{{closure}} (54 samples, 0.13%)</title><rect x="73.5208%" y="1477" width="0.1252%" height="15" fill="rgb(226,25,44)" fg:x="31722" fg:w="54"/><text x="73.7708%" y="1487.50"></text></g><g><title>&lt;slimp::Rule as core::cmp::PartialEq&gt;::eq (54 samples, 0.13%)</title><rect x="73.5208%" y="1461" width="0.1252%" height="15" fill="rgb(238,189,16)" fg:x="31722" fg:w="54"/><text x="73.7708%" y="1471.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (39 samples, 0.09%)</title><rect x="73.5555%" y="1445" width="0.0904%" height="15" fill="rgb(251,186,8)" fg:x="31737" fg:w="39"/><text x="73.8055%" y="1455.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (35 samples, 0.08%)</title><rect x="73.5648%" y="1429" width="0.0811%" height="15" fill="rgb(254,34,31)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1439.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (35 samples, 0.08%)</title><rect x="73.5648%" y="1413" width="0.0811%" height="15" fill="rgb(225,215,27)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1423.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (35 samples, 0.08%)</title><rect x="73.5648%" y="1397" width="0.0811%" height="15" fill="rgb(221,192,48)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1407.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (35 samples, 0.08%)</title><rect x="73.5648%" y="1381" width="0.0811%" height="15" fill="rgb(219,137,20)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (35 samples, 0.08%)</title><rect x="73.5648%" y="1365" width="0.0811%" height="15" fill="rgb(219,84,11)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1375.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (35 samples, 0.08%)</title><rect x="73.5648%" y="1349" width="0.0811%" height="15" fill="rgb(224,10,23)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1359.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (35 samples, 0.08%)</title><rect x="73.5648%" y="1333" width="0.0811%" height="15" fill="rgb(248,22,39)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1343.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (35 samples, 0.08%)</title><rect x="73.5648%" y="1317" width="0.0811%" height="15" fill="rgb(212,154,20)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1327.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (35 samples, 0.08%)</title><rect x="73.5648%" y="1301" width="0.0811%" height="15" fill="rgb(236,199,50)" fg:x="31741" fg:w="35"/><text x="73.8148%" y="1311.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (23 samples, 0.05%)</title><rect x="73.5926%" y="1285" width="0.0533%" height="15" fill="rgb(211,9,17)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1295.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (23 samples, 0.05%)</title><rect x="73.5926%" y="1269" width="0.0533%" height="15" fill="rgb(243,216,36)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1279.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (23 samples, 0.05%)</title><rect x="73.5926%" y="1253" width="0.0533%" height="15" fill="rgb(250,2,10)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (23 samples, 0.05%)</title><rect x="73.5926%" y="1237" width="0.0533%" height="15" fill="rgb(226,50,48)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (23 samples, 0.05%)</title><rect x="73.5926%" y="1221" width="0.0533%" height="15" fill="rgb(243,81,16)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (23 samples, 0.05%)</title><rect x="73.5926%" y="1205" width="0.0533%" height="15" fill="rgb(250,14,2)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1215.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (23 samples, 0.05%)</title><rect x="73.5926%" y="1189" width="0.0533%" height="15" fill="rgb(233,135,29)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1199.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (23 samples, 0.05%)</title><rect x="73.5926%" y="1173" width="0.0533%" height="15" fill="rgb(224,64,43)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1183.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (23 samples, 0.05%)</title><rect x="73.5926%" y="1157" width="0.0533%" height="15" fill="rgb(238,84,13)" fg:x="31753" fg:w="23"/><text x="73.8426%" y="1167.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (14 samples, 0.03%)</title><rect x="73.6135%" y="1141" width="0.0324%" height="15" fill="rgb(253,48,26)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1151.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (14 samples, 0.03%)</title><rect x="73.6135%" y="1125" width="0.0324%" height="15" fill="rgb(205,223,31)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1135.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (14 samples, 0.03%)</title><rect x="73.6135%" y="1109" width="0.0324%" height="15" fill="rgb(221,41,32)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (14 samples, 0.03%)</title><rect x="73.6135%" y="1093" width="0.0324%" height="15" fill="rgb(213,158,31)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (14 samples, 0.03%)</title><rect x="73.6135%" y="1077" width="0.0324%" height="15" fill="rgb(245,126,43)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1087.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (14 samples, 0.03%)</title><rect x="73.6135%" y="1061" width="0.0324%" height="15" fill="rgb(227,7,22)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1071.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (14 samples, 0.03%)</title><rect x="73.6135%" y="1045" width="0.0324%" height="15" fill="rgb(252,90,44)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1055.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (14 samples, 0.03%)</title><rect x="73.6135%" y="1029" width="0.0324%" height="15" fill="rgb(253,91,0)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1039.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (14 samples, 0.03%)</title><rect x="73.6135%" y="1013" width="0.0324%" height="15" fill="rgb(252,175,49)" fg:x="31762" fg:w="14"/><text x="73.8635%" y="1023.50"></text></g><g><title>hashbrown::raw::h2 (5 samples, 0.01%)</title><rect x="73.6459%" y="1493" width="0.0116%" height="15" fill="rgb(246,150,1)" fg:x="31776" fg:w="5"/><text x="73.8959%" y="1503.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (12 samples, 0.03%)</title><rect x="73.6575%" y="1493" width="0.0278%" height="15" fill="rgb(241,192,25)" fg:x="31781" fg:w="12"/><text x="73.9075%" y="1503.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (12 samples, 0.03%)</title><rect x="73.6575%" y="1477" width="0.0278%" height="15" fill="rgb(239,187,11)" fg:x="31781" fg:w="12"/><text x="73.9075%" y="1487.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (12 samples, 0.03%)</title><rect x="73.6575%" y="1461" width="0.0278%" height="15" fill="rgb(218,202,51)" fg:x="31781" fg:w="12"/><text x="73.9075%" y="1471.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (88 samples, 0.20%)</title><rect x="73.5045%" y="1541" width="0.2040%" height="15" fill="rgb(225,176,8)" fg:x="31715" fg:w="88"/><text x="73.7545%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (88 samples, 0.20%)</title><rect x="73.5045%" y="1525" width="0.2040%" height="15" fill="rgb(219,122,41)" fg:x="31715" fg:w="88"/><text x="73.7545%" y="1535.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_inner (85 samples, 0.20%)</title><rect x="73.5115%" y="1509" width="0.1970%" height="15" fill="rgb(248,140,20)" fg:x="31718" fg:w="85"/><text x="73.7615%" y="1519.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty (6 samples, 0.01%)</title><rect x="73.6946%" y="1493" width="0.0139%" height="15" fill="rgb(245,41,37)" fg:x="31797" fg:w="6"/><text x="73.9446%" y="1503.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_byte (6 samples, 0.01%)</title><rect x="73.6946%" y="1477" width="0.0139%" height="15" fill="rgb(235,82,39)" fg:x="31797" fg:w="6"/><text x="73.9446%" y="1487.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (6 samples, 0.01%)</title><rect x="73.6946%" y="1461" width="0.0139%" height="15" fill="rgb(230,108,42)" fg:x="31797" fg:w="6"/><text x="73.9446%" y="1471.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::write (8 samples, 0.02%)</title><rect x="73.7131%" y="1525" width="0.0185%" height="15" fill="rgb(215,150,50)" fg:x="31805" fg:w="8"/><text x="73.9631%" y="1535.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (8 samples, 0.02%)</title><rect x="73.7131%" y="1509" width="0.0185%" height="15" fill="rgb(233,212,5)" fg:x="31805" fg:w="8"/><text x="73.9631%" y="1519.50"></text></g><g><title>core::ptr::write (8 samples, 0.02%)</title><rect x="73.7131%" y="1493" width="0.0185%" height="15" fill="rgb(245,80,22)" fg:x="31805" fg:w="8"/><text x="73.9631%" y="1503.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="73.7363%" y="1461" width="0.0116%" height="15" fill="rgb(238,129,16)" fg:x="31815" fg:w="5"/><text x="73.9863%" y="1471.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="73.7641%" y="1349" width="0.0116%" height="15" fill="rgb(240,19,0)" fg:x="31827" fg:w="5"/><text x="74.0141%" y="1359.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="73.7827%" y="1333" width="0.0116%" height="15" fill="rgb(232,42,35)" fg:x="31835" fg:w="5"/><text x="74.0327%" y="1343.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="73.7595%" y="1397" width="0.0417%" height="15" fill="rgb(223,130,24)" fg:x="31825" fg:w="18"/><text x="74.0095%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="73.7595%" y="1381" width="0.0417%" height="15" fill="rgb(237,16,22)" fg:x="31825" fg:w="18"/><text x="74.0095%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (18 samples, 0.04%)</title><rect x="73.7595%" y="1365" width="0.0417%" height="15" fill="rgb(248,192,20)" fg:x="31825" fg:w="18"/><text x="74.0095%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (11 samples, 0.03%)</title><rect x="73.7757%" y="1349" width="0.0255%" height="15" fill="rgb(233,167,2)" fg:x="31832" fg:w="11"/><text x="74.0257%" y="1359.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (5 samples, 0.01%)</title><rect x="73.8012%" y="1397" width="0.0116%" height="15" fill="rgb(252,71,44)" fg:x="31843" fg:w="5"/><text x="74.0512%" y="1407.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="73.8336%" y="1285" width="0.0255%" height="15" fill="rgb(238,37,47)" fg:x="31857" fg:w="11"/><text x="74.0836%" y="1295.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (18 samples, 0.04%)</title><rect x="73.8591%" y="1285" width="0.0417%" height="15" fill="rgb(214,202,54)" fg:x="31868" fg:w="18"/><text x="74.1091%" y="1295.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (18 samples, 0.04%)</title><rect x="73.8591%" y="1269" width="0.0417%" height="15" fill="rgb(254,165,40)" fg:x="31868" fg:w="18"/><text x="74.1091%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_u32 (17 samples, 0.04%)</title><rect x="73.8615%" y="1253" width="0.0394%" height="15" fill="rgb(246,173,38)" fg:x="31869" fg:w="17"/><text x="74.1115%" y="1263.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="73.8615%" y="1237" width="0.0394%" height="15" fill="rgb(215,3,27)" fg:x="31869" fg:w="17"/><text x="74.1115%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="73.8615%" y="1221" width="0.0394%" height="15" fill="rgb(239,169,51)" fg:x="31869" fg:w="17"/><text x="74.1115%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (17 samples, 0.04%)</title><rect x="73.8615%" y="1205" width="0.0394%" height="15" fill="rgb(212,5,25)" fg:x="31869" fg:w="17"/><text x="74.1115%" y="1215.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="73.8846%" y="1189" width="0.0162%" height="15" fill="rgb(243,45,17)" fg:x="31879" fg:w="7"/><text x="74.1346%" y="1199.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (15 samples, 0.03%)</title><rect x="74.1442%" y="1205" width="0.0348%" height="15" fill="rgb(242,97,9)" fg:x="31991" fg:w="15"/><text x="74.3942%" y="1215.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (6 samples, 0.01%)</title><rect x="74.1651%" y="1189" width="0.0139%" height="15" fill="rgb(228,71,31)" fg:x="32000" fg:w="6"/><text x="74.4151%" y="1199.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (6 samples, 0.01%)</title><rect x="74.1651%" y="1173" width="0.0139%" height="15" fill="rgb(252,184,16)" fg:x="32000" fg:w="6"/><text x="74.4151%" y="1183.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (6 samples, 0.01%)</title><rect x="74.1651%" y="1157" width="0.0139%" height="15" fill="rgb(236,169,46)" fg:x="32000" fg:w="6"/><text x="74.4151%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="74.2578%" y="1109" width="0.0301%" height="15" fill="rgb(207,17,47)" fg:x="32040" fg:w="13"/><text x="74.5078%" y="1119.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (71 samples, 0.16%)</title><rect x="74.1790%" y="1205" width="0.1646%" height="15" fill="rgb(206,201,28)" fg:x="32006" fg:w="71"/><text x="74.4290%" y="1215.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (65 samples, 0.15%)</title><rect x="74.1929%" y="1189" width="0.1506%" height="15" fill="rgb(224,184,23)" fg:x="32012" fg:w="65"/><text x="74.4429%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_u32 (60 samples, 0.14%)</title><rect x="74.2045%" y="1173" width="0.1391%" height="15" fill="rgb(208,139,48)" fg:x="32017" fg:w="60"/><text x="74.4545%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="74.2045%" y="1157" width="0.1391%" height="15" fill="rgb(208,130,10)" fg:x="32017" fg:w="60"/><text x="74.4545%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="74.2045%" y="1141" width="0.1391%" height="15" fill="rgb(211,213,45)" fg:x="32017" fg:w="60"/><text x="74.4545%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="74.2045%" y="1125" width="0.1391%" height="15" fill="rgb(235,100,30)" fg:x="32017" fg:w="60"/><text x="74.4545%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="74.2949%" y="1109" width="0.0487%" height="15" fill="rgb(206,144,31)" fg:x="32056" fg:w="21"/><text x="74.5449%" y="1119.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (16 samples, 0.04%)</title><rect x="74.6077%" y="1125" width="0.0371%" height="15" fill="rgb(224,200,26)" fg:x="32191" fg:w="16"/><text x="74.8577%" y="1135.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (5 samples, 0.01%)</title><rect x="74.6332%" y="1109" width="0.0116%" height="15" fill="rgb(247,104,53)" fg:x="32202" fg:w="5"/><text x="74.8832%" y="1119.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (5 samples, 0.01%)</title><rect x="74.6332%" y="1093" width="0.0116%" height="15" fill="rgb(220,14,17)" fg:x="32202" fg:w="5"/><text x="74.8832%" y="1103.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (5 samples, 0.01%)</title><rect x="74.6332%" y="1077" width="0.0116%" height="15" fill="rgb(230,140,40)" fg:x="32202" fg:w="5"/><text x="74.8832%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="74.7074%" y="1013" width="0.0162%" height="15" fill="rgb(229,2,41)" fg:x="32234" fg:w="7"/><text x="74.9574%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (22 samples, 0.05%)</title><rect x="74.6958%" y="1029" width="0.0510%" height="15" fill="rgb(232,89,16)" fg:x="32229" fg:w="22"/><text x="74.9458%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="74.7236%" y="1013" width="0.0232%" height="15" fill="rgb(247,59,52)" fg:x="32241" fg:w="10"/><text x="74.9736%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="74.6610%" y="1077" width="0.1900%" height="15" fill="rgb(226,110,21)" fg:x="32214" fg:w="82"/><text x="74.9110%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="74.6610%" y="1061" width="0.1900%" height="15" fill="rgb(224,176,43)" fg:x="32214" fg:w="82"/><text x="74.9110%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="74.6610%" y="1045" width="0.1900%" height="15" fill="rgb(221,73,6)" fg:x="32214" fg:w="82"/><text x="74.9110%" y="1055.50"></text></g><g><title>core::hash::sip::u8to64_le (41 samples, 0.10%)</title><rect x="74.7561%" y="1029" width="0.0950%" height="15" fill="rgb(232,78,19)" fg:x="32255" fg:w="41"/><text x="75.0061%" y="1039.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (90 samples, 0.21%)</title><rect x="74.6448%" y="1125" width="0.2086%" height="15" fill="rgb(233,112,48)" fg:x="32207" fg:w="90"/><text x="74.8948%" y="1135.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (84 samples, 0.19%)</title><rect x="74.6587%" y="1109" width="0.1947%" height="15" fill="rgb(243,131,47)" fg:x="32213" fg:w="84"/><text x="74.9087%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_u32 (83 samples, 0.19%)</title><rect x="74.6610%" y="1093" width="0.1924%" height="15" fill="rgb(226,51,1)" fg:x="32214" fg:w="83"/><text x="74.9110%" y="1103.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="75.1686%" y="1045" width="0.0440%" height="15" fill="rgb(247,58,7)" fg:x="32433" fg:w="19"/><text x="75.4186%" y="1055.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (7 samples, 0.02%)</title><rect x="75.1964%" y="1029" width="0.0162%" height="15" fill="rgb(209,7,32)" fg:x="32445" fg:w="7"/><text x="75.4464%" y="1039.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (7 samples, 0.02%)</title><rect x="75.1964%" y="1013" width="0.0162%" height="15" fill="rgb(209,39,41)" fg:x="32445" fg:w="7"/><text x="75.4464%" y="1023.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (7 samples, 0.02%)</title><rect x="75.1964%" y="997" width="0.0162%" height="15" fill="rgb(226,182,46)" fg:x="32445" fg:w="7"/><text x="75.4464%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="75.3795%" y="933" width="0.0139%" height="15" fill="rgb(230,219,10)" fg:x="32524" fg:w="6"/><text x="75.6295%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (28 samples, 0.06%)</title><rect x="75.3517%" y="949" width="0.0649%" height="15" fill="rgb(227,175,30)" fg:x="32512" fg:w="28"/><text x="75.6017%" y="959.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="75.3934%" y="933" width="0.0232%" height="15" fill="rgb(217,2,50)" fg:x="32530" fg:w="10"/><text x="75.6434%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (119 samples, 0.28%)</title><rect x="75.2474%" y="997" width="0.2758%" height="15" fill="rgb(229,160,0)" fg:x="32467" fg:w="119"/><text x="75.4974%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (119 samples, 0.28%)</title><rect x="75.2474%" y="981" width="0.2758%" height="15" fill="rgb(207,78,37)" fg:x="32467" fg:w="119"/><text x="75.4974%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (119 samples, 0.28%)</title><rect x="75.2474%" y="965" width="0.2758%" height="15" fill="rgb(225,57,0)" fg:x="32467" fg:w="119"/><text x="75.4974%" y="975.50"></text></g><g><title>core::hash::sip::u8to64_le (44 samples, 0.10%)</title><rect x="75.4212%" y="949" width="0.1020%" height="15" fill="rgb(232,154,2)" fg:x="32542" fg:w="44"/><text x="75.6712%" y="959.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (135 samples, 0.31%)</title><rect x="75.2126%" y="1045" width="0.3129%" height="15" fill="rgb(241,212,25)" fg:x="32452" fg:w="135"/><text x="75.4626%" y="1055.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (128 samples, 0.30%)</title><rect x="75.2289%" y="1029" width="0.2967%" height="15" fill="rgb(226,69,20)" fg:x="32459" fg:w="128"/><text x="75.4789%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_u32 (120 samples, 0.28%)</title><rect x="75.2474%" y="1013" width="0.2781%" height="15" fill="rgb(247,184,54)" fg:x="32467" fg:w="120"/><text x="75.4974%" y="1023.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (12 samples, 0.03%)</title><rect x="75.8129%" y="965" width="0.0278%" height="15" fill="rgb(210,145,0)" fg:x="32711" fg:w="12"/><text x="76.0629%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="75.9265%" y="853" width="0.0139%" height="15" fill="rgb(253,82,12)" fg:x="32760" fg:w="6"/><text x="76.1765%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (27 samples, 0.06%)</title><rect x="75.9010%" y="869" width="0.0626%" height="15" fill="rgb(245,42,11)" fg:x="32749" fg:w="27"/><text x="76.1510%" y="879.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="75.9404%" y="853" width="0.0232%" height="15" fill="rgb(219,147,32)" fg:x="32766" fg:w="10"/><text x="76.1904%" y="863.50"></text></g><g><title>core::cmp::min (10 samples, 0.02%)</title><rect x="75.9636%" y="869" width="0.0232%" height="15" fill="rgb(246,12,7)" fg:x="32776" fg:w="10"/><text x="76.2136%" y="879.50"></text></g><g><title>core::cmp::Ord::min (10 samples, 0.02%)</title><rect x="75.9636%" y="853" width="0.0232%" height="15" fill="rgb(243,50,9)" fg:x="32776" fg:w="10"/><text x="76.2136%" y="863.50"></text></g><g><title>core::cmp::min_by (10 samples, 0.02%)</title><rect x="75.9636%" y="837" width="0.0232%" height="15" fill="rgb(219,149,6)" fg:x="32776" fg:w="10"/><text x="76.2136%" y="847.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (95 samples, 0.22%)</title><rect x="75.8570%" y="917" width="0.2202%" height="15" fill="rgb(241,51,42)" fg:x="32730" fg:w="95"/><text x="76.1070%" y="927.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (95 samples, 0.22%)</title><rect x="75.8570%" y="901" width="0.2202%" height="15" fill="rgb(226,128,27)" fg:x="32730" fg:w="95"/><text x="76.1070%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (95 samples, 0.22%)</title><rect x="75.8570%" y="885" width="0.2202%" height="15" fill="rgb(244,144,4)" fg:x="32730" fg:w="95"/><text x="76.1070%" y="895.50"></text></g><g><title>core::hash::sip::u8to64_le (39 samples, 0.09%)</title><rect x="75.9867%" y="869" width="0.0904%" height="15" fill="rgb(221,4,13)" fg:x="32786" fg:w="39"/><text x="76.2367%" y="879.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (103 samples, 0.24%)</title><rect x="75.8407%" y="965" width="0.2387%" height="15" fill="rgb(208,170,28)" fg:x="32723" fg:w="103"/><text x="76.0907%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (100 samples, 0.23%)</title><rect x="75.8477%" y="949" width="0.2318%" height="15" fill="rgb(226,131,13)" fg:x="32726" fg:w="100"/><text x="76.0977%" y="959.50"></text></g><g><title>core::hash::Hasher::write_u32 (96 samples, 0.22%)</title><rect x="75.8570%" y="933" width="0.2225%" height="15" fill="rgb(215,72,41)" fg:x="32730" fg:w="96"/><text x="76.1070%" y="943.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.01%)</title><rect x="76.2834%" y="885" width="0.0139%" height="15" fill="rgb(243,108,20)" fg:x="32914" fg:w="6"/><text x="76.5334%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="76.3622%" y="773" width="0.0139%" height="15" fill="rgb(230,189,17)" fg:x="32948" fg:w="6"/><text x="76.6122%" y="783.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (14 samples, 0.03%)</title><rect x="76.3553%" y="789" width="0.0324%" height="15" fill="rgb(220,50,17)" fg:x="32945" fg:w="14"/><text x="76.6053%" y="799.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="76.3761%" y="773" width="0.0116%" height="15" fill="rgb(248,152,48)" fg:x="32954" fg:w="5"/><text x="76.6261%" y="783.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="76.3182%" y="837" width="0.1414%" height="15" fill="rgb(244,91,11)" fg:x="32929" fg:w="61"/><text x="76.5682%" y="847.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="76.3182%" y="821" width="0.1414%" height="15" fill="rgb(220,157,5)" fg:x="32929" fg:w="61"/><text x="76.5682%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="76.3182%" y="805" width="0.1414%" height="15" fill="rgb(253,137,8)" fg:x="32929" fg:w="61"/><text x="76.5682%" y="815.50"></text></g><g><title>core::hash::sip::u8to64_le (28 samples, 0.06%)</title><rect x="76.3947%" y="789" width="0.0649%" height="15" fill="rgb(217,137,51)" fg:x="32962" fg:w="28"/><text x="76.6447%" y="799.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (72 samples, 0.17%)</title><rect x="76.2973%" y="885" width="0.1669%" height="15" fill="rgb(218,209,53)" fg:x="32920" fg:w="72"/><text x="76.5473%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (66 samples, 0.15%)</title><rect x="76.3112%" y="869" width="0.1530%" height="15" fill="rgb(249,137,25)" fg:x="32926" fg:w="66"/><text x="76.5612%" y="879.50"></text></g><g><title>core::hash::Hasher::write_u32 (63 samples, 0.15%)</title><rect x="76.3182%" y="853" width="0.1460%" height="15" fill="rgb(239,155,26)" fg:x="32929" fg:w="63"/><text x="76.5682%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (13 samples, 0.03%)</title><rect x="76.5824%" y="709" width="0.0301%" height="15" fill="rgb(227,85,46)" fg:x="33043" fg:w="13"/><text x="76.8324%" y="719.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (38 samples, 0.09%)</title><rect x="76.5569%" y="805" width="0.0881%" height="15" fill="rgb(251,107,43)" fg:x="33032" fg:w="38"/><text x="76.8069%" y="815.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (36 samples, 0.08%)</title><rect x="76.5615%" y="789" width="0.0834%" height="15" fill="rgb(234,170,33)" fg:x="33034" fg:w="36"/><text x="76.8115%" y="799.50"></text></g><g><title>core::hash::Hasher::write_u32 (33 samples, 0.08%)</title><rect x="76.5685%" y="773" width="0.0765%" height="15" fill="rgb(206,29,35)" fg:x="33037" fg:w="33"/><text x="76.8185%" y="783.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="76.5685%" y="757" width="0.0765%" height="15" fill="rgb(227,138,25)" fg:x="33037" fg:w="33"/><text x="76.8185%" y="767.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="76.5685%" y="741" width="0.0765%" height="15" fill="rgb(249,131,35)" fg:x="33037" fg:w="33"/><text x="76.8185%" y="751.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="76.5685%" y="725" width="0.0765%" height="15" fill="rgb(239,6,40)" fg:x="33037" fg:w="33"/><text x="76.8185%" y="735.50"></text></g><g><title>core::hash::sip::u8to64_le (14 samples, 0.03%)</title><rect x="76.6125%" y="709" width="0.0324%" height="15" fill="rgb(246,136,47)" fg:x="33056" fg:w="14"/><text x="76.8625%" y="719.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (11 samples, 0.03%)</title><rect x="76.7145%" y="677" width="0.0255%" height="15" fill="rgb(253,58,26)" fg:x="33100" fg:w="11"/><text x="76.9645%" y="687.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="76.6983%" y="693" width="0.0556%" height="15" fill="rgb(237,141,10)" fg:x="33093" fg:w="24"/><text x="76.9483%" y="703.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="76.7400%" y="677" width="0.0139%" height="15" fill="rgb(234,156,12)" fg:x="33111" fg:w="6"/><text x="76.9900%" y="687.50"></text></g><g><title>core::hash::sip::u8to64_le (12 samples, 0.03%)</title><rect x="76.7539%" y="693" width="0.0278%" height="15" fill="rgb(243,224,36)" fg:x="33117" fg:w="12"/><text x="77.0039%" y="703.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (46 samples, 0.11%)</title><rect x="76.6797%" y="741" width="0.1066%" height="15" fill="rgb(205,229,51)" fg:x="33085" fg:w="46"/><text x="76.9297%" y="751.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (46 samples, 0.11%)</title><rect x="76.6797%" y="725" width="0.1066%" height="15" fill="rgb(223,189,4)" fg:x="33085" fg:w="46"/><text x="76.9297%" y="735.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (46 samples, 0.11%)</title><rect x="76.6797%" y="709" width="0.1066%" height="15" fill="rgb(249,167,54)" fg:x="33085" fg:w="46"/><text x="76.9297%" y="719.50"></text></g><g><title>core::hash::Hash::hash_slice (106 samples, 0.25%)</title><rect x="76.5453%" y="837" width="0.2457%" height="15" fill="rgb(218,34,28)" fg:x="33027" fg:w="106"/><text x="76.7953%" y="847.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (106 samples, 0.25%)</title><rect x="76.5453%" y="821" width="0.2457%" height="15" fill="rgb(232,109,42)" fg:x="33027" fg:w="106"/><text x="76.7953%" y="831.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (63 samples, 0.15%)</title><rect x="76.6450%" y="805" width="0.1460%" height="15" fill="rgb(248,214,46)" fg:x="33070" fg:w="63"/><text x="76.8950%" y="815.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (51 samples, 0.12%)</title><rect x="76.6728%" y="789" width="0.1182%" height="15" fill="rgb(244,216,40)" fg:x="33082" fg:w="51"/><text x="76.9228%" y="799.50"></text></g><g><title>core::hash::Hasher::write_isize (51 samples, 0.12%)</title><rect x="76.6728%" y="773" width="0.1182%" height="15" fill="rgb(231,226,31)" fg:x="33082" fg:w="51"/><text x="76.9228%" y="783.50"></text></g><g><title>core::hash::Hasher::write_usize (51 samples, 0.12%)</title><rect x="76.6728%" y="757" width="0.1182%" height="15" fill="rgb(238,38,43)" fg:x="33082" fg:w="51"/><text x="76.9228%" y="767.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="76.7979%" y="805" width="0.0278%" height="15" fill="rgb(208,88,43)" fg:x="33136" fg:w="12"/><text x="77.0479%" y="815.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="76.7979%" y="789" width="0.0278%" height="15" fill="rgb(205,136,37)" fg:x="33136" fg:w="12"/><text x="77.0479%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="76.7979%" y="773" width="0.0278%" height="15" fill="rgb(237,34,14)" fg:x="33136" fg:w="12"/><text x="77.0479%" y="783.50"></text></g><g><title>core::hash::sip::u8to64_le (6 samples, 0.01%)</title><rect x="76.8118%" y="757" width="0.0139%" height="15" fill="rgb(236,193,44)" fg:x="33142" fg:w="6"/><text x="77.0618%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (123 samples, 0.29%)</title><rect x="76.5453%" y="869" width="0.2851%" height="15" fill="rgb(231,48,10)" fg:x="33027" fg:w="123"/><text x="76.7953%" y="879.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (123 samples, 0.29%)</title><rect x="76.5453%" y="853" width="0.2851%" height="15" fill="rgb(213,141,34)" fg:x="33027" fg:w="123"/><text x="76.7953%" y="863.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (17 samples, 0.04%)</title><rect x="76.7910%" y="837" width="0.0394%" height="15" fill="rgb(249,130,34)" fg:x="33133" fg:w="17"/><text x="77.0410%" y="847.50"></text></g><g><title>core::hash::Hasher::write_usize (15 samples, 0.03%)</title><rect x="76.7956%" y="821" width="0.0348%" height="15" fill="rgb(219,42,41)" fg:x="33135" fg:w="15"/><text x="77.0456%" y="831.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (25 samples, 0.06%)</title><rect x="76.9323%" y="757" width="0.0579%" height="15" fill="rgb(224,100,54)" fg:x="33194" fg:w="25"/><text x="77.1823%" y="767.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (48 samples, 0.11%)</title><rect x="76.9045%" y="773" width="0.1112%" height="15" fill="rgb(229,200,27)" fg:x="33182" fg:w="48"/><text x="77.1545%" y="783.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (11 samples, 0.03%)</title><rect x="76.9903%" y="757" width="0.0255%" height="15" fill="rgb(217,118,10)" fg:x="33219" fg:w="11"/><text x="77.2403%" y="767.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="76.8396%" y="821" width="0.2341%" height="15" fill="rgb(206,22,3)" fg:x="33154" fg:w="101"/><text x="77.0896%" y="831.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="76.8396%" y="805" width="0.2341%" height="15" fill="rgb(232,163,46)" fg:x="33154" fg:w="101"/><text x="77.0896%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (101 samples, 0.23%)</title><rect x="76.8396%" y="789" width="0.2341%" height="15" fill="rgb(206,95,13)" fg:x="33154" fg:w="101"/><text x="77.0896%" y="799.50"></text></g><g><title>core::hash::sip::u8to64_le (25 samples, 0.06%)</title><rect x="77.0158%" y="773" width="0.0579%" height="15" fill="rgb(253,154,18)" fg:x="33230" fg:w="25"/><text x="77.2658%" y="783.50"></text></g><g><title>core::hash::Hash::hash_slice (349 samples, 0.81%)</title><rect x="76.2741%" y="917" width="0.8089%" height="15" fill="rgb(219,32,23)" fg:x="32910" fg:w="349"/><text x="76.5241%" y="927.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (349 samples, 0.81%)</title><rect x="76.2741%" y="901" width="0.8089%" height="15" fill="rgb(230,191,45)" fg:x="32910" fg:w="349"/><text x="76.5241%" y="911.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (267 samples, 0.62%)</title><rect x="76.4642%" y="885" width="0.6188%" height="15" fill="rgb(229,64,36)" fg:x="32992" fg:w="267"/><text x="76.7142%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (109 samples, 0.25%)</title><rect x="76.8304%" y="869" width="0.2526%" height="15" fill="rgb(205,129,25)" fg:x="33150" fg:w="109"/><text x="77.0804%" y="879.50"></text></g><g><title>core::hash::Hasher::write_isize (109 samples, 0.25%)</title><rect x="76.8304%" y="853" width="0.2526%" height="15" fill="rgb(254,112,7)" fg:x="33150" fg:w="109"/><text x="77.0804%" y="863.50"></text></g><g><title>core::hash::Hasher::write_usize (109 samples, 0.25%)</title><rect x="76.8304%" y="837" width="0.2526%" height="15" fill="rgb(226,53,48)" fg:x="33150" fg:w="109"/><text x="77.0804%" y="847.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="77.1224%" y="821" width="0.0116%" height="15" fill="rgb(214,153,38)" fg:x="33276" fg:w="5"/><text x="77.3724%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (10 samples, 0.02%)</title><rect x="77.1201%" y="837" width="0.0232%" height="15" fill="rgb(243,101,7)" fg:x="33275" fg:w="10"/><text x="77.3701%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (390 samples, 0.90%)</title><rect x="76.2741%" y="949" width="0.9039%" height="15" fill="rgb(240,140,22)" fg:x="32910" fg:w="390"/><text x="76.5241%" y="959.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (390 samples, 0.90%)</title><rect x="76.2741%" y="933" width="0.9039%" height="15" fill="rgb(235,114,2)" fg:x="32910" fg:w="390"/><text x="76.5241%" y="943.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (41 samples, 0.10%)</title><rect x="77.0830%" y="917" width="0.0950%" height="15" fill="rgb(242,59,12)" fg:x="33259" fg:w="41"/><text x="77.3330%" y="927.50"></text></g><g><title>core::hash::Hasher::write_usize (40 samples, 0.09%)</title><rect x="77.0853%" y="901" width="0.0927%" height="15" fill="rgb(252,134,9)" fg:x="33260" fg:w="40"/><text x="77.3353%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="77.0923%" y="885" width="0.0858%" height="15" fill="rgb(236,4,44)" fg:x="33263" fg:w="37"/><text x="77.3423%" y="895.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="77.0923%" y="869" width="0.0858%" height="15" fill="rgb(254,172,41)" fg:x="33263" fg:w="37"/><text x="77.3423%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (37 samples, 0.09%)</title><rect x="77.0923%" y="853" width="0.0858%" height="15" fill="rgb(244,63,20)" fg:x="33263" fg:w="37"/><text x="77.3423%" y="863.50"></text></g><g><title>core::hash::sip::u8to64_le (13 samples, 0.03%)</title><rect x="77.1479%" y="837" width="0.0301%" height="15" fill="rgb(250,73,31)" fg:x="33287" fg:w="13"/><text x="77.3979%" y="847.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (22 samples, 0.05%)</title><rect x="77.4167%" y="837" width="0.0510%" height="15" fill="rgb(241,38,36)" fg:x="33403" fg:w="22"/><text x="77.6667%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (56 samples, 0.13%)</title><rect x="77.3750%" y="853" width="0.1298%" height="15" fill="rgb(245,211,2)" fg:x="33385" fg:w="56"/><text x="77.6250%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (16 samples, 0.04%)</title><rect x="77.4677%" y="837" width="0.0371%" height="15" fill="rgb(206,120,28)" fg:x="33425" fg:w="16"/><text x="77.7177%" y="847.50"></text></g><g><title>core::cmp::min (7 samples, 0.02%)</title><rect x="77.5048%" y="853" width="0.0162%" height="15" fill="rgb(211,59,34)" fg:x="33441" fg:w="7"/><text x="77.7548%" y="863.50"></text></g><g><title>core::cmp::Ord::min (7 samples, 0.02%)</title><rect x="77.5048%" y="837" width="0.0162%" height="15" fill="rgb(233,168,5)" fg:x="33441" fg:w="7"/><text x="77.7548%" y="847.50"></text></g><g><title>core::cmp::min_by (7 samples, 0.02%)</title><rect x="77.5048%" y="821" width="0.0162%" height="15" fill="rgb(234,33,13)" fg:x="33441" fg:w="7"/><text x="77.7548%" y="831.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (171 samples, 0.40%)</title><rect x="77.2081%" y="901" width="0.3963%" height="15" fill="rgb(231,150,26)" fg:x="33313" fg:w="171"/><text x="77.4581%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (171 samples, 0.40%)</title><rect x="77.2081%" y="885" width="0.3963%" height="15" fill="rgb(217,191,4)" fg:x="33313" fg:w="171"/><text x="77.4581%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (171 samples, 0.40%)</title><rect x="77.2081%" y="869" width="0.3963%" height="15" fill="rgb(246,198,38)" fg:x="33313" fg:w="171"/><text x="77.4581%" y="879.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="77.5210%" y="853" width="0.0834%" height="15" fill="rgb(245,64,37)" fg:x="33448" fg:w="36"/><text x="77.7710%" y="863.50"></text></g><g><title>core::hash::Hash::hash_slice (796 samples, 1.84%)</title><rect x="75.7874%" y="997" width="1.8449%" height="15" fill="rgb(250,30,36)" fg:x="32700" fg:w="796"/><text x="76.0374%" y="1007.50">c..</text></g><g><title>core::hash::Hash::hash_slice::rt (796 samples, 1.84%)</title><rect x="75.7874%" y="981" width="1.8449%" height="15" fill="rgb(217,86,53)" fg:x="32700" fg:w="796"/><text x="76.0374%" y="991.50">c..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (670 samples, 1.55%)</title><rect x="76.0794%" y="965" width="1.5528%" height="15" fill="rgb(228,157,16)" fg:x="32826" fg:w="670"/><text x="76.3294%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (196 samples, 0.45%)</title><rect x="77.1780%" y="949" width="0.4543%" height="15" fill="rgb(217,59,31)" fg:x="33300" fg:w="196"/><text x="77.4280%" y="959.50"></text></g><g><title>core::hash::Hasher::write_isize (196 samples, 0.45%)</title><rect x="77.1780%" y="933" width="0.4543%" height="15" fill="rgb(237,138,41)" fg:x="33300" fg:w="196"/><text x="77.4280%" y="943.50"></text></g><g><title>core::hash::Hasher::write_usize (194 samples, 0.45%)</title><rect x="77.1827%" y="917" width="0.4496%" height="15" fill="rgb(227,91,49)" fg:x="33302" fg:w="194"/><text x="77.4327%" y="927.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (12 samples, 0.03%)</title><rect x="77.6045%" y="901" width="0.0278%" height="15" fill="rgb(247,21,44)" fg:x="33484" fg:w="12"/><text x="77.8545%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="77.7204%" y="901" width="0.0162%" height="15" fill="rgb(219,210,51)" fg:x="33534" fg:w="7"/><text x="77.9704%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (23 samples, 0.05%)</title><rect x="77.6972%" y="917" width="0.0533%" height="15" fill="rgb(209,140,6)" fg:x="33524" fg:w="23"/><text x="77.9472%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="77.7366%" y="901" width="0.0139%" height="15" fill="rgb(221,188,24)" fg:x="33541" fg:w="6"/><text x="77.9866%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="77.6439%" y="965" width="0.1506%" height="15" fill="rgb(232,154,20)" fg:x="33501" fg:w="65"/><text x="77.8939%" y="975.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="77.6439%" y="949" width="0.1506%" height="15" fill="rgb(244,137,50)" fg:x="33501" fg:w="65"/><text x="77.8939%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (65 samples, 0.15%)</title><rect x="77.6439%" y="933" width="0.1506%" height="15" fill="rgb(225,185,43)" fg:x="33501" fg:w="65"/><text x="77.8939%" y="943.50"></text></g><g><title>core::hash::sip::u8to64_le (16 samples, 0.04%)</title><rect x="77.7574%" y="917" width="0.0371%" height="15" fill="rgb(213,205,38)" fg:x="33550" fg:w="16"/><text x="78.0074%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (867 samples, 2.01%)</title><rect x="75.7874%" y="1029" width="2.0094%" height="15" fill="rgb(236,73,12)" fg:x="32700" fg:w="867"/><text x="76.0374%" y="1039.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (867 samples, 2.01%)</title><rect x="75.7874%" y="1013" width="2.0094%" height="15" fill="rgb(235,219,13)" fg:x="32700" fg:w="867"/><text x="76.0374%" y="1023.50">c..</text></g><g><title>core::hash::Hasher::write_length_prefix (71 samples, 0.16%)</title><rect x="77.6323%" y="997" width="0.1646%" height="15" fill="rgb(218,59,36)" fg:x="33496" fg:w="71"/><text x="77.8823%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_usize (67 samples, 0.16%)</title><rect x="77.6416%" y="981" width="0.1553%" height="15" fill="rgb(205,110,39)" fg:x="33500" fg:w="67"/><text x="77.8916%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (35 samples, 0.08%)</title><rect x="78.0193%" y="917" width="0.0811%" height="15" fill="rgb(218,206,42)" fg:x="33663" fg:w="35"/><text x="78.2693%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (77 samples, 0.18%)</title><rect x="77.9753%" y="933" width="0.1785%" height="15" fill="rgb(248,125,24)" fg:x="33644" fg:w="77"/><text x="78.2253%" y="943.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (23 samples, 0.05%)</title><rect x="78.1004%" y="917" width="0.0533%" height="15" fill="rgb(242,28,27)" fg:x="33698" fg:w="23"/><text x="78.3504%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (46 samples, 0.11%)</title><rect x="78.1584%" y="933" width="0.1066%" height="15" fill="rgb(216,228,15)" fg:x="33723" fg:w="46"/><text x="78.4084%" y="943.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="78.2534%" y="917" width="0.0116%" height="15" fill="rgb(235,116,46)" fg:x="33764" fg:w="5"/><text x="78.5034%" y="927.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (190 samples, 0.44%)</title><rect x="77.8270%" y="981" width="0.4404%" height="15" fill="rgb(224,18,32)" fg:x="33580" fg:w="190"/><text x="78.0770%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (190 samples, 0.44%)</title><rect x="77.8270%" y="965" width="0.4404%" height="15" fill="rgb(252,5,12)" fg:x="33580" fg:w="190"/><text x="78.0770%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (190 samples, 0.44%)</title><rect x="77.8270%" y="949" width="0.4404%" height="15" fill="rgb(251,36,5)" fg:x="33580" fg:w="190"/><text x="78.0770%" y="959.50"></text></g><g><title>core::hash::Hash::hash_slice (1,359 samples, 3.15%)</title><rect x="75.1524%" y="1077" width="3.1497%" height="15" fill="rgb(217,53,14)" fg:x="32426" fg:w="1359"/><text x="75.4024%" y="1087.50">cor..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,359 samples, 3.15%)</title><rect x="75.1524%" y="1061" width="3.1497%" height="15" fill="rgb(215,86,45)" fg:x="32426" fg:w="1359"/><text x="75.4024%" y="1071.50">cor..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,198 samples, 2.78%)</title><rect x="75.5255%" y="1045" width="2.7766%" height="15" fill="rgb(242,169,11)" fg:x="32587" fg:w="1198"/><text x="75.7755%" y="1055.50">&lt;s..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (218 samples, 0.51%)</title><rect x="77.7968%" y="1029" width="0.5052%" height="15" fill="rgb(211,213,45)" fg:x="33567" fg:w="218"/><text x="78.0468%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_isize (218 samples, 0.51%)</title><rect x="77.7968%" y="1013" width="0.5052%" height="15" fill="rgb(205,88,11)" fg:x="33567" fg:w="218"/><text x="78.0468%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_usize (216 samples, 0.50%)</title><rect x="77.8015%" y="997" width="0.5006%" height="15" fill="rgb(252,69,26)" fg:x="33569" fg:w="216"/><text x="78.0515%" y="1007.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (15 samples, 0.03%)</title><rect x="78.2673%" y="981" width="0.0348%" height="15" fill="rgb(246,123,37)" fg:x="33770" fg:w="15"/><text x="78.5173%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="78.4110%" y="981" width="0.0209%" height="15" fill="rgb(212,205,5)" fg:x="33832" fg:w="9"/><text x="78.6610%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="78.3902%" y="997" width="0.0556%" height="15" fill="rgb(253,148,0)" fg:x="33823" fg:w="24"/><text x="78.6402%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (6 samples, 0.01%)</title><rect x="78.4319%" y="981" width="0.0139%" height="15" fill="rgb(239,22,4)" fg:x="33841" fg:w="6"/><text x="78.6819%" y="991.50"></text></g><g><title>core::cmp::min (10 samples, 0.02%)</title><rect x="78.4458%" y="997" width="0.0232%" height="15" fill="rgb(226,26,53)" fg:x="33847" fg:w="10"/><text x="78.6958%" y="1007.50"></text></g><g><title>core::cmp::Ord::min (10 samples, 0.02%)</title><rect x="78.4458%" y="981" width="0.0232%" height="15" fill="rgb(225,229,45)" fg:x="33847" fg:w="10"/><text x="78.6958%" y="991.50"></text></g><g><title>core::cmp::min_by (10 samples, 0.02%)</title><rect x="78.4458%" y="965" width="0.0232%" height="15" fill="rgb(220,60,37)" fg:x="33847" fg:w="10"/><text x="78.6958%" y="975.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (78 samples, 0.18%)</title><rect x="78.3183%" y="1045" width="0.1808%" height="15" fill="rgb(217,180,35)" fg:x="33792" fg:w="78"/><text x="78.5683%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (78 samples, 0.18%)</title><rect x="78.3183%" y="1029" width="0.1808%" height="15" fill="rgb(229,7,53)" fg:x="33792" fg:w="78"/><text x="78.5683%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (78 samples, 0.18%)</title><rect x="78.3183%" y="1013" width="0.1808%" height="15" fill="rgb(254,137,3)" fg:x="33792" fg:w="78"/><text x="78.5683%" y="1023.50"></text></g><g><title>core::hash::sip::u8to64_le (13 samples, 0.03%)</title><rect x="78.4690%" y="997" width="0.0301%" height="15" fill="rgb(215,140,41)" fg:x="33857" fg:w="13"/><text x="78.7190%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,446 samples, 3.35%)</title><rect x="75.1524%" y="1109" width="3.3513%" height="15" fill="rgb(250,80,15)" fg:x="32426" fg:w="1446"/><text x="75.4024%" y="1119.50">&lt;al..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,446 samples, 3.35%)</title><rect x="75.1524%" y="1093" width="3.3513%" height="15" fill="rgb(252,191,6)" fg:x="32426" fg:w="1446"/><text x="75.4024%" y="1103.50">cor..</text></g><g><title>core::hash::Hasher::write_length_prefix (87 samples, 0.20%)</title><rect x="78.3021%" y="1077" width="0.2016%" height="15" fill="rgb(246,217,18)" fg:x="33785" fg:w="87"/><text x="78.5521%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_usize (83 samples, 0.19%)</title><rect x="78.3114%" y="1061" width="0.1924%" height="15" fill="rgb(223,93,7)" fg:x="33789" fg:w="83"/><text x="78.5614%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (42 samples, 0.10%)</title><rect x="78.7169%" y="997" width="0.0973%" height="15" fill="rgb(225,55,52)" fg:x="33964" fg:w="42"/><text x="78.9669%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (82 samples, 0.19%)</title><rect x="78.6660%" y="1013" width="0.1900%" height="15" fill="rgb(240,31,24)" fg:x="33942" fg:w="82"/><text x="78.9160%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (18 samples, 0.04%)</title><rect x="78.8143%" y="997" width="0.0417%" height="15" fill="rgb(205,56,52)" fg:x="34006" fg:w="18"/><text x="79.0643%" y="1007.50"></text></g><g><title>core::cmp::min (7 samples, 0.02%)</title><rect x="78.8560%" y="1013" width="0.0162%" height="15" fill="rgb(246,146,12)" fg:x="34024" fg:w="7"/><text x="79.1060%" y="1023.50"></text></g><g><title>core::cmp::Ord::min (7 samples, 0.02%)</title><rect x="78.8560%" y="997" width="0.0162%" height="15" fill="rgb(239,84,36)" fg:x="34024" fg:w="7"/><text x="79.1060%" y="1007.50"></text></g><g><title>core::cmp::min_by (7 samples, 0.02%)</title><rect x="78.8560%" y="981" width="0.0162%" height="15" fill="rgb(207,41,40)" fg:x="34024" fg:w="7"/><text x="79.1060%" y="991.50"></text></g><g><title>core::hash::sip::u8to64_le (41 samples, 0.10%)</title><rect x="78.8722%" y="1013" width="0.0950%" height="15" fill="rgb(241,179,25)" fg:x="34031" fg:w="41"/><text x="79.1222%" y="1023.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="78.9557%" y="997" width="0.0116%" height="15" fill="rgb(210,0,34)" fg:x="34067" fg:w="5"/><text x="79.2057%" y="1007.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="78.5385%" y="1061" width="0.4357%" height="15" fill="rgb(225,217,29)" fg:x="33887" fg:w="188"/><text x="78.7885%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="78.5385%" y="1045" width="0.4357%" height="15" fill="rgb(216,191,38)" fg:x="33887" fg:w="188"/><text x="78.7885%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (188 samples, 0.44%)</title><rect x="78.5385%" y="1029" width="0.4357%" height="15" fill="rgb(232,140,52)" fg:x="33887" fg:w="188"/><text x="78.7885%" y="1039.50"></text></g><g><title>core::hash::Hash::hash_slice (1,905 samples, 4.42%)</title><rect x="74.5846%" y="1157" width="4.4151%" height="15" fill="rgb(223,158,51)" fg:x="32181" fg:w="1905"/><text x="74.8346%" y="1167.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,905 samples, 4.42%)</title><rect x="74.5846%" y="1141" width="4.4151%" height="15" fill="rgb(235,29,51)" fg:x="32181" fg:w="1905"/><text x="74.8346%" y="1151.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,789 samples, 4.15%)</title><rect x="74.8534%" y="1125" width="4.1463%" height="15" fill="rgb(215,181,18)" fg:x="32297" fg:w="1789"/><text x="75.1034%" y="1135.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (214 samples, 0.50%)</title><rect x="78.5037%" y="1109" width="0.4960%" height="15" fill="rgb(227,125,34)" fg:x="33872" fg:w="214"/><text x="78.7537%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_isize (214 samples, 0.50%)</title><rect x="78.5037%" y="1093" width="0.4960%" height="15" fill="rgb(230,197,49)" fg:x="33872" fg:w="214"/><text x="78.7537%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_usize (213 samples, 0.49%)</title><rect x="78.5060%" y="1077" width="0.4937%" height="15" fill="rgb(239,141,16)" fg:x="33873" fg:w="213"/><text x="78.7560%" y="1087.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (11 samples, 0.03%)</title><rect x="78.9742%" y="1061" width="0.0255%" height="15" fill="rgb(225,105,43)" fg:x="34075" fg:w="11"/><text x="79.2242%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="79.0692%" y="1061" width="0.0139%" height="15" fill="rgb(214,131,14)" fg:x="34116" fg:w="6"/><text x="79.3192%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (16 samples, 0.04%)</title><rect x="79.0576%" y="1077" width="0.0371%" height="15" fill="rgb(229,177,11)" fg:x="34111" fg:w="16"/><text x="79.3076%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="79.0831%" y="1061" width="0.0116%" height="15" fill="rgb(231,180,14)" fg:x="34122" fg:w="5"/><text x="79.3331%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="79.0090%" y="1125" width="0.1298%" height="15" fill="rgb(232,88,2)" fg:x="34090" fg:w="56"/><text x="79.2590%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="79.0090%" y="1109" width="0.1298%" height="15" fill="rgb(205,220,8)" fg:x="34090" fg:w="56"/><text x="79.2590%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (56 samples, 0.13%)</title><rect x="79.0090%" y="1093" width="0.1298%" height="15" fill="rgb(225,23,53)" fg:x="34090" fg:w="56"/><text x="79.2590%" y="1103.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="79.0994%" y="1077" width="0.0394%" height="15" fill="rgb(213,62,29)" fg:x="34129" fg:w="17"/><text x="79.3494%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,966 samples, 4.56%)</title><rect x="74.5846%" y="1189" width="4.5565%" height="15" fill="rgb(227,75,7)" fg:x="32181" fg:w="1966"/><text x="74.8346%" y="1199.50">&lt;allo..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,966 samples, 4.56%)</title><rect x="74.5846%" y="1173" width="4.5565%" height="15" fill="rgb(207,105,14)" fg:x="32181" fg:w="1966"/><text x="74.8346%" y="1183.50">core:..</text></g><g><title>core::hash::Hasher::write_length_prefix (61 samples, 0.14%)</title><rect x="78.9997%" y="1157" width="0.1414%" height="15" fill="rgb(245,62,29)" fg:x="34086" fg:w="61"/><text x="79.2497%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_usize (60 samples, 0.14%)</title><rect x="79.0020%" y="1141" width="0.1391%" height="15" fill="rgb(236,202,4)" fg:x="34087" fg:w="60"/><text x="79.2520%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (21 samples, 0.05%)</title><rect x="79.3358%" y="1077" width="0.0487%" height="15" fill="rgb(250,67,1)" fg:x="34231" fg:w="21"/><text x="79.5858%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (58 samples, 0.13%)</title><rect x="79.2894%" y="1093" width="0.1344%" height="15" fill="rgb(253,115,44)" fg:x="34211" fg:w="58"/><text x="79.5394%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (17 samples, 0.04%)</title><rect x="79.3844%" y="1077" width="0.0394%" height="15" fill="rgb(251,139,18)" fg:x="34252" fg:w="17"/><text x="79.6344%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (45 samples, 0.10%)</title><rect x="79.4308%" y="1093" width="0.1043%" height="15" fill="rgb(218,22,32)" fg:x="34272" fg:w="45"/><text x="79.6808%" y="1103.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (8 samples, 0.02%)</title><rect x="79.5165%" y="1077" width="0.0185%" height="15" fill="rgb(243,53,5)" fg:x="34309" fg:w="8"/><text x="79.7665%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (164 samples, 0.38%)</title><rect x="79.1573%" y="1141" width="0.3801%" height="15" fill="rgb(227,56,16)" fg:x="34154" fg:w="164"/><text x="79.4073%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (164 samples, 0.38%)</title><rect x="79.1573%" y="1125" width="0.3801%" height="15" fill="rgb(245,53,0)" fg:x="34154" fg:w="164"/><text x="79.4073%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (164 samples, 0.38%)</title><rect x="79.1573%" y="1109" width="0.3801%" height="15" fill="rgb(216,170,35)" fg:x="34154" fg:w="164"/><text x="79.4073%" y="1119.50"></text></g><g><title>core::hash::Hash::hash_slice (2,338 samples, 5.42%)</title><rect x="74.1349%" y="1237" width="5.4187%" height="15" fill="rgb(211,200,8)" fg:x="31987" fg:w="2338"/><text x="74.3849%" y="1247.50">core::h..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,338 samples, 5.42%)</title><rect x="74.1349%" y="1221" width="5.4187%" height="15" fill="rgb(228,204,44)" fg:x="31987" fg:w="2338"/><text x="74.3849%" y="1231.50">core::h..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,248 samples, 5.21%)</title><rect x="74.3435%" y="1205" width="5.2101%" height="15" fill="rgb(214,121,17)" fg:x="32077" fg:w="2248"/><text x="74.5935%" y="1215.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (178 samples, 0.41%)</title><rect x="79.1411%" y="1189" width="0.4125%" height="15" fill="rgb(233,64,38)" fg:x="34147" fg:w="178"/><text x="79.3911%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_isize (178 samples, 0.41%)</title><rect x="79.1411%" y="1173" width="0.4125%" height="15" fill="rgb(253,54,19)" fg:x="34147" fg:w="178"/><text x="79.3911%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_usize (175 samples, 0.41%)</title><rect x="79.1480%" y="1157" width="0.4056%" height="15" fill="rgb(253,94,18)" fg:x="34150" fg:w="175"/><text x="79.3980%" y="1167.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (7 samples, 0.02%)</title><rect x="79.5374%" y="1141" width="0.0162%" height="15" fill="rgb(227,57,52)" fg:x="34318" fg:w="7"/><text x="79.7874%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="79.6185%" y="1141" width="0.0209%" height="15" fill="rgb(230,228,50)" fg:x="34353" fg:w="9"/><text x="79.8685%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (20 samples, 0.05%)</title><rect x="79.6023%" y="1157" width="0.0464%" height="15" fill="rgb(217,205,27)" fg:x="34346" fg:w="20"/><text x="79.8523%" y="1167.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (50 samples, 0.12%)</title><rect x="79.5629%" y="1205" width="0.1159%" height="15" fill="rgb(252,71,50)" fg:x="34329" fg:w="50"/><text x="79.8129%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (50 samples, 0.12%)</title><rect x="79.5629%" y="1189" width="0.1159%" height="15" fill="rgb(209,86,4)" fg:x="34329" fg:w="50"/><text x="79.8129%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (50 samples, 0.12%)</title><rect x="79.5629%" y="1173" width="0.1159%" height="15" fill="rgb(229,94,0)" fg:x="34329" fg:w="50"/><text x="79.8129%" y="1183.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="79.6533%" y="1157" width="0.0255%" height="15" fill="rgb(252,223,21)" fg:x="34368" fg:w="11"/><text x="79.9033%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,393 samples, 5.55%)</title><rect x="74.1349%" y="1269" width="5.5462%" height="15" fill="rgb(230,210,4)" fg:x="31987" fg:w="2393"/><text x="74.3849%" y="1279.50">&lt;alloc:..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,393 samples, 5.55%)</title><rect x="74.1349%" y="1253" width="5.5462%" height="15" fill="rgb(240,149,38)" fg:x="31987" fg:w="2393"/><text x="74.3849%" y="1263.50">core::h..</text></g><g><title>core::hash::Hasher::write_length_prefix (55 samples, 0.13%)</title><rect x="79.5536%" y="1237" width="0.1275%" height="15" fill="rgb(254,105,20)" fg:x="34325" fg:w="55"/><text x="79.8036%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_usize (53 samples, 0.12%)</title><rect x="79.5583%" y="1221" width="0.1228%" height="15" fill="rgb(253,87,46)" fg:x="34327" fg:w="53"/><text x="79.8083%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="79.7692%" y="1157" width="0.0209%" height="15" fill="rgb(253,116,33)" fg:x="34418" fg:w="9"/><text x="80.0192%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="79.7553%" y="1173" width="0.0579%" height="15" fill="rgb(229,198,5)" fg:x="34412" fg:w="25"/><text x="80.0053%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (10 samples, 0.02%)</title><rect x="79.7900%" y="1157" width="0.0232%" height="15" fill="rgb(242,38,37)" fg:x="34427" fg:w="10"/><text x="80.0400%" y="1167.50"></text></g><g><title>core::hash::sip::u8to64_le (8 samples, 0.02%)</title><rect x="79.8155%" y="1173" width="0.0185%" height="15" fill="rgb(242,69,53)" fg:x="34438" fg:w="8"/><text x="80.0655%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="79.6996%" y="1221" width="0.1391%" height="15" fill="rgb(249,80,16)" fg:x="34388" fg:w="60"/><text x="79.9496%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="79.6996%" y="1205" width="0.1391%" height="15" fill="rgb(206,128,11)" fg:x="34388" fg:w="60"/><text x="79.9496%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (60 samples, 0.14%)</title><rect x="79.6996%" y="1189" width="0.1391%" height="15" fill="rgb(212,35,20)" fg:x="34388" fg:w="60"/><text x="79.9496%" y="1199.50"></text></g><g><title>core::hash::Hash::hash_slice (2,598 samples, 6.02%)</title><rect x="73.8290%" y="1317" width="6.0213%" height="15" fill="rgb(236,79,13)" fg:x="31855" fg:w="2598"/><text x="74.0790%" y="1327.50">core::ha..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,598 samples, 6.02%)</title><rect x="73.8290%" y="1301" width="6.0213%" height="15" fill="rgb(233,123,3)" fg:x="31855" fg:w="2598"/><text x="74.0790%" y="1311.50">core::ha..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,567 samples, 5.95%)</title><rect x="73.9009%" y="1285" width="5.9494%" height="15" fill="rgb(214,93,52)" fg:x="31886" fg:w="2567"/><text x="74.1509%" y="1295.50">&lt;slimp::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (73 samples, 0.17%)</title><rect x="79.6811%" y="1269" width="0.1692%" height="15" fill="rgb(251,37,40)" fg:x="34380" fg:w="73"/><text x="79.9311%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_isize (73 samples, 0.17%)</title><rect x="79.6811%" y="1253" width="0.1692%" height="15" fill="rgb(227,80,54)" fg:x="34380" fg:w="73"/><text x="79.9311%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_usize (72 samples, 0.17%)</title><rect x="79.6834%" y="1237" width="0.1669%" height="15" fill="rgb(254,48,11)" fg:x="34381" fg:w="72"/><text x="79.9334%" y="1247.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="79.8387%" y="1221" width="0.0116%" height="15" fill="rgb(235,193,26)" fg:x="34448" fg:w="5"/><text x="80.0887%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="79.8781%" y="1237" width="0.0162%" height="15" fill="rgb(229,99,21)" fg:x="34465" fg:w="7"/><text x="80.1281%" y="1247.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.8572%" y="1285" width="0.0533%" height="15" fill="rgb(211,140,41)" fg:x="34456" fg:w="23"/><text x="80.1072%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.8572%" y="1269" width="0.0533%" height="15" fill="rgb(240,227,30)" fg:x="34456" fg:w="23"/><text x="80.1072%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.8572%" y="1253" width="0.0533%" height="15" fill="rgb(215,224,45)" fg:x="34456" fg:w="23"/><text x="80.1072%" y="1263.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="79.8943%" y="1237" width="0.0162%" height="15" fill="rgb(206,123,31)" fg:x="34472" fg:w="7"/><text x="80.1443%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,625 samples, 6.08%)</title><rect x="73.8290%" y="1349" width="6.0839%" height="15" fill="rgb(210,138,16)" fg:x="31855" fg:w="2625"/><text x="74.0790%" y="1359.50">&lt;alloc::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,625 samples, 6.08%)</title><rect x="73.8290%" y="1333" width="6.0839%" height="15" fill="rgb(228,57,28)" fg:x="31855" fg:w="2625"/><text x="74.0790%" y="1343.50">core::ha..</text></g><g><title>core::hash::Hasher::write_length_prefix (27 samples, 0.06%)</title><rect x="79.8503%" y="1317" width="0.0626%" height="15" fill="rgb(242,170,10)" fg:x="34453" fg:w="27"/><text x="80.1003%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_usize (24 samples, 0.06%)</title><rect x="79.8572%" y="1301" width="0.0556%" height="15" fill="rgb(228,214,39)" fg:x="34456" fg:w="24"/><text x="80.1072%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="79.9499%" y="1253" width="0.0185%" height="15" fill="rgb(218,179,33)" fg:x="34496" fg:w="8"/><text x="80.1999%" y="1263.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,657 samples, 6.16%)</title><rect x="73.8174%" y="1365" width="6.1580%" height="15" fill="rgb(235,193,39)" fg:x="31850" fg:w="2657"/><text x="74.0674%" y="1375.50">&lt;slimp::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (27 samples, 0.06%)</title><rect x="79.9129%" y="1349" width="0.0626%" height="15" fill="rgb(219,221,36)" fg:x="34480" fg:w="27"/><text x="80.1629%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_isize (27 samples, 0.06%)</title><rect x="79.9129%" y="1333" width="0.0626%" height="15" fill="rgb(248,218,19)" fg:x="34480" fg:w="27"/><text x="80.1629%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_usize (27 samples, 0.06%)</title><rect x="79.9129%" y="1317" width="0.0626%" height="15" fill="rgb(205,50,9)" fg:x="34480" fg:w="27"/><text x="80.1629%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.9221%" y="1301" width="0.0533%" height="15" fill="rgb(238,81,28)" fg:x="34484" fg:w="23"/><text x="80.1721%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.9221%" y="1285" width="0.0533%" height="15" fill="rgb(235,110,19)" fg:x="34484" fg:w="23"/><text x="80.1721%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (23 samples, 0.05%)</title><rect x="79.9221%" y="1269" width="0.0533%" height="15" fill="rgb(214,7,14)" fg:x="34484" fg:w="23"/><text x="80.1721%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="79.9893%" y="1269" width="0.0162%" height="15" fill="rgb(211,77,3)" fg:x="34513" fg:w="7"/><text x="80.2393%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="79.9754%" y="1317" width="0.0371%" height="15" fill="rgb(229,5,9)" fg:x="34507" fg:w="16"/><text x="80.2254%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="79.9754%" y="1301" width="0.0371%" height="15" fill="rgb(225,90,11)" fg:x="34507" fg:w="16"/><text x="80.2254%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="79.9754%" y="1285" width="0.0371%" height="15" fill="rgb(242,56,8)" fg:x="34507" fg:w="16"/><text x="80.2254%" y="1295.50"></text></g><g><title>hashbrown::map::make_hasher::{{closure}} (2,701 samples, 6.26%)</title><rect x="73.7548%" y="1445" width="6.2600%" height="15" fill="rgb(249,212,39)" fg:x="31823" fg:w="2701"/><text x="74.0048%" y="1455.50">hashbrow..</text></g><g><title>hashbrown::map::make_hash (2,701 samples, 6.26%)</title><rect x="73.7548%" y="1429" width="6.2600%" height="15" fill="rgb(236,90,9)" fg:x="31823" fg:w="2701"/><text x="74.0048%" y="1439.50">hashbrow..</text></g><g><title>core::hash::BuildHasher::hash_one (2,700 samples, 6.26%)</title><rect x="73.7572%" y="1413" width="6.2577%" height="15" fill="rgb(206,88,35)" fg:x="31824" fg:w="2700"/><text x="74.0072%" y="1423.50">core::ha..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,676 samples, 6.20%)</title><rect x="73.8128%" y="1397" width="6.2021%" height="15" fill="rgb(205,126,30)" fg:x="31848" fg:w="2676"/><text x="74.0628%" y="1407.50">core::ha..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,676 samples, 6.20%)</title><rect x="73.8128%" y="1381" width="6.2021%" height="15" fill="rgb(230,176,12)" fg:x="31848" fg:w="2676"/><text x="74.0628%" y="1391.50">&lt;slimp::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (17 samples, 0.04%)</title><rect x="79.9754%" y="1365" width="0.0394%" height="15" fill="rgb(243,19,9)" fg:x="34507" fg:w="17"/><text x="80.2254%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_isize (17 samples, 0.04%)</title><rect x="79.9754%" y="1349" width="0.0394%" height="15" fill="rgb(245,171,17)" fg:x="34507" fg:w="17"/><text x="80.2254%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_usize (17 samples, 0.04%)</title><rect x="79.9754%" y="1333" width="0.0394%" height="15" fill="rgb(227,52,21)" fg:x="34507" fg:w="17"/><text x="80.2254%" y="1343.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (2,704 samples, 6.27%)</title><rect x="73.7548%" y="1461" width="6.2669%" height="15" fill="rgb(238,69,14)" fg:x="31823" fg:w="2704"/><text x="74.0048%" y="1471.50">hashbrow..</text></g><g><title>hashbrown::raw::is_full (8 samples, 0.02%)</title><rect x="80.0357%" y="1429" width="0.0185%" height="15" fill="rgb(241,156,39)" fg:x="34533" fg:w="8"/><text x="80.2857%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_insert_slot (22 samples, 0.05%)</title><rect x="80.0264%" y="1445" width="0.0510%" height="15" fill="rgb(212,227,28)" fg:x="34529" fg:w="22"/><text x="80.2764%" y="1455.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty_or_deleted (7 samples, 0.02%)</title><rect x="80.0612%" y="1429" width="0.0162%" height="15" fill="rgb(209,118,27)" fg:x="34544" fg:w="7"/><text x="80.3112%" y="1439.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (7 samples, 0.02%)</title><rect x="80.0612%" y="1413" width="0.0162%" height="15" fill="rgb(226,102,5)" fg:x="34544" fg:w="7"/><text x="80.3112%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_insert_slot (25 samples, 0.06%)</title><rect x="80.0264%" y="1461" width="0.0579%" height="15" fill="rgb(223,34,3)" fg:x="34529" fg:w="25"/><text x="80.2764%" y="1471.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (2,742 samples, 6.36%)</title><rect x="73.7317%" y="1525" width="6.3550%" height="15" fill="rgb(221,81,38)" fg:x="31813" fg:w="2742"/><text x="73.9817%" y="1535.50">hashbrow..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (2,742 samples, 6.36%)</title><rect x="73.7317%" y="1509" width="6.3550%" height="15" fill="rgb(236,219,28)" fg:x="31813" fg:w="2742"/><text x="73.9817%" y="1519.50">hashbrow..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (2,742 samples, 6.36%)</title><rect x="73.7317%" y="1493" width="6.3550%" height="15" fill="rgb(213,200,14)" fg:x="31813" fg:w="2742"/><text x="73.9817%" y="1503.50">hashbrow..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (2,742 samples, 6.36%)</title><rect x="73.7317%" y="1477" width="6.3550%" height="15" fill="rgb(240,33,19)" fg:x="31813" fg:w="2742"/><text x="73.9817%" y="1487.50">hashbrow..</text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (5,144 samples, 11.92%)</title><rect x="68.1716%" y="1589" width="11.9220%" height="15" fill="rgb(233,113,27)" fg:x="29414" fg:w="5144"/><text x="68.4216%" y="1599.50">std::collections::..</text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (5,144 samples, 11.92%)</title><rect x="68.1716%" y="1573" width="11.9220%" height="15" fill="rgb(220,221,18)" fg:x="29414" fg:w="5144"/><text x="68.4216%" y="1583.50">hashbrown::set::Ha..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (5,144 samples, 11.92%)</title><rect x="68.1716%" y="1557" width="11.9220%" height="15" fill="rgb(238,92,8)" fg:x="29414" fg:w="5144"/><text x="68.4216%" y="1567.50">hashbrown::map::Ha..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (2,755 samples, 6.39%)</title><rect x="73.7085%" y="1541" width="6.3851%" height="15" fill="rgb(222,164,16)" fg:x="31803" fg:w="2755"/><text x="73.9585%" y="1551.50">hashbrow..</text></g><g><title>slimp::Rule::concretions (22,437 samples, 52.00%)</title><rect x="28.0993%" y="1605" width="52.0013%" height="15" fill="rgb(241,119,3)" fg:x="12124" fg:w="22437"/><text x="28.3493%" y="1615.50">slimp::Rule::concretions</text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="80.1307%" y="1477" width="0.0162%" height="15" fill="rgb(241,44,8)" fg:x="34574" fg:w="7"/><text x="80.3807%" y="1487.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="80.1354%" y="1461" width="0.0116%" height="15" fill="rgb(230,36,40)" fg:x="34576" fg:w="5"/><text x="80.3854%" y="1471.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (13 samples, 0.03%)</title><rect x="80.1238%" y="1525" width="0.0301%" height="15" fill="rgb(243,16,36)" fg:x="34571" fg:w="13"/><text x="80.3738%" y="1535.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (13 samples, 0.03%)</title><rect x="80.1238%" y="1509" width="0.0301%" height="15" fill="rgb(231,4,26)" fg:x="34571" fg:w="13"/><text x="80.3738%" y="1519.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (13 samples, 0.03%)</title><rect x="80.1238%" y="1493" width="0.0301%" height="15" fill="rgb(240,9,31)" fg:x="34571" fg:w="13"/><text x="80.3738%" y="1503.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (6 samples, 0.01%)</title><rect x="80.1539%" y="1525" width="0.0139%" height="15" fill="rgb(207,173,15)" fg:x="34584" fg:w="6"/><text x="80.4039%" y="1535.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="80.1840%" y="1413" width="0.0116%" height="15" fill="rgb(224,192,53)" fg:x="34597" fg:w="5"/><text x="80.4340%" y="1423.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (14 samples, 0.03%)</title><rect x="80.1956%" y="1413" width="0.0324%" height="15" fill="rgb(223,67,28)" fg:x="34602" fg:w="14"/><text x="80.4456%" y="1423.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (14 samples, 0.03%)</title><rect x="80.1956%" y="1397" width="0.0324%" height="15" fill="rgb(211,20,47)" fg:x="34602" fg:w="14"/><text x="80.4456%" y="1407.50"></text></g><g><title>core::hash::Hasher::write_u32 (12 samples, 0.03%)</title><rect x="80.2002%" y="1381" width="0.0278%" height="15" fill="rgb(240,228,2)" fg:x="34604" fg:w="12"/><text x="80.4502%" y="1391.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="80.2002%" y="1365" width="0.0278%" height="15" fill="rgb(248,151,12)" fg:x="34604" fg:w="12"/><text x="80.4502%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="80.2002%" y="1349" width="0.0278%" height="15" fill="rgb(244,8,39)" fg:x="34604" fg:w="12"/><text x="80.4502%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (12 samples, 0.03%)</title><rect x="80.2002%" y="1333" width="0.0278%" height="15" fill="rgb(222,26,8)" fg:x="34604" fg:w="12"/><text x="80.4502%" y="1343.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (12 samples, 0.03%)</title><rect x="80.7264%" y="1333" width="0.0278%" height="15" fill="rgb(213,106,44)" fg:x="34831" fg:w="12"/><text x="80.9764%" y="1343.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="80.8214%" y="1221" width="0.0139%" height="15" fill="rgb(214,129,20)" fg:x="34872" fg:w="6"/><text x="81.0714%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="80.8052%" y="1237" width="0.0417%" height="15" fill="rgb(212,32,13)" fg:x="34865" fg:w="18"/><text x="81.0552%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="80.8353%" y="1221" width="0.0116%" height="15" fill="rgb(208,168,33)" fg:x="34878" fg:w="5"/><text x="81.0853%" y="1231.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (68 samples, 0.16%)</title><rect x="80.7542%" y="1333" width="0.1576%" height="15" fill="rgb(231,207,8)" fg:x="34843" fg:w="68"/><text x="81.0042%" y="1343.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (63 samples, 0.15%)</title><rect x="80.7658%" y="1317" width="0.1460%" height="15" fill="rgb(235,219,23)" fg:x="34848" fg:w="63"/><text x="81.0158%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_u32 (63 samples, 0.15%)</title><rect x="80.7658%" y="1301" width="0.1460%" height="15" fill="rgb(226,216,26)" fg:x="34848" fg:w="63"/><text x="81.0158%" y="1311.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (63 samples, 0.15%)</title><rect x="80.7658%" y="1285" width="0.1460%" height="15" fill="rgb(239,137,16)" fg:x="34848" fg:w="63"/><text x="81.0158%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (63 samples, 0.15%)</title><rect x="80.7658%" y="1269" width="0.1460%" height="15" fill="rgb(207,12,36)" fg:x="34848" fg:w="63"/><text x="81.0158%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (63 samples, 0.15%)</title><rect x="80.7658%" y="1253" width="0.1460%" height="15" fill="rgb(210,214,24)" fg:x="34848" fg:w="63"/><text x="81.0158%" y="1263.50"></text></g><g><title>core::hash::sip::u8to64_le (24 samples, 0.06%)</title><rect x="80.8561%" y="1237" width="0.0556%" height="15" fill="rgb(206,56,30)" fg:x="34887" fg:w="24"/><text x="81.1061%" y="1247.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (24 samples, 0.06%)</title><rect x="81.3591%" y="1253" width="0.0556%" height="15" fill="rgb(228,143,26)" fg:x="35104" fg:w="24"/><text x="81.6091%" y="1263.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (8 samples, 0.02%)</title><rect x="81.5259%" y="1141" width="0.0185%" height="15" fill="rgb(216,218,46)" fg:x="35176" fg:w="8"/><text x="81.7759%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (23 samples, 0.05%)</title><rect x="81.5074%" y="1157" width="0.0533%" height="15" fill="rgb(206,6,19)" fg:x="35168" fg:w="23"/><text x="81.7574%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="81.5445%" y="1141" width="0.0162%" height="15" fill="rgb(239,177,51)" fg:x="35184" fg:w="7"/><text x="81.7945%" y="1151.50"></text></g><g><title>core::cmp::min (9 samples, 0.02%)</title><rect x="81.5607%" y="1157" width="0.0209%" height="15" fill="rgb(216,55,25)" fg:x="35191" fg:w="9"/><text x="81.8107%" y="1167.50"></text></g><g><title>core::cmp::Ord::min (9 samples, 0.02%)</title><rect x="81.5607%" y="1141" width="0.0209%" height="15" fill="rgb(231,163,29)" fg:x="35191" fg:w="9"/><text x="81.8107%" y="1151.50"></text></g><g><title>core::cmp::min_by (9 samples, 0.02%)</title><rect x="81.5607%" y="1125" width="0.0209%" height="15" fill="rgb(232,149,50)" fg:x="35191" fg:w="9"/><text x="81.8107%" y="1135.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (102 samples, 0.24%)</title><rect x="81.4147%" y="1253" width="0.2364%" height="15" fill="rgb(223,142,48)" fg:x="35128" fg:w="102"/><text x="81.6647%" y="1263.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (94 samples, 0.22%)</title><rect x="81.4332%" y="1237" width="0.2179%" height="15" fill="rgb(245,83,23)" fg:x="35136" fg:w="94"/><text x="81.6832%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_u32 (90 samples, 0.21%)</title><rect x="81.4425%" y="1221" width="0.2086%" height="15" fill="rgb(224,63,2)" fg:x="35140" fg:w="90"/><text x="81.6925%" y="1231.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="81.4425%" y="1205" width="0.2086%" height="15" fill="rgb(218,65,53)" fg:x="35140" fg:w="90"/><text x="81.6925%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="81.4425%" y="1189" width="0.2086%" height="15" fill="rgb(221,84,29)" fg:x="35140" fg:w="90"/><text x="81.6925%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (90 samples, 0.21%)</title><rect x="81.4425%" y="1173" width="0.2086%" height="15" fill="rgb(234,0,32)" fg:x="35140" fg:w="90"/><text x="81.6925%" y="1183.50"></text></g><g><title>core::hash::sip::u8to64_le (30 samples, 0.07%)</title><rect x="81.5816%" y="1157" width="0.0695%" height="15" fill="rgb(206,20,16)" fg:x="35200" fg:w="30"/><text x="81.8316%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (19 samples, 0.04%)</title><rect x="82.1285%" y="1173" width="0.0440%" height="15" fill="rgb(244,172,18)" fg:x="35436" fg:w="19"/><text x="82.3785%" y="1183.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="82.2885%" y="1061" width="0.0162%" height="15" fill="rgb(254,133,1)" fg:x="35505" fg:w="7"/><text x="82.5385%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (33 samples, 0.08%)</title><rect x="82.2676%" y="1077" width="0.0765%" height="15" fill="rgb(222,206,41)" fg:x="35496" fg:w="33"/><text x="82.5176%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (17 samples, 0.04%)</title><rect x="82.3047%" y="1061" width="0.0394%" height="15" fill="rgb(212,3,42)" fg:x="35512" fg:w="17"/><text x="82.5547%" y="1071.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="82.3441%" y="1077" width="0.0139%" height="15" fill="rgb(241,11,4)" fg:x="35529" fg:w="6"/><text x="82.5941%" y="1087.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="82.3441%" y="1061" width="0.0139%" height="15" fill="rgb(205,19,26)" fg:x="35529" fg:w="6"/><text x="82.5941%" y="1071.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="82.3441%" y="1045" width="0.0139%" height="15" fill="rgb(210,179,32)" fg:x="35529" fg:w="6"/><text x="82.5941%" y="1055.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (104 samples, 0.24%)</title><rect x="82.1934%" y="1125" width="0.2410%" height="15" fill="rgb(227,116,49)" fg:x="35464" fg:w="104"/><text x="82.4434%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (104 samples, 0.24%)</title><rect x="82.1934%" y="1109" width="0.2410%" height="15" fill="rgb(211,146,6)" fg:x="35464" fg:w="104"/><text x="82.4434%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (104 samples, 0.24%)</title><rect x="82.1934%" y="1093" width="0.2410%" height="15" fill="rgb(219,44,39)" fg:x="35464" fg:w="104"/><text x="82.4434%" y="1103.50"></text></g><g><title>core::hash::sip::u8to64_le (33 samples, 0.08%)</title><rect x="82.3580%" y="1077" width="0.0765%" height="15" fill="rgb(234,128,11)" fg:x="35535" fg:w="33"/><text x="82.6080%" y="1087.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (115 samples, 0.27%)</title><rect x="82.1726%" y="1173" width="0.2665%" height="15" fill="rgb(220,183,53)" fg:x="35455" fg:w="115"/><text x="82.4226%" y="1183.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (110 samples, 0.25%)</title><rect x="82.1842%" y="1157" width="0.2549%" height="15" fill="rgb(213,219,32)" fg:x="35460" fg:w="110"/><text x="82.4342%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_u32 (106 samples, 0.25%)</title><rect x="82.1934%" y="1141" width="0.2457%" height="15" fill="rgb(232,156,16)" fg:x="35464" fg:w="106"/><text x="82.4434%" y="1151.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.02%)</title><rect x="82.8516%" y="1093" width="0.0185%" height="15" fill="rgb(246,135,34)" fg:x="35748" fg:w="8"/><text x="83.1016%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="82.9351%" y="997" width="0.0556%" height="15" fill="rgb(241,99,0)" fg:x="35784" fg:w="24"/><text x="83.1851%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (13 samples, 0.03%)</title><rect x="82.9606%" y="981" width="0.0301%" height="15" fill="rgb(222,103,45)" fg:x="35795" fg:w="13"/><text x="83.2106%" y="991.50"></text></g><g><title>core::cmp::min (8 samples, 0.02%)</title><rect x="82.9907%" y="997" width="0.0185%" height="15" fill="rgb(212,57,4)" fg:x="35808" fg:w="8"/><text x="83.2407%" y="1007.50"></text></g><g><title>core::cmp::Ord::min (8 samples, 0.02%)</title><rect x="82.9907%" y="981" width="0.0185%" height="15" fill="rgb(215,68,47)" fg:x="35808" fg:w="8"/><text x="83.2407%" y="991.50"></text></g><g><title>core::cmp::min_by (8 samples, 0.02%)</title><rect x="82.9907%" y="965" width="0.0185%" height="15" fill="rgb(230,84,2)" fg:x="35808" fg:w="8"/><text x="83.2407%" y="975.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (89 samples, 0.21%)</title><rect x="82.8702%" y="1093" width="0.2063%" height="15" fill="rgb(220,102,14)" fg:x="35756" fg:w="89"/><text x="83.1202%" y="1103.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (85 samples, 0.20%)</title><rect x="82.8795%" y="1077" width="0.1970%" height="15" fill="rgb(240,10,32)" fg:x="35760" fg:w="85"/><text x="83.1295%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_u32 (79 samples, 0.18%)</title><rect x="82.8934%" y="1061" width="0.1831%" height="15" fill="rgb(215,47,27)" fg:x="35766" fg:w="79"/><text x="83.1434%" y="1071.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="82.8934%" y="1045" width="0.1831%" height="15" fill="rgb(233,188,43)" fg:x="35766" fg:w="79"/><text x="83.1434%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="82.8934%" y="1029" width="0.1831%" height="15" fill="rgb(253,190,1)" fg:x="35766" fg:w="79"/><text x="83.1434%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (79 samples, 0.18%)</title><rect x="82.8934%" y="1013" width="0.1831%" height="15" fill="rgb(206,114,52)" fg:x="35766" fg:w="79"/><text x="83.1434%" y="1023.50"></text></g><g><title>core::hash::sip::u8to64_le (29 samples, 0.07%)</title><rect x="83.0092%" y="997" width="0.0672%" height="15" fill="rgb(233,120,37)" fg:x="35816" fg:w="29"/><text x="83.2592%" y="1007.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 0.02%)</title><rect x="83.2966%" y="1013" width="0.0162%" height="15" fill="rgb(214,52,39)" fg:x="35940" fg:w="7"/><text x="83.5466%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (15 samples, 0.03%)</title><rect x="83.3569%" y="917" width="0.0348%" height="15" fill="rgb(223,80,29)" fg:x="35966" fg:w="15"/><text x="83.6069%" y="927.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (52 samples, 0.12%)</title><rect x="83.3129%" y="1013" width="0.1205%" height="15" fill="rgb(230,101,40)" fg:x="35947" fg:w="52"/><text x="83.5629%" y="1023.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (49 samples, 0.11%)</title><rect x="83.3198%" y="997" width="0.1136%" height="15" fill="rgb(219,211,8)" fg:x="35950" fg:w="49"/><text x="83.5698%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_u32 (44 samples, 0.10%)</title><rect x="83.3314%" y="981" width="0.1020%" height="15" fill="rgb(252,126,28)" fg:x="35955" fg:w="44"/><text x="83.5814%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (44 samples, 0.10%)</title><rect x="83.3314%" y="965" width="0.1020%" height="15" fill="rgb(215,56,38)" fg:x="35955" fg:w="44"/><text x="83.5814%" y="975.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (44 samples, 0.10%)</title><rect x="83.3314%" y="949" width="0.1020%" height="15" fill="rgb(249,55,44)" fg:x="35955" fg:w="44"/><text x="83.5814%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (44 samples, 0.10%)</title><rect x="83.3314%" y="933" width="0.1020%" height="15" fill="rgb(220,221,32)" fg:x="35955" fg:w="44"/><text x="83.5814%" y="943.50"></text></g><g><title>core::hash::sip::u8to64_le (16 samples, 0.04%)</title><rect x="83.3963%" y="917" width="0.0371%" height="15" fill="rgb(212,216,41)" fg:x="35983" fg:w="16"/><text x="83.6463%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="83.6582%" y="837" width="0.0116%" height="15" fill="rgb(228,213,43)" fg:x="36096" fg:w="5"/><text x="83.9082%" y="847.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="83.6211%" y="933" width="0.0579%" height="15" fill="rgb(211,31,26)" fg:x="36080" fg:w="25"/><text x="83.8711%" y="943.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (22 samples, 0.05%)</title><rect x="83.6281%" y="917" width="0.0510%" height="15" fill="rgb(229,202,19)" fg:x="36083" fg:w="22"/><text x="83.8781%" y="927.50"></text></g><g><title>core::hash::Hasher::write_u32 (19 samples, 0.04%)</title><rect x="83.6350%" y="901" width="0.0440%" height="15" fill="rgb(229,105,46)" fg:x="36086" fg:w="19"/><text x="83.8850%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="83.6350%" y="885" width="0.0440%" height="15" fill="rgb(235,108,1)" fg:x="36086" fg:w="19"/><text x="83.8850%" y="895.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="83.6350%" y="869" width="0.0440%" height="15" fill="rgb(245,111,35)" fg:x="36086" fg:w="19"/><text x="83.8850%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="83.6350%" y="853" width="0.0440%" height="15" fill="rgb(219,185,31)" fg:x="36086" fg:w="19"/><text x="83.8850%" y="863.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="83.7857%" y="805" width="0.0209%" height="15" fill="rgb(214,4,43)" fg:x="36151" fg:w="9"/><text x="84.0357%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (16 samples, 0.04%)</title><rect x="83.7787%" y="821" width="0.0371%" height="15" fill="rgb(235,227,40)" fg:x="36148" fg:w="16"/><text x="84.0287%" y="831.50"></text></g><g><title>core::hash::sip::u8to64_le (15 samples, 0.03%)</title><rect x="83.8158%" y="821" width="0.0348%" height="15" fill="rgb(230,88,30)" fg:x="36164" fg:w="15"/><text x="84.0658%" y="831.50"></text></g><g><title>core::hash::Hash::hash_slice (109 samples, 0.25%)</title><rect x="83.6003%" y="965" width="0.2526%" height="15" fill="rgb(216,217,1)" fg:x="36071" fg:w="109"/><text x="83.8503%" y="975.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (109 samples, 0.25%)</title><rect x="83.6003%" y="949" width="0.2526%" height="15" fill="rgb(248,139,50)" fg:x="36071" fg:w="109"/><text x="83.8503%" y="959.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (75 samples, 0.17%)</title><rect x="83.6791%" y="933" width="0.1738%" height="15" fill="rgb(233,1,21)" fg:x="36105" fg:w="75"/><text x="83.9291%" y="943.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (52 samples, 0.12%)</title><rect x="83.7324%" y="917" width="0.1205%" height="15" fill="rgb(215,183,12)" fg:x="36128" fg:w="52"/><text x="83.9824%" y="927.50"></text></g><g><title>core::hash::Hasher::write_isize (52 samples, 0.12%)</title><rect x="83.7324%" y="901" width="0.1205%" height="15" fill="rgb(229,104,42)" fg:x="36128" fg:w="52"/><text x="83.9824%" y="911.50"></text></g><g><title>core::hash::Hasher::write_usize (52 samples, 0.12%)</title><rect x="83.7324%" y="885" width="0.1205%" height="15" fill="rgb(243,34,48)" fg:x="36128" fg:w="52"/><text x="83.9824%" y="895.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (48 samples, 0.11%)</title><rect x="83.7416%" y="869" width="0.1112%" height="15" fill="rgb(239,11,44)" fg:x="36132" fg:w="48"/><text x="83.9916%" y="879.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (48 samples, 0.11%)</title><rect x="83.7416%" y="853" width="0.1112%" height="15" fill="rgb(231,98,35)" fg:x="36132" fg:w="48"/><text x="83.9916%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (48 samples, 0.11%)</title><rect x="83.7416%" y="837" width="0.1112%" height="15" fill="rgb(233,28,25)" fg:x="36132" fg:w="48"/><text x="83.9916%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (113 samples, 0.26%)</title><rect x="83.6003%" y="997" width="0.2619%" height="15" fill="rgb(234,123,11)" fg:x="36071" fg:w="113"/><text x="83.8503%" y="1007.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (113 samples, 0.26%)</title><rect x="83.6003%" y="981" width="0.2619%" height="15" fill="rgb(220,69,3)" fg:x="36071" fg:w="113"/><text x="83.8503%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (23 samples, 0.05%)</title><rect x="83.9873%" y="885" width="0.0533%" height="15" fill="rgb(214,64,36)" fg:x="36238" fg:w="23"/><text x="84.2373%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (39 samples, 0.09%)</title><rect x="83.9711%" y="901" width="0.0904%" height="15" fill="rgb(211,138,32)" fg:x="36231" fg:w="39"/><text x="84.2211%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.02%)</title><rect x="84.0406%" y="885" width="0.0209%" height="15" fill="rgb(213,118,47)" fg:x="36261" fg:w="9"/><text x="84.2906%" y="895.50"></text></g><g><title>core::hash::sip::u8to64_le (20 samples, 0.05%)</title><rect x="84.0638%" y="901" width="0.0464%" height="15" fill="rgb(243,124,49)" fg:x="36271" fg:w="20"/><text x="84.3138%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="83.8830%" y="949" width="0.2294%" height="15" fill="rgb(221,30,28)" fg:x="36193" fg:w="99"/><text x="84.1330%" y="959.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="83.8830%" y="933" width="0.2294%" height="15" fill="rgb(246,37,13)" fg:x="36193" fg:w="99"/><text x="84.1330%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="83.8830%" y="917" width="0.2294%" height="15" fill="rgb(249,66,14)" fg:x="36193" fg:w="99"/><text x="84.1330%" y="927.50"></text></g><g><title>core::hash::Hash::hash_slice (365 samples, 0.85%)</title><rect x="83.2827%" y="1045" width="0.8459%" height="15" fill="rgb(213,166,5)" fg:x="35934" fg:w="365"/><text x="83.5327%" y="1055.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (365 samples, 0.85%)</title><rect x="83.2827%" y="1029" width="0.8459%" height="15" fill="rgb(221,66,24)" fg:x="35934" fg:w="365"/><text x="83.5327%" y="1039.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (300 samples, 0.70%)</title><rect x="83.4334%" y="1013" width="0.6953%" height="15" fill="rgb(210,132,17)" fg:x="35999" fg:w="300"/><text x="83.6834%" y="1023.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (115 samples, 0.27%)</title><rect x="83.8621%" y="997" width="0.2665%" height="15" fill="rgb(243,202,5)" fg:x="36184" fg:w="115"/><text x="84.1121%" y="1007.50"></text></g><g><title>core::hash::Hasher::write_isize (115 samples, 0.27%)</title><rect x="83.8621%" y="981" width="0.2665%" height="15" fill="rgb(233,70,48)" fg:x="36184" fg:w="115"/><text x="84.1121%" y="991.50"></text></g><g><title>core::hash::Hasher::write_usize (114 samples, 0.26%)</title><rect x="83.8645%" y="965" width="0.2642%" height="15" fill="rgb(238,41,26)" fg:x="36185" fg:w="114"/><text x="84.1145%" y="975.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (7 samples, 0.02%)</title><rect x="84.1125%" y="949" width="0.0162%" height="15" fill="rgb(241,19,31)" fg:x="36292" fg:w="7"/><text x="84.3625%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.02%)</title><rect x="84.1611%" y="965" width="0.0162%" height="15" fill="rgb(214,76,10)" fg:x="36313" fg:w="7"/><text x="84.4111%" y="975.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="84.1287%" y="1013" width="0.0579%" height="15" fill="rgb(254,202,22)" fg:x="36299" fg:w="25"/><text x="84.3787%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="84.1287%" y="997" width="0.0579%" height="15" fill="rgb(214,72,24)" fg:x="36299" fg:w="25"/><text x="84.3787%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="84.1287%" y="981" width="0.0579%" height="15" fill="rgb(221,92,46)" fg:x="36299" fg:w="25"/><text x="84.3787%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (391 samples, 0.91%)</title><rect x="83.2827%" y="1077" width="0.9062%" height="15" fill="rgb(246,13,50)" fg:x="35934" fg:w="391"/><text x="83.5327%" y="1087.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (391 samples, 0.91%)</title><rect x="83.2827%" y="1061" width="0.9062%" height="15" fill="rgb(240,165,38)" fg:x="35934" fg:w="391"/><text x="83.5327%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (26 samples, 0.06%)</title><rect x="84.1287%" y="1045" width="0.0603%" height="15" fill="rgb(241,24,51)" fg:x="36299" fg:w="26"/><text x="84.3787%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_usize (26 samples, 0.06%)</title><rect x="84.1287%" y="1029" width="0.0603%" height="15" fill="rgb(227,51,44)" fg:x="36299" fg:w="26"/><text x="84.3787%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (29 samples, 0.07%)</title><rect x="84.4091%" y="965" width="0.0672%" height="15" fill="rgb(231,121,3)" fg:x="36420" fg:w="29"/><text x="84.6591%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (55 samples, 0.13%)</title><rect x="84.3836%" y="981" width="0.1275%" height="15" fill="rgb(245,3,41)" fg:x="36409" fg:w="55"/><text x="84.6336%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (15 samples, 0.03%)</title><rect x="84.4763%" y="965" width="0.0348%" height="15" fill="rgb(214,13,26)" fg:x="36449" fg:w="15"/><text x="84.7263%" y="975.50"></text></g><g><title>core::hash::sip::u8to64_le (35 samples, 0.08%)</title><rect x="84.5134%" y="981" width="0.0811%" height="15" fill="rgb(252,75,11)" fg:x="36465" fg:w="35"/><text x="84.7634%" y="991.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (165 samples, 0.38%)</title><rect x="84.2167%" y="1029" width="0.3824%" height="15" fill="rgb(218,226,17)" fg:x="36337" fg:w="165"/><text x="84.4667%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (165 samples, 0.38%)</title><rect x="84.2167%" y="1013" width="0.3824%" height="15" fill="rgb(248,89,38)" fg:x="36337" fg:w="165"/><text x="84.4667%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (165 samples, 0.38%)</title><rect x="84.2167%" y="997" width="0.3824%" height="15" fill="rgb(237,73,46)" fg:x="36337" fg:w="165"/><text x="84.4667%" y="1007.50"></text></g><g><title>core::hash::Hash::hash_slice (771 samples, 1.79%)</title><rect x="82.8377%" y="1125" width="1.7869%" height="15" fill="rgb(242,78,33)" fg:x="35742" fg:w="771"/><text x="83.0877%" y="1135.50">c..</text></g><g><title>core::hash::Hash::hash_slice::rt (771 samples, 1.79%)</title><rect x="82.8377%" y="1109" width="1.7869%" height="15" fill="rgb(235,60,3)" fg:x="35742" fg:w="771"/><text x="83.0877%" y="1119.50">c..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (668 samples, 1.55%)</title><rect x="83.0765%" y="1093" width="1.5482%" height="15" fill="rgb(216,172,19)" fg:x="35845" fg:w="668"/><text x="83.3265%" y="1103.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (188 samples, 0.44%)</title><rect x="84.1889%" y="1077" width="0.4357%" height="15" fill="rgb(227,6,42)" fg:x="36325" fg:w="188"/><text x="84.4389%" y="1087.50"></text></g><g><title>core::hash::Hasher::write_isize (188 samples, 0.44%)</title><rect x="84.1889%" y="1061" width="0.4357%" height="15" fill="rgb(223,207,42)" fg:x="36325" fg:w="188"/><text x="84.4389%" y="1071.50"></text></g><g><title>core::hash::Hasher::write_usize (187 samples, 0.43%)</title><rect x="84.1913%" y="1045" width="0.4334%" height="15" fill="rgb(246,138,30)" fg:x="36326" fg:w="187"/><text x="84.4413%" y="1055.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (11 samples, 0.03%)</title><rect x="84.5992%" y="1029" width="0.0255%" height="15" fill="rgb(251,199,47)" fg:x="36502" fg:w="11"/><text x="84.8492%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="84.6988%" y="1029" width="0.0209%" height="15" fill="rgb(228,218,44)" fg:x="36545" fg:w="9"/><text x="84.9488%" y="1039.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (18 samples, 0.04%)</title><rect x="84.6872%" y="1045" width="0.0417%" height="15" fill="rgb(220,68,6)" fg:x="36540" fg:w="18"/><text x="84.9372%" y="1055.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (834 samples, 1.93%)</title><rect x="82.8377%" y="1157" width="1.9329%" height="15" fill="rgb(240,60,26)" fg:x="35742" fg:w="834"/><text x="83.0877%" y="1167.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (834 samples, 1.93%)</title><rect x="82.8377%" y="1141" width="1.9329%" height="15" fill="rgb(211,200,19)" fg:x="35742" fg:w="834"/><text x="83.0877%" y="1151.50">c..</text></g><g><title>core::hash::Hasher::write_length_prefix (63 samples, 0.15%)</title><rect x="84.6247%" y="1125" width="0.1460%" height="15" fill="rgb(242,145,30)" fg:x="36513" fg:w="63"/><text x="84.8747%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_usize (60 samples, 0.14%)</title><rect x="84.6316%" y="1109" width="0.1391%" height="15" fill="rgb(225,64,13)" fg:x="36516" fg:w="60"/><text x="84.8816%" y="1119.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="84.6362%" y="1093" width="0.1344%" height="15" fill="rgb(218,103,35)" fg:x="36518" fg:w="58"/><text x="84.8862%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="84.6362%" y="1077" width="0.1344%" height="15" fill="rgb(216,93,46)" fg:x="36518" fg:w="58"/><text x="84.8862%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (58 samples, 0.13%)</title><rect x="84.6362%" y="1061" width="0.1344%" height="15" fill="rgb(225,159,27)" fg:x="36518" fg:w="58"/><text x="84.8862%" y="1071.50"></text></g><g><title>core::hash::sip::u8to64_le (14 samples, 0.03%)</title><rect x="84.7382%" y="1045" width="0.0324%" height="15" fill="rgb(225,204,11)" fg:x="36562" fg:w="14"/><text x="84.9882%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (33 samples, 0.08%)</title><rect x="85.0001%" y="1045" width="0.0765%" height="15" fill="rgb(205,56,4)" fg:x="36675" fg:w="33"/><text x="85.2501%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (71 samples, 0.16%)</title><rect x="84.9561%" y="1061" width="0.1646%" height="15" fill="rgb(206,6,35)" fg:x="36656" fg:w="71"/><text x="85.2061%" y="1071.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (19 samples, 0.04%)</title><rect x="85.0766%" y="1045" width="0.0440%" height="15" fill="rgb(247,73,52)" fg:x="36708" fg:w="19"/><text x="85.3266%" y="1055.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="85.1206%" y="1061" width="0.0139%" height="15" fill="rgb(246,97,4)" fg:x="36727" fg:w="6"/><text x="85.3706%" y="1071.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="85.1206%" y="1045" width="0.0139%" height="15" fill="rgb(212,37,15)" fg:x="36727" fg:w="6"/><text x="85.3706%" y="1055.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="85.1206%" y="1029" width="0.0139%" height="15" fill="rgb(208,130,40)" fg:x="36727" fg:w="6"/><text x="85.3706%" y="1039.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (189 samples, 0.44%)</title><rect x="84.8170%" y="1109" width="0.4380%" height="15" fill="rgb(236,55,29)" fg:x="36596" fg:w="189"/><text x="85.0670%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (189 samples, 0.44%)</title><rect x="84.8170%" y="1093" width="0.4380%" height="15" fill="rgb(209,156,45)" fg:x="36596" fg:w="189"/><text x="85.0670%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (189 samples, 0.44%)</title><rect x="84.8170%" y="1077" width="0.4380%" height="15" fill="rgb(249,107,4)" fg:x="36596" fg:w="189"/><text x="85.0670%" y="1087.50"></text></g><g><title>core::hash::sip::u8to64_le (52 samples, 0.12%)</title><rect x="85.1345%" y="1061" width="0.1205%" height="15" fill="rgb(227,7,13)" fg:x="36733" fg:w="52"/><text x="85.3845%" y="1071.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="85.2412%" y="1045" width="0.0139%" height="15" fill="rgb(250,129,14)" fg:x="36779" fg:w="6"/><text x="85.4912%" y="1055.50"></text></g><g><title>core::hash::Hash::hash_slice (1,370 samples, 3.18%)</title><rect x="82.0984%" y="1205" width="3.1752%" height="15" fill="rgb(229,92,13)" fg:x="35423" fg:w="1370"/><text x="82.3484%" y="1215.50">cor..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,370 samples, 3.18%)</title><rect x="82.0984%" y="1189" width="3.1752%" height="15" fill="rgb(245,98,39)" fg:x="35423" fg:w="1370"/><text x="82.3484%" y="1199.50">cor..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,223 samples, 2.83%)</title><rect x="82.4391%" y="1173" width="2.8345%" height="15" fill="rgb(234,135,48)" fg:x="35570" fg:w="1223"/><text x="82.6891%" y="1183.50">&lt;s..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (217 samples, 0.50%)</title><rect x="84.7707%" y="1157" width="0.5029%" height="15" fill="rgb(230,98,28)" fg:x="36576" fg:w="217"/><text x="85.0207%" y="1167.50"></text></g><g><title>core::hash::Hasher::write_isize (217 samples, 0.50%)</title><rect x="84.7707%" y="1141" width="0.5029%" height="15" fill="rgb(223,121,0)" fg:x="36576" fg:w="217"/><text x="85.0207%" y="1151.50"></text></g><g><title>core::hash::Hasher::write_usize (216 samples, 0.50%)</title><rect x="84.7730%" y="1125" width="0.5006%" height="15" fill="rgb(234,173,33)" fg:x="36577" fg:w="216"/><text x="85.0230%" y="1135.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (8 samples, 0.02%)</title><rect x="85.2551%" y="1109" width="0.0185%" height="15" fill="rgb(245,47,8)" fg:x="36785" fg:w="8"/><text x="85.5051%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="85.3594%" y="1109" width="0.0139%" height="15" fill="rgb(205,17,20)" fg:x="36830" fg:w="6"/><text x="85.6094%" y="1119.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (20 samples, 0.05%)</title><rect x="85.3385%" y="1125" width="0.0464%" height="15" fill="rgb(232,151,16)" fg:x="36821" fg:w="20"/><text x="85.5885%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="85.3733%" y="1109" width="0.0116%" height="15" fill="rgb(208,30,32)" fg:x="36836" fg:w="5"/><text x="85.6233%" y="1119.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="85.2898%" y="1173" width="0.1275%" height="15" fill="rgb(254,26,3)" fg:x="36800" fg:w="55"/><text x="85.5398%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="85.2898%" y="1157" width="0.1275%" height="15" fill="rgb(240,177,30)" fg:x="36800" fg:w="55"/><text x="85.5398%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="85.2898%" y="1141" width="0.1275%" height="15" fill="rgb(248,76,44)" fg:x="36800" fg:w="55"/><text x="85.5398%" y="1151.50"></text></g><g><title>core::hash::sip::u8to64_le (13 samples, 0.03%)</title><rect x="85.3872%" y="1125" width="0.0301%" height="15" fill="rgb(241,186,54)" fg:x="36842" fg:w="13"/><text x="85.6372%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,433 samples, 3.32%)</title><rect x="82.0984%" y="1237" width="3.3212%" height="15" fill="rgb(249,171,29)" fg:x="35423" fg:w="1433"/><text x="82.3484%" y="1247.50">&lt;al..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,433 samples, 3.32%)</title><rect x="82.0984%" y="1221" width="3.3212%" height="15" fill="rgb(237,151,44)" fg:x="35423" fg:w="1433"/><text x="82.3484%" y="1231.50">cor..</text></g><g><title>core::hash::Hasher::write_length_prefix (63 samples, 0.15%)</title><rect x="85.2736%" y="1205" width="0.1460%" height="15" fill="rgb(228,174,30)" fg:x="36793" fg:w="63"/><text x="85.5236%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_usize (61 samples, 0.14%)</title><rect x="85.2782%" y="1189" width="0.1414%" height="15" fill="rgb(252,14,37)" fg:x="36795" fg:w="61"/><text x="85.5282%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (32 samples, 0.07%)</title><rect x="85.6143%" y="1125" width="0.0742%" height="15" fill="rgb(207,111,40)" fg:x="36940" fg:w="32"/><text x="85.8643%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (63 samples, 0.15%)</title><rect x="85.5795%" y="1141" width="0.1460%" height="15" fill="rgb(248,171,54)" fg:x="36925" fg:w="63"/><text x="85.8295%" y="1151.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (16 samples, 0.04%)</title><rect x="85.6885%" y="1125" width="0.0371%" height="15" fill="rgb(211,127,2)" fg:x="36972" fg:w="16"/><text x="85.9385%" y="1135.50"></text></g><g><title>core::hash::sip::u8to64_le (43 samples, 0.10%)</title><rect x="85.7279%" y="1141" width="0.0997%" height="15" fill="rgb(236,87,47)" fg:x="36989" fg:w="43"/><text x="85.9779%" y="1151.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (7 samples, 0.02%)</title><rect x="85.8113%" y="1125" width="0.0162%" height="15" fill="rgb(223,190,45)" fg:x="37025" fg:w="7"/><text x="86.0613%" y="1135.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (169 samples, 0.39%)</title><rect x="85.4382%" y="1189" width="0.3917%" height="15" fill="rgb(215,5,16)" fg:x="36864" fg:w="169"/><text x="85.6882%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (169 samples, 0.39%)</title><rect x="85.4382%" y="1173" width="0.3917%" height="15" fill="rgb(252,82,33)" fg:x="36864" fg:w="169"/><text x="85.6882%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (169 samples, 0.39%)</title><rect x="85.4382%" y="1157" width="0.3917%" height="15" fill="rgb(247,213,44)" fg:x="36864" fg:w="169"/><text x="85.6882%" y="1167.50"></text></g><g><title>core::hash::Hash::hash_slice (1,948 samples, 4.51%)</title><rect x="81.3336%" y="1285" width="4.5148%" height="15" fill="rgb(205,196,44)" fg:x="35093" fg:w="1948"/><text x="81.5836%" y="1295.50">core:..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,948 samples, 4.51%)</title><rect x="81.3336%" y="1269" width="4.5148%" height="15" fill="rgb(237,96,54)" fg:x="35093" fg:w="1948"/><text x="81.5836%" y="1279.50">core:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,811 samples, 4.20%)</title><rect x="81.6511%" y="1253" width="4.1973%" height="15" fill="rgb(230,113,34)" fg:x="35230" fg:w="1811"/><text x="81.9011%" y="1263.50">&lt;slim..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (185 samples, 0.43%)</title><rect x="85.4196%" y="1237" width="0.4288%" height="15" fill="rgb(221,224,12)" fg:x="36856" fg:w="185"/><text x="85.6696%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_isize (185 samples, 0.43%)</title><rect x="85.4196%" y="1221" width="0.4288%" height="15" fill="rgb(219,112,44)" fg:x="36856" fg:w="185"/><text x="85.6696%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_usize (184 samples, 0.43%)</title><rect x="85.4219%" y="1205" width="0.4264%" height="15" fill="rgb(210,31,13)" fg:x="36857" fg:w="184"/><text x="85.6719%" y="1215.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (8 samples, 0.02%)</title><rect x="85.8298%" y="1189" width="0.0185%" height="15" fill="rgb(230,25,16)" fg:x="37033" fg:w="8"/><text x="86.0798%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="85.9318%" y="1189" width="0.0209%" height="15" fill="rgb(246,108,53)" fg:x="37077" fg:w="9"/><text x="86.1818%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="85.9156%" y="1205" width="0.0556%" height="15" fill="rgb(241,172,50)" fg:x="37070" fg:w="24"/><text x="86.1656%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="85.9527%" y="1189" width="0.0185%" height="15" fill="rgb(235,141,10)" fg:x="37086" fg:w="8"/><text x="86.2027%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,020 samples, 4.68%)</title><rect x="81.3336%" y="1317" width="4.6817%" height="15" fill="rgb(220,174,43)" fg:x="35093" fg:w="2020"/><text x="81.5836%" y="1327.50">&lt;allo..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,020 samples, 4.68%)</title><rect x="81.3336%" y="1301" width="4.6817%" height="15" fill="rgb(215,181,40)" fg:x="35093" fg:w="2020"/><text x="81.5836%" y="1311.50">core:..</text></g><g><title>core::hash::Hasher::write_length_prefix (72 samples, 0.17%)</title><rect x="85.8484%" y="1285" width="0.1669%" height="15" fill="rgb(230,97,2)" fg:x="37041" fg:w="72"/><text x="86.0984%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_usize (67 samples, 0.16%)</title><rect x="85.8600%" y="1269" width="0.1553%" height="15" fill="rgb(211,25,27)" fg:x="37046" fg:w="67"/><text x="86.1100%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="85.8600%" y="1253" width="0.1553%" height="15" fill="rgb(230,87,26)" fg:x="37046" fg:w="67"/><text x="86.1100%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="85.8600%" y="1237" width="0.1553%" height="15" fill="rgb(227,160,17)" fg:x="37046" fg:w="67"/><text x="86.1100%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="85.8600%" y="1221" width="0.1553%" height="15" fill="rgb(244,85,34)" fg:x="37046" fg:w="67"/><text x="86.1100%" y="1231.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="85.9759%" y="1205" width="0.0394%" height="15" fill="rgb(207,70,0)" fg:x="37096" fg:w="17"/><text x="86.2259%" y="1215.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (33 samples, 0.08%)</title><rect x="86.2146%" y="1205" width="0.0765%" height="15" fill="rgb(223,129,7)" fg:x="37199" fg:w="33"/><text x="86.4646%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (63 samples, 0.15%)</title><rect x="86.1821%" y="1221" width="0.1460%" height="15" fill="rgb(246,105,7)" fg:x="37185" fg:w="63"/><text x="86.4321%" y="1231.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (16 samples, 0.04%)</title><rect x="86.2911%" y="1205" width="0.0371%" height="15" fill="rgb(215,154,42)" fg:x="37232" fg:w="16"/><text x="86.5411%" y="1215.50"></text></g><g><title>core::hash::sip::u8to64_le (39 samples, 0.09%)</title><rect x="86.3351%" y="1221" width="0.0904%" height="15" fill="rgb(220,215,30)" fg:x="37251" fg:w="39"/><text x="86.5851%" y="1231.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (7 samples, 0.02%)</title><rect x="86.4093%" y="1205" width="0.0162%" height="15" fill="rgb(228,81,51)" fg:x="37283" fg:w="7"/><text x="86.6593%" y="1215.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (172 samples, 0.40%)</title><rect x="86.0315%" y="1269" width="0.3986%" height="15" fill="rgb(247,71,54)" fg:x="37120" fg:w="172"/><text x="86.2815%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (172 samples, 0.40%)</title><rect x="86.0315%" y="1253" width="0.3986%" height="15" fill="rgb(234,176,34)" fg:x="37120" fg:w="172"/><text x="86.2815%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (172 samples, 0.40%)</title><rect x="86.0315%" y="1237" width="0.3986%" height="15" fill="rgb(241,103,54)" fg:x="37120" fg:w="172"/><text x="86.2815%" y="1247.50"></text></g><g><title>core::hash::Hash::hash_slice (2,474 samples, 5.73%)</title><rect x="80.7078%" y="1365" width="5.7339%" height="15" fill="rgb(228,22,34)" fg:x="34823" fg:w="2474"/><text x="80.9578%" y="1375.50">core::h..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,474 samples, 5.73%)</title><rect x="80.7078%" y="1349" width="5.7339%" height="15" fill="rgb(241,179,48)" fg:x="34823" fg:w="2474"/><text x="80.9578%" y="1359.50">core::h..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,386 samples, 5.53%)</title><rect x="80.9118%" y="1333" width="5.5299%" height="15" fill="rgb(235,167,37)" fg:x="34911" fg:w="2386"/><text x="81.1618%" y="1343.50">&lt;slimp:..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (184 samples, 0.43%)</title><rect x="86.0153%" y="1317" width="0.4264%" height="15" fill="rgb(213,109,30)" fg:x="37113" fg:w="184"/><text x="86.2653%" y="1327.50"></text></g><g><title>core::hash::Hasher::write_isize (184 samples, 0.43%)</title><rect x="86.0153%" y="1301" width="0.4264%" height="15" fill="rgb(222,172,16)" fg:x="37113" fg:w="184"/><text x="86.2653%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_usize (183 samples, 0.42%)</title><rect x="86.0176%" y="1285" width="0.4241%" height="15" fill="rgb(233,192,5)" fg:x="37114" fg:w="183"/><text x="86.2676%" y="1295.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (5 samples, 0.01%)</title><rect x="86.4301%" y="1269" width="0.0116%" height="15" fill="rgb(247,189,41)" fg:x="37292" fg:w="5"/><text x="86.6801%" y="1279.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="86.5112%" y="1269" width="0.0162%" height="15" fill="rgb(218,134,47)" fg:x="37327" fg:w="7"/><text x="86.7612%" y="1279.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (17 samples, 0.04%)</title><rect x="86.4950%" y="1285" width="0.0394%" height="15" fill="rgb(216,29,3)" fg:x="37320" fg:w="17"/><text x="86.7450%" y="1295.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="86.4487%" y="1333" width="0.1182%" height="15" fill="rgb(246,140,12)" fg:x="37300" fg:w="51"/><text x="86.6987%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="86.4487%" y="1317" width="0.1182%" height="15" fill="rgb(230,136,11)" fg:x="37300" fg:w="51"/><text x="86.6987%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (51 samples, 0.12%)</title><rect x="86.4487%" y="1301" width="0.1182%" height="15" fill="rgb(247,22,47)" fg:x="37300" fg:w="51"/><text x="86.6987%" y="1311.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="86.5414%" y="1285" width="0.0255%" height="15" fill="rgb(218,84,22)" fg:x="37340" fg:w="11"/><text x="86.7914%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,529 samples, 5.86%)</title><rect x="80.7078%" y="1397" width="5.8614%" height="15" fill="rgb(216,87,39)" fg:x="34823" fg:w="2529"/><text x="80.9578%" y="1407.50">&lt;alloc:..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,529 samples, 5.86%)</title><rect x="80.7078%" y="1381" width="5.8614%" height="15" fill="rgb(221,178,8)" fg:x="34823" fg:w="2529"/><text x="80.9578%" y="1391.50">core::h..</text></g><g><title>core::hash::Hasher::write_length_prefix (55 samples, 0.13%)</title><rect x="86.4417%" y="1365" width="0.1275%" height="15" fill="rgb(230,42,11)" fg:x="37297" fg:w="55"/><text x="86.6917%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_usize (52 samples, 0.12%)</title><rect x="86.4487%" y="1349" width="0.1205%" height="15" fill="rgb(237,229,4)" fg:x="37300" fg:w="52"/><text x="86.6987%" y="1359.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (13 samples, 0.03%)</title><rect x="86.6433%" y="1285" width="0.0301%" height="15" fill="rgb(222,31,33)" fg:x="37384" fg:w="13"/><text x="86.8933%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="86.6341%" y="1301" width="0.0579%" height="15" fill="rgb(210,17,39)" fg:x="37380" fg:w="25"/><text x="86.8841%" y="1311.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="86.6735%" y="1285" width="0.0185%" height="15" fill="rgb(244,93,20)" fg:x="37397" fg:w="8"/><text x="86.9235%" y="1295.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="86.5831%" y="1349" width="0.1553%" height="15" fill="rgb(210,40,47)" fg:x="37358" fg:w="67"/><text x="86.8331%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="86.5831%" y="1333" width="0.1553%" height="15" fill="rgb(239,211,47)" fg:x="37358" fg:w="67"/><text x="86.8331%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (67 samples, 0.16%)</title><rect x="86.5831%" y="1317" width="0.1553%" height="15" fill="rgb(251,223,49)" fg:x="37358" fg:w="67"/><text x="86.8331%" y="1327.50"></text></g><g><title>core::hash::sip::u8to64_le (16 samples, 0.04%)</title><rect x="86.7013%" y="1301" width="0.0371%" height="15" fill="rgb(221,149,5)" fg:x="37409" fg:w="16"/><text x="86.9513%" y="1311.50"></text></g><g><title>core::hash::Hash::hash_slice (2,834 samples, 6.57%)</title><rect x="80.1771%" y="1445" width="6.5682%" height="15" fill="rgb(219,224,51)" fg:x="34594" fg:w="2834"/><text x="80.4271%" y="1455.50">core::has..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,834 samples, 6.57%)</title><rect x="80.1771%" y="1429" width="6.5682%" height="15" fill="rgb(223,7,8)" fg:x="34594" fg:w="2834"/><text x="80.4271%" y="1439.50">core::has..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,812 samples, 6.52%)</title><rect x="80.2281%" y="1413" width="6.5173%" height="15" fill="rgb(241,217,22)" fg:x="34616" fg:w="2812"/><text x="80.4781%" y="1423.50">&lt;slimp::S..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (76 samples, 0.18%)</title><rect x="86.5692%" y="1397" width="0.1761%" height="15" fill="rgb(248,209,0)" fg:x="37352" fg:w="76"/><text x="86.8192%" y="1407.50"></text></g><g><title>core::hash::Hasher::write_isize (76 samples, 0.18%)</title><rect x="86.5692%" y="1381" width="0.1761%" height="15" fill="rgb(217,205,4)" fg:x="37352" fg:w="76"/><text x="86.8192%" y="1391.50"></text></g><g><title>core::hash::Hasher::write_usize (76 samples, 0.18%)</title><rect x="86.5692%" y="1365" width="0.1761%" height="15" fill="rgb(228,124,39)" fg:x="37352" fg:w="76"/><text x="86.8192%" y="1375.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="86.8056%" y="1349" width="0.0116%" height="15" fill="rgb(250,116,42)" fg:x="37454" fg:w="5"/><text x="87.0556%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="86.8009%" y="1365" width="0.0209%" height="15" fill="rgb(223,202,9)" fg:x="37452" fg:w="9"/><text x="87.0509%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,872 samples, 6.66%)</title><rect x="80.1771%" y="1477" width="6.6563%" height="15" fill="rgb(242,222,40)" fg:x="34594" fg:w="2872"/><text x="80.4271%" y="1487.50">&lt;alloc::v..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,872 samples, 6.66%)</title><rect x="80.1771%" y="1461" width="6.6563%" height="15" fill="rgb(229,99,46)" fg:x="34594" fg:w="2872"/><text x="80.4271%" y="1471.50">core::has..</text></g><g><title>core::hash::Hasher::write_length_prefix (38 samples, 0.09%)</title><rect x="86.7453%" y="1445" width="0.0881%" height="15" fill="rgb(225,56,46)" fg:x="37428" fg:w="38"/><text x="86.9953%" y="1455.50"></text></g><g><title>core::hash::Hasher::write_usize (35 samples, 0.08%)</title><rect x="86.7523%" y="1429" width="0.0811%" height="15" fill="rgb(227,94,5)" fg:x="37431" fg:w="35"/><text x="87.0023%" y="1439.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="86.7662%" y="1413" width="0.0672%" height="15" fill="rgb(205,112,38)" fg:x="37437" fg:w="29"/><text x="87.0162%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="86.7662%" y="1397" width="0.0672%" height="15" fill="rgb(231,133,46)" fg:x="37437" fg:w="29"/><text x="87.0162%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (29 samples, 0.07%)</title><rect x="86.7662%" y="1381" width="0.0672%" height="15" fill="rgb(217,16,9)" fg:x="37437" fg:w="29"/><text x="87.0162%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.02%)</title><rect x="86.8658%" y="1381" width="0.0185%" height="15" fill="rgb(249,173,9)" fg:x="37480" fg:w="8"/><text x="87.1158%" y="1391.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,899 samples, 6.72%)</title><rect x="80.1724%" y="1493" width="6.7189%" height="15" fill="rgb(205,163,53)" fg:x="34592" fg:w="2899"/><text x="80.4224%" y="1503.50">&lt;slimp::S..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (25 samples, 0.06%)</title><rect x="86.8334%" y="1477" width="0.0579%" height="15" fill="rgb(217,54,41)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1487.50"></text></g><g><title>core::hash::Hasher::write_isize (25 samples, 0.06%)</title><rect x="86.8334%" y="1461" width="0.0579%" height="15" fill="rgb(228,216,12)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1471.50"></text></g><g><title>core::hash::Hasher::write_usize (25 samples, 0.06%)</title><rect x="86.8334%" y="1445" width="0.0579%" height="15" fill="rgb(244,228,15)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1455.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="86.8334%" y="1429" width="0.0579%" height="15" fill="rgb(221,176,53)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1439.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="86.8334%" y="1413" width="0.0579%" height="15" fill="rgb(205,94,34)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (25 samples, 0.06%)</title><rect x="86.8334%" y="1397" width="0.0579%" height="15" fill="rgb(213,110,48)" fg:x="37466" fg:w="25"/><text x="87.0834%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (6 samples, 0.01%)</title><rect x="86.9006%" y="1397" width="0.0139%" height="15" fill="rgb(236,142,28)" fg:x="37495" fg:w="6"/><text x="87.1506%" y="1407.50"></text></g><g><title>hashbrown::map::make_insert_hash (2,933 samples, 6.80%)</title><rect x="80.1191%" y="1557" width="6.7977%" height="15" fill="rgb(225,135,29)" fg:x="34569" fg:w="2933"/><text x="80.3691%" y="1567.50">hashbrown..</text></g><g><title>core::hash::BuildHasher::hash_one (2,932 samples, 6.80%)</title><rect x="80.1214%" y="1541" width="6.7954%" height="15" fill="rgb(252,45,31)" fg:x="34570" fg:w="2932"/><text x="80.3714%" y="1551.50">core::has..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (2,912 samples, 6.75%)</title><rect x="80.1678%" y="1525" width="6.7490%" height="15" fill="rgb(211,187,50)" fg:x="34590" fg:w="2912"/><text x="80.4178%" y="1535.50">core::has..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (2,911 samples, 6.75%)</title><rect x="80.1701%" y="1509" width="6.7467%" height="15" fill="rgb(229,109,7)" fg:x="34591" fg:w="2911"/><text x="80.4201%" y="1519.50">&lt;slimp::R..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (11 samples, 0.03%)</title><rect x="86.8913%" y="1493" width="0.0255%" height="15" fill="rgb(251,131,51)" fg:x="37491" fg:w="11"/><text x="87.1413%" y="1503.50"></text></g><g><title>core::hash::Hasher::write_isize (11 samples, 0.03%)</title><rect x="86.8913%" y="1477" width="0.0255%" height="15" fill="rgb(251,180,35)" fg:x="37491" fg:w="11"/><text x="87.1413%" y="1487.50"></text></g><g><title>core::hash::Hasher::write_usize (11 samples, 0.03%)</title><rect x="86.8913%" y="1461" width="0.0255%" height="15" fill="rgb(211,46,32)" fg:x="37491" fg:w="11"/><text x="87.1413%" y="1471.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="86.8936%" y="1445" width="0.0232%" height="15" fill="rgb(248,123,17)" fg:x="37492" fg:w="10"/><text x="87.1436%" y="1455.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="86.8936%" y="1429" width="0.0232%" height="15" fill="rgb(227,141,18)" fg:x="37492" fg:w="10"/><text x="87.1436%" y="1439.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (10 samples, 0.02%)</title><rect x="86.8936%" y="1413" width="0.0232%" height="15" fill="rgb(216,102,9)" fg:x="37492" fg:w="10"/><text x="87.1436%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find::{{closure}} (95 samples, 0.22%)</title><rect x="86.9330%" y="1509" width="0.2202%" height="15" fill="rgb(253,47,13)" fg:x="37509" fg:w="95"/><text x="87.1830%" y="1519.50"></text></g><g><title>hashbrown::map::equivalent_key::{{closure}} (95 samples, 0.22%)</title><rect x="86.9330%" y="1493" width="0.2202%" height="15" fill="rgb(226,93,23)" fg:x="37509" fg:w="95"/><text x="87.1830%" y="1503.50"></text></g><g><title>&lt;slimp::Rule as core::cmp::PartialEq&gt;::eq (95 samples, 0.22%)</title><rect x="86.9330%" y="1477" width="0.2202%" height="15" fill="rgb(247,104,17)" fg:x="37509" fg:w="95"/><text x="87.1830%" y="1487.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (76 samples, 0.18%)</title><rect x="86.9771%" y="1461" width="0.1761%" height="15" fill="rgb(233,203,26)" fg:x="37528" fg:w="76"/><text x="87.2271%" y="1471.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (74 samples, 0.17%)</title><rect x="86.9817%" y="1445" width="0.1715%" height="15" fill="rgb(244,98,49)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1455.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (74 samples, 0.17%)</title><rect x="86.9817%" y="1429" width="0.1715%" height="15" fill="rgb(235,134,22)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1439.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (74 samples, 0.17%)</title><rect x="86.9817%" y="1413" width="0.1715%" height="15" fill="rgb(221,70,32)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (74 samples, 0.17%)</title><rect x="86.9817%" y="1397" width="0.1715%" height="15" fill="rgb(238,15,50)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1407.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (74 samples, 0.17%)</title><rect x="86.9817%" y="1381" width="0.1715%" height="15" fill="rgb(215,221,48)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (74 samples, 0.17%)</title><rect x="86.9817%" y="1365" width="0.1715%" height="15" fill="rgb(236,73,3)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1375.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (74 samples, 0.17%)</title><rect x="86.9817%" y="1349" width="0.1715%" height="15" fill="rgb(250,107,11)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1359.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (74 samples, 0.17%)</title><rect x="86.9817%" y="1333" width="0.1715%" height="15" fill="rgb(242,39,14)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1343.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (74 samples, 0.17%)</title><rect x="86.9817%" y="1317" width="0.1715%" height="15" fill="rgb(248,164,37)" fg:x="37530" fg:w="74"/><text x="87.2317%" y="1327.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (42 samples, 0.10%)</title><rect x="87.0559%" y="1301" width="0.0973%" height="15" fill="rgb(217,60,12)" fg:x="37562" fg:w="42"/><text x="87.3059%" y="1311.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (42 samples, 0.10%)</title><rect x="87.0559%" y="1285" width="0.0973%" height="15" fill="rgb(240,125,29)" fg:x="37562" fg:w="42"/><text x="87.3059%" y="1295.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (42 samples, 0.10%)</title><rect x="87.0559%" y="1269" width="0.0973%" height="15" fill="rgb(208,207,28)" fg:x="37562" fg:w="42"/><text x="87.3059%" y="1279.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (41 samples, 0.10%)</title><rect x="87.0582%" y="1253" width="0.0950%" height="15" fill="rgb(209,159,27)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (41 samples, 0.10%)</title><rect x="87.0582%" y="1237" width="0.0950%" height="15" fill="rgb(251,176,53)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (41 samples, 0.10%)</title><rect x="87.0582%" y="1221" width="0.0950%" height="15" fill="rgb(211,85,7)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1231.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (41 samples, 0.10%)</title><rect x="87.0582%" y="1205" width="0.0950%" height="15" fill="rgb(216,64,54)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1215.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (41 samples, 0.10%)</title><rect x="87.0582%" y="1189" width="0.0950%" height="15" fill="rgb(217,54,24)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1199.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (41 samples, 0.10%)</title><rect x="87.0582%" y="1173" width="0.0950%" height="15" fill="rgb(208,206,53)" fg:x="37563" fg:w="41"/><text x="87.3082%" y="1183.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (21 samples, 0.05%)</title><rect x="87.1045%" y="1157" width="0.0487%" height="15" fill="rgb(251,74,39)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1167.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (21 samples, 0.05%)</title><rect x="87.1045%" y="1141" width="0.0487%" height="15" fill="rgb(226,47,5)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1151.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (21 samples, 0.05%)</title><rect x="87.1045%" y="1125" width="0.0487%" height="15" fill="rgb(234,111,33)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (21 samples, 0.05%)</title><rect x="87.1045%" y="1109" width="0.0487%" height="15" fill="rgb(251,14,10)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (21 samples, 0.05%)</title><rect x="87.1045%" y="1093" width="0.0487%" height="15" fill="rgb(232,43,0)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (21 samples, 0.05%)</title><rect x="87.1045%" y="1077" width="0.0487%" height="15" fill="rgb(222,68,43)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1087.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (21 samples, 0.05%)</title><rect x="87.1045%" y="1061" width="0.0487%" height="15" fill="rgb(217,24,23)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1071.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (21 samples, 0.05%)</title><rect x="87.1045%" y="1045" width="0.0487%" height="15" fill="rgb(229,209,14)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1055.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (21 samples, 0.05%)</title><rect x="87.1045%" y="1029" width="0.0487%" height="15" fill="rgb(250,149,48)" fg:x="37583" fg:w="21"/><text x="87.3545%" y="1039.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (5 samples, 0.01%)</title><rect x="87.1416%" y="1013" width="0.0116%" height="15" fill="rgb(210,120,37)" fg:x="37599" fg:w="5"/><text x="87.3916%" y="1023.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (5 samples, 0.01%)</title><rect x="87.1416%" y="997" width="0.0116%" height="15" fill="rgb(210,21,8)" fg:x="37599" fg:w="5"/><text x="87.3916%" y="1007.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (5 samples, 0.01%)</title><rect x="87.1416%" y="981" width="0.0116%" height="15" fill="rgb(243,145,7)" fg:x="37599" fg:w="5"/><text x="87.3916%" y="991.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (5 samples, 0.01%)</title><rect x="87.1416%" y="965" width="0.0116%" height="15" fill="rgb(238,178,32)" fg:x="37599" fg:w="5"/><text x="87.3916%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.01%)</title><rect x="87.1416%" y="949" width="0.0116%" height="15" fill="rgb(222,4,10)" fg:x="37599" fg:w="5"/><text x="87.3916%" y="959.50"></text></g><g><title>hashbrown::raw::h2 (6 samples, 0.01%)</title><rect x="87.1532%" y="1509" width="0.0139%" height="15" fill="rgb(239,7,37)" fg:x="37604" fg:w="6"/><text x="87.4032%" y="1519.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (50 samples, 0.12%)</title><rect x="87.1671%" y="1509" width="0.1159%" height="15" fill="rgb(215,31,37)" fg:x="37610" fg:w="50"/><text x="87.4171%" y="1519.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (50 samples, 0.12%)</title><rect x="87.1671%" y="1493" width="0.1159%" height="15" fill="rgb(224,83,33)" fg:x="37610" fg:w="50"/><text x="87.4171%" y="1503.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (50 samples, 0.12%)</title><rect x="87.1671%" y="1477" width="0.1159%" height="15" fill="rgb(239,55,3)" fg:x="37610" fg:w="50"/><text x="87.4171%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (165 samples, 0.38%)</title><rect x="86.9168%" y="1557" width="0.3824%" height="15" fill="rgb(247,92,11)" fg:x="37502" fg:w="165"/><text x="87.1668%" y="1567.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (165 samples, 0.38%)</title><rect x="86.9168%" y="1541" width="0.3824%" height="15" fill="rgb(239,200,7)" fg:x="37502" fg:w="165"/><text x="87.1668%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_inner (165 samples, 0.38%)</title><rect x="86.9168%" y="1525" width="0.3824%" height="15" fill="rgb(227,115,8)" fg:x="37502" fg:w="165"/><text x="87.1668%" y="1535.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::write (30 samples, 0.07%)</title><rect x="87.3155%" y="1541" width="0.0695%" height="15" fill="rgb(215,189,27)" fg:x="37674" fg:w="30"/><text x="87.5655%" y="1551.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (30 samples, 0.07%)</title><rect x="87.3155%" y="1525" width="0.0695%" height="15" fill="rgb(251,216,39)" fg:x="37674" fg:w="30"/><text x="87.5655%" y="1535.50"></text></g><g><title>core::ptr::write (30 samples, 0.07%)</title><rect x="87.3155%" y="1509" width="0.0695%" height="15" fill="rgb(207,29,47)" fg:x="37674" fg:w="30"/><text x="87.5655%" y="1519.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="87.3873%" y="1477" width="0.0139%" height="15" fill="rgb(210,71,34)" fg:x="37705" fg:w="6"/><text x="87.6373%" y="1487.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.01%)</title><rect x="87.4244%" y="1365" width="0.0116%" height="15" fill="rgb(253,217,51)" fg:x="37721" fg:w="5"/><text x="87.6744%" y="1375.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="87.4406%" y="1349" width="0.0116%" height="15" fill="rgb(222,117,46)" fg:x="37728" fg:w="5"/><text x="87.6906%" y="1359.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="87.4105%" y="1413" width="0.0487%" height="15" fill="rgb(226,132,6)" fg:x="37715" fg:w="21"/><text x="87.6605%" y="1423.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="87.4105%" y="1397" width="0.0487%" height="15" fill="rgb(254,145,51)" fg:x="37715" fg:w="21"/><text x="87.6605%" y="1407.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (21 samples, 0.05%)</title><rect x="87.4105%" y="1381" width="0.0487%" height="15" fill="rgb(231,199,27)" fg:x="37715" fg:w="21"/><text x="87.6605%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (10 samples, 0.02%)</title><rect x="87.4360%" y="1365" width="0.0232%" height="15" fill="rgb(245,158,14)" fg:x="37726" fg:w="10"/><text x="87.6860%" y="1375.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="87.5125%" y="1301" width="0.0255%" height="15" fill="rgb(240,113,14)" fg:x="37759" fg:w="11"/><text x="87.7625%" y="1311.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="87.5495%" y="1189" width="0.0116%" height="15" fill="rgb(210,20,13)" fg:x="37775" fg:w="5"/><text x="87.7995%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="87.5472%" y="1205" width="0.0209%" height="15" fill="rgb(241,144,13)" fg:x="37774" fg:w="9"/><text x="87.7972%" y="1215.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (21 samples, 0.05%)</title><rect x="87.5380%" y="1301" width="0.0487%" height="15" fill="rgb(235,43,34)" fg:x="37770" fg:w="21"/><text x="87.7880%" y="1311.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (19 samples, 0.04%)</title><rect x="87.5426%" y="1285" width="0.0440%" height="15" fill="rgb(208,36,20)" fg:x="37772" fg:w="19"/><text x="87.7926%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_u32 (19 samples, 0.04%)</title><rect x="87.5426%" y="1269" width="0.0440%" height="15" fill="rgb(239,204,10)" fg:x="37772" fg:w="19"/><text x="87.7926%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="87.5426%" y="1253" width="0.0440%" height="15" fill="rgb(217,84,43)" fg:x="37772" fg:w="19"/><text x="87.7926%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="87.5426%" y="1237" width="0.0440%" height="15" fill="rgb(241,170,50)" fg:x="37772" fg:w="19"/><text x="87.7926%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (19 samples, 0.04%)</title><rect x="87.5426%" y="1221" width="0.0440%" height="15" fill="rgb(226,205,29)" fg:x="37772" fg:w="19"/><text x="87.7926%" y="1231.50"></text></g><g><title>core::hash::sip::u8to64_le (7 samples, 0.02%)</title><rect x="87.5704%" y="1205" width="0.0162%" height="15" fill="rgb(233,113,1)" fg:x="37784" fg:w="7"/><text x="87.8204%" y="1215.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 0.02%)</title><rect x="88.3932%" y="1221" width="0.0209%" height="15" fill="rgb(253,98,13)" fg:x="38139" fg:w="9"/><text x="88.6432%" y="1231.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (6 samples, 0.01%)</title><rect x="88.4001%" y="1205" width="0.0139%" height="15" fill="rgb(211,115,12)" fg:x="38142" fg:w="6"/><text x="88.6501%" y="1215.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (6 samples, 0.01%)</title><rect x="88.4001%" y="1189" width="0.0139%" height="15" fill="rgb(208,12,16)" fg:x="38142" fg:w="6"/><text x="88.6501%" y="1199.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (6 samples, 0.01%)</title><rect x="88.4001%" y="1173" width="0.0139%" height="15" fill="rgb(237,193,54)" fg:x="38142" fg:w="6"/><text x="88.6501%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (16 samples, 0.04%)</title><rect x="88.4882%" y="1125" width="0.0371%" height="15" fill="rgb(243,22,42)" fg:x="38180" fg:w="16"/><text x="88.7382%" y="1135.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (8 samples, 0.02%)</title><rect x="88.5067%" y="1109" width="0.0185%" height="15" fill="rgb(233,151,36)" fg:x="38188" fg:w="8"/><text x="88.7567%" y="1119.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (68 samples, 0.16%)</title><rect x="88.4372%" y="1173" width="0.1576%" height="15" fill="rgb(237,57,45)" fg:x="38158" fg:w="68"/><text x="88.6872%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (68 samples, 0.16%)</title><rect x="88.4372%" y="1157" width="0.1576%" height="15" fill="rgb(221,88,17)" fg:x="38158" fg:w="68"/><text x="88.6872%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (68 samples, 0.16%)</title><rect x="88.4372%" y="1141" width="0.1576%" height="15" fill="rgb(230,79,15)" fg:x="38158" fg:w="68"/><text x="88.6872%" y="1151.50"></text></g><g><title>core::hash::sip::u8to64_le (26 samples, 0.06%)</title><rect x="88.5345%" y="1125" width="0.0603%" height="15" fill="rgb(213,57,13)" fg:x="38200" fg:w="26"/><text x="88.7845%" y="1135.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (80 samples, 0.19%)</title><rect x="88.4140%" y="1221" width="0.1854%" height="15" fill="rgb(222,116,39)" fg:x="38148" fg:w="80"/><text x="88.6640%" y="1231.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (74 samples, 0.17%)</title><rect x="88.4279%" y="1205" width="0.1715%" height="15" fill="rgb(245,107,2)" fg:x="38154" fg:w="74"/><text x="88.6779%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_u32 (70 samples, 0.16%)</title><rect x="88.4372%" y="1189" width="0.1622%" height="15" fill="rgb(238,1,10)" fg:x="38158" fg:w="70"/><text x="88.6872%" y="1199.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (27 samples, 0.06%)</title><rect x="89.1348%" y="1141" width="0.0626%" height="15" fill="rgb(249,4,48)" fg:x="38459" fg:w="27"/><text x="89.3848%" y="1151.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (15 samples, 0.03%)</title><rect x="89.1626%" y="1125" width="0.0348%" height="15" fill="rgb(223,151,18)" fg:x="38471" fg:w="15"/><text x="89.4126%" y="1135.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (15 samples, 0.03%)</title><rect x="89.1626%" y="1109" width="0.0348%" height="15" fill="rgb(227,65,43)" fg:x="38471" fg:w="15"/><text x="89.4126%" y="1119.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (15 samples, 0.03%)</title><rect x="89.1626%" y="1093" width="0.0348%" height="15" fill="rgb(218,40,45)" fg:x="38471" fg:w="15"/><text x="89.4126%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (34 samples, 0.08%)</title><rect x="89.3086%" y="1045" width="0.0788%" height="15" fill="rgb(252,121,31)" fg:x="38534" fg:w="34"/><text x="89.5586%" y="1055.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="89.3550%" y="1029" width="0.0324%" height="15" fill="rgb(219,158,43)" fg:x="38554" fg:w="14"/><text x="89.6050%" y="1039.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="89.3874%" y="1045" width="0.0116%" height="15" fill="rgb(231,162,42)" fg:x="38568" fg:w="5"/><text x="89.6374%" y="1055.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="89.3874%" y="1029" width="0.0116%" height="15" fill="rgb(217,179,25)" fg:x="38568" fg:w="5"/><text x="89.6374%" y="1039.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="89.3874%" y="1013" width="0.0116%" height="15" fill="rgb(206,212,31)" fg:x="38568" fg:w="5"/><text x="89.6374%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (112 samples, 0.26%)</title><rect x="89.2229%" y="1093" width="0.2596%" height="15" fill="rgb(235,144,12)" fg:x="38497" fg:w="112"/><text x="89.4729%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (112 samples, 0.26%)</title><rect x="89.2229%" y="1077" width="0.2596%" height="15" fill="rgb(213,51,10)" fg:x="38497" fg:w="112"/><text x="89.4729%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (112 samples, 0.26%)</title><rect x="89.2229%" y="1061" width="0.2596%" height="15" fill="rgb(231,145,14)" fg:x="38497" fg:w="112"/><text x="89.4729%" y="1071.50"></text></g><g><title>core::hash::sip::u8to64_le (36 samples, 0.08%)</title><rect x="89.3990%" y="1045" width="0.0834%" height="15" fill="rgb(235,15,28)" fg:x="38573" fg:w="36"/><text x="89.6490%" y="1055.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (126 samples, 0.29%)</title><rect x="89.1974%" y="1141" width="0.2920%" height="15" fill="rgb(237,206,10)" fg:x="38486" fg:w="126"/><text x="89.4474%" y="1151.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (120 samples, 0.28%)</title><rect x="89.2113%" y="1125" width="0.2781%" height="15" fill="rgb(236,227,27)" fg:x="38492" fg:w="120"/><text x="89.4613%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_u32 (115 samples, 0.27%)</title><rect x="89.2229%" y="1109" width="0.2665%" height="15" fill="rgb(246,83,35)" fg:x="38497" fg:w="115"/><text x="89.4729%" y="1119.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (16 samples, 0.04%)</title><rect x="90.1059%" y="1061" width="0.0371%" height="15" fill="rgb(220,136,24)" fg:x="38878" fg:w="16"/><text x="90.3559%" y="1071.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (5 samples, 0.01%)</title><rect x="90.1314%" y="1045" width="0.0116%" height="15" fill="rgb(217,3,25)" fg:x="38889" fg:w="5"/><text x="90.3814%" y="1055.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (5 samples, 0.01%)</title><rect x="90.1314%" y="1029" width="0.0116%" height="15" fill="rgb(239,24,14)" fg:x="38889" fg:w="5"/><text x="90.3814%" y="1039.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (5 samples, 0.01%)</title><rect x="90.1314%" y="1013" width="0.0116%" height="15" fill="rgb(244,16,53)" fg:x="38889" fg:w="5"/><text x="90.3814%" y="1023.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (12 samples, 0.03%)</title><rect x="90.3168%" y="949" width="0.0278%" height="15" fill="rgb(208,175,44)" fg:x="38969" fg:w="12"/><text x="90.5668%" y="959.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (35 samples, 0.08%)</title><rect x="90.2751%" y="965" width="0.0811%" height="15" fill="rgb(252,18,48)" fg:x="38951" fg:w="35"/><text x="90.5251%" y="975.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.01%)</title><rect x="90.3446%" y="949" width="0.0116%" height="15" fill="rgb(234,199,32)" fg:x="38981" fg:w="5"/><text x="90.5946%" y="959.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="90.3562%" y="965" width="0.0139%" height="15" fill="rgb(225,77,54)" fg:x="38986" fg:w="6"/><text x="90.6062%" y="975.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="90.3562%" y="949" width="0.0139%" height="15" fill="rgb(225,42,25)" fg:x="38986" fg:w="6"/><text x="90.6062%" y="959.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="90.3562%" y="933" width="0.0139%" height="15" fill="rgb(242,227,46)" fg:x="38986" fg:w="6"/><text x="90.6062%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (123 samples, 0.29%)</title><rect x="90.1847%" y="1013" width="0.2851%" height="15" fill="rgb(246,197,35)" fg:x="38912" fg:w="123"/><text x="90.4347%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (123 samples, 0.29%)</title><rect x="90.1847%" y="997" width="0.2851%" height="15" fill="rgb(215,159,26)" fg:x="38912" fg:w="123"/><text x="90.4347%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (123 samples, 0.29%)</title><rect x="90.1847%" y="981" width="0.2851%" height="15" fill="rgb(212,194,50)" fg:x="38912" fg:w="123"/><text x="90.4347%" y="991.50"></text></g><g><title>core::hash::sip::u8to64_le (43 samples, 0.10%)</title><rect x="90.3701%" y="965" width="0.0997%" height="15" fill="rgb(246,132,1)" fg:x="38992" fg:w="43"/><text x="90.6201%" y="975.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (142 samples, 0.33%)</title><rect x="90.1430%" y="1061" width="0.3291%" height="15" fill="rgb(217,71,7)" fg:x="38894" fg:w="142"/><text x="90.3930%" y="1071.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (132 samples, 0.31%)</title><rect x="90.1662%" y="1045" width="0.3059%" height="15" fill="rgb(252,59,32)" fg:x="38904" fg:w="132"/><text x="90.4162%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_u32 (124 samples, 0.29%)</title><rect x="90.1847%" y="1029" width="0.2874%" height="15" fill="rgb(253,204,25)" fg:x="38912" fg:w="124"/><text x="90.4347%" y="1039.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (10 samples, 0.02%)</title><rect x="90.9820%" y="981" width="0.0232%" height="15" fill="rgb(232,21,16)" fg:x="39256" fg:w="10"/><text x="91.2320%" y="991.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="91.1187%" y="869" width="0.0116%" height="15" fill="rgb(248,90,29)" fg:x="39315" fg:w="5"/><text x="91.3687%" y="879.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (24 samples, 0.06%)</title><rect x="91.0909%" y="885" width="0.0556%" height="15" fill="rgb(249,223,7)" fg:x="39303" fg:w="24"/><text x="91.3409%" y="895.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="91.1303%" y="869" width="0.0162%" height="15" fill="rgb(231,119,42)" fg:x="39320" fg:w="7"/><text x="91.3803%" y="879.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (118 samples, 0.27%)</title><rect x="91.0052%" y="981" width="0.2735%" height="15" fill="rgb(215,41,35)" fg:x="39266" fg:w="118"/><text x="91.2552%" y="991.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (105 samples, 0.24%)</title><rect x="91.0353%" y="965" width="0.2434%" height="15" fill="rgb(220,44,45)" fg:x="39279" fg:w="105"/><text x="91.2853%" y="975.50"></text></g><g><title>core::hash::Hasher::write_u32 (103 samples, 0.24%)</title><rect x="91.0399%" y="949" width="0.2387%" height="15" fill="rgb(253,197,36)" fg:x="39281" fg:w="103"/><text x="91.2899%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="91.0399%" y="933" width="0.2387%" height="15" fill="rgb(245,225,54)" fg:x="39281" fg:w="103"/><text x="91.2899%" y="943.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="91.0399%" y="917" width="0.2387%" height="15" fill="rgb(239,94,37)" fg:x="39281" fg:w="103"/><text x="91.2899%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="91.0399%" y="901" width="0.2387%" height="15" fill="rgb(242,217,10)" fg:x="39281" fg:w="103"/><text x="91.2899%" y="911.50"></text></g><g><title>core::hash::sip::u8to64_le (54 samples, 0.13%)</title><rect x="91.1535%" y="885" width="0.1252%" height="15" fill="rgb(250,193,7)" fg:x="39330" fg:w="54"/><text x="91.4035%" y="895.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (11 samples, 0.03%)</title><rect x="91.6541%" y="901" width="0.0255%" height="15" fill="rgb(230,104,19)" fg:x="39546" fg:w="11"/><text x="91.9041%" y="911.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="91.7584%" y="789" width="0.0116%" height="15" fill="rgb(230,181,4)" fg:x="39591" fg:w="5"/><text x="92.0084%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (19 samples, 0.04%)</title><rect x="91.7422%" y="805" width="0.0440%" height="15" fill="rgb(216,219,49)" fg:x="39584" fg:w="19"/><text x="91.9922%" y="815.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (7 samples, 0.02%)</title><rect x="91.7700%" y="789" width="0.0162%" height="15" fill="rgb(254,144,0)" fg:x="39596" fg:w="7"/><text x="92.0200%" y="799.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (67 samples, 0.16%)</title><rect x="91.6796%" y="901" width="0.1553%" height="15" fill="rgb(205,209,38)" fg:x="39557" fg:w="67"/><text x="91.9296%" y="911.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (62 samples, 0.14%)</title><rect x="91.6912%" y="885" width="0.1437%" height="15" fill="rgb(240,21,42)" fg:x="39562" fg:w="62"/><text x="91.9412%" y="895.50"></text></g><g><title>core::hash::Hasher::write_u32 (55 samples, 0.13%)</title><rect x="91.7074%" y="869" width="0.1275%" height="15" fill="rgb(241,132,3)" fg:x="39569" fg:w="55"/><text x="91.9574%" y="879.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="91.7074%" y="853" width="0.1275%" height="15" fill="rgb(225,14,2)" fg:x="39569" fg:w="55"/><text x="91.9574%" y="863.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="91.7074%" y="837" width="0.1275%" height="15" fill="rgb(210,141,35)" fg:x="39569" fg:w="55"/><text x="91.9574%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="91.7074%" y="821" width="0.1275%" height="15" fill="rgb(251,14,44)" fg:x="39569" fg:w="55"/><text x="91.9574%" y="831.50"></text></g><g><title>core::hash::sip::u8to64_le (17 samples, 0.04%)</title><rect x="91.7955%" y="805" width="0.0394%" height="15" fill="rgb(247,48,18)" fg:x="39607" fg:w="17"/><text x="92.0455%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (9 samples, 0.02%)</title><rect x="92.0945%" y="725" width="0.0209%" height="15" fill="rgb(225,0,40)" fg:x="39736" fg:w="9"/><text x="92.3445%" y="735.50"></text></g><g><title>&lt;intaglio::Symbol as core::hash::Hash&gt;::hash (38 samples, 0.09%)</title><rect x="92.0574%" y="821" width="0.0881%" height="15" fill="rgb(221,31,33)" fg:x="39720" fg:w="38"/><text x="92.3074%" y="831.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u32&gt;::hash (33 samples, 0.08%)</title><rect x="92.0690%" y="805" width="0.0765%" height="15" fill="rgb(237,42,40)" fg:x="39725" fg:w="33"/><text x="92.3190%" y="815.50"></text></g><g><title>core::hash::Hasher::write_u32 (31 samples, 0.07%)</title><rect x="92.0736%" y="789" width="0.0718%" height="15" fill="rgb(233,51,29)" fg:x="39727" fg:w="31"/><text x="92.3236%" y="799.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="92.0736%" y="773" width="0.0718%" height="15" fill="rgb(226,58,20)" fg:x="39727" fg:w="31"/><text x="92.3236%" y="783.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="92.0736%" y="757" width="0.0718%" height="15" fill="rgb(208,98,7)" fg:x="39727" fg:w="31"/><text x="92.3236%" y="767.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (31 samples, 0.07%)</title><rect x="92.0736%" y="741" width="0.0718%" height="15" fill="rgb(228,143,44)" fg:x="39727" fg:w="31"/><text x="92.3236%" y="751.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="92.1223%" y="725" width="0.0232%" height="15" fill="rgb(246,55,38)" fg:x="39748" fg:w="10"/><text x="92.3723%" y="735.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="92.2405%" y="693" width="0.0232%" height="15" fill="rgb(247,87,16)" fg:x="39799" fg:w="10"/><text x="92.4905%" y="703.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (15 samples, 0.03%)</title><rect x="92.2312%" y="709" width="0.0348%" height="15" fill="rgb(234,129,42)" fg:x="39795" fg:w="15"/><text x="92.4812%" y="719.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (39 samples, 0.09%)</title><rect x="92.1988%" y="757" width="0.0904%" height="15" fill="rgb(220,82,16)" fg:x="39781" fg:w="39"/><text x="92.4488%" y="767.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (39 samples, 0.09%)</title><rect x="92.1988%" y="741" width="0.0904%" height="15" fill="rgb(211,88,4)" fg:x="39781" fg:w="39"/><text x="92.4488%" y="751.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (39 samples, 0.09%)</title><rect x="92.1988%" y="725" width="0.0904%" height="15" fill="rgb(248,151,21)" fg:x="39781" fg:w="39"/><text x="92.4488%" y="735.50"></text></g><g><title>core::hash::sip::u8to64_le (9 samples, 0.02%)</title><rect x="92.2683%" y="709" width="0.0209%" height="15" fill="rgb(238,163,6)" fg:x="39811" fg:w="9"/><text x="92.5183%" y="719.50"></text></g><g><title>core::hash::Hash::hash_slice (108 samples, 0.25%)</title><rect x="92.0481%" y="853" width="0.2503%" height="15" fill="rgb(209,183,11)" fg:x="39716" fg:w="108"/><text x="92.2981%" y="863.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (108 samples, 0.25%)</title><rect x="92.0481%" y="837" width="0.2503%" height="15" fill="rgb(219,37,20)" fg:x="39716" fg:w="108"/><text x="92.2981%" y="847.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (66 samples, 0.15%)</title><rect x="92.1455%" y="821" width="0.1530%" height="15" fill="rgb(210,158,4)" fg:x="39758" fg:w="66"/><text x="92.3955%" y="831.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (44 samples, 0.10%)</title><rect x="92.1964%" y="805" width="0.1020%" height="15" fill="rgb(221,167,53)" fg:x="39780" fg:w="44"/><text x="92.4464%" y="815.50"></text></g><g><title>core::hash::Hasher::write_isize (44 samples, 0.10%)</title><rect x="92.1964%" y="789" width="0.1020%" height="15" fill="rgb(237,151,45)" fg:x="39780" fg:w="44"/><text x="92.4464%" y="799.50"></text></g><g><title>core::hash::Hasher::write_usize (44 samples, 0.10%)</title><rect x="92.1964%" y="773" width="0.1020%" height="15" fill="rgb(231,39,3)" fg:x="39780" fg:w="44"/><text x="92.4464%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (124 samples, 0.29%)</title><rect x="92.0481%" y="885" width="0.2874%" height="15" fill="rgb(212,167,28)" fg:x="39716" fg:w="124"/><text x="92.2981%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (124 samples, 0.29%)</title><rect x="92.0481%" y="869" width="0.2874%" height="15" fill="rgb(232,178,8)" fg:x="39716" fg:w="124"/><text x="92.2981%" y="879.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (16 samples, 0.04%)</title><rect x="92.2984%" y="853" width="0.0371%" height="15" fill="rgb(225,151,20)" fg:x="39824" fg:w="16"/><text x="92.5484%" y="863.50"></text></g><g><title>core::hash::Hasher::write_usize (14 samples, 0.03%)</title><rect x="92.3031%" y="837" width="0.0324%" height="15" fill="rgb(238,3,37)" fg:x="39826" fg:w="14"/><text x="92.5531%" y="847.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="92.3031%" y="821" width="0.0324%" height="15" fill="rgb(251,147,42)" fg:x="39826" fg:w="14"/><text x="92.5531%" y="831.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="92.3031%" y="805" width="0.0324%" height="15" fill="rgb(208,173,10)" fg:x="39826" fg:w="14"/><text x="92.5531%" y="815.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (14 samples, 0.03%)</title><rect x="92.3031%" y="789" width="0.0324%" height="15" fill="rgb(246,225,4)" fg:x="39826" fg:w="14"/><text x="92.5531%" y="799.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (26 samples, 0.06%)</title><rect x="92.4699%" y="773" width="0.0603%" height="15" fill="rgb(248,102,6)" fg:x="39898" fg:w="26"/><text x="92.7199%" y="783.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (47 samples, 0.11%)</title><rect x="92.4514%" y="789" width="0.1089%" height="15" fill="rgb(232,6,21)" fg:x="39890" fg:w="47"/><text x="92.7014%" y="799.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (13 samples, 0.03%)</title><rect x="92.5302%" y="773" width="0.0301%" height="15" fill="rgb(221,179,22)" fg:x="39924" fg:w="13"/><text x="92.7802%" y="783.50"></text></g><g><title>core::hash::sip::u8to64_le (13 samples, 0.03%)</title><rect x="92.5603%" y="789" width="0.0301%" height="15" fill="rgb(252,50,20)" fg:x="39937" fg:w="13"/><text x="92.8103%" y="799.50"></text></g><g><title>core::hash::Hash::hash_slice (412 samples, 0.95%)</title><rect x="91.6402%" y="933" width="0.9549%" height="15" fill="rgb(222,56,38)" fg:x="39540" fg:w="412"/><text x="91.8902%" y="943.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (412 samples, 0.95%)</title><rect x="91.6402%" y="917" width="0.9549%" height="15" fill="rgb(206,193,29)" fg:x="39540" fg:w="412"/><text x="91.8902%" y="927.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (328 samples, 0.76%)</title><rect x="91.8349%" y="901" width="0.7602%" height="15" fill="rgb(239,192,45)" fg:x="39624" fg:w="328"/><text x="92.0849%" y="911.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (112 samples, 0.26%)</title><rect x="92.3355%" y="885" width="0.2596%" height="15" fill="rgb(254,18,36)" fg:x="39840" fg:w="112"/><text x="92.5855%" y="895.50"></text></g><g><title>core::hash::Hasher::write_isize (112 samples, 0.26%)</title><rect x="92.3355%" y="869" width="0.2596%" height="15" fill="rgb(221,127,11)" fg:x="39840" fg:w="112"/><text x="92.5855%" y="879.50"></text></g><g><title>core::hash::Hasher::write_usize (112 samples, 0.26%)</title><rect x="92.3355%" y="853" width="0.2596%" height="15" fill="rgb(234,146,35)" fg:x="39840" fg:w="112"/><text x="92.5855%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="92.3564%" y="837" width="0.2387%" height="15" fill="rgb(254,201,37)" fg:x="39849" fg:w="103"/><text x="92.6064%" y="847.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="92.3564%" y="821" width="0.2387%" height="15" fill="rgb(211,202,23)" fg:x="39849" fg:w="103"/><text x="92.6064%" y="831.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (103 samples, 0.24%)</title><rect x="92.3564%" y="805" width="0.2387%" height="15" fill="rgb(237,91,2)" fg:x="39849" fg:w="103"/><text x="92.6064%" y="815.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="92.6484%" y="837" width="0.0162%" height="15" fill="rgb(226,228,36)" fg:x="39975" fg:w="7"/><text x="92.8984%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.03%)</title><rect x="92.6438%" y="853" width="0.0278%" height="15" fill="rgb(213,63,50)" fg:x="39973" fg:w="12"/><text x="92.8938%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (41 samples, 0.10%)</title><rect x="92.6067%" y="901" width="0.0950%" height="15" fill="rgb(235,194,19)" fg:x="39957" fg:w="41"/><text x="92.8567%" y="911.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (41 samples, 0.10%)</title><rect x="92.6067%" y="885" width="0.0950%" height="15" fill="rgb(207,204,18)" fg:x="39957" fg:w="41"/><text x="92.8567%" y="895.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (41 samples, 0.10%)</title><rect x="92.6067%" y="869" width="0.0950%" height="15" fill="rgb(248,8,7)" fg:x="39957" fg:w="41"/><text x="92.8567%" y="879.50"></text></g><g><title>core::hash::sip::u8to64_le (11 samples, 0.03%)</title><rect x="92.6762%" y="853" width="0.0255%" height="15" fill="rgb(223,145,47)" fg:x="39987" fg:w="11"/><text x="92.9262%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (459 samples, 1.06%)</title><rect x="91.6402%" y="965" width="1.0638%" height="15" fill="rgb(228,84,11)" fg:x="39540" fg:w="459"/><text x="91.8902%" y="975.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (459 samples, 1.06%)</title><rect x="91.6402%" y="949" width="1.0638%" height="15" fill="rgb(218,76,45)" fg:x="39540" fg:w="459"/><text x="91.8902%" y="959.50"></text></g><g><title>core::hash::Hasher::write_length_prefix (47 samples, 0.11%)</title><rect x="92.5951%" y="933" width="0.1089%" height="15" fill="rgb(223,80,15)" fg:x="39952" fg:w="47"/><text x="92.8451%" y="943.50"></text></g><g><title>core::hash::Hasher::write_usize (44 samples, 0.10%)</title><rect x="92.6020%" y="917" width="0.1020%" height="15" fill="rgb(219,218,33)" fg:x="39955" fg:w="44"/><text x="92.8520%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (34 samples, 0.08%)</title><rect x="92.9149%" y="853" width="0.0788%" height="15" fill="rgb(208,51,11)" fg:x="40090" fg:w="34"/><text x="93.1649%" y="863.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (62 samples, 0.14%)</title><rect x="92.8894%" y="869" width="0.1437%" height="15" fill="rgb(229,165,39)" fg:x="40079" fg:w="62"/><text x="93.1394%" y="879.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (17 samples, 0.04%)</title><rect x="92.9937%" y="853" width="0.0394%" height="15" fill="rgb(241,100,24)" fg:x="40124" fg:w="17"/><text x="93.2437%" y="863.50"></text></g><g><title>core::hash::sip::u8to64_le (48 samples, 0.11%)</title><rect x="93.0424%" y="869" width="0.1112%" height="15" fill="rgb(228,14,23)" fg:x="40145" fg:w="48"/><text x="93.2924%" y="879.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (6 samples, 0.01%)</title><rect x="93.1397%" y="853" width="0.0139%" height="15" fill="rgb(247,116,52)" fg:x="40187" fg:w="6"/><text x="93.3897%" y="863.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (180 samples, 0.42%)</title><rect x="92.7388%" y="917" width="0.4172%" height="15" fill="rgb(216,149,33)" fg:x="40014" fg:w="180"/><text x="92.9888%" y="927.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (180 samples, 0.42%)</title><rect x="92.7388%" y="901" width="0.4172%" height="15" fill="rgb(238,142,29)" fg:x="40014" fg:w="180"/><text x="92.9888%" y="911.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (180 samples, 0.42%)</title><rect x="92.7388%" y="885" width="0.4172%" height="15" fill="rgb(224,83,40)" fg:x="40014" fg:w="180"/><text x="92.9888%" y="895.50"></text></g><g><title>core::hash::Hash::hash_slice (964 samples, 2.23%)</title><rect x="90.9519%" y="1013" width="2.2342%" height="15" fill="rgb(234,165,11)" fg:x="39243" fg:w="964"/><text x="91.2019%" y="1023.50">c..</text></g><g><title>core::hash::Hash::hash_slice::rt (964 samples, 2.23%)</title><rect x="90.9519%" y="997" width="2.2342%" height="15" fill="rgb(215,96,23)" fg:x="39243" fg:w="964"/><text x="91.2019%" y="1007.50">c..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (823 samples, 1.91%)</title><rect x="91.2787%" y="981" width="1.9074%" height="15" fill="rgb(233,179,26)" fg:x="39384" fg:w="823"/><text x="91.5287%" y="991.50">&lt;..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (208 samples, 0.48%)</title><rect x="92.7040%" y="965" width="0.4821%" height="15" fill="rgb(225,129,33)" fg:x="39999" fg:w="208"/><text x="92.9540%" y="975.50"></text></g><g><title>core::hash::Hasher::write_isize (208 samples, 0.48%)</title><rect x="92.7040%" y="949" width="0.4821%" height="15" fill="rgb(237,49,13)" fg:x="39999" fg:w="208"/><text x="92.9540%" y="959.50"></text></g><g><title>core::hash::Hasher::write_usize (207 samples, 0.48%)</title><rect x="92.7063%" y="933" width="0.4798%" height="15" fill="rgb(211,3,31)" fg:x="40000" fg:w="207"/><text x="92.9563%" y="943.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (13 samples, 0.03%)</title><rect x="93.1560%" y="917" width="0.0301%" height="15" fill="rgb(216,152,19)" fg:x="40194" fg:w="13"/><text x="93.4060%" y="927.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.02%)</title><rect x="93.2811%" y="917" width="0.0162%" height="15" fill="rgb(251,121,35)" fg:x="40248" fg:w="7"/><text x="93.5311%" y="927.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (16 samples, 0.04%)</title><rect x="93.2649%" y="933" width="0.0371%" height="15" fill="rgb(210,217,47)" fg:x="40241" fg:w="16"/><text x="93.5149%" y="943.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="93.2023%" y="981" width="0.1275%" height="15" fill="rgb(244,116,22)" fg:x="40214" fg:w="55"/><text x="93.4523%" y="991.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="93.2023%" y="965" width="0.1275%" height="15" fill="rgb(228,17,21)" fg:x="40214" fg:w="55"/><text x="93.4523%" y="975.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (55 samples, 0.13%)</title><rect x="93.2023%" y="949" width="0.1275%" height="15" fill="rgb(240,149,34)" fg:x="40214" fg:w="55"/><text x="93.4523%" y="959.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="93.3066%" y="933" width="0.0232%" height="15" fill="rgb(208,125,47)" fg:x="40259" fg:w="10"/><text x="93.5566%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,030 samples, 2.39%)</title><rect x="90.9519%" y="1045" width="2.3872%" height="15" fill="rgb(249,186,39)" fg:x="39243" fg:w="1030"/><text x="91.2019%" y="1055.50">&lt;a..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,030 samples, 2.39%)</title><rect x="90.9519%" y="1029" width="2.3872%" height="15" fill="rgb(240,220,33)" fg:x="39243" fg:w="1030"/><text x="91.2019%" y="1039.50">co..</text></g><g><title>core::hash::Hasher::write_length_prefix (66 samples, 0.15%)</title><rect x="93.1861%" y="1013" width="0.1530%" height="15" fill="rgb(243,110,23)" fg:x="40207" fg:w="66"/><text x="93.4361%" y="1023.50"></text></g><g><title>core::hash::Hasher::write_usize (62 samples, 0.14%)</title><rect x="93.1954%" y="997" width="0.1437%" height="15" fill="rgb(219,163,46)" fg:x="40211" fg:w="62"/><text x="93.4454%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (38 samples, 0.09%)</title><rect x="93.6033%" y="933" width="0.0881%" height="15" fill="rgb(216,126,30)" fg:x="40387" fg:w="38"/><text x="93.8533%" y="943.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (84 samples, 0.19%)</title><rect x="93.5500%" y="949" width="0.1947%" height="15" fill="rgb(208,139,11)" fg:x="40364" fg:w="84"/><text x="93.8000%" y="959.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (23 samples, 0.05%)</title><rect x="93.6913%" y="933" width="0.0533%" height="15" fill="rgb(213,118,36)" fg:x="40425" fg:w="23"/><text x="93.9413%" y="943.50"></text></g><g><title>core::cmp::min (5 samples, 0.01%)</title><rect x="93.7446%" y="949" width="0.0116%" height="15" fill="rgb(226,43,17)" fg:x="40448" fg:w="5"/><text x="93.9946%" y="959.50"></text></g><g><title>core::cmp::Ord::min (5 samples, 0.01%)</title><rect x="93.7446%" y="933" width="0.0116%" height="15" fill="rgb(254,217,4)" fg:x="40448" fg:w="5"/><text x="93.9946%" y="943.50"></text></g><g><title>core::cmp::min_by (5 samples, 0.01%)</title><rect x="93.7446%" y="917" width="0.0116%" height="15" fill="rgb(210,134,47)" fg:x="40448" fg:w="5"/><text x="93.9946%" y="927.50"></text></g><g><title>core::hash::sip::u8to64_le (35 samples, 0.08%)</title><rect x="93.7562%" y="949" width="0.0811%" height="15" fill="rgb(237,24,49)" fg:x="40453" fg:w="35"/><text x="94.0062%" y="959.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (208 samples, 0.48%)</title><rect x="93.3622%" y="997" width="0.4821%" height="15" fill="rgb(251,39,46)" fg:x="40283" fg:w="208"/><text x="93.6122%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (208 samples, 0.48%)</title><rect x="93.3622%" y="981" width="0.4821%" height="15" fill="rgb(251,220,3)" fg:x="40283" fg:w="208"/><text x="93.6122%" y="991.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (208 samples, 0.48%)</title><rect x="93.3622%" y="965" width="0.4821%" height="15" fill="rgb(228,105,12)" fg:x="40283" fg:w="208"/><text x="93.6122%" y="975.50"></text></g><g><title>core::hash::Hash::hash_slice (1,636 samples, 3.79%)</title><rect x="90.0665%" y="1093" width="3.7917%" height="15" fill="rgb(215,196,1)" fg:x="38861" fg:w="1636"/><text x="90.3165%" y="1103.50">core..</text></g><g><title>core::hash::Hash::hash_slice::rt (1,636 samples, 3.79%)</title><rect x="90.0665%" y="1077" width="3.7917%" height="15" fill="rgb(214,33,39)" fg:x="38861" fg:w="1636"/><text x="90.3165%" y="1087.50">core..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (1,461 samples, 3.39%)</title><rect x="90.4721%" y="1061" width="3.3861%" height="15" fill="rgb(220,19,52)" fg:x="39036" fg:w="1461"/><text x="90.7221%" y="1071.50">&lt;sl..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (224 samples, 0.52%)</title><rect x="93.3391%" y="1045" width="0.5192%" height="15" fill="rgb(221,78,38)" fg:x="40273" fg:w="224"/><text x="93.5891%" y="1055.50"></text></g><g><title>core::hash::Hasher::write_isize (224 samples, 0.52%)</title><rect x="93.3391%" y="1029" width="0.5192%" height="15" fill="rgb(253,30,16)" fg:x="40273" fg:w="224"/><text x="93.5891%" y="1039.50"></text></g><g><title>core::hash::Hasher::write_usize (223 samples, 0.52%)</title><rect x="93.3414%" y="1013" width="0.5168%" height="15" fill="rgb(242,65,0)" fg:x="40274" fg:w="223"/><text x="93.5914%" y="1023.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="93.8443%" y="997" width="0.0139%" height="15" fill="rgb(235,201,12)" fg:x="40491" fg:w="6"/><text x="94.0943%" y="1007.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (11 samples, 0.03%)</title><rect x="93.9718%" y="997" width="0.0255%" height="15" fill="rgb(233,161,9)" fg:x="40546" fg:w="11"/><text x="94.2218%" y="1007.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (26 samples, 0.06%)</title><rect x="93.9440%" y="1013" width="0.0603%" height="15" fill="rgb(241,207,41)" fg:x="40534" fg:w="26"/><text x="94.1940%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="93.8698%" y="1061" width="0.1900%" height="15" fill="rgb(212,69,46)" fg:x="40502" fg:w="82"/><text x="94.1198%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="93.8698%" y="1045" width="0.1900%" height="15" fill="rgb(239,69,45)" fg:x="40502" fg:w="82"/><text x="94.1198%" y="1055.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="93.8698%" y="1029" width="0.1900%" height="15" fill="rgb(242,117,48)" fg:x="40502" fg:w="82"/><text x="94.1198%" y="1039.50"></text></g><g><title>core::hash::sip::u8to64_le (21 samples, 0.05%)</title><rect x="94.0112%" y="1013" width="0.0487%" height="15" fill="rgb(228,41,36)" fg:x="40563" fg:w="21"/><text x="94.2612%" y="1023.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1,724 samples, 4.00%)</title><rect x="90.0665%" y="1125" width="3.9956%" height="15" fill="rgb(212,3,32)" fg:x="38861" fg:w="1724"/><text x="90.3165%" y="1135.50">&lt;all..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1,724 samples, 4.00%)</title><rect x="90.0665%" y="1109" width="3.9956%" height="15" fill="rgb(233,41,49)" fg:x="38861" fg:w="1724"/><text x="90.3165%" y="1119.50">core..</text></g><g><title>core::hash::Hasher::write_length_prefix (88 samples, 0.20%)</title><rect x="93.8582%" y="1093" width="0.2040%" height="15" fill="rgb(252,170,49)" fg:x="40497" fg:w="88"/><text x="94.1082%" y="1103.50"></text></g><g><title>core::hash::Hasher::write_usize (86 samples, 0.20%)</title><rect x="93.8628%" y="1077" width="0.1993%" height="15" fill="rgb(229,53,26)" fg:x="40499" fg:w="86"/><text x="94.1128%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (30 samples, 0.07%)</title><rect x="94.2847%" y="1013" width="0.0695%" height="15" fill="rgb(217,157,12)" fg:x="40681" fg:w="30"/><text x="94.5347%" y="1023.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (73 samples, 0.17%)</title><rect x="94.2429%" y="1029" width="0.1692%" height="15" fill="rgb(227,17,9)" fg:x="40663" fg:w="73"/><text x="94.4929%" y="1039.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (25 samples, 0.06%)</title><rect x="94.3542%" y="1013" width="0.0579%" height="15" fill="rgb(218,84,12)" fg:x="40711" fg:w="25"/><text x="94.6042%" y="1023.50"></text></g><g><title>core::cmp::min (6 samples, 0.01%)</title><rect x="94.4121%" y="1029" width="0.0139%" height="15" fill="rgb(212,79,24)" fg:x="40736" fg:w="6"/><text x="94.6621%" y="1039.50"></text></g><g><title>core::cmp::Ord::min (6 samples, 0.01%)</title><rect x="94.4121%" y="1013" width="0.0139%" height="15" fill="rgb(217,222,37)" fg:x="40736" fg:w="6"/><text x="94.6621%" y="1023.50"></text></g><g><title>core::cmp::min_by (6 samples, 0.01%)</title><rect x="94.4121%" y="997" width="0.0139%" height="15" fill="rgb(246,208,8)" fg:x="40736" fg:w="6"/><text x="94.6621%" y="1007.50"></text></g><g><title>core::hash::sip::u8to64_le (48 samples, 0.11%)</title><rect x="94.4260%" y="1029" width="0.1112%" height="15" fill="rgb(244,133,10)" fg:x="40742" fg:w="48"/><text x="94.6760%" y="1039.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="94.5257%" y="1013" width="0.0116%" height="15" fill="rgb(209,219,41)" fg:x="40785" fg:w="5"/><text x="94.7757%" y="1023.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (194 samples, 0.45%)</title><rect x="94.0923%" y="1077" width="0.4496%" height="15" fill="rgb(253,175,45)" fg:x="40598" fg:w="194"/><text x="94.3423%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (194 samples, 0.45%)</title><rect x="94.0923%" y="1061" width="0.4496%" height="15" fill="rgb(235,100,37)" fg:x="40598" fg:w="194"/><text x="94.3423%" y="1071.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (194 samples, 0.45%)</title><rect x="94.0923%" y="1045" width="0.4496%" height="15" fill="rgb(225,87,19)" fg:x="40598" fg:w="194"/><text x="94.3423%" y="1055.50"></text></g><g><title>core::hash::Hash::hash_slice (2,351 samples, 5.45%)</title><rect x="89.1070%" y="1173" width="5.4488%" height="15" fill="rgb(217,152,17)" fg:x="38447" fg:w="2351"/><text x="89.3570%" y="1183.50">core::h..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,351 samples, 5.45%)</title><rect x="89.1070%" y="1157" width="5.4488%" height="15" fill="rgb(235,72,13)" fg:x="38447" fg:w="2351"/><text x="89.3570%" y="1167.50">core::h..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,186 samples, 5.07%)</title><rect x="89.4894%" y="1141" width="5.0664%" height="15" fill="rgb(233,140,18)" fg:x="38612" fg:w="2186"/><text x="89.7394%" y="1151.50">&lt;slimp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (213 samples, 0.49%)</title><rect x="94.0622%" y="1125" width="0.4937%" height="15" fill="rgb(207,212,28)" fg:x="40585" fg:w="213"/><text x="94.3122%" y="1135.50"></text></g><g><title>core::hash::Hasher::write_isize (213 samples, 0.49%)</title><rect x="94.0622%" y="1109" width="0.4937%" height="15" fill="rgb(220,130,25)" fg:x="40585" fg:w="213"/><text x="94.3122%" y="1119.50"></text></g><g><title>core::hash::Hasher::write_usize (212 samples, 0.49%)</title><rect x="94.0645%" y="1093" width="0.4913%" height="15" fill="rgb(205,55,34)" fg:x="40586" fg:w="212"/><text x="94.3145%" y="1103.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="94.5419%" y="1077" width="0.0139%" height="15" fill="rgb(237,54,35)" fg:x="40792" fg:w="6"/><text x="94.7919%" y="1087.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (9 samples, 0.02%)</title><rect x="94.6787%" y="1077" width="0.0209%" height="15" fill="rgb(208,67,23)" fg:x="40851" fg:w="9"/><text x="94.9287%" y="1087.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (35 samples, 0.08%)</title><rect x="94.6508%" y="1093" width="0.0811%" height="15" fill="rgb(206,207,50)" fg:x="40839" fg:w="35"/><text x="94.9008%" y="1103.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (14 samples, 0.03%)</title><rect x="94.6995%" y="1077" width="0.0324%" height="15" fill="rgb(213,211,42)" fg:x="40860" fg:w="14"/><text x="94.9495%" y="1087.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="94.5697%" y="1141" width="0.2294%" height="15" fill="rgb(252,197,50)" fg:x="40804" fg:w="99"/><text x="94.8197%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="94.5697%" y="1125" width="0.2294%" height="15" fill="rgb(251,211,41)" fg:x="40804" fg:w="99"/><text x="94.8197%" y="1135.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (99 samples, 0.23%)</title><rect x="94.5697%" y="1109" width="0.2294%" height="15" fill="rgb(229,211,5)" fg:x="40804" fg:w="99"/><text x="94.8197%" y="1119.50"></text></g><g><title>core::hash::sip::u8to64_le (28 samples, 0.06%)</title><rect x="94.7343%" y="1093" width="0.0649%" height="15" fill="rgb(239,36,31)" fg:x="40875" fg:w="28"/><text x="94.9843%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (2,458 samples, 5.70%)</title><rect x="89.1070%" y="1205" width="5.6968%" height="15" fill="rgb(248,67,31)" fg:x="38447" fg:w="2458"/><text x="89.3570%" y="1215.50">&lt;alloc:..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (2,458 samples, 5.70%)</title><rect x="89.1070%" y="1189" width="5.6968%" height="15" fill="rgb(249,55,44)" fg:x="38447" fg:w="2458"/><text x="89.3570%" y="1199.50">core::h..</text></g><g><title>core::hash::Hasher::write_length_prefix (107 samples, 0.25%)</title><rect x="94.5558%" y="1173" width="0.2480%" height="15" fill="rgb(216,82,12)" fg:x="40798" fg:w="107"/><text x="94.8058%" y="1183.50"></text></g><g><title>core::hash::Hasher::write_usize (102 samples, 0.24%)</title><rect x="94.5674%" y="1157" width="0.2364%" height="15" fill="rgb(242,174,1)" fg:x="40803" fg:w="102"/><text x="94.8174%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (24 samples, 0.06%)</title><rect x="95.0333%" y="1093" width="0.0556%" height="15" fill="rgb(208,120,29)" fg:x="41004" fg:w="24"/><text x="95.2833%" y="1103.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (54 samples, 0.13%)</title><rect x="95.0054%" y="1109" width="0.1252%" height="15" fill="rgb(221,105,43)" fg:x="40992" fg:w="54"/><text x="95.2554%" y="1119.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (18 samples, 0.04%)</title><rect x="95.0889%" y="1093" width="0.0417%" height="15" fill="rgb(234,124,22)" fg:x="41028" fg:w="18"/><text x="95.3389%" y="1103.50"></text></g><g><title>core::hash::sip::u8to64_le (48 samples, 0.11%)</title><rect x="95.1376%" y="1109" width="0.1112%" height="15" fill="rgb(212,23,30)" fg:x="41049" fg:w="48"/><text x="95.3876%" y="1119.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (5 samples, 0.01%)</title><rect x="95.2372%" y="1093" width="0.0116%" height="15" fill="rgb(219,122,53)" fg:x="41092" fg:w="5"/><text x="95.4872%" y="1103.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (182 samples, 0.42%)</title><rect x="94.8316%" y="1157" width="0.4218%" height="15" fill="rgb(248,84,24)" fg:x="40917" fg:w="182"/><text x="95.0816%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (182 samples, 0.42%)</title><rect x="94.8316%" y="1141" width="0.4218%" height="15" fill="rgb(245,115,18)" fg:x="40917" fg:w="182"/><text x="95.0816%" y="1151.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (182 samples, 0.42%)</title><rect x="94.8316%" y="1125" width="0.4218%" height="15" fill="rgb(227,176,51)" fg:x="40917" fg:w="182"/><text x="95.0816%" y="1135.50"></text></g><g><title>core::hash::Hash::hash_slice (2,970 samples, 6.88%)</title><rect x="88.3839%" y="1253" width="6.8834%" height="15" fill="rgb(229,63,42)" fg:x="38135" fg:w="2970"/><text x="88.6339%" y="1263.50">core::has..</text></g><g><title>core::hash::Hash::hash_slice::rt (2,970 samples, 6.88%)</title><rect x="88.3839%" y="1237" width="6.8834%" height="15" fill="rgb(247,202,24)" fg:x="38135" fg:w="2970"/><text x="88.6339%" y="1247.50">core::has..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (2,877 samples, 6.67%)</title><rect x="88.5994%" y="1221" width="6.6679%" height="15" fill="rgb(244,173,20)" fg:x="38228" fg:w="2877"/><text x="88.8494%" y="1231.50">&lt;slimp::S..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (200 samples, 0.46%)</title><rect x="94.8038%" y="1205" width="0.4635%" height="15" fill="rgb(242,81,47)" fg:x="40905" fg:w="200"/><text x="95.0538%" y="1215.50"></text></g><g><title>core::hash::Hasher::write_isize (200 samples, 0.46%)</title><rect x="94.8038%" y="1189" width="0.4635%" height="15" fill="rgb(231,185,54)" fg:x="40905" fg:w="200"/><text x="95.0538%" y="1199.50"></text></g><g><title>core::hash::Hasher::write_usize (197 samples, 0.46%)</title><rect x="94.8108%" y="1173" width="0.4566%" height="15" fill="rgb(243,55,32)" fg:x="40908" fg:w="197"/><text x="95.0608%" y="1183.50"></text></g><g><title>core::num::&lt;impl usize&gt;::to_ne_bytes (6 samples, 0.01%)</title><rect x="95.2534%" y="1157" width="0.0139%" height="15" fill="rgb(208,167,19)" fg:x="41099" fg:w="6"/><text x="95.5034%" y="1167.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (10 samples, 0.02%)</title><rect x="95.3485%" y="1157" width="0.0232%" height="15" fill="rgb(231,72,35)" fg:x="41140" fg:w="10"/><text x="95.5985%" y="1167.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (25 samples, 0.06%)</title><rect x="95.3206%" y="1173" width="0.0579%" height="15" fill="rgb(250,173,51)" fg:x="41128" fg:w="25"/><text x="95.5706%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="95.2812%" y="1221" width="0.1414%" height="15" fill="rgb(209,5,22)" fg:x="41111" fg:w="61"/><text x="95.5312%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="95.2812%" y="1205" width="0.1414%" height="15" fill="rgb(250,174,19)" fg:x="41111" fg:w="61"/><text x="95.5312%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (61 samples, 0.14%)</title><rect x="95.2812%" y="1189" width="0.1414%" height="15" fill="rgb(217,3,49)" fg:x="41111" fg:w="61"/><text x="95.5312%" y="1199.50"></text></g><g><title>core::hash::sip::u8to64_le (16 samples, 0.04%)</title><rect x="95.3855%" y="1173" width="0.0371%" height="15" fill="rgb(218,225,5)" fg:x="41156" fg:w="16"/><text x="95.6355%" y="1183.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (3,038 samples, 7.04%)</title><rect x="88.3839%" y="1285" width="7.0410%" height="15" fill="rgb(236,89,11)" fg:x="38135" fg:w="3038"/><text x="88.6339%" y="1295.50">&lt;alloc::v..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (3,038 samples, 7.04%)</title><rect x="88.3839%" y="1269" width="7.0410%" height="15" fill="rgb(206,33,28)" fg:x="38135" fg:w="3038"/><text x="88.6339%" y="1279.50">core::has..</text></g><g><title>core::hash::Hasher::write_length_prefix (68 samples, 0.16%)</title><rect x="95.2673%" y="1253" width="0.1576%" height="15" fill="rgb(241,56,42)" fg:x="41105" fg:w="68"/><text x="95.5173%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_usize (65 samples, 0.15%)</title><rect x="95.2743%" y="1237" width="0.1506%" height="15" fill="rgb(222,44,11)" fg:x="41108" fg:w="65"/><text x="95.5243%" y="1247.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (6 samples, 0.01%)</title><rect x="95.5431%" y="1173" width="0.0139%" height="15" fill="rgb(234,111,20)" fg:x="41224" fg:w="6"/><text x="95.7931%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (23 samples, 0.05%)</title><rect x="95.5316%" y="1189" width="0.0533%" height="15" fill="rgb(237,77,6)" fg:x="41219" fg:w="23"/><text x="95.7816%" y="1199.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (12 samples, 0.03%)</title><rect x="95.5570%" y="1173" width="0.0278%" height="15" fill="rgb(235,111,23)" fg:x="41230" fg:w="12"/><text x="95.8070%" y="1183.50"></text></g><g><title>core::hash::sip::u8to64_le (19 samples, 0.04%)</title><rect x="95.5872%" y="1189" width="0.0440%" height="15" fill="rgb(251,135,29)" fg:x="41243" fg:w="19"/><text x="95.8372%" y="1199.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="95.4458%" y="1237" width="0.1900%" height="15" fill="rgb(217,57,1)" fg:x="41182" fg:w="82"/><text x="95.6958%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="95.4458%" y="1221" width="0.1900%" height="15" fill="rgb(249,119,31)" fg:x="41182" fg:w="82"/><text x="95.6958%" y="1231.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (82 samples, 0.19%)</title><rect x="95.4458%" y="1205" width="0.1900%" height="15" fill="rgb(233,164,33)" fg:x="41182" fg:w="82"/><text x="95.6958%" y="1215.50"></text></g><g><title>core::hash::Hash::hash_slice (3,510 samples, 8.13%)</title><rect x="87.5055%" y="1333" width="8.1350%" height="15" fill="rgb(250,217,43)" fg:x="37756" fg:w="3510"/><text x="87.7555%" y="1343.50">core::hash:..</text></g><g><title>core::hash::Hash::hash_slice::rt (3,510 samples, 8.13%)</title><rect x="87.5055%" y="1317" width="8.1350%" height="15" fill="rgb(232,154,50)" fg:x="37756" fg:w="3510"/><text x="87.7555%" y="1327.50">core::hash:..</text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (3,475 samples, 8.05%)</title><rect x="87.5866%" y="1301" width="8.0539%" height="15" fill="rgb(227,190,8)" fg:x="37791" fg:w="3475"/><text x="87.8366%" y="1311.50">&lt;slimp::Sex..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (93 samples, 0.22%)</title><rect x="95.4249%" y="1285" width="0.2155%" height="15" fill="rgb(209,217,32)" fg:x="41173" fg:w="93"/><text x="95.6749%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_isize (93 samples, 0.22%)</title><rect x="95.4249%" y="1269" width="0.2155%" height="15" fill="rgb(243,203,50)" fg:x="41173" fg:w="93"/><text x="95.6749%" y="1279.50"></text></g><g><title>core::hash::Hasher::write_usize (93 samples, 0.22%)</title><rect x="95.4249%" y="1253" width="0.2155%" height="15" fill="rgb(232,152,27)" fg:x="41173" fg:w="93"/><text x="95.6749%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (15 samples, 0.03%)</title><rect x="95.6799%" y="1253" width="0.0348%" height="15" fill="rgb(240,34,29)" fg:x="41283" fg:w="15"/><text x="95.9299%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (3,547 samples, 8.22%)</title><rect x="87.5055%" y="1365" width="8.2207%" height="15" fill="rgb(215,185,52)" fg:x="37756" fg:w="3547"/><text x="87.7555%" y="1375.50">&lt;alloc::vec..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (3,547 samples, 8.22%)</title><rect x="87.5055%" y="1349" width="8.2207%" height="15" fill="rgb(240,89,49)" fg:x="37756" fg:w="3547"/><text x="87.7555%" y="1359.50">core::hash:..</text></g><g><title>core::hash::Hasher::write_length_prefix (37 samples, 0.09%)</title><rect x="95.6405%" y="1333" width="0.0858%" height="15" fill="rgb(225,12,52)" fg:x="41266" fg:w="37"/><text x="95.8905%" y="1343.50"></text></g><g><title>core::hash::Hasher::write_usize (35 samples, 0.08%)</title><rect x="95.6451%" y="1317" width="0.0811%" height="15" fill="rgb(239,128,45)" fg:x="41268" fg:w="35"/><text x="95.8951%" y="1327.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="95.6567%" y="1301" width="0.0695%" height="15" fill="rgb(211,78,47)" fg:x="41273" fg:w="30"/><text x="95.9067%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="95.6567%" y="1285" width="0.0695%" height="15" fill="rgb(232,31,21)" fg:x="41273" fg:w="30"/><text x="95.9067%" y="1295.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (30 samples, 0.07%)</title><rect x="95.6567%" y="1269" width="0.0695%" height="15" fill="rgb(222,168,14)" fg:x="41273" fg:w="30"/><text x="95.9067%" y="1279.50"></text></g><g><title>core::hash::sip::u8to64_le (5 samples, 0.01%)</title><rect x="95.7146%" y="1253" width="0.0116%" height="15" fill="rgb(209,128,24)" fg:x="41298" fg:w="5"/><text x="95.9646%" y="1263.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.01%)</title><rect x="95.7610%" y="1253" width="0.0116%" height="15" fill="rgb(249,35,13)" fg:x="41318" fg:w="5"/><text x="96.0110%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (10 samples, 0.02%)</title><rect x="95.7587%" y="1269" width="0.0232%" height="15" fill="rgb(218,7,2)" fg:x="41317" fg:w="10"/><text x="96.0087%" y="1279.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (3,592 samples, 8.33%)</title><rect x="87.4800%" y="1381" width="8.3250%" height="15" fill="rgb(238,107,27)" fg:x="37745" fg:w="3592"/><text x="87.7300%" y="1391.50">&lt;slimp::Sexp..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (34 samples, 0.08%)</title><rect x="95.7262%" y="1365" width="0.0788%" height="15" fill="rgb(217,88,38)" fg:x="41303" fg:w="34"/><text x="95.9762%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_isize (34 samples, 0.08%)</title><rect x="95.7262%" y="1349" width="0.0788%" height="15" fill="rgb(230,207,0)" fg:x="41303" fg:w="34"/><text x="95.9762%" y="1359.50"></text></g><g><title>core::hash::Hasher::write_usize (34 samples, 0.08%)</title><rect x="95.7262%" y="1333" width="0.0788%" height="15" fill="rgb(249,64,54)" fg:x="41303" fg:w="34"/><text x="95.9762%" y="1343.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="95.7286%" y="1317" width="0.0765%" height="15" fill="rgb(231,7,11)" fg:x="41304" fg:w="33"/><text x="95.9786%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="95.7286%" y="1301" width="0.0765%" height="15" fill="rgb(205,149,21)" fg:x="41304" fg:w="33"/><text x="95.9786%" y="1311.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (33 samples, 0.08%)</title><rect x="95.7286%" y="1285" width="0.0765%" height="15" fill="rgb(215,126,34)" fg:x="41304" fg:w="33"/><text x="95.9786%" y="1295.50"></text></g><g><title>core::hash::sip::u8to64_le (10 samples, 0.02%)</title><rect x="95.7819%" y="1269" width="0.0232%" height="15" fill="rgb(241,132,45)" fg:x="41327" fg:w="10"/><text x="96.0319%" y="1279.50"></text></g><g><title>hashbrown::map::make_hasher::{{closure}} (3,641 samples, 8.44%)</title><rect x="87.4035%" y="1461" width="8.4386%" height="15" fill="rgb(252,69,32)" fg:x="37712" fg:w="3641"/><text x="87.6535%" y="1471.50">hashbrown::m..</text></g><g><title>hashbrown::map::make_hash (3,641 samples, 8.44%)</title><rect x="87.4035%" y="1445" width="8.4386%" height="15" fill="rgb(232,204,19)" fg:x="37712" fg:w="3641"/><text x="87.6535%" y="1455.50">hashbrown::m..</text></g><g><title>core::hash::BuildHasher::hash_one (3,640 samples, 8.44%)</title><rect x="87.4058%" y="1429" width="8.4363%" height="15" fill="rgb(249,15,47)" fg:x="37713" fg:w="3640"/><text x="87.6558%" y="1439.50">core::hash::..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (3,614 samples, 8.38%)</title><rect x="87.4661%" y="1413" width="8.3760%" height="15" fill="rgb(209,227,23)" fg:x="37739" fg:w="3614"/><text x="87.7161%" y="1423.50">core::hash::..</text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (3,614 samples, 8.38%)</title><rect x="87.4661%" y="1397" width="8.3760%" height="15" fill="rgb(248,92,24)" fg:x="37739" fg:w="3614"/><text x="87.7161%" y="1407.50">&lt;slimp::Rule..</text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (16 samples, 0.04%)</title><rect x="95.8050%" y="1381" width="0.0371%" height="15" fill="rgb(247,59,2)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1391.50"></text></g><g><title>core::hash::Hasher::write_isize (16 samples, 0.04%)</title><rect x="95.8050%" y="1365" width="0.0371%" height="15" fill="rgb(221,30,5)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1375.50"></text></g><g><title>core::hash::Hasher::write_usize (16 samples, 0.04%)</title><rect x="95.8050%" y="1349" width="0.0371%" height="15" fill="rgb(208,108,53)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1359.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="95.8050%" y="1333" width="0.0371%" height="15" fill="rgb(211,183,26)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1343.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="95.8050%" y="1317" width="0.0371%" height="15" fill="rgb(232,132,4)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1327.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (16 samples, 0.04%)</title><rect x="95.8050%" y="1301" width="0.0371%" height="15" fill="rgb(253,128,37)" fg:x="41337" fg:w="16"/><text x="96.0550%" y="1311.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (3,644 samples, 8.45%)</title><rect x="87.4035%" y="1477" width="8.4455%" height="15" fill="rgb(221,58,24)" fg:x="37712" fg:w="3644"/><text x="87.6535%" y="1487.50">hashbrown::r..</text></g><g><title>hashbrown::raw::is_full (5 samples, 0.01%)</title><rect x="95.8583%" y="1445" width="0.0116%" height="15" fill="rgb(230,54,45)" fg:x="41360" fg:w="5"/><text x="96.1083%" y="1455.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (8 samples, 0.02%)</title><rect x="95.8699%" y="1445" width="0.0185%" height="15" fill="rgb(254,21,18)" fg:x="41365" fg:w="8"/><text x="96.1199%" y="1455.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (8 samples, 0.02%)</title><rect x="95.8699%" y="1429" width="0.0185%" height="15" fill="rgb(221,108,0)" fg:x="41365" fg:w="8"/><text x="96.1199%" y="1439.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (8 samples, 0.02%)</title><rect x="95.8699%" y="1413" width="0.0185%" height="15" fill="rgb(206,95,1)" fg:x="41365" fg:w="8"/><text x="96.1199%" y="1423.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::find_insert_slot (20 samples, 0.05%)</title><rect x="95.8537%" y="1461" width="0.0464%" height="15" fill="rgb(237,52,5)" fg:x="41358" fg:w="20"/><text x="96.1037%" y="1471.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty_or_deleted (5 samples, 0.01%)</title><rect x="95.8885%" y="1445" width="0.0116%" height="15" fill="rgb(218,150,34)" fg:x="41373" fg:w="5"/><text x="96.1385%" y="1455.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (5 samples, 0.01%)</title><rect x="95.8885%" y="1429" width="0.0116%" height="15" fill="rgb(235,194,28)" fg:x="41373" fg:w="5"/><text x="96.1385%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (3,678 samples, 8.52%)</title><rect x="87.3873%" y="1541" width="8.5243%" height="15" fill="rgb(245,92,18)" fg:x="37705" fg:w="3678"/><text x="87.6373%" y="1551.50">hashbrown::r..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (3,678 samples, 8.52%)</title><rect x="87.3873%" y="1525" width="8.5243%" height="15" fill="rgb(253,203,53)" fg:x="37705" fg:w="3678"/><text x="87.6373%" y="1535.50">hashbrown::r..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (3,678 samples, 8.52%)</title><rect x="87.3873%" y="1509" width="8.5243%" height="15" fill="rgb(249,185,47)" fg:x="37705" fg:w="3678"/><text x="87.6373%" y="1519.50">hashbrown::r..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (3,678 samples, 8.52%)</title><rect x="87.3873%" y="1493" width="8.5243%" height="15" fill="rgb(252,194,52)" fg:x="37705" fg:w="3678"/><text x="87.6373%" y="1503.50">hashbrown::r..</text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_insert_slot (25 samples, 0.06%)</title><rect x="95.8537%" y="1477" width="0.0579%" height="15" fill="rgb(210,53,36)" fg:x="41358" fg:w="25"/><text x="96.1037%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::set_ctrl_h2 (5 samples, 0.01%)</title><rect x="95.9001%" y="1461" width="0.0116%" height="15" fill="rgb(237,37,25)" fg:x="41378" fg:w="5"/><text x="96.1501%" y="1471.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::set_ctrl (5 samples, 0.01%)</title><rect x="95.9001%" y="1445" width="0.0116%" height="15" fill="rgb(242,116,27)" fg:x="41378" fg:w="5"/><text x="96.1501%" y="1455.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (6,827 samples, 15.82%)</title><rect x="80.1029%" y="1605" width="15.8227%" height="15" fill="rgb(213,185,26)" fg:x="34562" fg:w="6827"/><text x="80.3529%" y="1615.50">std::collections::hash::..</text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (6,827 samples, 15.82%)</title><rect x="80.1029%" y="1589" width="15.8227%" height="15" fill="rgb(225,204,8)" fg:x="34562" fg:w="6827"/><text x="80.3529%" y="1599.50">hashbrown::set::HashSet&lt;..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (6,827 samples, 15.82%)</title><rect x="80.1029%" y="1573" width="15.8227%" height="15" fill="rgb(254,111,37)" fg:x="34562" fg:w="6827"/><text x="80.3529%" y="1583.50">hashbrown::map::HashMap&lt;..</text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (3,722 samples, 8.63%)</title><rect x="87.2992%" y="1557" width="8.6263%" height="15" fill="rgb(242,35,9)" fg:x="37667" fg:w="3722"/><text x="87.5492%" y="1567.50">hashbrown::r..</text></g><g><title>slimp::Rule::concretions (29,373 samples, 68.08%)</title><rect x="28.0437%" y="1621" width="68.0766%" height="15" fill="rgb(232,138,49)" fg:x="12100" fg:w="29373"/><text x="28.2937%" y="1631.50">slimp::Rule::concretions</text></g><g><title>std::collections::hash::set::HashSet&lt;T&gt;::with_capacity (84 samples, 0.19%)</title><rect x="95.9256%" y="1605" width="0.1947%" height="15" fill="rgb(247,56,4)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1615.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S&gt;::with_capacity_and_hasher (84 samples, 0.19%)</title><rect x="95.9256%" y="1589" width="0.1947%" height="15" fill="rgb(226,179,17)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1599.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (84 samples, 0.19%)</title><rect x="95.9256%" y="1573" width="0.1947%" height="15" fill="rgb(216,163,45)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1583.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (84 samples, 0.19%)</title><rect x="95.9256%" y="1557" width="0.1947%" height="15" fill="rgb(211,157,3)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1567.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (84 samples, 0.19%)</title><rect x="95.9256%" y="1541" width="0.1947%" height="15" fill="rgb(234,44,20)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (84 samples, 0.19%)</title><rect x="95.9256%" y="1525" width="0.1947%" height="15" fill="rgb(254,138,23)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1535.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (84 samples, 0.19%)</title><rect x="95.9256%" y="1509" width="0.1947%" height="15" fill="rgb(206,119,39)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (84 samples, 0.19%)</title><rect x="95.9256%" y="1493" width="0.1947%" height="15" fill="rgb(231,105,52)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1503.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (84 samples, 0.19%)</title><rect x="95.9256%" y="1477" width="0.1947%" height="15" fill="rgb(250,20,5)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1487.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (84 samples, 0.19%)</title><rect x="95.9256%" y="1461" width="0.1947%" height="15" fill="rgb(215,198,30)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1471.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (84 samples, 0.19%)</title><rect x="95.9256%" y="1445" width="0.1947%" height="15" fill="rgb(246,142,8)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1455.50"></text></g><g><title>alloc::alloc::alloc (84 samples, 0.19%)</title><rect x="95.9256%" y="1429" width="0.1947%" height="15" fill="rgb(243,26,38)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1439.50"></text></g><g><title>malloc (84 samples, 0.19%)</title><rect x="95.9256%" y="1413" width="0.1947%" height="15" fill="rgb(205,133,28)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1423.50"></text></g><g><title>[libc.so.6] (84 samples, 0.19%)</title><rect x="95.9256%" y="1397" width="0.1947%" height="15" fill="rgb(212,34,0)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1407.50"></text></g><g><title>[libc.so.6] (84 samples, 0.19%)</title><rect x="95.9256%" y="1381" width="0.1947%" height="15" fill="rgb(251,226,22)" fg:x="41389" fg:w="84"/><text x="96.1756%" y="1391.50"></text></g><g><title>[libc.so.6] (25 samples, 0.06%)</title><rect x="96.0623%" y="1365" width="0.0579%" height="15" fill="rgb(252,119,9)" fg:x="41448" fg:w="25"/><text x="96.3123%" y="1375.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (673 samples, 1.56%)</title><rect x="96.1411%" y="1605" width="1.5598%" height="15" fill="rgb(213,150,50)" fg:x="41482" fg:w="673"/><text x="96.3911%" y="1615.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (673 samples, 1.56%)</title><rect x="96.1411%" y="1589" width="1.5598%" height="15" fill="rgb(212,24,39)" fg:x="41482" fg:w="673"/><text x="96.3911%" y="1599.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (671 samples, 1.56%)</title><rect x="96.1457%" y="1573" width="1.5551%" height="15" fill="rgb(213,46,39)" fg:x="41484" fg:w="671"/><text x="96.3957%" y="1583.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (670 samples, 1.55%)</title><rect x="96.1481%" y="1557" width="1.5528%" height="15" fill="rgb(239,106,12)" fg:x="41485" fg:w="670"/><text x="96.3981%" y="1567.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (670 samples, 1.55%)</title><rect x="96.1481%" y="1541" width="1.5528%" height="15" fill="rgb(249,229,21)" fg:x="41485" fg:w="670"/><text x="96.3981%" y="1551.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (670 samples, 1.55%)</title><rect x="96.1481%" y="1525" width="1.5528%" height="15" fill="rgb(212,158,3)" fg:x="41485" fg:w="670"/><text x="96.3981%" y="1535.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (670 samples, 1.55%)</title><rect x="96.1481%" y="1509" width="1.5528%" height="15" fill="rgb(253,26,48)" fg:x="41485" fg:w="670"/><text x="96.3981%" y="1519.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (668 samples, 1.55%)</title><rect x="96.1527%" y="1493" width="1.5482%" height="15" fill="rgb(238,178,20)" fg:x="41487" fg:w="668"/><text x="96.4027%" y="1503.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (667 samples, 1.55%)</title><rect x="96.1550%" y="1477" width="1.5459%" height="15" fill="rgb(208,86,15)" fg:x="41488" fg:w="667"/><text x="96.4050%" y="1487.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (667 samples, 1.55%)</title><rect x="96.1550%" y="1461" width="1.5459%" height="15" fill="rgb(239,42,53)" fg:x="41488" fg:w="667"/><text x="96.4050%" y="1471.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (667 samples, 1.55%)</title><rect x="96.1550%" y="1445" width="1.5459%" height="15" fill="rgb(245,226,8)" fg:x="41488" fg:w="667"/><text x="96.4050%" y="1455.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (341 samples, 0.79%)</title><rect x="96.9106%" y="1429" width="0.7903%" height="15" fill="rgb(216,176,32)" fg:x="41814" fg:w="341"/><text x="97.1606%" y="1439.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (341 samples, 0.79%)</title><rect x="96.9106%" y="1413" width="0.7903%" height="15" fill="rgb(231,186,21)" fg:x="41814" fg:w="341"/><text x="97.1606%" y="1423.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (341 samples, 0.79%)</title><rect x="96.9106%" y="1397" width="0.7903%" height="15" fill="rgb(205,95,49)" fg:x="41814" fg:w="341"/><text x="97.1606%" y="1407.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (331 samples, 0.77%)</title><rect x="96.9337%" y="1381" width="0.7671%" height="15" fill="rgb(217,145,8)" fg:x="41824" fg:w="331"/><text x="97.1837%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (331 samples, 0.77%)</title><rect x="96.9337%" y="1365" width="0.7671%" height="15" fill="rgb(239,144,48)" fg:x="41824" fg:w="331"/><text x="97.1837%" y="1375.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (328 samples, 0.76%)</title><rect x="96.9407%" y="1349" width="0.7602%" height="15" fill="rgb(214,189,23)" fg:x="41827" fg:w="328"/><text x="97.1907%" y="1359.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (328 samples, 0.76%)</title><rect x="96.9407%" y="1333" width="0.7602%" height="15" fill="rgb(229,157,17)" fg:x="41827" fg:w="328"/><text x="97.1907%" y="1343.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (325 samples, 0.75%)</title><rect x="96.9476%" y="1317" width="0.7532%" height="15" fill="rgb(230,5,48)" fg:x="41830" fg:w="325"/><text x="97.1976%" y="1327.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (325 samples, 0.75%)</title><rect x="96.9476%" y="1301" width="0.7532%" height="15" fill="rgb(224,156,48)" fg:x="41830" fg:w="325"/><text x="97.1976%" y="1311.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (153 samples, 0.35%)</title><rect x="97.3463%" y="1285" width="0.3546%" height="15" fill="rgb(223,14,29)" fg:x="42002" fg:w="153"/><text x="97.5963%" y="1295.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (153 samples, 0.35%)</title><rect x="97.3463%" y="1269" width="0.3546%" height="15" fill="rgb(229,96,36)" fg:x="42002" fg:w="153"/><text x="97.5963%" y="1279.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (153 samples, 0.35%)</title><rect x="97.3463%" y="1253" width="0.3546%" height="15" fill="rgb(231,102,53)" fg:x="42002" fg:w="153"/><text x="97.5963%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (151 samples, 0.35%)</title><rect x="97.3509%" y="1237" width="0.3500%" height="15" fill="rgb(210,77,38)" fg:x="42004" fg:w="151"/><text x="97.6009%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (151 samples, 0.35%)</title><rect x="97.3509%" y="1221" width="0.3500%" height="15" fill="rgb(235,131,6)" fg:x="42004" fg:w="151"/><text x="97.6009%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (147 samples, 0.34%)</title><rect x="97.3602%" y="1205" width="0.3407%" height="15" fill="rgb(252,55,38)" fg:x="42008" fg:w="147"/><text x="97.6102%" y="1215.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (147 samples, 0.34%)</title><rect x="97.3602%" y="1189" width="0.3407%" height="15" fill="rgb(246,38,14)" fg:x="42008" fg:w="147"/><text x="97.6102%" y="1199.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (147 samples, 0.34%)</title><rect x="97.3602%" y="1173" width="0.3407%" height="15" fill="rgb(242,27,5)" fg:x="42008" fg:w="147"/><text x="97.6102%" y="1183.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (147 samples, 0.34%)</title><rect x="97.3602%" y="1157" width="0.3407%" height="15" fill="rgb(228,65,35)" fg:x="42008" fg:w="147"/><text x="97.6102%" y="1167.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="97.7009%" y="1461" width="0.0116%" height="15" fill="rgb(245,93,11)" fg:x="42155" fg:w="5"/><text x="97.9509%" y="1471.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (9 samples, 0.02%)</title><rect x="97.7310%" y="1397" width="0.0209%" height="15" fill="rgb(213,1,31)" fg:x="42168" fg:w="9"/><text x="97.9810%" y="1407.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (9 samples, 0.02%)</title><rect x="97.7310%" y="1381" width="0.0209%" height="15" fill="rgb(237,205,14)" fg:x="42168" fg:w="9"/><text x="97.9810%" y="1391.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (44 samples, 0.10%)</title><rect x="97.7635%" y="1237" width="0.1020%" height="15" fill="rgb(232,118,45)" fg:x="42182" fg:w="44"/><text x="98.0135%" y="1247.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (44 samples, 0.10%)</title><rect x="97.7635%" y="1221" width="0.1020%" height="15" fill="rgb(218,5,6)" fg:x="42182" fg:w="44"/><text x="98.0135%" y="1231.50"></text></g><g><title>core::ptr::write (44 samples, 0.10%)</title><rect x="97.7635%" y="1205" width="0.1020%" height="15" fill="rgb(251,87,51)" fg:x="42182" fg:w="44"/><text x="98.0135%" y="1215.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (26 samples, 0.06%)</title><rect x="97.9187%" y="1189" width="0.0603%" height="15" fill="rgb(207,225,20)" fg:x="42249" fg:w="26"/><text x="98.1687%" y="1199.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (26 samples, 0.06%)</title><rect x="97.9187%" y="1173" width="0.0603%" height="15" fill="rgb(222,78,54)" fg:x="42249" fg:w="26"/><text x="98.1687%" y="1183.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.01%)</title><rect x="97.9883%" y="1045" width="0.0116%" height="15" fill="rgb(232,85,16)" fg:x="42279" fg:w="5"/><text x="98.2383%" y="1055.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (66 samples, 0.15%)</title><rect x="97.9999%" y="1029" width="0.1530%" height="15" fill="rgb(244,25,33)" fg:x="42284" fg:w="66"/><text x="98.2499%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (66 samples, 0.15%)</title><rect x="97.9999%" y="1013" width="0.1530%" height="15" fill="rgb(233,24,36)" fg:x="42284" fg:w="66"/><text x="98.2499%" y="1023.50"></text></g><g><title>core::ptr::write (66 samples, 0.15%)</title><rect x="97.9999%" y="997" width="0.1530%" height="15" fill="rgb(253,49,54)" fg:x="42284" fg:w="66"/><text x="98.2499%" y="1007.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (31 samples, 0.07%)</title><rect x="98.2061%" y="981" width="0.0718%" height="15" fill="rgb(245,12,22)" fg:x="42373" fg:w="31"/><text x="98.4561%" y="991.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (31 samples, 0.07%)</title><rect x="98.2061%" y="965" width="0.0718%" height="15" fill="rgb(253,141,28)" fg:x="42373" fg:w="31"/><text x="98.4561%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (93 samples, 0.22%)</title><rect x="98.2965%" y="821" width="0.2155%" height="15" fill="rgb(225,207,27)" fg:x="42412" fg:w="93"/><text x="98.5465%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted::{{closure}} (93 samples, 0.22%)</title><rect x="98.2965%" y="805" width="0.2155%" height="15" fill="rgb(220,84,2)" fg:x="42412" fg:w="93"/><text x="98.5465%" y="815.50"></text></g><g><title>core::ptr::write (93 samples, 0.22%)</title><rect x="98.2965%" y="789" width="0.2155%" height="15" fill="rgb(224,37,37)" fg:x="42412" fg:w="93"/><text x="98.5465%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (138 samples, 0.32%)</title><rect x="98.2965%" y="917" width="0.3198%" height="15" fill="rgb(220,143,18)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (138 samples, 0.32%)</title><rect x="98.2965%" y="901" width="0.3198%" height="15" fill="rgb(210,88,33)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (138 samples, 0.32%)</title><rect x="98.2965%" y="885" width="0.3198%" height="15" fill="rgb(219,87,51)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="895.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (138 samples, 0.32%)</title><rect x="98.2965%" y="869" width="0.3198%" height="15" fill="rgb(211,7,35)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (138 samples, 0.32%)</title><rect x="98.2965%" y="853" width="0.3198%" height="15" fill="rgb(232,77,2)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="863.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (138 samples, 0.32%)</title><rect x="98.2965%" y="837" width="0.3198%" height="15" fill="rgb(249,94,25)" fg:x="42412" fg:w="138"/><text x="98.5465%" y="847.50"></text></g><g><title>slimp::rw::{{closure}} (45 samples, 0.10%)</title><rect x="98.5121%" y="821" width="0.1043%" height="15" fill="rgb(215,112,2)" fg:x="42505" fg:w="45"/><text x="98.7621%" y="831.50"></text></g><g><title>slimp::Sexp::rw (45 samples, 0.10%)</title><rect x="98.5121%" y="805" width="0.1043%" height="15" fill="rgb(226,115,48)" fg:x="42505" fg:w="45"/><text x="98.7621%" y="815.50"></text></g><g><title>slimp::rw (39 samples, 0.09%)</title><rect x="98.5260%" y="789" width="0.0904%" height="15" fill="rgb(249,196,10)" fg:x="42511" fg:w="39"/><text x="98.7760%" y="799.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (22 samples, 0.05%)</title><rect x="98.5654%" y="773" width="0.0510%" height="15" fill="rgb(237,109,14)" fg:x="42528" fg:w="22"/><text x="98.8154%" y="783.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (22 samples, 0.05%)</title><rect x="98.5654%" y="757" width="0.0510%" height="15" fill="rgb(217,103,53)" fg:x="42528" fg:w="22"/><text x="98.8154%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (15 samples, 0.03%)</title><rect x="98.6372%" y="853" width="0.0348%" height="15" fill="rgb(244,137,9)" fg:x="42559" fg:w="15"/><text x="98.8872%" y="863.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (15 samples, 0.03%)</title><rect x="98.6372%" y="837" width="0.0348%" height="15" fill="rgb(227,201,3)" fg:x="42559" fg:w="15"/><text x="98.8872%" y="847.50"></text></g><g><title>alloc::alloc::alloc (15 samples, 0.03%)</title><rect x="98.6372%" y="821" width="0.0348%" height="15" fill="rgb(243,94,6)" fg:x="42559" fg:w="15"/><text x="98.8872%" y="831.50"></text></g><g><title>malloc (12 samples, 0.03%)</title><rect x="98.6442%" y="805" width="0.0278%" height="15" fill="rgb(235,118,5)" fg:x="42562" fg:w="12"/><text x="98.8942%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (172 samples, 0.40%)</title><rect x="98.2780%" y="981" width="0.3986%" height="15" fill="rgb(247,10,30)" fg:x="42404" fg:w="172"/><text x="98.5280%" y="991.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (172 samples, 0.40%)</title><rect x="98.2780%" y="965" width="0.3986%" height="15" fill="rgb(205,26,28)" fg:x="42404" fg:w="172"/><text x="98.5280%" y="975.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 (172 samples, 0.40%)</title><rect x="98.2780%" y="949" width="0.3986%" height="15" fill="rgb(206,99,35)" fg:x="42404" fg:w="172"/><text x="98.5280%" y="959.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 (169 samples, 0.39%)</title><rect x="98.2849%" y="933" width="0.3917%" height="15" fill="rgb(238,130,40)" fg:x="42407" fg:w="169"/><text x="98.5349%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (26 samples, 0.06%)</title><rect x="98.6164%" y="917" width="0.0603%" height="15" fill="rgb(224,126,31)" fg:x="42550" fg:w="26"/><text x="98.8664%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (26 samples, 0.06%)</title><rect x="98.6164%" y="901" width="0.0603%" height="15" fill="rgb(254,105,17)" fg:x="42550" fg:w="26"/><text x="98.8664%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (22 samples, 0.05%)</title><rect x="98.6256%" y="885" width="0.0510%" height="15" fill="rgb(216,87,36)" fg:x="42554" fg:w="22"/><text x="98.8756%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (22 samples, 0.05%)</title><rect x="98.6256%" y="869" width="0.0510%" height="15" fill="rgb(240,21,12)" fg:x="42554" fg:w="22"/><text x="98.8756%" y="879.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (295 samples, 0.68%)</title><rect x="97.9999%" y="1045" width="0.6837%" height="15" fill="rgb(245,192,34)" fg:x="42284" fg:w="295"/><text x="98.2499%" y="1055.50"></text></g><g><title>slimp::rw::{{closure}} (229 samples, 0.53%)</title><rect x="98.1528%" y="1029" width="0.5307%" height="15" fill="rgb(226,100,49)" fg:x="42350" fg:w="229"/><text x="98.4028%" y="1039.50"></text></g><g><title>slimp::Sexp::rw (229 samples, 0.53%)</title><rect x="98.1528%" y="1013" width="0.5307%" height="15" fill="rgb(245,188,27)" fg:x="42350" fg:w="229"/><text x="98.4028%" y="1023.50"></text></g><g><title>slimp::rw (221 samples, 0.51%)</title><rect x="98.1714%" y="997" width="0.5122%" height="15" fill="rgb(212,170,8)" fg:x="42358" fg:w="221"/><text x="98.4214%" y="1007.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 (304 samples, 0.70%)</title><rect x="97.9883%" y="1125" width="0.7046%" height="15" fill="rgb(217,113,29)" fg:x="42279" fg:w="304"/><text x="98.2383%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (304 samples, 0.70%)</title><rect x="97.9883%" y="1109" width="0.7046%" height="15" fill="rgb(237,30,3)" fg:x="42279" fg:w="304"/><text x="98.2383%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (304 samples, 0.70%)</title><rect x="97.9883%" y="1093" width="0.7046%" height="15" fill="rgb(227,19,28)" fg:x="42279" fg:w="304"/><text x="98.2383%" y="1103.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (304 samples, 0.70%)</title><rect x="97.9883%" y="1077" width="0.7046%" height="15" fill="rgb(239,172,45)" fg:x="42279" fg:w="304"/><text x="98.2383%" y="1087.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (304 samples, 0.70%)</title><rect x="97.9883%" y="1061" width="0.7046%" height="15" fill="rgb(254,55,39)" fg:x="42279" fg:w="304"/><text x="98.2383%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (337 samples, 0.78%)</title><rect x="97.9790%" y="1189" width="0.7811%" height="15" fill="rgb(249,208,12)" fg:x="42275" fg:w="337"/><text x="98.2290%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (337 samples, 0.78%)</title><rect x="97.9790%" y="1173" width="0.7811%" height="15" fill="rgb(240,52,13)" fg:x="42275" fg:w="337"/><text x="98.2290%" y="1183.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 (335 samples, 0.78%)</title><rect x="97.9836%" y="1157" width="0.7764%" height="15" fill="rgb(252,149,13)" fg:x="42277" fg:w="335"/><text x="98.2336%" y="1167.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 (335 samples, 0.78%)</title><rect x="97.9836%" y="1141" width="0.7764%" height="15" fill="rgb(232,81,48)" fg:x="42277" fg:w="335"/><text x="98.2336%" y="1151.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (27 samples, 0.06%)</title><rect x="98.6975%" y="1125" width="0.0626%" height="15" fill="rgb(222,144,2)" fg:x="42585" fg:w="27"/><text x="98.9475%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (27 samples, 0.06%)</title><rect x="98.6975%" y="1109" width="0.0626%" height="15" fill="rgb(216,81,32)" fg:x="42585" fg:w="27"/><text x="98.9475%" y="1119.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (22 samples, 0.05%)</title><rect x="98.7091%" y="1093" width="0.0510%" height="15" fill="rgb(244,78,51)" fg:x="42590" fg:w="22"/><text x="98.9591%" y="1103.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (22 samples, 0.05%)</title><rect x="98.7091%" y="1077" width="0.0510%" height="15" fill="rgb(217,66,21)" fg:x="42590" fg:w="22"/><text x="98.9591%" y="1087.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (16 samples, 0.04%)</title><rect x="98.7230%" y="1061" width="0.0371%" height="15" fill="rgb(247,101,42)" fg:x="42596" fg:w="16"/><text x="98.9730%" y="1071.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (16 samples, 0.04%)</title><rect x="98.7230%" y="1045" width="0.0371%" height="15" fill="rgb(227,81,39)" fg:x="42596" fg:w="16"/><text x="98.9730%" y="1055.50"></text></g><g><title>alloc::alloc::alloc (16 samples, 0.04%)</title><rect x="98.7230%" y="1029" width="0.0371%" height="15" fill="rgb(220,223,44)" fg:x="42596" fg:w="16"/><text x="98.9730%" y="1039.50"></text></g><g><title>malloc (13 samples, 0.03%)</title><rect x="98.7299%" y="1013" width="0.0301%" height="15" fill="rgb(205,218,2)" fg:x="42599" fg:w="13"/><text x="98.9799%" y="1023.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 (437 samples, 1.01%)</title><rect x="97.7565%" y="1333" width="1.0128%" height="15" fill="rgb(212,207,28)" fg:x="42179" fg:w="437"/><text x="98.0065%" y="1343.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (437 samples, 1.01%)</title><rect x="97.7565%" y="1317" width="1.0128%" height="15" fill="rgb(224,12,41)" fg:x="42179" fg:w="437"/><text x="98.0065%" y="1327.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (437 samples, 1.01%)</title><rect x="97.7565%" y="1301" width="1.0128%" height="15" fill="rgb(216,118,12)" fg:x="42179" fg:w="437"/><text x="98.0065%" y="1311.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (437 samples, 1.01%)</title><rect x="97.7565%" y="1285" width="1.0128%" height="15" fill="rgb(252,97,46)" fg:x="42179" fg:w="437"/><text x="98.0065%" y="1295.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (437 samples, 1.01%)</title><rect x="97.7565%" y="1269" width="1.0128%" height="15" fill="rgb(244,206,19)" fg:x="42179" fg:w="437"/><text x="98.0065%" y="1279.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (434 samples, 1.01%)</title><rect x="97.7635%" y="1253" width="1.0059%" height="15" fill="rgb(231,84,31)" fg:x="42182" fg:w="434"/><text x="98.0135%" y="1263.50"></text></g><g><title>slimp::rw::{{closure}} (390 samples, 0.90%)</title><rect x="97.8654%" y="1237" width="0.9039%" height="15" fill="rgb(244,133,0)" fg:x="42226" fg:w="390"/><text x="98.1154%" y="1247.50"></text></g><g><title>slimp::Sexp::rw (390 samples, 0.90%)</title><rect x="97.8654%" y="1221" width="0.9039%" height="15" fill="rgb(223,15,50)" fg:x="42226" fg:w="390"/><text x="98.1154%" y="1231.50"></text></g><g><title>slimp::rw (387 samples, 0.90%)</title><rect x="97.8724%" y="1205" width="0.8969%" height="15" fill="rgb(250,118,49)" fg:x="42229" fg:w="387"/><text x="98.1224%" y="1215.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (22 samples, 0.05%)</title><rect x="98.7879%" y="1269" width="0.0510%" height="15" fill="rgb(248,25,38)" fg:x="42624" fg:w="22"/><text x="99.0379%" y="1279.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (22 samples, 0.05%)</title><rect x="98.7879%" y="1253" width="0.0510%" height="15" fill="rgb(215,70,14)" fg:x="42624" fg:w="22"/><text x="99.0379%" y="1263.50"></text></g><g><title>alloc::alloc::alloc (22 samples, 0.05%)</title><rect x="98.7879%" y="1237" width="0.0510%" height="15" fill="rgb(215,28,15)" fg:x="42624" fg:w="22"/><text x="99.0379%" y="1247.50"></text></g><g><title>malloc (14 samples, 0.03%)</title><rect x="98.8064%" y="1221" width="0.0324%" height="15" fill="rgb(243,6,28)" fg:x="42632" fg:w="14"/><text x="99.0564%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (470 samples, 1.09%)</title><rect x="97.7519%" y="1397" width="1.0893%" height="15" fill="rgb(222,130,1)" fg:x="42177" fg:w="470"/><text x="98.0019%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (470 samples, 1.09%)</title><rect x="97.7519%" y="1381" width="1.0893%" height="15" fill="rgb(236,166,44)" fg:x="42177" fg:w="470"/><text x="98.0019%" y="1391.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 (469 samples, 1.09%)</title><rect x="97.7542%" y="1365" width="1.0870%" height="15" fill="rgb(221,108,14)" fg:x="42178" fg:w="469"/><text x="98.0042%" y="1375.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 (469 samples, 1.09%)</title><rect x="97.7542%" y="1349" width="1.0870%" height="15" fill="rgb(252,3,45)" fg:x="42178" fg:w="469"/><text x="98.0042%" y="1359.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (29 samples, 0.07%)</title><rect x="98.7740%" y="1333" width="0.0672%" height="15" fill="rgb(237,68,30)" fg:x="42618" fg:w="29"/><text x="99.0240%" y="1343.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (29 samples, 0.07%)</title><rect x="98.7740%" y="1317" width="0.0672%" height="15" fill="rgb(211,79,22)" fg:x="42618" fg:w="29"/><text x="99.0240%" y="1327.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (25 samples, 0.06%)</title><rect x="98.7832%" y="1301" width="0.0579%" height="15" fill="rgb(252,185,21)" fg:x="42622" fg:w="25"/><text x="99.0332%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (25 samples, 0.06%)</title><rect x="98.7832%" y="1285" width="0.0579%" height="15" fill="rgb(225,189,26)" fg:x="42622" fg:w="25"/><text x="99.0332%" y="1295.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 (493 samples, 1.14%)</title><rect x="97.7009%" y="1541" width="1.1426%" height="15" fill="rgb(241,30,40)" fg:x="42155" fg:w="493"/><text x="97.9509%" y="1551.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (493 samples, 1.14%)</title><rect x="97.7009%" y="1525" width="1.1426%" height="15" fill="rgb(235,215,44)" fg:x="42155" fg:w="493"/><text x="97.9509%" y="1535.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (493 samples, 1.14%)</title><rect x="97.7009%" y="1509" width="1.1426%" height="15" fill="rgb(205,8,29)" fg:x="42155" fg:w="493"/><text x="97.9509%" y="1519.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (493 samples, 1.14%)</title><rect x="97.7009%" y="1493" width="1.1426%" height="15" fill="rgb(241,137,42)" fg:x="42155" fg:w="493"/><text x="97.9509%" y="1503.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (493 samples, 1.14%)</title><rect x="97.7009%" y="1477" width="1.1426%" height="15" fill="rgb(237,155,2)" fg:x="42155" fg:w="493"/><text x="97.9509%" y="1487.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (488 samples, 1.13%)</title><rect x="97.7125%" y="1461" width="1.1310%" height="15" fill="rgb(245,29,42)" fg:x="42160" fg:w="488"/><text x="97.9625%" y="1471.50"></text></g><g><title>slimp::rw::{{closure}} (487 samples, 1.13%)</title><rect x="97.7148%" y="1445" width="1.1287%" height="15" fill="rgb(234,101,35)" fg:x="42161" fg:w="487"/><text x="97.9648%" y="1455.50"></text></g><g><title>slimp::Sexp::rw (487 samples, 1.13%)</title><rect x="97.7148%" y="1429" width="1.1287%" height="15" fill="rgb(228,64,37)" fg:x="42161" fg:w="487"/><text x="97.9648%" y="1439.50"></text></g><g><title>slimp::rw (487 samples, 1.13%)</title><rect x="97.7148%" y="1413" width="1.1287%" height="15" fill="rgb(217,214,36)" fg:x="42161" fg:w="487"/><text x="97.9648%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (510 samples, 1.18%)</title><rect x="97.7009%" y="1605" width="1.1820%" height="15" fill="rgb(243,70,3)" fg:x="42155" fg:w="510"/><text x="97.9509%" y="1615.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (510 samples, 1.18%)</title><rect x="97.7009%" y="1589" width="1.1820%" height="15" fill="rgb(253,158,52)" fg:x="42155" fg:w="510"/><text x="97.9509%" y="1599.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 (510 samples, 1.18%)</title><rect x="97.7009%" y="1573" width="1.1820%" height="15" fill="rgb(234,111,54)" fg:x="42155" fg:w="510"/><text x="97.9509%" y="1583.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 (510 samples, 1.18%)</title><rect x="97.7009%" y="1557" width="1.1820%" height="15" fill="rgb(217,70,32)" fg:x="42155" fg:w="510"/><text x="97.9509%" y="1567.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (13 samples, 0.03%)</title><rect x="98.8528%" y="1541" width="0.0301%" height="15" fill="rgb(234,18,33)" fg:x="42652" fg:w="13"/><text x="99.1028%" y="1551.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (13 samples, 0.03%)</title><rect x="98.8528%" y="1525" width="0.0301%" height="15" fill="rgb(234,12,49)" fg:x="42652" fg:w="13"/><text x="99.1028%" y="1535.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (8 samples, 0.02%)</title><rect x="98.8643%" y="1509" width="0.0185%" height="15" fill="rgb(236,10,21)" fg:x="42657" fg:w="8"/><text x="99.1143%" y="1519.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (8 samples, 0.02%)</title><rect x="98.8643%" y="1493" width="0.0185%" height="15" fill="rgb(248,182,45)" fg:x="42657" fg:w="8"/><text x="99.1143%" y="1503.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.02%)</title><rect x="98.8667%" y="1477" width="0.0162%" height="15" fill="rgb(217,95,36)" fg:x="42658" fg:w="7"/><text x="99.1167%" y="1487.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.02%)</title><rect x="98.8667%" y="1461" width="0.0162%" height="15" fill="rgb(212,110,31)" fg:x="42658" fg:w="7"/><text x="99.1167%" y="1471.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.02%)</title><rect x="98.8667%" y="1445" width="0.0162%" height="15" fill="rgb(206,32,53)" fg:x="42658" fg:w="7"/><text x="99.1167%" y="1455.50"></text></g><g><title>malloc (6 samples, 0.01%)</title><rect x="98.8690%" y="1429" width="0.0139%" height="15" fill="rgb(246,141,37)" fg:x="42659" fg:w="6"/><text x="99.1190%" y="1439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1829" width="86.1427%" height="15" fill="rgb(219,16,7)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1839.50">core::iter::traits::iterator::Iterator::collect</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1813" width="86.1427%" height="15" fill="rgb(230,205,45)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1823.50">&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter</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 (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1797" width="86.1427%" height="15" fill="rgb(231,43,49)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1807.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter</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 (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1781" width="86.1427%" height="15" fill="rgb(212,106,34)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1791.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter</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 (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1765" width="86.1427%" height="15" fill="rgb(206,83,17)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1775.50">&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1749" width="86.1427%" height="15" fill="rgb(244,154,49)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1759.50">alloc::vec::Vec&lt;T,A&gt;::extend_trusted</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1733" width="86.1427%" height="15" fill="rgb(244,149,49)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1743.50">core::iter::traits::iterator::Iterator::for_each</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1717" width="86.1427%" height="15" fill="rgb(227,134,18)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1727.50">&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold</text></g><g><title>core::iter::traits::iterator::Iterator::fold (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1701" width="86.1427%" height="15" fill="rgb(237,116,36)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1711.50">core::iter::traits::iterator::Iterator::fold</text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1685" width="86.1427%" height="15" fill="rgb(205,129,40)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1695.50">core::iter::adapters::map::map_fold::{{closure}}</text></g><g><title>slimp::rw::{{closure}} (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1669" width="86.1427%" height="15" fill="rgb(236,178,4)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1679.50">slimp::rw::{{closure}}</text></g><g><title>slimp::Sexp::rw (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1653" width="86.1427%" height="15" fill="rgb(251,76,53)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1663.50">slimp::Sexp::rw</text></g><g><title>slimp::rw (37,168 samples, 86.14%)</title><rect x="12.7425%" y="1637" width="86.1427%" height="15" fill="rgb(242,92,40)" fg:x="5498" fg:w="37168"/><text x="12.9925%" y="1647.50">slimp::rw</text></g><g><title>slimp::rw (1,192 samples, 2.76%)</title><rect x="96.1226%" y="1621" width="2.7626%" height="15" fill="rgb(209,45,30)" fg:x="41474" fg:w="1192"/><text x="96.3726%" y="1631.50">sl..</text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1829" width="0.0417%" height="15" fill="rgb(218,157,36)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1839.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1813" width="0.0417%" height="15" fill="rgb(222,186,16)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1823.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1797" width="0.0417%" height="15" fill="rgb(254,72,35)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1807.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (18 samples, 0.04%)</title><rect x="98.8852%" y="1781" width="0.0417%" height="15" fill="rgb(224,25,35)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1791.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1765" width="0.0417%" height="15" fill="rgb(206,135,52)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1749" width="0.0417%" height="15" fill="rgb(229,174,47)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1733" width="0.0417%" height="15" fill="rgb(242,184,21)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (18 samples, 0.04%)</title><rect x="98.8852%" y="1717" width="0.0417%" height="15" fill="rgb(213,22,45)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1701" width="0.0417%" height="15" fill="rgb(237,81,54)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (18 samples, 0.04%)</title><rect x="98.8852%" y="1685" width="0.0417%" height="15" fill="rgb(248,177,18)" fg:x="42666" fg:w="18"/><text x="99.1352%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (14 samples, 0.03%)</title><rect x="98.8945%" y="1669" width="0.0324%" height="15" fill="rgb(254,31,16)" fg:x="42670" fg:w="14"/><text x="99.1445%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (14 samples, 0.03%)</title><rect x="98.8945%" y="1653" width="0.0324%" height="15" fill="rgb(235,20,31)" fg:x="42670" fg:w="14"/><text x="99.1445%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (14 samples, 0.03%)</title><rect x="98.8945%" y="1637" width="0.0324%" height="15" fill="rgb(240,56,43)" fg:x="42670" fg:w="14"/><text x="99.1445%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (14 samples, 0.03%)</title><rect x="98.8945%" y="1621" width="0.0324%" height="15" fill="rgb(237,197,51)" fg:x="42670" fg:w="14"/><text x="99.1445%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (12 samples, 0.03%)</title><rect x="98.8991%" y="1605" width="0.0278%" height="15" fill="rgb(241,162,44)" fg:x="42672" fg:w="12"/><text x="99.1491%" y="1615.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (12 samples, 0.03%)</title><rect x="98.8991%" y="1589" width="0.0278%" height="15" fill="rgb(224,23,20)" fg:x="42672" fg:w="12"/><text x="99.1491%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (12 samples, 0.03%)</title><rect x="98.8991%" y="1573" width="0.0278%" height="15" fill="rgb(250,109,34)" fg:x="42672" fg:w="12"/><text x="99.1491%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (11 samples, 0.03%)</title><rect x="98.9014%" y="1557" width="0.0255%" height="15" fill="rgb(214,175,50)" fg:x="42673" fg:w="11"/><text x="99.1514%" y="1567.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (59 samples, 0.14%)</title><rect x="98.9316%" y="1749" width="0.1367%" height="15" fill="rgb(213,182,5)" fg:x="42686" fg:w="59"/><text x="99.1816%" y="1759.50"></text></g><g><title>alloc::alloc::dealloc (59 samples, 0.14%)</title><rect x="98.9316%" y="1733" width="0.1367%" height="15" fill="rgb(209,199,19)" fg:x="42686" fg:w="59"/><text x="99.1816%" y="1743.50"></text></g><g><title>cfree (59 samples, 0.14%)</title><rect x="98.9316%" y="1717" width="0.1367%" height="15" fill="rgb(236,224,42)" fg:x="42686" fg:w="59"/><text x="99.1816%" y="1727.50"></text></g><g><title>[libc.so.6] (59 samples, 0.14%)</title><rect x="98.9316%" y="1701" width="0.1367%" height="15" fill="rgb(246,226,29)" fg:x="42686" fg:w="59"/><text x="99.1816%" y="1711.50"></text></g><g><title>[libc.so.6] (59 samples, 0.14%)</title><rect x="98.9316%" y="1685" width="0.1367%" height="15" fill="rgb(227,223,11)" fg:x="42686" fg:w="59"/><text x="99.1816%" y="1695.50"></text></g><g><title>[libc.so.6] (20 samples, 0.05%)</title><rect x="99.0219%" y="1669" width="0.0464%" height="15" fill="rgb(219,7,51)" fg:x="42725" fg:w="20"/><text x="99.2719%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::set::IntoIter&lt;slimp::Rule&gt;&gt; (64 samples, 0.15%)</title><rect x="98.9316%" y="1829" width="0.1483%" height="15" fill="rgb(245,167,10)" fg:x="42686" fg:w="64"/><text x="99.1816%" y="1839.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::set::IntoIter&lt;slimp::Rule&gt;&gt; (64 samples, 0.15%)</title><rect x="98.9316%" y="1813" width="0.1483%" height="15" fill="rgb(237,224,16)" fg:x="42686" fg:w="64"/><text x="99.1816%" y="1823.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::IntoIter&lt;slimp::Rule,()&gt;&gt; (64 samples, 0.15%)</title><rect x="98.9316%" y="1797" width="0.1483%" height="15" fill="rgb(226,132,13)" fg:x="42686" fg:w="64"/><text x="99.1816%" y="1807.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(slimp::Rule,())&gt;&gt; (64 samples, 0.15%)</title><rect x="98.9316%" y="1781" width="0.1483%" height="15" fill="rgb(214,140,3)" fg:x="42686" fg:w="64"/><text x="99.1816%" y="1791.50"></text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (64 samples, 0.15%)</title><rect x="98.9316%" y="1765" width="0.1483%" height="15" fill="rgb(221,177,4)" fg:x="42686" fg:w="64"/><text x="99.1816%" y="1775.50"></text></g><g><title>hashbrown::raw::RawIter&lt;T&gt;::drop_elements (5 samples, 0.01%)</title><rect x="99.0683%" y="1749" width="0.0116%" height="15" fill="rgb(238,139,3)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1759.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (5 samples, 0.01%)</title><rect x="99.0683%" y="1733" width="0.0116%" height="15" fill="rgb(216,17,39)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1743.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (5 samples, 0.01%)</title><rect x="99.0683%" y="1717" width="0.0116%" height="15" fill="rgb(238,120,9)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;(slimp::Rule,())&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1701" width="0.0116%" height="15" fill="rgb(244,92,53)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1685" width="0.0116%" height="15" fill="rgb(224,148,33)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1669" width="0.0116%" height="15" fill="rgb(243,6,36)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1653" width="0.0116%" height="15" fill="rgb(230,102,11)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1663.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="99.0683%" y="1637" width="0.0116%" height="15" fill="rgb(234,148,36)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1621" width="0.0116%" height="15" fill="rgb(251,153,25)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="99.0683%" y="1605" width="0.0116%" height="15" fill="rgb(215,129,8)" fg:x="42745" fg:w="5"/><text x="99.3183%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Rule&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1765" width="0.0116%" height="15" fill="rgb(224,128,35)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1775.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1749" width="0.0116%" height="15" fill="rgb(237,56,52)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1759.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1733" width="0.0116%" height="15" fill="rgb(234,213,19)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="99.0822%" y="1717" width="0.0116%" height="15" fill="rgb(252,82,23)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1701" width="0.0116%" height="15" fill="rgb(254,201,21)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1685" width="0.0116%" height="15" fill="rgb(250,186,11)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;slimp::Sexp&gt;&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1669" width="0.0116%" height="15" fill="rgb(211,174,5)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="99.0822%" y="1653" width="0.0116%" height="15" fill="rgb(214,121,10)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;[slimp::Sexp]&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1637" width="0.0116%" height="15" fill="rgb(241,66,2)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;slimp::Sexp&gt; (5 samples, 0.01%)</title><rect x="99.0822%" y="1621" width="0.0116%" height="15" fill="rgb(220,167,19)" fg:x="42751" fg:w="5"/><text x="99.3322%" y="1631.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 (6 samples, 0.01%)</title><rect x="99.1309%" y="821" width="0.0139%" height="15" fill="rgb(231,54,50)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (6 samples, 0.01%)</title><rect x="99.1309%" y="805" width="0.0139%" height="15" fill="rgb(239,217,53)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (6 samples, 0.01%)</title><rect x="99.1309%" y="789" width="0.0139%" height="15" fill="rgb(248,8,0)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.01%)</title><rect x="99.1309%" y="773" width="0.0139%" height="15" fill="rgb(229,118,37)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.01%)</title><rect x="99.1309%" y="757" width="0.0139%" height="15" fill="rgb(253,223,43)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="767.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (6 samples, 0.01%)</title><rect x="99.1309%" y="741" width="0.0139%" height="15" fill="rgb(211,77,36)" fg:x="42772" fg:w="6"/><text x="99.3809%" y="751.50"></text></g><g><title>slimp::rw::{{closure}} (5 samples, 0.01%)</title><rect x="99.1332%" y="725" width="0.0116%" height="15" fill="rgb(219,3,53)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="735.50"></text></g><g><title>slimp::Sexp::rw (5 samples, 0.01%)</title><rect x="99.1332%" y="709" width="0.0116%" height="15" fill="rgb(244,45,42)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="719.50"></text></g><g><title>slimp::rw (5 samples, 0.01%)</title><rect x="99.1332%" y="693" width="0.0116%" height="15" fill="rgb(225,95,27)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.01%)</title><rect x="99.1332%" y="677" width="0.0116%" height="15" fill="rgb(207,74,8)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (5 samples, 0.01%)</title><rect x="99.1332%" y="661" width="0.0116%" height="15" fill="rgb(243,63,36)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="671.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 (5 samples, 0.01%)</title><rect x="99.1332%" y="645" width="0.0116%" height="15" fill="rgb(211,180,12)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="655.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 (5 samples, 0.01%)</title><rect x="99.1332%" y="629" width="0.0116%" height="15" fill="rgb(254,166,49)" fg:x="42773" fg:w="5"/><text x="99.3832%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (8 samples, 0.02%)</title><rect x="99.1286%" y="1029" width="0.0185%" height="15" fill="rgb(205,19,0)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (8 samples, 0.02%)</title><rect x="99.1286%" y="1013" width="0.0185%" height="15" fill="rgb(224,172,32)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="1023.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (8 samples, 0.02%)</title><rect x="99.1286%" y="997" width="0.0185%" height="15" fill="rgb(254,136,30)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="1007.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.02%)</title><rect x="99.1286%" y="981" width="0.0185%" height="15" fill="rgb(246,19,35)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="991.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.02%)</title><rect x="99.1286%" y="965" width="0.0185%" height="15" fill="rgb(219,24,36)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="975.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (8 samples, 0.02%)</title><rect x="99.1286%" y="949" width="0.0185%" height="15" fill="rgb(251,55,1)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="959.50"></text></g><g><title>slimp::rw::{{closure}} (8 samples, 0.02%)</title><rect x="99.1286%" y="933" width="0.0185%" height="15" fill="rgb(218,117,39)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="943.50"></text></g><g><title>slimp::Sexp::rw (8 samples, 0.02%)</title><rect x="99.1286%" y="917" width="0.0185%" height="15" fill="rgb(248,169,11)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="927.50"></text></g><g><title>slimp::rw (8 samples, 0.02%)</title><rect x="99.1286%" y="901" width="0.0185%" height="15" fill="rgb(244,40,44)" fg:x="42771" fg:w="8"/><text x="99.3786%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (7 samples, 0.02%)</title><rect x="99.1309%" y="885" width="0.0162%" height="15" fill="rgb(234,62,37)" fg:x="42772" fg:w="7"/><text x="99.3809%" 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 (7 samples, 0.02%)</title><rect x="99.1309%" y="869" width="0.0162%" height="15" fill="rgb(207,117,42)" fg:x="42772" fg:w="7"/><text x="99.3809%" 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 (7 samples, 0.02%)</title><rect x="99.1309%" y="853" width="0.0162%" height="15" fill="rgb(213,43,2)" fg:x="42772" fg:w="7"/><text x="99.3809%" 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 (7 samples, 0.02%)</title><rect x="99.1309%" y="837" width="0.0162%" height="15" fill="rgb(244,202,51)" fg:x="42772" fg:w="7"/><text x="99.3809%" y="847.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 (20 samples, 0.05%)</title><rect x="99.1123%" y="1237" width="0.0464%" height="15" fill="rgb(253,174,46)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1247.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (20 samples, 0.05%)</title><rect x="99.1123%" y="1221" width="0.0464%" height="15" fill="rgb(251,23,1)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (20 samples, 0.05%)</title><rect x="99.1123%" y="1205" width="0.0464%" height="15" fill="rgb(253,26,1)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1215.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (20 samples, 0.05%)</title><rect x="99.1123%" y="1189" width="0.0464%" height="15" fill="rgb(216,89,31)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1199.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (20 samples, 0.05%)</title><rect x="99.1123%" y="1173" width="0.0464%" height="15" fill="rgb(209,109,5)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1183.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (20 samples, 0.05%)</title><rect x="99.1123%" y="1157" width="0.0464%" height="15" fill="rgb(229,63,13)" fg:x="42764" fg:w="20"/><text x="99.3623%" y="1167.50"></text></g><g><title>slimp::rw::{{closure}} (17 samples, 0.04%)</title><rect x="99.1193%" y="1141" width="0.0394%" height="15" fill="rgb(238,137,54)" fg:x="42767" fg:w="17"/><text x="99.3693%" y="1151.50"></text></g><g><title>slimp::Sexp::rw (17 samples, 0.04%)</title><rect x="99.1193%" y="1125" width="0.0394%" height="15" fill="rgb(228,1,9)" fg:x="42767" fg:w="17"/><text x="99.3693%" y="1135.50"></text></g><g><title>slimp::rw (17 samples, 0.04%)</title><rect x="99.1193%" y="1109" width="0.0394%" height="15" fill="rgb(249,120,48)" fg:x="42767" fg:w="17"/><text x="99.3693%" y="1119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (13 samples, 0.03%)</title><rect x="99.1286%" y="1093" width="0.0301%" height="15" fill="rgb(209,72,36)" fg:x="42771" fg:w="13"/><text x="99.3786%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (13 samples, 0.03%)</title><rect x="99.1286%" y="1077" width="0.0301%" height="15" fill="rgb(247,98,49)" fg:x="42771" fg:w="13"/><text x="99.3786%" y="1087.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 (13 samples, 0.03%)</title><rect x="99.1286%" y="1061" width="0.0301%" height="15" fill="rgb(233,75,36)" fg:x="42771" fg:w="13"/><text x="99.3786%" y="1071.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 (13 samples, 0.03%)</title><rect x="99.1286%" y="1045" width="0.0301%" height="15" fill="rgb(225,14,24)" fg:x="42771" fg:w="13"/><text x="99.3786%" y="1055.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (5 samples, 0.01%)</title><rect x="99.1471%" y="1029" width="0.0116%" height="15" fill="rgb(237,193,20)" fg:x="42779" fg:w="5"/><text x="99.3971%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (5 samples, 0.01%)</title><rect x="99.1471%" y="1013" width="0.0116%" height="15" fill="rgb(239,122,19)" fg:x="42779" fg:w="5"/><text x="99.3971%" y="1023.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 (29 samples, 0.07%)</title><rect x="99.0961%" y="1445" width="0.0672%" height="15" fill="rgb(231,220,10)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1455.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (29 samples, 0.07%)</title><rect x="99.0961%" y="1429" width="0.0672%" height="15" fill="rgb(220,66,15)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (29 samples, 0.07%)</title><rect x="99.0961%" y="1413" width="0.0672%" height="15" fill="rgb(215,171,52)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1423.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (29 samples, 0.07%)</title><rect x="99.0961%" y="1397" width="0.0672%" height="15" fill="rgb(241,169,50)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1407.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (29 samples, 0.07%)</title><rect x="99.0961%" y="1381" width="0.0672%" height="15" fill="rgb(236,189,0)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1391.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (29 samples, 0.07%)</title><rect x="99.0961%" y="1365" width="0.0672%" height="15" fill="rgb(217,147,20)" fg:x="42757" fg:w="29"/><text x="99.3461%" y="1375.50"></text></g><g><title>slimp::rw::{{closure}} (28 samples, 0.06%)</title><rect x="99.0984%" y="1349" width="0.0649%" height="15" fill="rgb(206,188,39)" fg:x="42758" fg:w="28"/><text x="99.3484%" y="1359.50"></text></g><g><title>slimp::Sexp::rw (28 samples, 0.06%)</title><rect x="99.0984%" y="1333" width="0.0649%" height="15" fill="rgb(227,118,25)" fg:x="42758" fg:w="28"/><text x="99.3484%" y="1343.50"></text></g><g><title>slimp::rw (27 samples, 0.06%)</title><rect x="99.1007%" y="1317" width="0.0626%" height="15" fill="rgb(248,171,40)" fg:x="42759" fg:w="27"/><text x="99.3507%" y="1327.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (22 samples, 0.05%)</title><rect x="99.1123%" y="1301" width="0.0510%" height="15" fill="rgb(251,90,54)" fg:x="42764" fg:w="22"/><text x="99.3623%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (22 samples, 0.05%)</title><rect x="99.1123%" y="1285" width="0.0510%" height="15" fill="rgb(234,11,46)" fg:x="42764" fg:w="22"/><text x="99.3623%" y="1295.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 (22 samples, 0.05%)</title><rect x="99.1123%" y="1269" width="0.0510%" height="15" fill="rgb(229,134,13)" fg:x="42764" fg:w="22"/><text x="99.3623%" y="1279.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 (22 samples, 0.05%)</title><rect x="99.1123%" y="1253" width="0.0510%" height="15" fill="rgb(223,129,3)" fg:x="42764" fg:w="22"/><text x="99.3623%" y="1263.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 (33 samples, 0.08%)</title><rect x="99.0938%" y="1653" width="0.0765%" height="15" fill="rgb(221,124,13)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1663.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (33 samples, 0.08%)</title><rect x="99.0938%" y="1637" width="0.0765%" height="15" fill="rgb(234,3,18)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1647.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (33 samples, 0.08%)</title><rect x="99.0938%" y="1621" width="0.0765%" height="15" fill="rgb(249,199,20)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1631.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (33 samples, 0.08%)</title><rect x="99.0938%" y="1605" width="0.0765%" height="15" fill="rgb(224,134,6)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (33 samples, 0.08%)</title><rect x="99.0938%" y="1589" width="0.0765%" height="15" fill="rgb(254,83,26)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1599.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (33 samples, 0.08%)</title><rect x="99.0938%" y="1573" width="0.0765%" height="15" fill="rgb(217,88,9)" fg:x="42756" fg:w="33"/><text x="99.3438%" y="1583.50"></text></g><g><title>slimp::rw::{{closure}} (32 samples, 0.07%)</title><rect x="99.0961%" y="1557" width="0.0742%" height="15" fill="rgb(225,73,2)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1567.50"></text></g><g><title>slimp::Sexp::rw (32 samples, 0.07%)</title><rect x="99.0961%" y="1541" width="0.0742%" height="15" fill="rgb(226,44,39)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1551.50"></text></g><g><title>slimp::rw (32 samples, 0.07%)</title><rect x="99.0961%" y="1525" width="0.0742%" height="15" fill="rgb(228,53,17)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1535.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (32 samples, 0.07%)</title><rect x="99.0961%" y="1509" width="0.0742%" height="15" fill="rgb(212,27,27)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (32 samples, 0.07%)</title><rect x="99.0961%" y="1493" width="0.0742%" height="15" fill="rgb(241,50,6)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (32 samples, 0.07%)</title><rect x="99.0961%" y="1477" width="0.0742%" height="15" fill="rgb(225,28,51)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (32 samples, 0.07%)</title><rect x="99.0961%" y="1461" width="0.0742%" height="15" fill="rgb(215,33,16)" fg:x="42757" fg:w="32"/><text x="99.3461%" y="1471.50"></text></g><g><title>slimp::Rule::concrify (34 samples, 0.08%)</title><rect x="99.0938%" y="1749" width="0.0788%" height="15" fill="rgb(243,40,39)" fg:x="42756" fg:w="34"/><text x="99.3438%" y="1759.50"></text></g><g><title>slimp::rw (34 samples, 0.08%)</title><rect x="99.0938%" y="1733" width="0.0788%" height="15" fill="rgb(225,11,42)" fg:x="42756" fg:w="34"/><text x="99.3438%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (34 samples, 0.08%)</title><rect x="99.0938%" y="1717" width="0.0788%" height="15" fill="rgb(241,220,38)" fg:x="42756" fg:w="34"/><text x="99.3438%" 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 (34 samples, 0.08%)</title><rect x="99.0938%" y="1701" width="0.0788%" height="15" fill="rgb(244,52,35)" fg:x="42756" fg:w="34"/><text x="99.3438%" 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 (34 samples, 0.08%)</title><rect x="99.0938%" y="1685" width="0.0788%" height="15" fill="rgb(246,42,46)" fg:x="42756" fg:w="34"/><text x="99.3438%" 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 (34 samples, 0.08%)</title><rect x="99.0938%" y="1669" width="0.0788%" height="15" fill="rgb(205,184,13)" fg:x="42756" fg:w="34"/><text x="99.3438%" y="1679.50"></text></g><g><title>core::hash::Hash::hash_slice (8 samples, 0.02%)</title><rect x="99.1865%" y="1269" width="0.0185%" height="15" fill="rgb(209,48,36)" fg:x="42796" fg:w="8"/><text x="99.4365%" y="1279.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (8 samples, 0.02%)</title><rect x="99.1865%" y="1253" width="0.0185%" height="15" fill="rgb(244,34,51)" fg:x="42796" fg:w="8"/><text x="99.4365%" y="1263.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (6 samples, 0.01%)</title><rect x="99.1911%" y="1237" width="0.0139%" height="15" fill="rgb(221,107,33)" fg:x="42798" fg:w="6"/><text x="99.4411%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (9 samples, 0.02%)</title><rect x="99.1865%" y="1301" width="0.0209%" height="15" fill="rgb(224,203,12)" fg:x="42796" fg:w="9"/><text x="99.4365%" y="1311.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (9 samples, 0.02%)</title><rect x="99.1865%" y="1285" width="0.0209%" height="15" fill="rgb(230,215,18)" fg:x="42796" fg:w="9"/><text x="99.4365%" y="1295.50"></text></g><g><title>core::hash::Hash::hash_slice (13 samples, 0.03%)</title><rect x="99.1819%" y="1349" width="0.0301%" height="15" fill="rgb(206,185,35)" fg:x="42794" fg:w="13"/><text x="99.4319%" y="1359.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (13 samples, 0.03%)</title><rect x="99.1819%" y="1333" width="0.0301%" height="15" fill="rgb(228,140,34)" fg:x="42794" fg:w="13"/><text x="99.4319%" y="1343.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (12 samples, 0.03%)</title><rect x="99.1842%" y="1317" width="0.0278%" height="15" fill="rgb(208,93,13)" fg:x="42795" fg:w="12"/><text x="99.4342%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (16 samples, 0.04%)</title><rect x="99.1819%" y="1381" width="0.0371%" height="15" fill="rgb(221,193,39)" fg:x="42794" fg:w="16"/><text x="99.4319%" y="1391.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (16 samples, 0.04%)</title><rect x="99.1819%" y="1365" width="0.0371%" height="15" fill="rgb(241,132,34)" fg:x="42794" fg:w="16"/><text x="99.4319%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (21 samples, 0.05%)</title><rect x="99.1749%" y="1461" width="0.0487%" height="15" fill="rgb(221,141,10)" fg:x="42791" fg:w="21"/><text x="99.4249%" y="1471.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (21 samples, 0.05%)</title><rect x="99.1749%" y="1445" width="0.0487%" height="15" fill="rgb(226,90,31)" fg:x="42791" fg:w="21"/><text x="99.4249%" y="1455.50"></text></g><g><title>core::hash::Hash::hash_slice (21 samples, 0.05%)</title><rect x="99.1749%" y="1429" width="0.0487%" height="15" fill="rgb(243,75,5)" fg:x="42791" fg:w="21"/><text x="99.4249%" y="1439.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (21 samples, 0.05%)</title><rect x="99.1749%" y="1413" width="0.0487%" height="15" fill="rgb(227,156,21)" fg:x="42791" fg:w="21"/><text x="99.4249%" y="1423.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (18 samples, 0.04%)</title><rect x="99.1819%" y="1397" width="0.0417%" height="15" fill="rgb(250,195,8)" fg:x="42794" fg:w="18"/><text x="99.4319%" y="1407.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (25 samples, 0.06%)</title><rect x="99.1726%" y="1749" width="0.0579%" height="15" fill="rgb(220,134,5)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1759.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (25 samples, 0.06%)</title><rect x="99.1726%" y="1733" width="0.0579%" height="15" fill="rgb(246,106,34)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1743.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (25 samples, 0.06%)</title><rect x="99.1726%" y="1717" width="0.0579%" height="15" fill="rgb(205,1,4)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1727.50"></text></g><g><title>hashbrown::map::make_insert_hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1701" width="0.0579%" height="15" fill="rgb(224,151,29)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1711.50"></text></g><g><title>core::hash::BuildHasher::hash_one (25 samples, 0.06%)</title><rect x="99.1726%" y="1685" width="0.0579%" height="15" fill="rgb(251,196,0)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1695.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1669" width="0.0579%" height="15" fill="rgb(212,127,0)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1679.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1653" width="0.0579%" height="15" fill="rgb(236,71,53)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1663.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1637" width="0.0579%" height="15" fill="rgb(227,99,0)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1647.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1621" width="0.0579%" height="15" fill="rgb(239,89,21)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1631.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1605" width="0.0579%" height="15" fill="rgb(243,122,19)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1615.50"></text></g><g><title>core::hash::Hash::hash_slice (25 samples, 0.06%)</title><rect x="99.1726%" y="1589" width="0.0579%" height="15" fill="rgb(229,192,45)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1599.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (25 samples, 0.06%)</title><rect x="99.1726%" y="1573" width="0.0579%" height="15" fill="rgb(235,165,35)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1583.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1557" width="0.0579%" height="15" fill="rgb(253,202,0)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1567.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1541" width="0.0579%" height="15" fill="rgb(235,51,20)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1551.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (25 samples, 0.06%)</title><rect x="99.1726%" y="1525" width="0.0579%" height="15" fill="rgb(218,95,46)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1535.50"></text></g><g><title>core::hash::Hash::hash_slice (25 samples, 0.06%)</title><rect x="99.1726%" y="1509" width="0.0579%" height="15" fill="rgb(212,81,10)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1519.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (25 samples, 0.06%)</title><rect x="99.1726%" y="1493" width="0.0579%" height="15" fill="rgb(240,59,0)" fg:x="42790" fg:w="25"/><text x="99.4226%" y="1503.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (24 samples, 0.06%)</title><rect x="99.1749%" y="1477" width="0.0556%" height="15" fill="rgb(212,191,42)" fg:x="42791" fg:w="24"/><text x="99.4249%" y="1487.50"></text></g><g><title>slimp::Rule::concretions (61 samples, 0.14%)</title><rect x="99.0938%" y="1765" width="0.1414%" height="15" fill="rgb(233,140,3)" fg:x="42756" fg:w="61"/><text x="99.3438%" y="1775.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 (6 samples, 0.01%)</title><rect x="99.2607%" y="1045" width="0.0139%" height="15" fill="rgb(215,69,23)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="1055.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (6 samples, 0.01%)</title><rect x="99.2607%" y="1029" width="0.0139%" height="15" fill="rgb(240,202,20)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="1039.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (6 samples, 0.01%)</title><rect x="99.2607%" y="1013" width="0.0139%" height="15" fill="rgb(209,146,50)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="1023.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.01%)</title><rect x="99.2607%" y="997" width="0.0139%" height="15" fill="rgb(253,102,54)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="1007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.01%)</title><rect x="99.2607%" y="981" width="0.0139%" height="15" fill="rgb(250,173,47)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="991.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (6 samples, 0.01%)</title><rect x="99.2607%" y="965" width="0.0139%" height="15" fill="rgb(232,142,7)" fg:x="42828" fg:w="6"/><text x="99.5107%" y="975.50"></text></g><g><title>slimp::rw::{{closure}} (5 samples, 0.01%)</title><rect x="99.2630%" y="949" width="0.0116%" height="15" fill="rgb(230,157,47)" fg:x="42829" fg:w="5"/><text x="99.5130%" y="959.50"></text></g><g><title>slimp::Sexp::rw (5 samples, 0.01%)</title><rect x="99.2630%" y="933" width="0.0116%" height="15" fill="rgb(214,177,35)" fg:x="42829" fg:w="5"/><text x="99.5130%" y="943.50"></text></g><g><title>slimp::rw (5 samples, 0.01%)</title><rect x="99.2630%" y="917" width="0.0116%" height="15" fill="rgb(234,119,46)" fg:x="42829" fg:w="5"/><text x="99.5130%" y="927.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 (14 samples, 0.03%)</title><rect x="99.2491%" y="1669" width="0.0324%" height="15" fill="rgb(241,180,50)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1679.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (14 samples, 0.03%)</title><rect x="99.2491%" y="1653" width="0.0324%" height="15" fill="rgb(221,54,25)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1663.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (14 samples, 0.03%)</title><rect x="99.2491%" y="1637" width="0.0324%" height="15" fill="rgb(209,157,44)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1647.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (14 samples, 0.03%)</title><rect x="99.2491%" y="1621" width="0.0324%" height="15" fill="rgb(246,115,41)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1631.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (14 samples, 0.03%)</title><rect x="99.2491%" y="1605" width="0.0324%" height="15" fill="rgb(229,86,1)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1615.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (14 samples, 0.03%)</title><rect x="99.2491%" y="1589" width="0.0324%" height="15" fill="rgb(240,108,53)" fg:x="42823" fg:w="14"/><text x="99.4991%" y="1599.50"></text></g><g><title>slimp::rw::{{closure}} (13 samples, 0.03%)</title><rect x="99.2514%" y="1573" width="0.0301%" height="15" fill="rgb(227,134,2)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1583.50"></text></g><g><title>slimp::Sexp::rw (13 samples, 0.03%)</title><rect x="99.2514%" y="1557" width="0.0301%" height="15" fill="rgb(213,129,25)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1567.50"></text></g><g><title>slimp::rw (13 samples, 0.03%)</title><rect x="99.2514%" y="1541" width="0.0301%" height="15" fill="rgb(226,35,21)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1551.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (13 samples, 0.03%)</title><rect x="99.2514%" y="1525" width="0.0301%" height="15" fill="rgb(208,129,26)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1535.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (13 samples, 0.03%)</title><rect x="99.2514%" y="1509" width="0.0301%" height="15" fill="rgb(224,83,6)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1519.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 (13 samples, 0.03%)</title><rect x="99.2514%" y="1493" width="0.0301%" height="15" fill="rgb(227,52,39)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1503.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 (13 samples, 0.03%)</title><rect x="99.2514%" y="1477" width="0.0301%" height="15" fill="rgb(241,30,17)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1487.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 (13 samples, 0.03%)</title><rect x="99.2514%" y="1461" width="0.0301%" height="15" fill="rgb(246,186,42)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1471.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (13 samples, 0.03%)</title><rect x="99.2514%" y="1445" width="0.0301%" height="15" fill="rgb(221,169,15)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1455.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (13 samples, 0.03%)</title><rect x="99.2514%" y="1429" width="0.0301%" height="15" fill="rgb(235,108,21)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1439.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (13 samples, 0.03%)</title><rect x="99.2514%" y="1413" width="0.0301%" height="15" fill="rgb(219,148,30)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (13 samples, 0.03%)</title><rect x="99.2514%" y="1397" width="0.0301%" height="15" fill="rgb(220,109,5)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1407.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (13 samples, 0.03%)</title><rect x="99.2514%" y="1381" width="0.0301%" height="15" fill="rgb(213,203,48)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1391.50"></text></g><g><title>slimp::rw::{{closure}} (13 samples, 0.03%)</title><rect x="99.2514%" y="1365" width="0.0301%" height="15" fill="rgb(244,71,33)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1375.50"></text></g><g><title>slimp::Sexp::rw (13 samples, 0.03%)</title><rect x="99.2514%" y="1349" width="0.0301%" height="15" fill="rgb(209,23,2)" fg:x="42824" fg:w="13"/><text x="99.5014%" y="1359.50"></text></g><g><title>slimp::rw (12 samples, 0.03%)</title><rect x="99.2537%" y="1333" width="0.0278%" height="15" fill="rgb(219,97,7)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1343.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (12 samples, 0.03%)</title><rect x="99.2537%" y="1317" width="0.0278%" height="15" fill="rgb(216,161,23)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (12 samples, 0.03%)</title><rect x="99.2537%" y="1301" width="0.0278%" height="15" fill="rgb(207,45,42)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (12 samples, 0.03%)</title><rect x="99.2537%" y="1285" width="0.0278%" height="15" fill="rgb(241,61,4)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (12 samples, 0.03%)</title><rect x="99.2537%" y="1269" width="0.0278%" height="15" fill="rgb(236,170,1)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (12 samples, 0.03%)</title><rect x="99.2537%" y="1253" width="0.0278%" height="15" fill="rgb(239,72,5)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1263.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (12 samples, 0.03%)</title><rect x="99.2537%" y="1237" width="0.0278%" height="15" fill="rgb(214,13,50)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1247.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (12 samples, 0.03%)</title><rect x="99.2537%" y="1221" width="0.0278%" height="15" fill="rgb(224,88,9)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1231.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (12 samples, 0.03%)</title><rect x="99.2537%" y="1205" width="0.0278%" height="15" fill="rgb(238,192,34)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1215.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (12 samples, 0.03%)</title><rect x="99.2537%" y="1189" width="0.0278%" height="15" fill="rgb(217,203,50)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1199.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (12 samples, 0.03%)</title><rect x="99.2537%" y="1173" width="0.0278%" height="15" fill="rgb(241,123,32)" fg:x="42825" fg:w="12"/><text x="99.5037%" y="1183.50"></text></g><g><title>slimp::rw::{{closure}} (10 samples, 0.02%)</title><rect x="99.2583%" y="1157" width="0.0232%" height="15" fill="rgb(248,151,39)" fg:x="42827" fg:w="10"/><text x="99.5083%" y="1167.50"></text></g><g><title>slimp::Sexp::rw (10 samples, 0.02%)</title><rect x="99.2583%" y="1141" width="0.0232%" height="15" fill="rgb(208,89,6)" fg:x="42827" fg:w="10"/><text x="99.5083%" y="1151.50"></text></g><g><title>slimp::rw (10 samples, 0.02%)</title><rect x="99.2583%" y="1125" width="0.0232%" height="15" fill="rgb(254,43,26)" fg:x="42827" fg:w="10"/><text x="99.5083%" y="1135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (9 samples, 0.02%)</title><rect x="99.2607%" y="1109" width="0.0209%" height="15" fill="rgb(216,158,13)" fg:x="42828" fg:w="9"/><text x="99.5107%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="99.2607%" y="1093" width="0.0209%" height="15" fill="rgb(212,47,37)" fg:x="42828" fg:w="9"/><text x="99.5107%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="99.2607%" y="1077" width="0.0209%" height="15" fill="rgb(254,16,10)" fg:x="42828" fg:w="9"/><text x="99.5107%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (9 samples, 0.02%)</title><rect x="99.2607%" y="1061" width="0.0209%" height="15" fill="rgb(223,228,16)" fg:x="42828" fg:w="9"/><text x="99.5107%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (16 samples, 0.04%)</title><rect x="99.2491%" y="1733" width="0.0371%" height="15" fill="rgb(249,108,50)" fg:x="42823" fg:w="16"/><text x="99.4991%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (16 samples, 0.04%)</title><rect x="99.2491%" y="1717" width="0.0371%" height="15" fill="rgb(208,220,5)" fg:x="42823" fg:w="16"/><text x="99.4991%" y="1727.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 (16 samples, 0.04%)</title><rect x="99.2491%" y="1701" width="0.0371%" height="15" fill="rgb(217,89,48)" fg:x="42823" fg:w="16"/><text x="99.4991%" y="1711.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 (16 samples, 0.04%)</title><rect x="99.2491%" y="1685" width="0.0371%" height="15" fill="rgb(212,113,41)" fg:x="42823" fg:w="16"/><text x="99.4991%" y="1695.50"></text></g><g><title>slimp::Rule::concrify (23 samples, 0.05%)</title><rect x="99.2352%" y="1765" width="0.0533%" height="15" fill="rgb(231,127,5)" fg:x="42817" fg:w="23"/><text x="99.4852%" y="1775.50"></text></g><g><title>slimp::rw (18 samples, 0.04%)</title><rect x="99.2468%" y="1749" width="0.0417%" height="15" fill="rgb(217,141,17)" fg:x="42822" fg:w="18"/><text x="99.4968%" y="1759.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (10 samples, 0.02%)</title><rect x="99.3024%" y="1317" width="0.0232%" height="15" fill="rgb(245,125,54)" fg:x="42846" fg:w="10"/><text x="99.5524%" y="1327.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (10 samples, 0.02%)</title><rect x="99.3024%" y="1301" width="0.0232%" height="15" fill="rgb(248,125,3)" fg:x="42846" fg:w="10"/><text x="99.5524%" y="1311.50"></text></g><g><title>core::hash::Hash::hash_slice (10 samples, 0.02%)</title><rect x="99.3024%" y="1285" width="0.0232%" height="15" fill="rgb(236,119,51)" fg:x="42846" fg:w="10"/><text x="99.5524%" y="1295.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (10 samples, 0.02%)</title><rect x="99.3024%" y="1269" width="0.0232%" height="15" fill="rgb(239,99,8)" fg:x="42846" fg:w="10"/><text x="99.5524%" y="1279.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (8 samples, 0.02%)</title><rect x="99.3070%" y="1253" width="0.0185%" height="15" fill="rgb(224,228,4)" fg:x="42848" fg:w="8"/><text x="99.5570%" y="1263.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (6 samples, 0.01%)</title><rect x="99.3117%" y="1237" width="0.0139%" height="15" fill="rgb(220,131,45)" fg:x="42850" fg:w="6"/><text x="99.5617%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_isize (6 samples, 0.01%)</title><rect x="99.3117%" y="1221" width="0.0139%" height="15" fill="rgb(215,62,5)" fg:x="42850" fg:w="6"/><text x="99.5617%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_usize (6 samples, 0.01%)</title><rect x="99.3117%" y="1205" width="0.0139%" height="15" fill="rgb(253,12,24)" fg:x="42850" fg:w="6"/><text x="99.5617%" y="1215.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.3140%" y="1189" width="0.0116%" height="15" fill="rgb(248,120,50)" fg:x="42851" fg:w="5"/><text x="99.5640%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.3140%" y="1173" width="0.0116%" height="15" fill="rgb(245,194,10)" fg:x="42851" fg:w="5"/><text x="99.5640%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.3140%" y="1157" width="0.0116%" height="15" fill="rgb(241,149,38)" fg:x="42851" fg:w="5"/><text x="99.5640%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (13 samples, 0.03%)</title><rect x="99.3001%" y="1397" width="0.0301%" height="15" fill="rgb(219,215,7)" fg:x="42845" fg:w="13"/><text x="99.5501%" y="1407.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (13 samples, 0.03%)</title><rect x="99.3001%" y="1381" width="0.0301%" height="15" fill="rgb(208,120,31)" fg:x="42845" fg:w="13"/><text x="99.5501%" y="1391.50"></text></g><g><title>core::hash::Hash::hash_slice (13 samples, 0.03%)</title><rect x="99.3001%" y="1365" width="0.0301%" height="15" fill="rgb(244,30,8)" fg:x="42845" fg:w="13"/><text x="99.5501%" y="1375.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (13 samples, 0.03%)</title><rect x="99.3001%" y="1349" width="0.0301%" height="15" fill="rgb(238,35,44)" fg:x="42845" fg:w="13"/><text x="99.5501%" y="1359.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (13 samples, 0.03%)</title><rect x="99.3001%" y="1333" width="0.0301%" height="15" fill="rgb(243,218,37)" fg:x="42845" fg:w="13"/><text x="99.5501%" y="1343.50"></text></g><g><title>core::hash::Hash::hash_slice (18 samples, 0.04%)</title><rect x="99.2954%" y="1445" width="0.0417%" height="15" fill="rgb(218,169,10)" fg:x="42843" fg:w="18"/><text x="99.5454%" y="1455.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (18 samples, 0.04%)</title><rect x="99.2954%" y="1429" width="0.0417%" height="15" fill="rgb(221,144,10)" fg:x="42843" fg:w="18"/><text x="99.5454%" y="1439.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="99.2977%" y="1413" width="0.0394%" height="15" fill="rgb(226,41,38)" fg:x="42844" fg:w="17"/><text x="99.5477%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (19 samples, 0.04%)</title><rect x="99.2954%" y="1477" width="0.0440%" height="15" fill="rgb(228,3,1)" fg:x="42843" fg:w="19"/><text x="99.5454%" y="1487.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (19 samples, 0.04%)</title><rect x="99.2954%" y="1461" width="0.0440%" height="15" fill="rgb(209,129,12)" fg:x="42843" fg:w="19"/><text x="99.5454%" y="1471.50"></text></g><g><title>core::hash::Hash::hash_slice (25 samples, 0.06%)</title><rect x="99.2885%" y="1525" width="0.0579%" height="15" fill="rgb(213,136,33)" fg:x="42840" fg:w="25"/><text x="99.5385%" y="1535.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (25 samples, 0.06%)</title><rect x="99.2885%" y="1509" width="0.0579%" height="15" fill="rgb(209,181,29)" fg:x="42840" fg:w="25"/><text x="99.5385%" y="1519.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (22 samples, 0.05%)</title><rect x="99.2954%" y="1493" width="0.0510%" height="15" fill="rgb(234,173,18)" fg:x="42843" fg:w="22"/><text x="99.5454%" y="1503.50"></text></g><g><title>core::hash::Hash::hash_slice (27 samples, 0.06%)</title><rect x="99.2885%" y="1605" width="0.0626%" height="15" fill="rgb(227,73,47)" fg:x="42840" fg:w="27"/><text x="99.5385%" y="1615.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (27 samples, 0.06%)</title><rect x="99.2885%" y="1589" width="0.0626%" height="15" fill="rgb(234,9,34)" fg:x="42840" fg:w="27"/><text x="99.5385%" y="1599.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (27 samples, 0.06%)</title><rect x="99.2885%" y="1573" width="0.0626%" height="15" fill="rgb(235,172,15)" fg:x="42840" fg:w="27"/><text x="99.5385%" y="1583.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (27 samples, 0.06%)</title><rect x="99.2885%" y="1557" width="0.0626%" height="15" fill="rgb(245,61,2)" fg:x="42840" fg:w="27"/><text x="99.5385%" y="1567.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (27 samples, 0.06%)</title><rect x="99.2885%" y="1541" width="0.0626%" height="15" fill="rgb(238,39,47)" fg:x="42840" fg:w="27"/><text x="99.5385%" y="1551.50"></text></g><g><title>hashbrown::map::make_insert_hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1717" width="0.0649%" height="15" fill="rgb(234,37,24)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1727.50"></text></g><g><title>core::hash::BuildHasher::hash_one (28 samples, 0.06%)</title><rect x="99.2885%" y="1701" width="0.0649%" height="15" fill="rgb(248,223,24)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1711.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1685" width="0.0649%" height="15" fill="rgb(223,12,15)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1695.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1669" width="0.0649%" height="15" fill="rgb(249,6,3)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1679.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1653" width="0.0649%" height="15" fill="rgb(237,105,33)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1663.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1637" width="0.0649%" height="15" fill="rgb(252,208,35)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1647.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (28 samples, 0.06%)</title><rect x="99.2885%" y="1621" width="0.0649%" height="15" fill="rgb(215,181,35)" fg:x="42840" fg:w="28"/><text x="99.5385%" y="1631.50"></text></g><g><title>slimp::Rule::concretions (120 samples, 0.28%)</title><rect x="99.0799%" y="1781" width="0.2781%" height="15" fill="rgb(246,212,3)" fg:x="42750" fg:w="120"/><text x="99.3299%" y="1791.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (30 samples, 0.07%)</title><rect x="99.2885%" y="1765" width="0.0695%" height="15" fill="rgb(247,156,24)" fg:x="42840" fg:w="30"/><text x="99.5385%" y="1775.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (30 samples, 0.07%)</title><rect x="99.2885%" y="1749" width="0.0695%" height="15" fill="rgb(248,9,31)" fg:x="42840" fg:w="30"/><text x="99.5385%" y="1759.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (30 samples, 0.07%)</title><rect x="99.2885%" y="1733" width="0.0695%" height="15" fill="rgb(234,26,45)" fg:x="42840" fg:w="30"/><text x="99.5385%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (6 samples, 0.01%)</title><rect x="99.3812%" y="1253" width="0.0139%" height="15" fill="rgb(249,11,32)" fg:x="42880" fg:w="6"/><text x="99.6312%" y="1263.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (6 samples, 0.01%)</title><rect x="99.3812%" y="1237" width="0.0139%" height="15" fill="rgb(249,162,33)" fg:x="42880" fg:w="6"/><text x="99.6312%" y="1247.50"></text></g><g><title>core::hash::Hash::hash_slice (6 samples, 0.01%)</title><rect x="99.3812%" y="1221" width="0.0139%" height="15" fill="rgb(232,4,32)" fg:x="42880" fg:w="6"/><text x="99.6312%" y="1231.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (6 samples, 0.01%)</title><rect x="99.3812%" y="1205" width="0.0139%" height="15" fill="rgb(212,5,45)" fg:x="42880" fg:w="6"/><text x="99.6312%" y="1215.50"></text></g><g><title>core::hash::Hash::hash_slice (11 samples, 0.03%)</title><rect x="99.3742%" y="1301" width="0.0255%" height="15" fill="rgb(227,95,13)" fg:x="42877" fg:w="11"/><text x="99.6242%" y="1311.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (11 samples, 0.03%)</title><rect x="99.3742%" y="1285" width="0.0255%" height="15" fill="rgb(223,205,10)" fg:x="42877" fg:w="11"/><text x="99.6242%" y="1295.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (10 samples, 0.02%)</title><rect x="99.3765%" y="1269" width="0.0232%" height="15" fill="rgb(222,178,8)" fg:x="42878" fg:w="10"/><text x="99.6265%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (12 samples, 0.03%)</title><rect x="99.3742%" y="1333" width="0.0278%" height="15" fill="rgb(216,13,22)" fg:x="42877" fg:w="12"/><text x="99.6242%" y="1343.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (12 samples, 0.03%)</title><rect x="99.3742%" y="1317" width="0.0278%" height="15" fill="rgb(240,167,12)" fg:x="42877" fg:w="12"/><text x="99.6242%" y="1327.50"></text></g><g><title>core::hash::Hash::hash_slice (16 samples, 0.04%)</title><rect x="99.3719%" y="1381" width="0.0371%" height="15" fill="rgb(235,68,35)" fg:x="42876" fg:w="16"/><text x="99.6219%" y="1391.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (16 samples, 0.04%)</title><rect x="99.3719%" y="1365" width="0.0371%" height="15" fill="rgb(253,40,27)" fg:x="42876" fg:w="16"/><text x="99.6219%" y="1375.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (15 samples, 0.03%)</title><rect x="99.3742%" y="1349" width="0.0348%" height="15" fill="rgb(214,19,28)" fg:x="42877" fg:w="15"/><text x="99.6242%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="99.3719%" y="1413" width="0.0394%" height="15" fill="rgb(210,167,45)" fg:x="42876" fg:w="17"/><text x="99.6219%" y="1423.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (17 samples, 0.04%)</title><rect x="99.3719%" y="1397" width="0.0394%" height="15" fill="rgb(232,97,40)" fg:x="42876" fg:w="17"/><text x="99.6219%" y="1407.50"></text></g><g><title>core::hash::Hash::hash_slice (22 samples, 0.05%)</title><rect x="99.3673%" y="1461" width="0.0510%" height="15" fill="rgb(250,35,23)" fg:x="42874" fg:w="22"/><text x="99.6173%" y="1471.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (22 samples, 0.05%)</title><rect x="99.3673%" y="1445" width="0.0510%" height="15" fill="rgb(248,47,53)" fg:x="42874" fg:w="22"/><text x="99.6173%" y="1455.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (20 samples, 0.05%)</title><rect x="99.3719%" y="1429" width="0.0464%" height="15" fill="rgb(226,58,50)" fg:x="42876" fg:w="20"/><text x="99.6219%" y="1439.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (23 samples, 0.05%)</title><rect x="99.3673%" y="1493" width="0.0533%" height="15" fill="rgb(217,105,26)" fg:x="42874" fg:w="23"/><text x="99.6173%" y="1503.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (23 samples, 0.05%)</title><rect x="99.3673%" y="1477" width="0.0533%" height="15" fill="rgb(208,64,1)" fg:x="42874" fg:w="23"/><text x="99.6173%" y="1487.50"></text></g><g><title>core::hash::Hash::hash_slice (28 samples, 0.06%)</title><rect x="99.3650%" y="1541" width="0.0649%" height="15" fill="rgb(214,80,1)" fg:x="42873" fg:w="28"/><text x="99.6150%" y="1551.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (28 samples, 0.06%)</title><rect x="99.3650%" y="1525" width="0.0649%" height="15" fill="rgb(206,175,26)" fg:x="42873" fg:w="28"/><text x="99.6150%" y="1535.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.3650%" y="1509" width="0.0649%" height="15" fill="rgb(235,156,37)" fg:x="42873" fg:w="28"/><text x="99.6150%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (29 samples, 0.07%)</title><rect x="99.3650%" y="1573" width="0.0672%" height="15" fill="rgb(213,100,9)" fg:x="42873" fg:w="29"/><text x="99.6150%" y="1583.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (29 samples, 0.07%)</title><rect x="99.3650%" y="1557" width="0.0672%" height="15" fill="rgb(241,15,13)" fg:x="42873" fg:w="29"/><text x="99.6150%" y="1567.50"></text></g><g><title>core::hash::Hash::hash_slice (30 samples, 0.07%)</title><rect x="99.3650%" y="1621" width="0.0695%" height="15" fill="rgb(205,97,43)" fg:x="42873" fg:w="30"/><text x="99.6150%" y="1631.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (30 samples, 0.07%)</title><rect x="99.3650%" y="1605" width="0.0695%" height="15" fill="rgb(216,106,32)" fg:x="42873" fg:w="30"/><text x="99.6150%" y="1615.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (30 samples, 0.07%)</title><rect x="99.3650%" y="1589" width="0.0695%" height="15" fill="rgb(226,200,8)" fg:x="42873" fg:w="30"/><text x="99.6150%" y="1599.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.3650%" y="1653" width="0.0718%" height="15" fill="rgb(244,54,29)" fg:x="42873" fg:w="31"/><text x="99.6150%" y="1663.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (31 samples, 0.07%)</title><rect x="99.3650%" y="1637" width="0.0718%" height="15" fill="rgb(252,169,12)" fg:x="42873" fg:w="31"/><text x="99.6150%" y="1647.50"></text></g><g><title>hashbrown::map::make_insert_hash (33 samples, 0.08%)</title><rect x="99.3626%" y="1733" width="0.0765%" height="15" fill="rgb(231,199,11)" fg:x="42872" fg:w="33"/><text x="99.6126%" y="1743.50"></text></g><g><title>core::hash::BuildHasher::hash_one (33 samples, 0.08%)</title><rect x="99.3626%" y="1717" width="0.0765%" height="15" fill="rgb(233,191,18)" fg:x="42872" fg:w="33"/><text x="99.6126%" y="1727.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (32 samples, 0.07%)</title><rect x="99.3650%" y="1701" width="0.0742%" height="15" fill="rgb(215,83,47)" fg:x="42873" fg:w="32"/><text x="99.6150%" y="1711.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.3650%" y="1685" width="0.0742%" height="15" fill="rgb(251,67,19)" fg:x="42873" fg:w="32"/><text x="99.6150%" y="1695.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.3650%" y="1669" width="0.0742%" height="15" fill="rgb(240,7,20)" fg:x="42873" fg:w="32"/><text x="99.6150%" y="1679.50"></text></g><g><title>core::hash::Hash::hash_slice (11 samples, 0.03%)</title><rect x="99.4554%" y="1189" width="0.0255%" height="15" fill="rgb(210,150,26)" fg:x="42912" fg:w="11"/><text x="99.7054%" y="1199.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (11 samples, 0.03%)</title><rect x="99.4554%" y="1173" width="0.0255%" height="15" fill="rgb(228,75,42)" fg:x="42912" fg:w="11"/><text x="99.7054%" y="1183.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (8 samples, 0.02%)</title><rect x="99.4623%" y="1157" width="0.0185%" height="15" fill="rgb(237,134,48)" fg:x="42915" fg:w="8"/><text x="99.7123%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (12 samples, 0.03%)</title><rect x="99.4554%" y="1221" width="0.0278%" height="15" fill="rgb(205,80,50)" fg:x="42912" fg:w="12"/><text x="99.7054%" y="1231.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (12 samples, 0.03%)</title><rect x="99.4554%" y="1205" width="0.0278%" height="15" fill="rgb(217,74,48)" fg:x="42912" fg:w="12"/><text x="99.7054%" y="1215.50"></text></g><g><title>core::hash::Hash::hash_slice (16 samples, 0.04%)</title><rect x="99.4484%" y="1269" width="0.0371%" height="15" fill="rgb(205,82,50)" fg:x="42909" fg:w="16"/><text x="99.6984%" y="1279.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (16 samples, 0.04%)</title><rect x="99.4484%" y="1253" width="0.0371%" height="15" fill="rgb(228,1,33)" fg:x="42909" fg:w="16"/><text x="99.6984%" y="1263.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (14 samples, 0.03%)</title><rect x="99.4530%" y="1237" width="0.0324%" height="15" fill="rgb(214,50,23)" fg:x="42911" fg:w="14"/><text x="99.7030%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="99.4484%" y="1301" width="0.0394%" height="15" fill="rgb(210,62,9)" fg:x="42909" fg:w="17"/><text x="99.6984%" y="1311.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (17 samples, 0.04%)</title><rect x="99.4484%" y="1285" width="0.0394%" height="15" fill="rgb(210,104,37)" fg:x="42909" fg:w="17"/><text x="99.6984%" y="1295.50"></text></g><g><title>core::hash::Hash::hash_slice (26 samples, 0.06%)</title><rect x="99.4414%" y="1349" width="0.0603%" height="15" fill="rgb(232,104,43)" fg:x="42906" fg:w="26"/><text x="99.6914%" y="1359.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (26 samples, 0.06%)</title><rect x="99.4414%" y="1333" width="0.0603%" height="15" fill="rgb(244,52,6)" fg:x="42906" fg:w="26"/><text x="99.6914%" y="1343.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (23 samples, 0.05%)</title><rect x="99.4484%" y="1317" width="0.0533%" height="15" fill="rgb(211,174,52)" fg:x="42909" fg:w="23"/><text x="99.6984%" y="1327.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (6 samples, 0.01%)</title><rect x="99.4878%" y="1301" width="0.0139%" height="15" fill="rgb(229,48,4)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1311.50"></text></g><g><title>core::hash::Hasher::write_isize (6 samples, 0.01%)</title><rect x="99.4878%" y="1285" width="0.0139%" height="15" fill="rgb(205,155,16)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1295.50"></text></g><g><title>core::hash::Hasher::write_usize (6 samples, 0.01%)</title><rect x="99.4878%" y="1269" width="0.0139%" height="15" fill="rgb(211,141,53)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1279.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.4878%" y="1253" width="0.0139%" height="15" fill="rgb(240,148,11)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1263.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.4878%" y="1237" width="0.0139%" height="15" fill="rgb(214,45,23)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1247.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.4878%" y="1221" width="0.0139%" height="15" fill="rgb(248,74,26)" fg:x="42926" fg:w="6"/><text x="99.7378%" y="1231.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.4414%" y="1381" width="0.0649%" height="15" fill="rgb(218,121,16)" fg:x="42906" fg:w="28"/><text x="99.6914%" y="1391.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (28 samples, 0.06%)</title><rect x="99.4414%" y="1365" width="0.0649%" height="15" fill="rgb(218,10,47)" fg:x="42906" fg:w="28"/><text x="99.6914%" y="1375.50"></text></g><g><title>slimp::Rule::concretions (187 samples, 0.43%)</title><rect x="99.0799%" y="1797" width="0.4334%" height="15" fill="rgb(227,99,14)" fg:x="42750" fg:w="187"/><text x="99.3299%" y="1807.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (65 samples, 0.15%)</title><rect x="99.3626%" y="1781" width="0.1506%" height="15" fill="rgb(229,83,46)" fg:x="42872" fg:w="65"/><text x="99.6126%" y="1791.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (65 samples, 0.15%)</title><rect x="99.3626%" y="1765" width="0.1506%" height="15" fill="rgb(228,25,1)" fg:x="42872" fg:w="65"/><text x="99.6126%" y="1775.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (65 samples, 0.15%)</title><rect x="99.3626%" y="1749" width="0.1506%" height="15" fill="rgb(252,190,15)" fg:x="42872" fg:w="65"/><text x="99.6126%" y="1759.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (31 samples, 0.07%)</title><rect x="99.4414%" y="1733" width="0.0718%" height="15" fill="rgb(213,103,51)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1743.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (31 samples, 0.07%)</title><rect x="99.4414%" y="1717" width="0.0718%" height="15" fill="rgb(220,38,44)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1727.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (31 samples, 0.07%)</title><rect x="99.4414%" y="1701" width="0.0718%" height="15" fill="rgb(210,45,26)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1711.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (31 samples, 0.07%)</title><rect x="99.4414%" y="1685" width="0.0718%" height="15" fill="rgb(205,95,48)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1695.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (31 samples, 0.07%)</title><rect x="99.4414%" y="1669" width="0.0718%" height="15" fill="rgb(225,179,37)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1679.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (31 samples, 0.07%)</title><rect x="99.4414%" y="1653" width="0.0718%" height="15" fill="rgb(230,209,3)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1663.50"></text></g><g><title>hashbrown::map::make_hasher::{{closure}} (31 samples, 0.07%)</title><rect x="99.4414%" y="1637" width="0.0718%" height="15" fill="rgb(248,12,46)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1647.50"></text></g><g><title>hashbrown::map::make_hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1621" width="0.0718%" height="15" fill="rgb(234,18,0)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1631.50"></text></g><g><title>core::hash::BuildHasher::hash_one (31 samples, 0.07%)</title><rect x="99.4414%" y="1605" width="0.0718%" height="15" fill="rgb(238,197,14)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1615.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1589" width="0.0718%" height="15" fill="rgb(251,162,48)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1599.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1573" width="0.0718%" height="15" fill="rgb(237,73,42)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1583.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1557" width="0.0718%" height="15" fill="rgb(211,108,8)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1567.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1541" width="0.0718%" height="15" fill="rgb(213,45,22)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1551.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1525" width="0.0718%" height="15" fill="rgb(252,154,5)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1535.50"></text></g><g><title>core::hash::Hash::hash_slice (31 samples, 0.07%)</title><rect x="99.4414%" y="1509" width="0.0718%" height="15" fill="rgb(221,79,52)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1519.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (31 samples, 0.07%)</title><rect x="99.4414%" y="1493" width="0.0718%" height="15" fill="rgb(229,220,36)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1503.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1477" width="0.0718%" height="15" fill="rgb(211,17,16)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1461" width="0.0718%" height="15" fill="rgb(222,55,31)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1471.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1445" width="0.0718%" height="15" fill="rgb(221,221,31)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1455.50"></text></g><g><title>core::hash::Hash::hash_slice (31 samples, 0.07%)</title><rect x="99.4414%" y="1429" width="0.0718%" height="15" fill="rgb(227,168,26)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1439.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (31 samples, 0.07%)</title><rect x="99.4414%" y="1413" width="0.0718%" height="15" fill="rgb(224,139,9)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1423.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (31 samples, 0.07%)</title><rect x="99.4414%" y="1397" width="0.0718%" height="15" fill="rgb(254,172,0)" fg:x="42906" fg:w="31"/><text x="99.6914%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (6 samples, 0.01%)</title><rect x="99.5388%" y="1269" width="0.0139%" height="15" fill="rgb(235,203,1)" fg:x="42948" fg:w="6"/><text x="99.7888%" y="1279.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (6 samples, 0.01%)</title><rect x="99.5388%" y="1253" width="0.0139%" height="15" fill="rgb(216,205,24)" fg:x="42948" fg:w="6"/><text x="99.7888%" y="1263.50"></text></g><g><title>core::hash::Hash::hash_slice (12 samples, 0.03%)</title><rect x="99.5295%" y="1317" width="0.0278%" height="15" fill="rgb(233,24,6)" fg:x="42944" fg:w="12"/><text x="99.7795%" y="1327.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (12 samples, 0.03%)</title><rect x="99.5295%" y="1301" width="0.0278%" height="15" fill="rgb(244,110,9)" fg:x="42944" fg:w="12"/><text x="99.7795%" y="1311.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (8 samples, 0.02%)</title><rect x="99.5388%" y="1285" width="0.0185%" height="15" fill="rgb(239,222,42)" fg:x="42948" fg:w="8"/><text x="99.7888%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (13 samples, 0.03%)</title><rect x="99.5295%" y="1349" width="0.0301%" height="15" fill="rgb(218,145,13)" fg:x="42944" fg:w="13"/><text x="99.7795%" y="1359.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (13 samples, 0.03%)</title><rect x="99.5295%" y="1333" width="0.0301%" height="15" fill="rgb(207,69,11)" fg:x="42944" fg:w="13"/><text x="99.7795%" y="1343.50"></text></g><g><title>core::hash::Hash::hash_slice (19 samples, 0.04%)</title><rect x="99.5249%" y="1397" width="0.0440%" height="15" fill="rgb(220,223,22)" fg:x="42942" fg:w="19"/><text x="99.7749%" y="1407.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (19 samples, 0.04%)</title><rect x="99.5249%" y="1381" width="0.0440%" height="15" fill="rgb(245,102,5)" fg:x="42942" fg:w="19"/><text x="99.7749%" y="1391.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (17 samples, 0.04%)</title><rect x="99.5295%" y="1365" width="0.0394%" height="15" fill="rgb(211,148,2)" fg:x="42944" fg:w="17"/><text x="99.7795%" y="1375.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (22 samples, 0.05%)</title><rect x="99.5249%" y="1429" width="0.0510%" height="15" fill="rgb(241,13,44)" fg:x="42942" fg:w="22"/><text x="99.7749%" y="1439.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (22 samples, 0.05%)</title><rect x="99.5249%" y="1413" width="0.0510%" height="15" fill="rgb(219,137,21)" fg:x="42942" fg:w="22"/><text x="99.7749%" y="1423.50"></text></g><g><title>core::hash::Hash::hash_slice (33 samples, 0.08%)</title><rect x="99.5133%" y="1477" width="0.0765%" height="15" fill="rgb(242,206,5)" fg:x="42937" fg:w="33"/><text x="99.7633%" y="1487.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (33 samples, 0.08%)</title><rect x="99.5133%" y="1461" width="0.0765%" height="15" fill="rgb(217,114,22)" fg:x="42937" fg:w="33"/><text x="99.7633%" y="1471.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (30 samples, 0.07%)</title><rect x="99.5202%" y="1445" width="0.0695%" height="15" fill="rgb(253,206,42)" fg:x="42940" fg:w="30"/><text x="99.7702%" y="1455.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (6 samples, 0.01%)</title><rect x="99.5759%" y="1429" width="0.0139%" height="15" fill="rgb(236,102,18)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1439.50"></text></g><g><title>core::hash::Hasher::write_isize (6 samples, 0.01%)</title><rect x="99.5759%" y="1413" width="0.0139%" height="15" fill="rgb(208,59,49)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_usize (6 samples, 0.01%)</title><rect x="99.5759%" y="1397" width="0.0139%" height="15" fill="rgb(215,194,28)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1407.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.5759%" y="1381" width="0.0139%" height="15" fill="rgb(243,207,11)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1391.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.5759%" y="1365" width="0.0139%" height="15" fill="rgb(254,179,35)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (6 samples, 0.01%)</title><rect x="99.5759%" y="1349" width="0.0139%" height="15" fill="rgb(235,97,3)" fg:x="42964" fg:w="6"/><text x="99.8259%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (34 samples, 0.08%)</title><rect x="99.5133%" y="1509" width="0.0788%" height="15" fill="rgb(215,155,33)" fg:x="42937" fg:w="34"/><text x="99.7633%" y="1519.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (34 samples, 0.08%)</title><rect x="99.5133%" y="1493" width="0.0788%" height="15" fill="rgb(223,128,12)" fg:x="42937" fg:w="34"/><text x="99.7633%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (37 samples, 0.09%)</title><rect x="99.5133%" y="1589" width="0.0858%" height="15" fill="rgb(208,157,18)" fg:x="42937" fg:w="37"/><text x="99.7633%" y="1599.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (37 samples, 0.09%)</title><rect x="99.5133%" y="1573" width="0.0858%" height="15" fill="rgb(249,70,54)" fg:x="42937" fg:w="37"/><text x="99.7633%" y="1583.50"></text></g><g><title>core::hash::Hash::hash_slice (37 samples, 0.09%)</title><rect x="99.5133%" y="1557" width="0.0858%" height="15" fill="rgb(244,118,24)" fg:x="42937" fg:w="37"/><text x="99.7633%" y="1567.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (37 samples, 0.09%)</title><rect x="99.5133%" y="1541" width="0.0858%" height="15" fill="rgb(211,54,0)" fg:x="42937" fg:w="37"/><text x="99.7633%" y="1551.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (37 samples, 0.09%)</title><rect x="99.5133%" y="1525" width="0.0858%" height="15" fill="rgb(245,137,45)" fg:x="42937" fg:w="37"/><text x="99.7633%" y="1535.50"></text></g><g><title>core::hash::Hash::hash_slice (38 samples, 0.09%)</title><rect x="99.5133%" y="1637" width="0.0881%" height="15" fill="rgb(232,154,31)" fg:x="42937" fg:w="38"/><text x="99.7633%" y="1647.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (38 samples, 0.09%)</title><rect x="99.5133%" y="1621" width="0.0881%" height="15" fill="rgb(253,6,39)" fg:x="42937" fg:w="38"/><text x="99.7633%" y="1631.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (38 samples, 0.09%)</title><rect x="99.5133%" y="1605" width="0.0881%" height="15" fill="rgb(234,183,24)" fg:x="42937" fg:w="38"/><text x="99.7633%" y="1615.50"></text></g><g><title>hashbrown::map::make_insert_hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1749" width="0.0904%" height="15" fill="rgb(252,84,40)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1759.50"></text></g><g><title>core::hash::BuildHasher::hash_one (39 samples, 0.09%)</title><rect x="99.5133%" y="1733" width="0.0904%" height="15" fill="rgb(224,65,2)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1743.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1717" width="0.0904%" height="15" fill="rgb(229,38,24)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1727.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1701" width="0.0904%" height="15" fill="rgb(218,131,50)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1711.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1685" width="0.0904%" height="15" fill="rgb(233,106,18)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1695.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1669" width="0.0904%" height="15" fill="rgb(220,216,11)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1679.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (39 samples, 0.09%)</title><rect x="99.5133%" y="1653" width="0.0904%" height="15" fill="rgb(251,100,45)" fg:x="42937" fg:w="39"/><text x="99.7633%" y="1663.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (11 samples, 0.03%)</title><rect x="99.6408%" y="1237" width="0.0255%" height="15" fill="rgb(235,143,32)" fg:x="42992" fg:w="11"/><text x="99.8908%" y="1247.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (11 samples, 0.03%)</title><rect x="99.6408%" y="1221" width="0.0255%" height="15" fill="rgb(248,124,34)" fg:x="42992" fg:w="11"/><text x="99.8908%" y="1231.50"></text></g><g><title>core::hash::Hash::hash_slice (11 samples, 0.03%)</title><rect x="99.6408%" y="1205" width="0.0255%" height="15" fill="rgb(225,221,4)" fg:x="42992" fg:w="11"/><text x="99.8908%" y="1215.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (11 samples, 0.03%)</title><rect x="99.6408%" y="1189" width="0.0255%" height="15" fill="rgb(242,27,43)" fg:x="42992" fg:w="11"/><text x="99.8908%" y="1199.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (10 samples, 0.02%)</title><rect x="99.6431%" y="1173" width="0.0232%" height="15" fill="rgb(227,54,8)" fg:x="42993" fg:w="10"/><text x="99.8931%" y="1183.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.6663%" y="1189" width="0.0116%" height="15" fill="rgb(253,139,49)" fg:x="43003" fg:w="5"/><text x="99.9163%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.6663%" y="1173" width="0.0116%" height="15" fill="rgb(231,26,43)" fg:x="43003" fg:w="5"/><text x="99.9163%" y="1183.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.6663%" y="1157" width="0.0116%" height="15" fill="rgb(207,121,39)" fg:x="43003" fg:w="5"/><text x="99.9163%" y="1167.50"></text></g><g><title>core::hash::Hash::hash_slice (20 samples, 0.05%)</title><rect x="99.6384%" y="1285" width="0.0464%" height="15" fill="rgb(223,101,35)" fg:x="42991" fg:w="20"/><text x="99.8884%" y="1295.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (20 samples, 0.05%)</title><rect x="99.6384%" y="1269" width="0.0464%" height="15" fill="rgb(232,87,23)" fg:x="42991" fg:w="20"/><text x="99.8884%" y="1279.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (20 samples, 0.05%)</title><rect x="99.6384%" y="1253" width="0.0464%" height="15" fill="rgb(225,180,29)" fg:x="42991" fg:w="20"/><text x="99.8884%" y="1263.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (8 samples, 0.02%)</title><rect x="99.6663%" y="1237" width="0.0185%" height="15" fill="rgb(225,25,17)" fg:x="43003" fg:w="8"/><text x="99.9163%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_isize (8 samples, 0.02%)</title><rect x="99.6663%" y="1221" width="0.0185%" height="15" fill="rgb(223,8,52)" fg:x="43003" fg:w="8"/><text x="99.9163%" y="1231.50"></text></g><g><title>core::hash::Hasher::write_usize (8 samples, 0.02%)</title><rect x="99.6663%" y="1205" width="0.0185%" height="15" fill="rgb(246,42,21)" fg:x="43003" fg:w="8"/><text x="99.9163%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (21 samples, 0.05%)</title><rect x="99.6384%" y="1317" width="0.0487%" height="15" fill="rgb(205,64,43)" fg:x="42991" fg:w="21"/><text x="99.8884%" y="1327.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (21 samples, 0.05%)</title><rect x="99.6384%" y="1301" width="0.0487%" height="15" fill="rgb(221,160,13)" fg:x="42991" fg:w="21"/><text x="99.8884%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (33 samples, 0.08%)</title><rect x="99.6199%" y="1397" width="0.0765%" height="15" fill="rgb(239,58,35)" fg:x="42983" fg:w="33"/><text x="99.8699%" y="1407.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (33 samples, 0.08%)</title><rect x="99.6199%" y="1381" width="0.0765%" height="15" fill="rgb(251,26,40)" fg:x="42983" fg:w="33"/><text x="99.8699%" y="1391.50"></text></g><g><title>core::hash::Hash::hash_slice (33 samples, 0.08%)</title><rect x="99.6199%" y="1365" width="0.0765%" height="15" fill="rgb(247,0,4)" fg:x="42983" fg:w="33"/><text x="99.8699%" y="1375.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (33 samples, 0.08%)</title><rect x="99.6199%" y="1349" width="0.0765%" height="15" fill="rgb(218,130,10)" fg:x="42983" fg:w="33"/><text x="99.8699%" y="1359.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (30 samples, 0.07%)</title><rect x="99.6269%" y="1333" width="0.0695%" height="15" fill="rgb(239,32,7)" fg:x="42986" fg:w="30"/><text x="99.8769%" y="1343.50"></text></g><g><title>core::hash::Hash::hash_slice (38 samples, 0.09%)</title><rect x="99.6153%" y="1445" width="0.0881%" height="15" fill="rgb(210,192,24)" fg:x="42981" fg:w="38"/><text x="99.8653%" y="1455.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (38 samples, 0.09%)</title><rect x="99.6153%" y="1429" width="0.0881%" height="15" fill="rgb(226,212,17)" fg:x="42981" fg:w="38"/><text x="99.8653%" y="1439.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (38 samples, 0.09%)</title><rect x="99.6153%" y="1413" width="0.0881%" height="15" fill="rgb(219,201,28)" fg:x="42981" fg:w="38"/><text x="99.8653%" y="1423.50"></text></g><g><title>core::hash::Hash::hash_slice (43 samples, 0.10%)</title><rect x="99.6083%" y="1525" width="0.0997%" height="15" fill="rgb(235,207,41)" fg:x="42978" fg:w="43"/><text x="99.8583%" y="1535.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (43 samples, 0.10%)</title><rect x="99.6083%" y="1509" width="0.0997%" height="15" fill="rgb(241,95,54)" fg:x="42978" fg:w="43"/><text x="99.8583%" y="1519.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (43 samples, 0.10%)</title><rect x="99.6083%" y="1493" width="0.0997%" height="15" fill="rgb(248,12,23)" fg:x="42978" fg:w="43"/><text x="99.8583%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (40 samples, 0.09%)</title><rect x="99.6153%" y="1477" width="0.0927%" height="15" fill="rgb(228,173,4)" fg:x="42981" fg:w="40"/><text x="99.8653%" y="1487.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (40 samples, 0.09%)</title><rect x="99.6153%" y="1461" width="0.0927%" height="15" fill="rgb(254,99,5)" fg:x="42981" fg:w="40"/><text x="99.8653%" y="1471.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (44 samples, 0.10%)</title><rect x="99.6083%" y="1573" width="0.1020%" height="15" fill="rgb(212,184,17)" fg:x="42978" fg:w="44"/><text x="99.8583%" y="1583.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (44 samples, 0.10%)</title><rect x="99.6083%" y="1557" width="0.1020%" height="15" fill="rgb(252,174,1)" fg:x="42978" fg:w="44"/><text x="99.8583%" y="1567.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (44 samples, 0.10%)</title><rect x="99.6083%" y="1541" width="0.1020%" height="15" fill="rgb(241,118,51)" fg:x="42978" fg:w="44"/><text x="99.8583%" y="1551.50"></text></g><g><title>slimp::Rule::concretions (273 samples, 0.63%)</title><rect x="99.0799%" y="1813" width="0.6327%" height="15" fill="rgb(227,94,47)" fg:x="42750" fg:w="273"/><text x="99.3299%" y="1823.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (86 samples, 0.20%)</title><rect x="99.5133%" y="1797" width="0.1993%" height="15" fill="rgb(229,104,2)" fg:x="42937" fg:w="86"/><text x="99.7633%" y="1807.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (86 samples, 0.20%)</title><rect x="99.5133%" y="1781" width="0.1993%" height="15" fill="rgb(219,28,31)" fg:x="42937" fg:w="86"/><text x="99.7633%" y="1791.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (86 samples, 0.20%)</title><rect x="99.5133%" y="1765" width="0.1993%" height="15" fill="rgb(233,109,36)" fg:x="42937" fg:w="86"/><text x="99.7633%" y="1775.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (47 samples, 0.11%)</title><rect x="99.6037%" y="1749" width="0.1089%" height="15" fill="rgb(246,88,11)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1759.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (47 samples, 0.11%)</title><rect x="99.6037%" y="1733" width="0.1089%" height="15" fill="rgb(209,212,17)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1743.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (47 samples, 0.11%)</title><rect x="99.6037%" y="1717" width="0.1089%" height="15" fill="rgb(243,59,29)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1727.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (47 samples, 0.11%)</title><rect x="99.6037%" y="1701" width="0.1089%" height="15" fill="rgb(244,205,48)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1711.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (47 samples, 0.11%)</title><rect x="99.6037%" y="1685" width="0.1089%" height="15" fill="rgb(227,30,6)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1695.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (47 samples, 0.11%)</title><rect x="99.6037%" y="1669" width="0.1089%" height="15" fill="rgb(220,205,48)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1679.50"></text></g><g><title>hashbrown::map::make_hasher::{{closure}} (47 samples, 0.11%)</title><rect x="99.6037%" y="1653" width="0.1089%" height="15" fill="rgb(250,94,14)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1663.50"></text></g><g><title>hashbrown::map::make_hash (47 samples, 0.11%)</title><rect x="99.6037%" y="1637" width="0.1089%" height="15" fill="rgb(216,119,42)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1647.50"></text></g><g><title>core::hash::BuildHasher::hash_one (47 samples, 0.11%)</title><rect x="99.6037%" y="1621" width="0.1089%" height="15" fill="rgb(232,155,0)" fg:x="42976" fg:w="47"/><text x="99.8537%" y="1631.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (45 samples, 0.10%)</title><rect x="99.6083%" y="1605" width="0.1043%" height="15" fill="rgb(212,24,32)" fg:x="42978" fg:w="45"/><text x="99.8583%" y="1615.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (45 samples, 0.10%)</title><rect x="99.6083%" y="1589" width="0.1043%" height="15" fill="rgb(216,69,20)" fg:x="42978" fg:w="45"/><text x="99.8583%" y="1599.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (9 samples, 0.02%)</title><rect x="99.7427%" y="1365" width="0.0209%" height="15" fill="rgb(229,73,31)" fg:x="43036" fg:w="9"/><text x="99.9927%" y="1375.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (9 samples, 0.02%)</title><rect x="99.7427%" y="1349" width="0.0209%" height="15" fill="rgb(224,219,20)" fg:x="43036" fg:w="9"/><text x="99.9927%" y="1359.50"></text></g><g><title>core::hash::Hash::hash_slice (9 samples, 0.02%)</title><rect x="99.7427%" y="1333" width="0.0209%" height="15" fill="rgb(215,146,41)" fg:x="43036" fg:w="9"/><text x="99.9927%" y="1343.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (9 samples, 0.02%)</title><rect x="99.7427%" y="1317" width="0.0209%" height="15" fill="rgb(244,71,31)" fg:x="43036" fg:w="9"/><text x="99.9927%" y="1327.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (9 samples, 0.02%)</title><rect x="99.7427%" y="1301" width="0.0209%" height="15" fill="rgb(224,24,11)" fg:x="43036" fg:w="9"/><text x="99.9927%" y="1311.50"></text></g><g><title>core::hash::Hash::hash_slice (15 samples, 0.03%)</title><rect x="99.7358%" y="1413" width="0.0348%" height="15" fill="rgb(229,76,15)" fg:x="43033" fg:w="15"/><text x="99.9858%" y="1423.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (15 samples, 0.03%)</title><rect x="99.7358%" y="1397" width="0.0348%" height="15" fill="rgb(209,93,2)" fg:x="43033" fg:w="15"/><text x="99.9858%" y="1407.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (13 samples, 0.03%)</title><rect x="99.7404%" y="1381" width="0.0301%" height="15" fill="rgb(216,200,50)" fg:x="43035" fg:w="13"/><text x="99.9904%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (16 samples, 0.04%)</title><rect x="99.7358%" y="1445" width="0.0371%" height="15" fill="rgb(211,67,34)" fg:x="43033" fg:w="16"/><text x="99.9858%" y="1455.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (16 samples, 0.04%)</title><rect x="99.7358%" y="1429" width="0.0371%" height="15" fill="rgb(225,87,47)" fg:x="43033" fg:w="16"/><text x="99.9858%" y="1439.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (25 samples, 0.06%)</title><rect x="99.7242%" y="1525" width="0.0579%" height="15" fill="rgb(217,185,16)" fg:x="43028" fg:w="25"/><text x="99.9742%" y="1535.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (25 samples, 0.06%)</title><rect x="99.7242%" y="1509" width="0.0579%" height="15" fill="rgb(205,0,0)" fg:x="43028" fg:w="25"/><text x="99.9742%" y="1519.50"></text></g><g><title>core::hash::Hash::hash_slice (25 samples, 0.06%)</title><rect x="99.7242%" y="1493" width="0.0579%" height="15" fill="rgb(207,116,45)" fg:x="43028" fg:w="25"/><text x="99.9742%" y="1503.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (25 samples, 0.06%)</title><rect x="99.7242%" y="1477" width="0.0579%" height="15" fill="rgb(221,156,26)" fg:x="43028" fg:w="25"/><text x="99.9742%" y="1487.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (24 samples, 0.06%)</title><rect x="99.7265%" y="1461" width="0.0556%" height="15" fill="rgb(213,140,4)" fg:x="43029" fg:w="24"/><text x="99.9765%" y="1471.50"></text></g><g><title>core::hash::Hash::hash_slice (29 samples, 0.07%)</title><rect x="99.7172%" y="1573" width="0.0672%" height="15" fill="rgb(231,224,15)" fg:x="43025" fg:w="29"/><text x="99.9672%" y="1583.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (29 samples, 0.07%)</title><rect x="99.7172%" y="1557" width="0.0672%" height="15" fill="rgb(244,76,20)" fg:x="43025" fg:w="29"/><text x="99.9672%" y="1567.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (28 samples, 0.06%)</title><rect x="99.7196%" y="1541" width="0.0649%" height="15" fill="rgb(238,117,7)" fg:x="43026" fg:w="28"/><text x="99.9696%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (30 samples, 0.07%)</title><rect x="99.7172%" y="1605" width="0.0695%" height="15" fill="rgb(235,1,10)" fg:x="43025" fg:w="30"/><text x="99.9672%" y="1615.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (30 samples, 0.07%)</title><rect x="99.7172%" y="1589" width="0.0695%" height="15" fill="rgb(216,165,6)" fg:x="43025" fg:w="30"/><text x="99.9672%" y="1599.50"></text></g><g><title>hashbrown::map::make_insert_hash (33 samples, 0.08%)</title><rect x="99.7126%" y="1765" width="0.0765%" height="15" fill="rgb(246,91,35)" fg:x="43023" fg:w="33"/><text x="99.9626%" y="1775.50"></text></g><g><title>core::hash::BuildHasher::hash_one (33 samples, 0.08%)</title><rect x="99.7126%" y="1749" width="0.0765%" height="15" fill="rgb(228,96,24)" fg:x="43023" fg:w="33"/><text x="99.9626%" y="1759.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1733" width="0.0742%" height="15" fill="rgb(254,217,53)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1743.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1717" width="0.0742%" height="15" fill="rgb(209,60,0)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1727.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1701" width="0.0742%" height="15" fill="rgb(250,93,26)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1711.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1685" width="0.0742%" height="15" fill="rgb(211,9,40)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1695.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1669" width="0.0742%" height="15" fill="rgb(242,57,20)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1679.50"></text></g><g><title>core::hash::Hash::hash_slice (32 samples, 0.07%)</title><rect x="99.7149%" y="1653" width="0.0742%" height="15" fill="rgb(248,85,48)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1663.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (32 samples, 0.07%)</title><rect x="99.7149%" y="1637" width="0.0742%" height="15" fill="rgb(212,117,2)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1647.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (32 samples, 0.07%)</title><rect x="99.7149%" y="1621" width="0.0742%" height="15" fill="rgb(243,19,3)" fg:x="43024" fg:w="32"/><text x="99.9649%" y="1631.50"></text></g><g><title>core::hash::Hash::hash_slice (5 samples, 0.01%)</title><rect x="99.8563%" y="1141" width="0.0116%" height="15" fill="rgb(232,217,24)" fg:x="43085" fg:w="5"/><text x="100.1063%" y="1151.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (5 samples, 0.01%)</title><rect x="99.8563%" y="1125" width="0.0116%" height="15" fill="rgb(224,175,40)" fg:x="43085" fg:w="5"/><text x="100.1063%" y="1135.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (5 samples, 0.01%)</title><rect x="99.8563%" y="1109" width="0.0116%" height="15" fill="rgb(212,162,32)" fg:x="43085" fg:w="5"/><text x="100.1063%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (6 samples, 0.01%)</title><rect x="99.8563%" y="1173" width="0.0139%" height="15" fill="rgb(215,9,4)" fg:x="43085" fg:w="6"/><text x="100.1063%" y="1183.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (6 samples, 0.01%)</title><rect x="99.8563%" y="1157" width="0.0139%" height="15" fill="rgb(242,42,7)" fg:x="43085" fg:w="6"/><text x="100.1063%" y="1167.50"></text></g><g><title>core::hash::Hash::hash_slice (15 samples, 0.03%)</title><rect x="99.8424%" y="1221" width="0.0348%" height="15" fill="rgb(242,184,45)" fg:x="43079" fg:w="15"/><text x="100.0924%" y="1231.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (15 samples, 0.03%)</title><rect x="99.8424%" y="1205" width="0.0348%" height="15" fill="rgb(228,111,51)" fg:x="43079" fg:w="15"/><text x="100.0924%" y="1215.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (11 samples, 0.03%)</title><rect x="99.8517%" y="1189" width="0.0255%" height="15" fill="rgb(236,147,17)" fg:x="43083" fg:w="11"/><text x="100.1017%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (18 samples, 0.04%)</title><rect x="99.8424%" y="1253" width="0.0417%" height="15" fill="rgb(210,75,22)" fg:x="43079" fg:w="18"/><text x="100.0924%" y="1263.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (18 samples, 0.04%)</title><rect x="99.8424%" y="1237" width="0.0417%" height="15" fill="rgb(217,159,45)" fg:x="43079" fg:w="18"/><text x="100.0924%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (29 samples, 0.07%)</title><rect x="99.8331%" y="1333" width="0.0672%" height="15" fill="rgb(245,165,53)" fg:x="43075" fg:w="29"/><text x="100.0831%" y="1343.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (29 samples, 0.07%)</title><rect x="99.8331%" y="1317" width="0.0672%" height="15" fill="rgb(251,190,50)" fg:x="43075" fg:w="29"/><text x="100.0831%" y="1327.50"></text></g><g><title>core::hash::Hash::hash_slice (29 samples, 0.07%)</title><rect x="99.8331%" y="1301" width="0.0672%" height="15" fill="rgb(208,203,29)" fg:x="43075" fg:w="29"/><text x="100.0831%" y="1311.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (29 samples, 0.07%)</title><rect x="99.8331%" y="1285" width="0.0672%" height="15" fill="rgb(207,209,35)" fg:x="43075" fg:w="29"/><text x="100.0831%" y="1295.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (27 samples, 0.06%)</title><rect x="99.8378%" y="1269" width="0.0626%" height="15" fill="rgb(230,144,49)" fg:x="43077" fg:w="27"/><text x="100.0878%" y="1279.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (7 samples, 0.02%)</title><rect x="99.8841%" y="1253" width="0.0162%" height="15" fill="rgb(229,31,6)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1263.50"></text></g><g><title>core::hash::Hasher::write_isize (7 samples, 0.02%)</title><rect x="99.8841%" y="1237" width="0.0162%" height="15" fill="rgb(251,129,24)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1247.50"></text></g><g><title>core::hash::Hasher::write_usize (7 samples, 0.02%)</title><rect x="99.8841%" y="1221" width="0.0162%" height="15" fill="rgb(235,105,15)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1231.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (7 samples, 0.02%)</title><rect x="99.8841%" y="1205" width="0.0162%" height="15" fill="rgb(216,52,43)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1215.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (7 samples, 0.02%)</title><rect x="99.8841%" y="1189" width="0.0162%" height="15" fill="rgb(238,144,41)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1199.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (7 samples, 0.02%)</title><rect x="99.8841%" y="1173" width="0.0162%" height="15" fill="rgb(243,63,9)" fg:x="43097" fg:w="7"/><text x="100.1341%" y="1183.50"></text></g><g><title>core::hash::Hash::hash_slice (36 samples, 0.08%)</title><rect x="99.8239%" y="1381" width="0.0834%" height="15" fill="rgb(246,208,1)" fg:x="43071" fg:w="36"/><text x="100.0739%" y="1391.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (36 samples, 0.08%)</title><rect x="99.8239%" y="1365" width="0.0834%" height="15" fill="rgb(233,182,18)" fg:x="43071" fg:w="36"/><text x="100.0739%" y="1375.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (33 samples, 0.08%)</title><rect x="99.8308%" y="1349" width="0.0765%" height="15" fill="rgb(242,224,8)" fg:x="43074" fg:w="33"/><text x="100.0808%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (37 samples, 0.09%)</title><rect x="99.8239%" y="1413" width="0.0858%" height="15" fill="rgb(243,54,37)" fg:x="43071" fg:w="37"/><text x="100.0739%" y="1423.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (37 samples, 0.09%)</title><rect x="99.8239%" y="1397" width="0.0858%" height="15" fill="rgb(233,192,12)" fg:x="43071" fg:w="37"/><text x="100.0739%" y="1407.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (47 samples, 0.11%)</title><rect x="99.8123%" y="1493" width="0.1089%" height="15" fill="rgb(251,192,53)" fg:x="43066" fg:w="47"/><text x="100.0623%" y="1503.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (47 samples, 0.11%)</title><rect x="99.8123%" y="1477" width="0.1089%" height="15" fill="rgb(246,141,26)" fg:x="43066" fg:w="47"/><text x="100.0623%" y="1487.50"></text></g><g><title>core::hash::Hash::hash_slice (47 samples, 0.11%)</title><rect x="99.8123%" y="1461" width="0.1089%" height="15" fill="rgb(239,195,19)" fg:x="43066" fg:w="47"/><text x="100.0623%" y="1471.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (47 samples, 0.11%)</title><rect x="99.8123%" y="1445" width="0.1089%" height="15" fill="rgb(241,16,39)" fg:x="43066" fg:w="47"/><text x="100.0623%" y="1455.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (44 samples, 0.10%)</title><rect x="99.8192%" y="1429" width="0.1020%" height="15" fill="rgb(223,13,53)" fg:x="43069" fg:w="44"/><text x="100.0692%" y="1439.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for isize&gt;::hash (5 samples, 0.01%)</title><rect x="99.9096%" y="1413" width="0.0116%" height="15" fill="rgb(214,227,0)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1423.50"></text></g><g><title>core::hash::Hasher::write_isize (5 samples, 0.01%)</title><rect x="99.9096%" y="1397" width="0.0116%" height="15" fill="rgb(228,103,26)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1407.50"></text></g><g><title>core::hash::Hasher::write_usize (5 samples, 0.01%)</title><rect x="99.9096%" y="1381" width="0.0116%" height="15" fill="rgb(254,177,53)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1391.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.9096%" y="1365" width="0.0116%" height="15" fill="rgb(208,201,34)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1375.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.9096%" y="1349" width="0.0116%" height="15" fill="rgb(212,39,5)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1359.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (5 samples, 0.01%)</title><rect x="99.9096%" y="1333" width="0.0116%" height="15" fill="rgb(246,117,3)" fg:x="43108" fg:w="5"/><text x="100.1596%" y="1343.50"></text></g><g><title>core::hash::Hash::hash_slice (56 samples, 0.13%)</title><rect x="99.7960%" y="1541" width="0.1298%" height="15" fill="rgb(244,118,39)" fg:x="43059" fg:w="56"/><text x="100.0460%" y="1551.50"></text></g><g><title>core::hash::Hash::hash_slice::rt (56 samples, 0.13%)</title><rect x="99.7960%" y="1525" width="0.1298%" height="15" fill="rgb(241,64,10)" fg:x="43059" fg:w="56"/><text x="100.0460%" y="1535.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (56 samples, 0.13%)</title><rect x="99.7960%" y="1509" width="0.1298%" height="15" fill="rgb(229,39,44)" fg:x="43059" fg:w="56"/><text x="100.0460%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (57 samples, 0.13%)</title><rect x="99.7960%" y="1573" width="0.1321%" height="15" fill="rgb(230,226,3)" fg:x="43059" fg:w="57"/><text x="100.0460%" y="1583.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (57 samples, 0.13%)</title><rect x="99.7960%" y="1557" width="0.1321%" height="15" fill="rgb(222,13,42)" fg:x="43059" fg:w="57"/><text x="100.0460%" y="1567.50"></text></g><g><title>&lt;slimp::Sexp as core::hash::Hash&gt;::hash (58 samples, 0.13%)</title><rect x="99.7960%" y="1589" width="0.1344%" height="15" fill="rgb(247,180,54)" fg:x="43059" fg:w="58"/><text x="100.0460%" y="1599.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash::{{closure}} (60 samples, 0.14%)</title><rect x="99.7937%" y="1685" width="0.1391%" height="15" fill="rgb(205,96,16)" fg:x="43058" fg:w="60"/><text x="100.0437%" y="1695.50"></text></g><g><title>hashbrown::map::make_hasher::{{closure}} (60 samples, 0.14%)</title><rect x="99.7937%" y="1669" width="0.1391%" height="15" fill="rgb(205,100,21)" fg:x="43058" fg:w="60"/><text x="100.0437%" y="1679.50"></text></g><g><title>hashbrown::map::make_hash (60 samples, 0.14%)</title><rect x="99.7937%" y="1653" width="0.1391%" height="15" fill="rgb(248,51,4)" fg:x="43058" fg:w="60"/><text x="100.0437%" y="1663.50"></text></g><g><title>core::hash::BuildHasher::hash_one (59 samples, 0.14%)</title><rect x="99.7960%" y="1637" width="0.1367%" height="15" fill="rgb(217,197,30)" fg:x="43059" fg:w="59"/><text x="100.0460%" y="1647.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (59 samples, 0.14%)</title><rect x="99.7960%" y="1621" width="0.1367%" height="15" fill="rgb(240,179,40)" fg:x="43059" fg:w="59"/><text x="100.0460%" y="1631.50"></text></g><g><title>&lt;slimp::Rule as core::hash::Hash&gt;::hash (59 samples, 0.14%)</title><rect x="99.7960%" y="1605" width="0.1367%" height="15" fill="rgb(212,185,35)" fg:x="43059" fg:w="59"/><text x="100.0460%" y="1615.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (63 samples, 0.15%)</title><rect x="99.7937%" y="1749" width="0.1460%" height="15" fill="rgb(251,222,31)" fg:x="43058" fg:w="63"/><text x="100.0437%" y="1759.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (63 samples, 0.15%)</title><rect x="99.7937%" y="1733" width="0.1460%" height="15" fill="rgb(208,140,36)" fg:x="43058" fg:w="63"/><text x="100.0437%" y="1743.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (63 samples, 0.15%)</title><rect x="99.7937%" y="1717" width="0.1460%" height="15" fill="rgb(220,148,1)" fg:x="43058" fg:w="63"/><text x="100.0437%" y="1727.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::resize_inner (63 samples, 0.15%)</title><rect x="99.7937%" y="1701" width="0.1460%" height="15" fill="rgb(254,4,28)" fg:x="43058" fg:w="63"/><text x="100.0437%" y="1711.50"></text></g><g><title>slimp::Rule::concretions (372 samples, 0.86%)</title><rect x="99.0799%" y="1829" width="0.8622%" height="15" fill="rgb(222,185,44)" fg:x="42750" fg:w="372"/><text x="99.3299%" y="1839.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (99 samples, 0.23%)</title><rect x="99.7126%" y="1813" width="0.2294%" height="15" fill="rgb(215,74,39)" fg:x="43023" fg:w="99"/><text x="99.9626%" y="1823.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (99 samples, 0.23%)</title><rect x="99.7126%" y="1797" width="0.2294%" height="15" fill="rgb(247,86,4)" fg:x="43023" fg:w="99"/><text x="99.9626%" y="1807.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (99 samples, 0.23%)</title><rect x="99.7126%" y="1781" width="0.2294%" height="15" fill="rgb(231,105,32)" fg:x="43023" fg:w="99"/><text x="99.9626%" y="1791.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (65 samples, 0.15%)</title><rect x="99.7914%" y="1765" width="0.1506%" height="15" fill="rgb(222,65,35)" fg:x="43057" fg:w="65"/><text x="100.0414%" y="1775.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1813" width="0.0162%" height="15" fill="rgb(218,145,35)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1823.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1797" width="0.0162%" height="15" fill="rgb(208,7,15)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1807.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1781" width="0.0162%" height="15" fill="rgb(209,83,13)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1791.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1765" width="0.0162%" height="15" fill="rgb(218,3,10)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1775.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (7 samples, 0.02%)</title><rect x="99.9421%" y="1749" width="0.0162%" height="15" fill="rgb(211,219,4)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1759.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (7 samples, 0.02%)</title><rect x="99.9421%" y="1733" width="0.0162%" height="15" fill="rgb(228,194,12)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.02%)</title><rect x="99.9421%" y="1717" width="0.0162%" height="15" fill="rgb(210,175,7)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1727.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (7 samples, 0.02%)</title><rect x="99.9421%" y="1701" width="0.0162%" height="15" fill="rgb(243,132,6)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1711.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (7 samples, 0.02%)</title><rect x="99.9421%" y="1685" width="0.0162%" height="15" fill="rgb(207,72,18)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1695.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1669" width="0.0162%" height="15" fill="rgb(236,1,18)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1679.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1653" width="0.0162%" height="15" fill="rgb(227,0,18)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1663.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1637" width="0.0162%" height="15" fill="rgb(247,37,5)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1647.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (7 samples, 0.02%)</title><rect x="99.9421%" y="1621" width="0.0162%" height="15" fill="rgb(237,179,24)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1631.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (7 samples, 0.02%)</title><rect x="99.9421%" y="1605" width="0.0162%" height="15" fill="rgb(226,53,20)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all (7 samples, 0.02%)</title><rect x="99.9421%" y="1589" width="0.0162%" height="15" fill="rgb(247,75,7)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1599.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.02%)</title><rect x="99.9421%" y="1573" width="0.0162%" height="15" fill="rgb(233,96,12)" fg:x="43122" fg:w="7"/><text x="100.1921%" y="1583.50"></text></g><g><title>core::iter::traits::iterator::Iterator::all::check::{{closure}} (6 samples, 0.01%)</title><rect x="99.9444%" y="1557" width="0.0139%" height="15" fill="rgb(224,125,0)" fg:x="43123" fg:w="6"/><text x="100.1944%" y="1567.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal::{{closure}} (6 samples, 0.01%)</title><rect x="99.9444%" y="1541" width="0.0139%" height="15" fill="rgb(224,92,25)" fg:x="43123" fg:w="6"/><text x="100.1944%" y="1551.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (6 samples, 0.01%)</title><rect x="99.9444%" y="1525" width="0.0139%" height="15" fill="rgb(224,42,24)" fg:x="43123" fg:w="6"/><text x="100.1944%" y="1535.50"></text></g><g><title>&lt;slimp::Sexp as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="99.9444%" y="1509" width="0.0139%" height="15" fill="rgb(234,132,49)" fg:x="43123" fg:w="6"/><text x="100.1944%" y="1519.50"></text></g><g><title>_start (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2165" width="87.2390%" height="15" fill="rgb(248,100,35)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2175.50">_start</text></g><g><title>__libc_start_main (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2149" width="87.2390%" height="15" fill="rgb(239,94,40)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2159.50">__libc_start_main</text></g><g><title>[libc.so.6] (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2133" width="87.2390%" height="15" fill="rgb(235,139,28)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2143.50">[libc.so.6]</text></g><g><title>main (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2117" width="87.2390%" height="15" fill="rgb(217,144,7)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2127.50">main</text></g><g><title>std::rt::lang_start_internal (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2101" width="87.2390%" height="15" fill="rgb(227,55,4)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2111.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2085" width="87.2390%" height="15" fill="rgb(252,82,54)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2095.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2069" width="87.2390%" height="15" fill="rgb(245,172,4)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2079.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2053" width="87.2390%" height="15" fill="rgb(207,26,27)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2063.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::{{closure}} (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2037" width="87.2390%" height="15" fill="rgb(252,98,18)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2047.50">std::rt::lang_start_internal::{{closure}}</text></g><g><title>std::panic::catch_unwind (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2021" width="87.2390%" height="15" fill="rgb(244,8,26)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2031.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (37,641 samples, 87.24%)</title><rect x="12.7309%" y="2005" width="87.2390%" height="15" fill="rgb(237,173,45)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="2015.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1989" width="87.2390%" height="15" fill="rgb(208,213,49)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1999.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1973" width="87.2390%" height="15" fill="rgb(212,122,37)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1983.50">core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once</text></g><g><title>std::rt::lang_start::{{closure}} (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1957" width="87.2390%" height="15" fill="rgb(213,80,17)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1967.50">std::rt::lang_start::{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1941" width="87.2390%" height="15" fill="rgb(206,210,43)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1951.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1925" width="87.2390%" height="15" fill="rgb(229,214,3)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1935.50">core::ops::function::FnOnce::call_once</text></g><g><title>slimp::main (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1909" width="87.2390%" height="15" fill="rgb(235,213,29)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1919.50">slimp::main</text></g><g><title>slimp::do_it (37,641 samples, 87.24%)</title><rect x="12.7309%" y="1893" width="87.2390%" height="15" fill="rgb(248,135,26)" fg:x="5493" fg:w="37641"/><text x="12.9809%" y="1903.50">slimp::do_it</text></g><g><title>slimp::run_program (37,636 samples, 87.23%)</title><rect x="12.7425%" y="1877" width="87.2274%" height="15" fill="rgb(242,188,12)" fg:x="5498" fg:w="37636"/><text x="12.9925%" y="1887.50">slimp::run_program</text></g><g><title>slimp::simp (37,636 samples, 87.23%)</title><rect x="12.7425%" y="1861" width="87.2274%" height="15" fill="rgb(245,38,12)" fg:x="5498" fg:w="37636"/><text x="12.9925%" y="1871.50">slimp::simp</text></g><g><title>slimp::rw (37,636 samples, 87.23%)</title><rect x="12.7425%" y="1845" width="87.2274%" height="15" fill="rgb(218,42,13)" fg:x="5498" fg:w="37636"/><text x="12.9925%" y="1855.50">slimp::rw</text></g><g><title>slimp::rw (12 samples, 0.03%)</title><rect x="99.9421%" y="1829" width="0.0278%" height="15" fill="rgb(238,132,49)" fg:x="43122" fg:w="12"/><text x="100.1921%" y="1839.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.01%)</title><rect x="99.9583%" y="1813" width="0.0116%" height="15" fill="rgb(209,196,19)" fg:x="43129" fg:w="5"/><text x="100.2083%" y="1823.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (5 samples, 0.01%)</title><rect x="99.9583%" y="1797" width="0.0116%" height="15" fill="rgb(244,131,22)" fg:x="43129" fg:w="5"/><text x="100.2083%" y="1807.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 (5 samples, 0.01%)</title><rect x="99.9583%" y="1781" width="0.0116%" height="15" fill="rgb(223,18,34)" fg:x="43129" fg:w="5"/><text x="100.2083%" y="1791.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 (5 samples, 0.01%)</title><rect x="99.9583%" y="1765" width="0.0116%" height="15" fill="rgb(252,124,54)" fg:x="43129" fg:w="5"/><text x="100.2083%" y="1775.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (6 samples, 0.01%)</title><rect x="99.9791%" y="2165" width="0.0139%" height="15" fill="rgb(229,106,42)" fg:x="43138" fg:w="6"/><text x="100.2291%" y="2175.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::reserve_rehash_inner (6 samples, 0.01%)</title><rect x="99.9791%" y="2149" width="0.0139%" height="15" fill="rgb(221,129,1)" fg:x="43138" fg:w="6"/><text x="100.2291%" y="2159.50"></text></g><g><title>all (43,147 samples, 100%)</title><rect x="0.0000%" y="2197" width="100.0000%" height="15" fill="rgb(229,74,15)" fg:x="0" fg:w="43147"/><text x="0.2500%" y="2207.50"></text></g><g><title>slimp (43,147 samples, 100.00%)</title><rect x="0.0000%" y="2181" width="100.0000%" height="15" fill="rgb(210,206,50)" fg:x="0" fg:w="43147"/><text x="0.2500%" y="2191.50">slimp</text></g></svg></svg>