Skip to content

Instantly share code, notes, and snippets.

@FreeMasen
Created January 3, 2022 00:49
Show Gist options
  • Save FreeMasen/aeea6cde870832a0d8d5a2bb70ed6e4e to your computer and use it in GitHub Desktop.
Save FreeMasen/aeea6cde870832a0d8d5a2bb70ed6e4e to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?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="1094" onload="init(evt)" viewBox="0 0 1200 1094" 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:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { 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;
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");
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.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
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 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 (/^ *\$/.test(txt) || 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;
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);
update_text(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);
update_text(e);
}
}
}
}
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(el[i]);
}
}
// 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="1094" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1077.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1077.00"> </text><svg id="frames" x="10" width="1180" total_samples="412"><g><title>[[heap]] (1 samples, 0.24%)</title><rect x="0.0000%" y="1013" width="0.2427%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1023.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="0.0000%" y="997" width="0.2427%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="0.0000%" y="981" width="0.2427%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="991.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.24%)</title><rect x="0.2427%" y="997" width="0.2427%" height="15" fill="rgb(248,212,6)" fg:x="1" fg:w="1"/><text x="0.4927%" y="1007.50"></text></g><g><title>&lt;resast::spanned::ListEntry&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="981" width="0.2427%" height="15" fill="rgb(208,68,35)" fg:x="1" fg:w="1"/><text x="0.4927%" y="991.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="965" width="0.2427%" height="15" fill="rgb(232,128,0)" fg:x="1" fg:w="1"/><text x="0.4927%" y="975.50"></text></g><g><title>&lt;resast::spanned::expr::LogicalExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="949" width="0.2427%" height="15" fill="rgb(207,160,47)" fg:x="1" fg:w="1"/><text x="0.4927%" y="959.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="933" width="0.2427%" height="15" fill="rgb(228,23,34)" fg:x="1" fg:w="1"/><text x="0.4927%" y="943.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="0.2427%" y="917" width="0.2427%" height="15" fill="rgb(218,30,26)" fg:x="1" fg:w="1"/><text x="0.4927%" y="927.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="901" width="0.2427%" height="15" fill="rgb(220,122,19)" fg:x="1" fg:w="1"/><text x="0.4927%" y="911.50"></text></g><g><title>&lt;resast::spanned::expr::LogicalExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="885" width="0.2427%" height="15" fill="rgb(250,228,42)" fg:x="1" fg:w="1"/><text x="0.4927%" y="895.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="869" width="0.2427%" height="15" fill="rgb(240,193,28)" fg:x="1" fg:w="1"/><text x="0.4927%" y="879.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="0.2427%" y="853" width="0.2427%" height="15" fill="rgb(216,20,37)" fg:x="1" fg:w="1"/><text x="0.4927%" y="863.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="837" width="0.2427%" height="15" fill="rgb(206,188,39)" fg:x="1" fg:w="1"/><text x="0.4927%" y="847.50"></text></g><g><title>&lt;resast::spanned::expr::LogicalExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="821" width="0.2427%" height="15" fill="rgb(217,207,13)" fg:x="1" fg:w="1"/><text x="0.4927%" y="831.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="805" width="0.2427%" height="15" fill="rgb(231,73,38)" fg:x="1" fg:w="1"/><text x="0.4927%" y="815.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="0.2427%" y="789" width="0.2427%" height="15" fill="rgb(225,20,46)" fg:x="1" fg:w="1"/><text x="0.4927%" y="799.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="773" width="0.2427%" height="15" fill="rgb(210,31,41)" fg:x="1" fg:w="1"/><text x="0.4927%" y="783.50"></text></g><g><title>&lt;resast::spanned::expr::BinaryExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="757" width="0.2427%" height="15" fill="rgb(221,200,47)" fg:x="1" fg:w="1"/><text x="0.4927%" y="767.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="741" width="0.2427%" height="15" fill="rgb(226,26,5)" fg:x="1" fg:w="1"/><text x="0.4927%" y="751.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="0.2427%" y="725" width="0.2427%" height="15" fill="rgb(249,33,26)" fg:x="1" fg:w="1"/><text x="0.4927%" y="735.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="709" width="0.2427%" height="15" fill="rgb(235,183,28)" fg:x="1" fg:w="1"/><text x="0.4927%" y="719.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="693" width="0.2427%" height="15" fill="rgb(221,5,38)" fg:x="1" fg:w="1"/><text x="0.4927%" y="703.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="0.2427%" y="677" width="0.2427%" height="15" fill="rgb(247,18,42)" fg:x="1" fg:w="1"/><text x="0.4927%" y="687.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (1 samples, 0.24%)</title><rect x="0.2427%" y="661" width="0.2427%" height="15" fill="rgb(241,131,45)" fg:x="1" fg:w="1"/><text x="0.4927%" y="671.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (1 samples, 0.24%)</title><rect x="0.2427%" y="645" width="0.2427%" height="15" fill="rgb(249,31,29)" fg:x="1" fg:w="1"/><text x="0.4927%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="0.2427%" y="629" width="0.2427%" height="15" fill="rgb(225,111,53)" fg:x="1" fg:w="1"/><text x="0.4927%" y="639.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="0.2427%" y="613" width="0.2427%" height="15" fill="rgb(238,160,17)" fg:x="1" fg:w="1"/><text x="0.4927%" y="623.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="0.2427%" y="597" width="0.2427%" height="15" fill="rgb(214,148,48)" fg:x="1" fg:w="1"/><text x="0.4927%" y="607.50"></text></g><g><title>__rdl_alloc (1 samples, 0.24%)</title><rect x="0.2427%" y="581" width="0.2427%" height="15" fill="rgb(232,36,49)" fg:x="1" fg:w="1"/><text x="0.4927%" y="591.50"></text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::bench::{{closure}} (1 samples, 0.24%)</title><rect x="0.4854%" y="949" width="0.2427%" height="15" fill="rgb(209,103,24)" fg:x="2" fg:w="1"/><text x="0.7354%" y="959.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function::{{closure}} (1 samples, 0.24%)</title><rect x="0.4854%" y="933" width="0.2427%" height="15" fill="rgb(229,88,8)" fg:x="2" fg:w="1"/><text x="0.7354%" y="943.50"></text></g><g><title>major_libs::bench::{{closure}} (1 samples, 0.24%)</title><rect x="0.4854%" y="917" width="0.2427%" height="15" fill="rgb(213,181,19)" fg:x="2" fg:w="1"/><text x="0.7354%" y="927.50"></text></g><g><title>criterion::Bencher&lt;M&gt;::iter (1 samples, 0.24%)</title><rect x="0.4854%" y="901" width="0.2427%" height="15" fill="rgb(254,191,54)" fg:x="2" fg:w="1"/><text x="0.7354%" y="911.50"></text></g><g><title>major_libs::bench::{{closure}}::{{closure}} (1 samples, 0.24%)</title><rect x="0.4854%" y="885" width="0.2427%" height="15" fill="rgb(241,83,37)" fg:x="2" fg:w="1"/><text x="0.7354%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="869" width="0.2427%" height="15" fill="rgb(233,36,39)" fg:x="2" fg:w="1"/><text x="0.7354%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="853" width="0.2427%" height="15" fill="rgb(226,3,54)" fg:x="2" fg:w="1"/><text x="0.7354%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="837" width="0.2427%" height="15" fill="rgb(245,192,40)" fg:x="2" fg:w="1"/><text x="0.7354%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="821" width="0.2427%" height="15" fill="rgb(238,167,29)" fg:x="2" fg:w="1"/><text x="0.7354%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="805" width="0.2427%" height="15" fill="rgb(232,182,51)" fg:x="2" fg:w="1"/><text x="0.7354%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="789" width="0.2427%" height="15" fill="rgb(231,60,39)" fg:x="2" fg:w="1"/><text x="0.7354%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="773" width="0.2427%" height="15" fill="rgb(208,69,12)" fg:x="2" fg:w="1"/><text x="0.7354%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="757" width="0.2427%" height="15" fill="rgb(235,93,37)" fg:x="2" fg:w="1"/><text x="0.7354%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="0.4854%" y="741" width="0.2427%" height="15" fill="rgb(213,116,39)" fg:x="2" fg:w="1"/><text x="0.7354%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="725" width="0.2427%" height="15" fill="rgb(222,207,29)" fg:x="2" fg:w="1"/><text x="0.7354%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="709" width="0.2427%" height="15" fill="rgb(206,96,30)" fg:x="2" fg:w="1"/><text x="0.7354%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="693" width="0.2427%" height="15" fill="rgb(218,138,4)" fg:x="2" fg:w="1"/><text x="0.7354%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="677" width="0.2427%" height="15" fill="rgb(250,191,14)" fg:x="2" fg:w="1"/><text x="0.7354%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="661" width="0.2427%" height="15" fill="rgb(239,60,40)" fg:x="2" fg:w="1"/><text x="0.7354%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="645" width="0.2427%" height="15" fill="rgb(206,27,48)" fg:x="2" fg:w="1"/><text x="0.7354%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="0.4854%" y="629" width="0.2427%" height="15" fill="rgb(225,35,8)" fg:x="2" fg:w="1"/><text x="0.7354%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="613" width="0.2427%" height="15" fill="rgb(250,213,24)" fg:x="2" fg:w="1"/><text x="0.7354%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="597" width="0.2427%" height="15" fill="rgb(247,123,22)" fg:x="2" fg:w="1"/><text x="0.7354%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="581" width="0.2427%" height="15" fill="rgb(231,138,38)" fg:x="2" fg:w="1"/><text x="0.7354%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="565" width="0.2427%" height="15" fill="rgb(231,145,46)" fg:x="2" fg:w="1"/><text x="0.7354%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="0.4854%" y="549" width="0.2427%" height="15" fill="rgb(251,118,11)" fg:x="2" fg:w="1"/><text x="0.7354%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="533" width="0.2427%" height="15" fill="rgb(217,147,25)" fg:x="2" fg:w="1"/><text x="0.7354%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="517" width="0.2427%" height="15" fill="rgb(247,81,37)" fg:x="2" fg:w="1"/><text x="0.7354%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="501" width="0.2427%" height="15" fill="rgb(209,12,38)" fg:x="2" fg:w="1"/><text x="0.7354%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="485" width="0.2427%" height="15" fill="rgb(227,1,9)" fg:x="2" fg:w="1"/><text x="0.7354%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="469" width="0.2427%" height="15" fill="rgb(248,47,43)" fg:x="2" fg:w="1"/><text x="0.7354%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="0.4854%" y="453" width="0.2427%" height="15" fill="rgb(221,10,30)" fg:x="2" fg:w="1"/><text x="0.7354%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="437" width="0.2427%" height="15" fill="rgb(210,229,1)" fg:x="2" fg:w="1"/><text x="0.7354%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="421" width="0.2427%" height="15" fill="rgb(222,148,37)" fg:x="2" fg:w="1"/><text x="0.7354%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="405" width="0.2427%" height="15" fill="rgb(234,67,33)" fg:x="2" fg:w="1"/><text x="0.7354%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="389" width="0.2427%" height="15" fill="rgb(247,98,35)" fg:x="2" fg:w="1"/><text x="0.7354%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="373" width="0.2427%" height="15" fill="rgb(247,138,52)" fg:x="2" fg:w="1"/><text x="0.7354%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="357" width="0.2427%" height="15" fill="rgb(213,79,30)" fg:x="2" fg:w="1"/><text x="0.7354%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="341" width="0.2427%" height="15" fill="rgb(246,177,23)" fg:x="2" fg:w="1"/><text x="0.7354%" y="351.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="0.4854%" y="325" width="0.2427%" height="15" fill="rgb(230,62,27)" fg:x="2" fg:w="1"/><text x="0.7354%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="309" width="0.2427%" height="15" fill="rgb(216,154,8)" fg:x="2" fg:w="1"/><text x="0.7354%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="293" width="0.2427%" height="15" fill="rgb(244,35,45)" fg:x="2" fg:w="1"/><text x="0.7354%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="277" width="0.2427%" height="15" fill="rgb(251,115,12)" fg:x="2" fg:w="1"/><text x="0.7354%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignLeft&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="261" width="0.2427%" height="15" fill="rgb(240,54,50)" fg:x="2" fg:w="1"/><text x="0.7354%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="245" width="0.2427%" height="15" fill="rgb(233,84,52)" fg:x="2" fg:w="1"/><text x="0.7354%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="229" width="0.2427%" height="15" fill="rgb(207,117,47)" fg:x="2" fg:w="1"/><text x="0.7354%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::MemberExpr&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="213" width="0.2427%" height="15" fill="rgb(249,43,39)" fg:x="2" fg:w="1"/><text x="0.7354%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="0.4854%" y="197" width="0.2427%" height="15" fill="rgb(209,38,44)" fg:x="2" fg:w="1"/><text x="0.7354%" y="207.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="0.4854%" y="181" width="0.2427%" height="15" fill="rgb(236,212,23)" fg:x="2" fg:w="1"/><text x="0.7354%" y="191.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="0.4854%" y="165" width="0.2427%" height="15" fill="rgb(242,79,21)" fg:x="2" fg:w="1"/><text x="0.7354%" y="175.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="0.4854%" y="149" width="0.2427%" height="15" fill="rgb(211,96,35)" fg:x="2" fg:w="1"/><text x="0.7354%" y="159.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="0.4854%" y="133" width="0.2427%" height="15" fill="rgb(253,215,40)" fg:x="2" fg:w="1"/><text x="0.7354%" y="143.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 samples, 0.24%)</title><rect x="0.7282%" y="789" width="0.2427%" height="15" fill="rgb(211,81,21)" fg:x="3" fg:w="1"/><text x="0.9782%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="0.7282%" y="773" width="0.2427%" height="15" fill="rgb(208,190,38)" fg:x="3" fg:w="1"/><text x="0.9782%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="0.7282%" y="757" width="0.2427%" height="15" fill="rgb(235,213,38)" fg:x="3" fg:w="1"/><text x="0.9782%" y="767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="0.7282%" y="741" width="0.2427%" height="15" fill="rgb(237,122,38)" fg:x="3" fg:w="1"/><text x="0.9782%" y="751.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="0.7282%" y="725" width="0.2427%" height="15" fill="rgb(244,218,35)" fg:x="3" fg:w="1"/><text x="0.9782%" y="735.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="0.7282%" y="709" width="0.2427%" height="15" fill="rgb(240,68,47)" fg:x="3" fg:w="1"/><text x="0.9782%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="0.7282%" y="885" width="0.4854%" height="15" fill="rgb(210,16,53)" fg:x="3" fg:w="2"/><text x="0.9782%" y="895.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (2 samples, 0.49%)</title><rect x="0.7282%" y="869" width="0.4854%" height="15" fill="rgb(235,124,12)" fg:x="3" fg:w="2"/><text x="0.9782%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="0.7282%" y="853" width="0.4854%" height="15" fill="rgb(224,169,11)" fg:x="3" fg:w="2"/><text x="0.9782%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="0.7282%" y="837" width="0.4854%" height="15" fill="rgb(250,166,2)" fg:x="3" fg:w="2"/><text x="0.9782%" y="847.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="0.7282%" y="821" width="0.4854%" height="15" fill="rgb(242,216,29)" fg:x="3" fg:w="2"/><text x="0.9782%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="0.7282%" y="805" width="0.4854%" height="15" fill="rgb(230,116,27)" fg:x="3" fg:w="2"/><text x="0.9782%" y="815.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="0.9709%" y="789" width="0.2427%" height="15" fill="rgb(228,99,48)" fg:x="4" fg:w="1"/><text x="1.2209%" y="799.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="0.9709%" y="773" width="0.2427%" height="15" fill="rgb(253,11,6)" fg:x="4" fg:w="1"/><text x="1.2209%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="0.9709%" y="757" width="0.2427%" height="15" fill="rgb(247,143,39)" fg:x="4" fg:w="1"/><text x="1.2209%" y="767.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="0.9709%" y="741" width="0.2427%" height="15" fill="rgb(236,97,10)" fg:x="4" fg:w="1"/><text x="1.2209%" y="751.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="0.9709%" y="725" width="0.2427%" height="15" fill="rgb(233,208,19)" fg:x="4" fg:w="1"/><text x="1.2209%" y="735.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="0.9709%" y="709" width="0.2427%" height="15" fill="rgb(216,164,2)" fg:x="4" fg:w="1"/><text x="1.2209%" y="719.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="0.9709%" y="693" width="0.2427%" height="15" fill="rgb(220,129,5)" fg:x="4" fg:w="1"/><text x="1.2209%" y="703.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="0.9709%" y="677" width="0.2427%" height="15" fill="rgb(242,17,10)" fg:x="4" fg:w="1"/><text x="1.2209%" y="687.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="0.9709%" y="661" width="0.2427%" height="15" fill="rgb(242,107,0)" fg:x="4" fg:w="1"/><text x="1.2209%" y="671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (2 samples, 0.49%)</title><rect x="1.4563%" y="741" width="0.4854%" height="15" fill="rgb(251,28,31)" fg:x="6" fg:w="2"/><text x="1.7063%" y="751.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::{{closure}} (2 samples, 0.49%)</title><rect x="1.4563%" y="725" width="0.4854%" height="15" fill="rgb(233,223,10)" fg:x="6" fg:w="2"/><text x="1.7063%" y="735.50"></text></g><g><title>core::ptr::write (2 samples, 0.49%)</title><rect x="1.4563%" y="709" width="0.4854%" height="15" fill="rgb(215,21,27)" fg:x="6" fg:w="2"/><text x="1.7063%" y="719.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="1.4563%" y="693" width="0.4854%" height="15" fill="rgb(232,23,21)" fg:x="6" fg:w="2"/><text x="1.7063%" y="703.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="1.9417%" y="645" width="0.2427%" height="15" fill="rgb(244,5,23)" fg:x="8" fg:w="1"/><text x="2.1917%" y="655.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="1.9417%" y="629" width="0.2427%" height="15" fill="rgb(226,81,46)" fg:x="8" fg:w="1"/><text x="2.1917%" y="639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="1.9417%" y="613" width="0.2427%" height="15" fill="rgb(247,70,30)" fg:x="8" fg:w="1"/><text x="2.1917%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="1.9417%" y="597" width="0.2427%" height="15" fill="rgb(212,68,19)" fg:x="8" fg:w="1"/><text x="2.1917%" y="607.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="1.9417%" y="581" width="0.2427%" height="15" fill="rgb(240,187,13)" fg:x="8" fg:w="1"/><text x="2.1917%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="1.9417%" y="565" width="0.2427%" height="15" fill="rgb(223,113,26)" fg:x="8" fg:w="1"/><text x="2.1917%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="1.9417%" y="549" width="0.2427%" height="15" fill="rgb(206,192,2)" fg:x="8" fg:w="1"/><text x="2.1917%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="1.9417%" y="533" width="0.2427%" height="15" fill="rgb(241,108,4)" fg:x="8" fg:w="1"/><text x="2.1917%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="1.9417%" y="517" width="0.2427%" height="15" fill="rgb(247,173,49)" fg:x="8" fg:w="1"/><text x="2.1917%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="1.9417%" y="501" width="0.2427%" height="15" fill="rgb(224,114,35)" fg:x="8" fg:w="1"/><text x="2.1917%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="1.9417%" y="485" width="0.2427%" height="15" fill="rgb(245,159,27)" fg:x="8" fg:w="1"/><text x="2.1917%" y="495.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="1.9417%" y="469" width="0.2427%" height="15" fill="rgb(245,172,44)" fg:x="8" fg:w="1"/><text x="2.1917%" y="479.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="1.9417%" y="453" width="0.2427%" height="15" fill="rgb(236,23,11)" fg:x="8" fg:w="1"/><text x="2.1917%" y="463.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="1.9417%" y="437" width="0.2427%" height="15" fill="rgb(205,117,38)" fg:x="8" fg:w="1"/><text x="2.1917%" y="447.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (4 samples, 0.97%)</title><rect x="1.4563%" y="757" width="0.9709%" height="15" fill="rgb(237,72,25)" fg:x="6" fg:w="4"/><text x="1.7063%" y="767.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from::{{closure}} (2 samples, 0.49%)</title><rect x="1.9417%" y="741" width="0.4854%" height="15" fill="rgb(244,70,9)" fg:x="8" fg:w="2"/><text x="2.1917%" y="751.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="1.9417%" y="725" width="0.4854%" height="15" fill="rgb(217,125,39)" fg:x="8" fg:w="2"/><text x="2.1917%" y="735.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::VarDecl&gt; for resast::decl::VarDecl&gt;::from (2 samples, 0.49%)</title><rect x="1.9417%" y="709" width="0.4854%" height="15" fill="rgb(235,36,10)" fg:x="8" fg:w="2"/><text x="2.1917%" y="719.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.49%)</title><rect x="1.9417%" y="693" width="0.4854%" height="15" fill="rgb(251,123,47)" fg:x="8" fg:w="2"/><text x="2.1917%" y="703.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.49%)</title><rect x="1.9417%" y="677" width="0.4854%" height="15" fill="rgb(221,13,13)" fg:x="8" fg:w="2"/><text x="2.1917%" y="687.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="1.9417%" y="661" width="0.4854%" height="15" fill="rgb(238,131,9)" fg:x="8" fg:w="2"/><text x="2.1917%" y="671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="2.1845%" y="645" width="0.2427%" height="15" fill="rgb(211,50,8)" fg:x="9" fg:w="1"/><text x="2.4345%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="2.1845%" y="629" width="0.2427%" height="15" fill="rgb(245,182,24)" fg:x="9" fg:w="1"/><text x="2.4345%" y="639.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="2.1845%" y="613" width="0.2427%" height="15" fill="rgb(242,14,37)" fg:x="9" fg:w="1"/><text x="2.4345%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="2.1845%" y="597" width="0.2427%" height="15" fill="rgb(246,228,12)" fg:x="9" fg:w="1"/><text x="2.4345%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="2.1845%" y="581" width="0.2427%" height="15" fill="rgb(213,55,15)" fg:x="9" fg:w="1"/><text x="2.4345%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="2.1845%" y="565" width="0.2427%" height="15" fill="rgb(209,9,3)" fg:x="9" fg:w="1"/><text x="2.4345%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="2.1845%" y="549" width="0.2427%" height="15" fill="rgb(230,59,30)" fg:x="9" fg:w="1"/><text x="2.4345%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="2.1845%" y="533" width="0.2427%" height="15" fill="rgb(209,121,21)" fg:x="9" fg:w="1"/><text x="2.4345%" y="543.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="2.1845%" y="517" width="0.2427%" height="15" fill="rgb(220,109,13)" fg:x="9" fg:w="1"/><text x="2.4345%" y="527.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="2.1845%" y="501" width="0.2427%" height="15" fill="rgb(232,18,1)" fg:x="9" fg:w="1"/><text x="2.4345%" y="511.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="2.1845%" y="485" width="0.2427%" height="15" fill="rgb(215,41,42)" fg:x="9" fg:w="1"/><text x="2.4345%" y="495.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="2.1845%" y="469" width="0.2427%" height="15" fill="rgb(224,123,36)" fg:x="9" fg:w="1"/><text x="2.4345%" y="479.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="2.1845%" y="453" width="0.2427%" height="15" fill="rgb(240,125,3)" fg:x="9" fg:w="1"/><text x="2.4345%" 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 (6 samples, 1.46%)</title><rect x="1.2136%" y="821" width="1.4563%" height="15" fill="rgb(205,98,50)" fg:x="5" fg:w="6"/><text x="1.4636%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (6 samples, 1.46%)</title><rect x="1.2136%" y="805" width="1.4563%" height="15" fill="rgb(205,185,37)" fg:x="5" fg:w="6"/><text x="1.4636%" 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 (6 samples, 1.46%)</title><rect x="1.2136%" y="789" width="1.4563%" height="15" fill="rgb(238,207,15)" fg:x="5" fg:w="6"/><text x="1.4636%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 1.46%)</title><rect x="1.2136%" y="773" width="1.4563%" height="15" fill="rgb(213,199,42)" fg:x="5" fg:w="6"/><text x="1.4636%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;resast::spanned::ListEntry&lt;resast::spanned::decl::VarDecl&gt;&gt;&gt; (1 samples, 0.24%)</title><rect x="2.4272%" y="757" width="0.2427%" height="15" fill="rgb(235,201,11)" fg:x="10" fg:w="1"/><text x="2.6772%" y="767.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="2.4272%" y="741" width="0.2427%" height="15" fill="rgb(207,46,11)" fg:x="10" fg:w="1"/><text x="2.6772%" y="751.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::Decl&gt; for resast::decl::Decl&gt;::from (13 samples, 3.16%)</title><rect x="0.7282%" y="901" width="3.1553%" height="15" fill="rgb(241,35,35)" fg:x="3" fg:w="13"/><text x="0.9782%" y="911.50">res..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (11 samples, 2.67%)</title><rect x="1.2136%" y="885" width="2.6699%" height="15" fill="rgb(243,32,47)" fg:x="5" fg:w="11"/><text x="1.4636%" 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 (11 samples, 2.67%)</title><rect x="1.2136%" y="869" width="2.6699%" height="15" fill="rgb(247,202,23)" fg:x="5" fg:w="11"/><text x="1.4636%" y="879.50">&lt;a..</text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (11 samples, 2.67%)</title><rect x="1.2136%" y="853" width="2.6699%" height="15" fill="rgb(219,102,11)" fg:x="5" fg:w="11"/><text x="1.4636%" y="863.50">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 (11 samples, 2.67%)</title><rect x="1.2136%" y="837" width="2.6699%" height="15" fill="rgb(243,110,44)" fg:x="5" fg:w="11"/><text x="1.4636%" y="847.50">&lt;a..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (5 samples, 1.21%)</title><rect x="2.6699%" y="821" width="1.2136%" height="15" fill="rgb(222,74,54)" fg:x="11" fg:w="5"/><text x="2.9199%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (5 samples, 1.21%)</title><rect x="2.6699%" y="805" width="1.2136%" height="15" fill="rgb(216,99,12)" fg:x="11" fg:w="5"/><text x="2.9199%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (5 samples, 1.21%)</title><rect x="2.6699%" y="789" width="1.2136%" height="15" fill="rgb(226,22,26)" fg:x="11" fg:w="5"/><text x="2.9199%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (5 samples, 1.21%)</title><rect x="2.6699%" y="773" width="1.2136%" height="15" fill="rgb(217,163,10)" fg:x="11" fg:w="5"/><text x="2.9199%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (5 samples, 1.21%)</title><rect x="2.6699%" y="757" width="1.2136%" height="15" fill="rgb(213,25,53)" fg:x="11" fg:w="5"/><text x="2.9199%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (5 samples, 1.21%)</title><rect x="2.6699%" y="741" width="1.2136%" height="15" fill="rgb(252,105,26)" fg:x="11" fg:w="5"/><text x="2.9199%" y="751.50"></text></g><g><title>alloc::alloc::alloc (5 samples, 1.21%)</title><rect x="2.6699%" y="725" width="1.2136%" height="15" fill="rgb(220,39,43)" fg:x="11" fg:w="5"/><text x="2.9199%" y="735.50"></text></g><g><title>__GI___libc_malloc (5 samples, 1.21%)</title><rect x="2.6699%" y="709" width="1.2136%" height="15" fill="rgb(229,68,48)" fg:x="11" fg:w="5"/><text x="2.9199%" y="719.50"></text></g><g><title>_int_malloc (5 samples, 1.21%)</title><rect x="2.6699%" y="693" width="1.2136%" height="15" fill="rgb(252,8,32)" fg:x="11" fg:w="5"/><text x="2.9199%" y="703.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="3.8835%" y="869" width="0.2427%" height="15" fill="rgb(223,20,43)" fg:x="16" fg:w="1"/><text x="4.1335%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="4.1262%" y="837" width="0.2427%" height="15" fill="rgb(229,81,49)" fg:x="17" fg:w="1"/><text x="4.3762%" y="847.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.73%)</title><rect x="4.3689%" y="789" width="0.7282%" height="15" fill="rgb(236,28,36)" fg:x="18" fg:w="3"/><text x="4.6189%" y="799.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (4 samples, 0.97%)</title><rect x="4.3689%" y="821" width="0.9709%" height="15" fill="rgb(249,185,26)" fg:x="18" fg:w="4"/><text x="4.6189%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignLeft&gt; for resast::expr::AssignLeft&gt;::from (4 samples, 0.97%)</title><rect x="4.3689%" y="805" width="0.9709%" height="15" fill="rgb(249,174,33)" fg:x="18" fg:w="4"/><text x="4.6189%" y="815.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="5.0971%" y="789" width="0.2427%" height="15" fill="rgb(233,201,37)" fg:x="21" fg:w="1"/><text x="5.3471%" y="799.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="5.0971%" y="773" width="0.2427%" height="15" fill="rgb(221,78,26)" fg:x="21" fg:w="1"/><text x="5.3471%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="5.0971%" y="757" width="0.2427%" height="15" fill="rgb(250,127,30)" fg:x="21" fg:w="1"/><text x="5.3471%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="5.0971%" y="741" width="0.2427%" height="15" fill="rgb(230,49,44)" fg:x="21" fg:w="1"/><text x="5.3471%" y="751.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="5.0971%" y="725" width="0.2427%" height="15" fill="rgb(229,67,23)" fg:x="21" fg:w="1"/><text x="5.3471%" y="735.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="5.0971%" y="709" width="0.2427%" height="15" fill="rgb(249,83,47)" fg:x="21" fg:w="1"/><text x="5.3471%" y="719.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="5.0971%" y="693" width="0.2427%" height="15" fill="rgb(215,43,3)" fg:x="21" fg:w="1"/><text x="5.3471%" y="703.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="5.3398%" y="821" width="0.4854%" height="15" fill="rgb(238,154,13)" fg:x="22" fg:w="2"/><text x="5.5898%" y="831.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.49%)</title><rect x="5.3398%" y="805" width="0.4854%" height="15" fill="rgb(219,56,2)" fg:x="22" fg:w="2"/><text x="5.5898%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.49%)</title><rect x="5.3398%" y="789" width="0.4854%" height="15" fill="rgb(233,0,4)" fg:x="22" fg:w="2"/><text x="5.5898%" y="799.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.49%)</title><rect x="5.3398%" y="773" width="0.4854%" height="15" fill="rgb(235,30,7)" fg:x="22" fg:w="2"/><text x="5.5898%" y="783.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.49%)</title><rect x="5.3398%" y="757" width="0.4854%" height="15" fill="rgb(250,79,13)" fg:x="22" fg:w="2"/><text x="5.5898%" y="767.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.49%)</title><rect x="5.3398%" y="741" width="0.4854%" height="15" fill="rgb(211,146,34)" fg:x="22" fg:w="2"/><text x="5.5898%" y="751.50"></text></g><g><title>_int_malloc (2 samples, 0.49%)</title><rect x="5.3398%" y="725" width="0.4854%" height="15" fill="rgb(228,22,38)" fg:x="22" fg:w="2"/><text x="5.5898%" y="735.50"></text></g><g><title>unlink_chunk.isra.0 (1 samples, 0.24%)</title><rect x="5.5825%" y="709" width="0.2427%" height="15" fill="rgb(235,168,5)" fg:x="23" fg:w="1"/><text x="5.8325%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="5.8252%" y="805" width="0.2427%" height="15" fill="rgb(221,155,16)" fg:x="24" fg:w="1"/><text x="6.0752%" y="815.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="5.8252%" y="789" width="0.2427%" height="15" fill="rgb(215,215,53)" fg:x="24" fg:w="1"/><text x="6.0752%" y="799.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="5.8252%" y="773" width="0.2427%" height="15" fill="rgb(223,4,10)" fg:x="24" fg:w="1"/><text x="6.0752%" y="783.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="5.8252%" y="757" width="0.2427%" height="15" fill="rgb(234,103,6)" fg:x="24" fg:w="1"/><text x="6.0752%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="5.8252%" y="741" width="0.2427%" height="15" fill="rgb(227,97,0)" fg:x="24" fg:w="1"/><text x="6.0752%" y="751.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="5.8252%" y="725" width="0.2427%" height="15" fill="rgb(234,150,53)" fg:x="24" fg:w="1"/><text x="6.0752%" y="735.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="5.8252%" y="709" width="0.2427%" height="15" fill="rgb(228,201,54)" fg:x="24" fg:w="1"/><text x="6.0752%" y="719.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="5.8252%" y="693" width="0.2427%" height="15" fill="rgb(222,22,37)" fg:x="24" fg:w="1"/><text x="6.0752%" y="703.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="5.8252%" y="677" width="0.2427%" height="15" fill="rgb(237,53,32)" fg:x="24" fg:w="1"/><text x="6.0752%" y="687.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (8 samples, 1.94%)</title><rect x="4.3689%" y="837" width="1.9417%" height="15" fill="rgb(233,25,53)" fg:x="18" fg:w="8"/><text x="4.6189%" y="847.50">r..</text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="5.8252%" y="821" width="0.4854%" height="15" fill="rgb(210,40,34)" fg:x="24" fg:w="2"/><text x="6.0752%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="6.0680%" y="805" width="0.2427%" height="15" fill="rgb(241,220,44)" fg:x="25" fg:w="1"/><text x="6.3180%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.0680%" y="789" width="0.2427%" height="15" fill="rgb(235,28,35)" fg:x="25" fg:w="1"/><text x="6.3180%" y="799.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.0680%" y="773" width="0.2427%" height="15" fill="rgb(210,56,17)" fg:x="25" fg:w="1"/><text x="6.3180%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.0680%" y="757" width="0.2427%" height="15" fill="rgb(224,130,29)" fg:x="25" fg:w="1"/><text x="6.3180%" y="767.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="6.0680%" y="741" width="0.2427%" height="15" fill="rgb(235,212,8)" fg:x="25" fg:w="1"/><text x="6.3180%" y="751.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="6.0680%" y="725" width="0.2427%" height="15" fill="rgb(223,33,50)" fg:x="25" fg:w="1"/><text x="6.3180%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="6.0680%" y="709" width="0.2427%" height="15" fill="rgb(219,149,13)" fg:x="25" fg:w="1"/><text x="6.3180%" y="719.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="6.0680%" y="693" width="0.2427%" height="15" fill="rgb(250,156,29)" fg:x="25" fg:w="1"/><text x="6.3180%" y="703.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="6.0680%" y="677" width="0.2427%" height="15" fill="rgb(216,193,19)" fg:x="25" fg:w="1"/><text x="6.3180%" y="687.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="6.0680%" y="661" width="0.2427%" height="15" fill="rgb(216,135,14)" fg:x="25" fg:w="1"/><text x="6.3180%" y="671.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="6.0680%" y="645" width="0.2427%" height="15" fill="rgb(241,47,5)" fg:x="25" fg:w="1"/><text x="6.3180%" y="655.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="6.0680%" y="629" width="0.2427%" height="15" fill="rgb(233,42,35)" fg:x="25" fg:w="1"/><text x="6.3180%" y="639.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="6.0680%" y="613" width="0.2427%" height="15" fill="rgb(231,13,6)" fg:x="25" fg:w="1"/><text x="6.3180%" y="623.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (10 samples, 2.43%)</title><rect x="4.1262%" y="869" width="2.4272%" height="15" fill="rgb(207,181,40)" fg:x="17" fg:w="10"/><text x="4.3762%" y="879.50">re..</text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (10 samples, 2.43%)</title><rect x="4.1262%" y="853" width="2.4272%" height="15" fill="rgb(254,173,49)" fg:x="17" fg:w="10"/><text x="4.3762%" y="863.50">&lt;T..</text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="6.3107%" y="837" width="0.2427%" height="15" fill="rgb(221,1,38)" fg:x="26" fg:w="1"/><text x="6.5607%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="6.3107%" y="821" width="0.2427%" height="15" fill="rgb(206,124,46)" fg:x="26" fg:w="1"/><text x="6.5607%" y="831.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="6.3107%" y="805" width="0.2427%" height="15" fill="rgb(249,21,11)" fg:x="26" fg:w="1"/><text x="6.5607%" y="815.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="6.3107%" y="789" width="0.2427%" height="15" fill="rgb(222,201,40)" fg:x="26" fg:w="1"/><text x="6.5607%" y="799.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="6.3107%" y="773" width="0.2427%" height="15" fill="rgb(235,61,29)" fg:x="26" fg:w="1"/><text x="6.5607%" y="783.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::ForStmt&gt; for resast::stmt::ForStmt&gt;::from (1 samples, 0.24%)</title><rect x="6.5534%" y="869" width="0.2427%" height="15" fill="rgb(219,207,3)" fg:x="27" fg:w="1"/><text x="6.8034%" y="879.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="6.5534%" y="853" width="0.2427%" height="15" fill="rgb(222,56,46)" fg:x="27" fg:w="1"/><text x="6.8034%" y="863.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="6.5534%" y="837" width="0.2427%" height="15" fill="rgb(239,76,54)" fg:x="27" fg:w="1"/><text x="6.8034%" y="847.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::LoopInit&gt; for resast::stmt::LoopInit&gt;::from (1 samples, 0.24%)</title><rect x="6.5534%" y="821" width="0.2427%" height="15" fill="rgb(231,124,27)" fg:x="27" fg:w="1"/><text x="6.8034%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="6.5534%" y="805" width="0.2427%" height="15" fill="rgb(249,195,6)" fg:x="27" fg:w="1"/><text x="6.8034%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.5534%" y="789" width="0.2427%" height="15" fill="rgb(237,174,47)" fg:x="27" fg:w="1"/><text x="6.8034%" y="799.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.5534%" y="773" width="0.2427%" height="15" fill="rgb(206,201,31)" fg:x="27" fg:w="1"/><text x="6.8034%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="6.5534%" y="757" width="0.2427%" height="15" fill="rgb(231,57,52)" fg:x="27" fg:w="1"/><text x="6.8034%" y="767.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="6.5534%" y="741" width="0.2427%" height="15" fill="rgb(248,177,22)" fg:x="27" fg:w="1"/><text x="6.8034%" y="751.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="6.5534%" y="725" width="0.2427%" height="15" fill="rgb(215,211,37)" fg:x="27" fg:w="1"/><text x="6.8034%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="6.5534%" y="709" width="0.2427%" height="15" fill="rgb(241,128,51)" fg:x="27" fg:w="1"/><text x="6.8034%" y="719.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="6.5534%" y="693" width="0.2427%" height="15" fill="rgb(227,165,31)" fg:x="27" fg:w="1"/><text x="6.8034%" y="703.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="6.5534%" y="677" width="0.2427%" height="15" fill="rgb(228,167,24)" fg:x="27" fg:w="1"/><text x="6.8034%" y="687.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="6.5534%" y="661" width="0.2427%" height="15" fill="rgb(228,143,12)" fg:x="27" fg:w="1"/><text x="6.8034%" y="671.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="6.5534%" y="645" width="0.2427%" height="15" fill="rgb(249,149,8)" fg:x="27" fg:w="1"/><text x="6.8034%" y="655.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="6.5534%" y="629" width="0.2427%" height="15" fill="rgb(243,35,44)" fg:x="27" fg:w="1"/><text x="6.8034%" y="639.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="6.5534%" y="613" width="0.2427%" height="15" fill="rgb(246,89,9)" fg:x="27" fg:w="1"/><text x="6.8034%" y="623.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="6.7961%" y="853" width="0.4854%" height="15" fill="rgb(233,213,13)" fg:x="28" fg:w="2"/><text x="7.0461%" y="863.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="7.2816%" y="853" width="0.4854%" height="15" fill="rgb(233,141,41)" fg:x="30" fg:w="2"/><text x="7.5316%" y="863.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.49%)</title><rect x="7.2816%" y="837" width="0.4854%" height="15" fill="rgb(239,167,4)" fg:x="30" fg:w="2"/><text x="7.5316%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.49%)</title><rect x="7.2816%" y="821" width="0.4854%" height="15" fill="rgb(209,217,16)" fg:x="30" fg:w="2"/><text x="7.5316%" y="831.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.49%)</title><rect x="7.2816%" y="805" width="0.4854%" height="15" fill="rgb(219,88,35)" fg:x="30" fg:w="2"/><text x="7.5316%" y="815.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.49%)</title><rect x="7.2816%" y="789" width="0.4854%" height="15" fill="rgb(220,193,23)" fg:x="30" fg:w="2"/><text x="7.5316%" y="799.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.49%)</title><rect x="7.2816%" y="773" width="0.4854%" height="15" fill="rgb(230,90,52)" fg:x="30" fg:w="2"/><text x="7.5316%" y="783.50"></text></g><g><title>_int_malloc (2 samples, 0.49%)</title><rect x="7.2816%" y="757" width="0.4854%" height="15" fill="rgb(252,106,19)" fg:x="30" fg:w="2"/><text x="7.5316%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (17 samples, 4.13%)</title><rect x="3.8835%" y="885" width="4.1262%" height="15" fill="rgb(206,74,20)" fg:x="16" fg:w="17"/><text x="4.1335%" y="895.50">&lt;T a..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (5 samples, 1.21%)</title><rect x="6.7961%" y="869" width="1.2136%" height="15" fill="rgb(230,138,44)" fg:x="28" fg:w="5"/><text x="7.0461%" y="879.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="7.7670%" y="853" width="0.2427%" height="15" fill="rgb(235,182,43)" fg:x="32" fg:w="1"/><text x="8.0170%" y="863.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="7.7670%" y="837" width="0.2427%" height="15" fill="rgb(242,16,51)" fg:x="32" fg:w="1"/><text x="8.0170%" y="847.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="7.7670%" y="821" width="0.2427%" height="15" fill="rgb(248,9,4)" fg:x="32" fg:w="1"/><text x="8.0170%" y="831.50"></text></g><g><title>core::ops::function::FnMut::call_mut (31 samples, 7.52%)</title><rect x="0.7282%" y="949" width="7.5243%" height="15" fill="rgb(210,31,22)" fg:x="3" fg:w="31"/><text x="0.9782%" y="959.50">core::ops:..</text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::ProgramPart&gt; for resast::ProgramPart&gt;::from (31 samples, 7.52%)</title><rect x="0.7282%" y="933" width="7.5243%" height="15" fill="rgb(239,54,39)" fg:x="3" fg:w="31"/><text x="0.9782%" y="943.50">resast::sp..</text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (31 samples, 7.52%)</title><rect x="0.7282%" y="917" width="7.5243%" height="15" fill="rgb(230,99,41)" fg:x="3" fg:w="31"/><text x="0.9782%" y="927.50">&lt;T as core..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (18 samples, 4.37%)</title><rect x="3.8835%" y="901" width="4.3689%" height="15" fill="rgb(253,106,12)" fg:x="16" fg:w="18"/><text x="4.1335%" y="911.50">resas..</text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="8.0097%" y="885" width="0.2427%" height="15" fill="rgb(213,46,41)" fg:x="33" fg:w="1"/><text x="8.2597%" y="895.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="8.0097%" y="869" width="0.2427%" height="15" fill="rgb(215,133,35)" fg:x="33" fg:w="1"/><text x="8.2597%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="8.0097%" y="853" width="0.2427%" height="15" fill="rgb(213,28,5)" fg:x="33" fg:w="1"/><text x="8.2597%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="8.0097%" y="837" width="0.2427%" height="15" fill="rgb(215,77,49)" fg:x="33" fg:w="1"/><text x="8.2597%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="8.0097%" y="821" width="0.2427%" height="15" fill="rgb(248,100,22)" fg:x="33" fg:w="1"/><text x="8.2597%" y="831.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="8.0097%" y="805" width="0.2427%" height="15" fill="rgb(208,67,9)" fg:x="33" fg:w="1"/><text x="8.2597%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="8.0097%" y="789" width="0.2427%" height="15" fill="rgb(219,133,21)" fg:x="33" fg:w="1"/><text x="8.2597%" y="799.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="8.0097%" y="773" width="0.2427%" height="15" fill="rgb(246,46,29)" fg:x="33" fg:w="1"/><text x="8.2597%" y="783.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="8.0097%" y="757" width="0.2427%" height="15" fill="rgb(246,185,52)" fg:x="33" fg:w="1"/><text x="8.2597%" y="767.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="8.2524%" y="869" width="0.2427%" height="15" fill="rgb(252,136,11)" fg:x="34" fg:w="1"/><text x="8.5024%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (34 samples, 8.25%)</title><rect x="0.4854%" y="997" width="8.2524%" height="15" fill="rgb(219,138,53)" fg:x="2" fg:w="34"/><text x="0.7354%" y="1007.50">&lt;core::iter..</text></g><g><title>core::iter::traits::iterator::Iterator::fold (34 samples, 8.25%)</title><rect x="0.4854%" y="981" width="8.2524%" height="15" fill="rgb(211,51,23)" fg:x="2" fg:w="34"/><text x="0.7354%" y="991.50">core::iter:..</text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (34 samples, 8.25%)</title><rect x="0.4854%" y="965" width="8.2524%" height="15" fill="rgb(247,221,28)" fg:x="2" fg:w="34"/><text x="0.7354%" y="975.50">core::iter:..</text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (2 samples, 0.49%)</title><rect x="8.2524%" y="949" width="0.4854%" height="15" fill="rgb(251,222,45)" fg:x="34" fg:w="2"/><text x="8.5024%" y="959.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="8.2524%" y="933" width="0.4854%" height="15" fill="rgb(217,162,53)" fg:x="34" fg:w="2"/><text x="8.5024%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ObjProp&gt; for resast::expr::ObjProp&gt;::from (2 samples, 0.49%)</title><rect x="8.2524%" y="917" width="0.4854%" height="15" fill="rgb(229,93,14)" fg:x="34" fg:w="2"/><text x="8.5024%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="8.2524%" y="901" width="0.4854%" height="15" fill="rgb(209,67,49)" fg:x="34" fg:w="2"/><text x="8.5024%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Prop&gt; for resast::expr::Prop&gt;::from (2 samples, 0.49%)</title><rect x="8.2524%" y="885" width="0.4854%" height="15" fill="rgb(213,87,29)" fg:x="34" fg:w="2"/><text x="8.5024%" y="895.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="8.4951%" y="869" width="0.2427%" height="15" fill="rgb(205,151,52)" fg:x="35" fg:w="1"/><text x="8.7451%" y="879.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="8.4951%" y="853" width="0.2427%" height="15" fill="rgb(253,215,39)" fg:x="35" fg:w="1"/><text x="8.7451%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::PropValue&gt; for resast::expr::PropValue&gt;::from (1 samples, 0.24%)</title><rect x="8.4951%" y="837" width="0.2427%" height="15" fill="rgb(221,220,41)" fg:x="35" fg:w="1"/><text x="8.7451%" y="847.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="8.4951%" y="821" width="0.2427%" height="15" fill="rgb(218,133,21)" fg:x="35" fg:w="1"/><text x="8.7451%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="8.4951%" y="805" width="0.2427%" height="15" fill="rgb(221,193,43)" fg:x="35" fg:w="1"/><text x="8.7451%" y="815.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="8.4951%" y="789" width="0.2427%" height="15" fill="rgb(240,128,52)" fg:x="35" fg:w="1"/><text x="8.7451%" y="799.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="8.4951%" y="773" width="0.2427%" height="15" fill="rgb(253,114,12)" fg:x="35" fg:w="1"/><text x="8.7451%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="8.4951%" y="757" width="0.2427%" height="15" fill="rgb(215,223,47)" fg:x="35" fg:w="1"/><text x="8.7451%" y="767.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="8.4951%" y="741" width="0.2427%" height="15" fill="rgb(248,225,23)" fg:x="35" fg:w="1"/><text x="8.7451%" y="751.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="8.4951%" y="725" width="0.2427%" height="15" fill="rgb(250,108,0)" fg:x="35" fg:w="1"/><text x="8.7451%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="8.4951%" y="709" width="0.2427%" height="15" fill="rgb(228,208,7)" fg:x="35" fg:w="1"/><text x="8.7451%" y="719.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 samples, 0.24%)</title><rect x="8.4951%" y="693" width="0.2427%" height="15" fill="rgb(244,45,10)" fg:x="35" fg:w="1"/><text x="8.7451%" y="703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="8.4951%" y="677" width="0.2427%" height="15" fill="rgb(207,125,25)" fg:x="35" fg:w="1"/><text x="8.7451%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="8.4951%" y="661" width="0.2427%" height="15" fill="rgb(210,195,18)" fg:x="35" fg:w="1"/><text x="8.7451%" y="671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="8.4951%" y="645" width="0.2427%" height="15" fill="rgb(249,80,12)" fg:x="35" fg:w="1"/><text x="8.7451%" y="655.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="8.4951%" y="629" width="0.2427%" height="15" fill="rgb(221,65,9)" fg:x="35" fg:w="1"/><text x="8.7451%" y="639.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="8.4951%" y="613" width="0.2427%" height="15" fill="rgb(235,49,36)" fg:x="35" fg:w="1"/><text x="8.7451%" y="623.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="997" width="0.2427%" height="15" fill="rgb(225,32,20)" fg:x="36" fg:w="1"/><text x="8.9879%" y="1007.50"></text></g><g><title>&lt;resast::spanned::expr::BinaryExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="981" width="0.2427%" height="15" fill="rgb(215,141,46)" fg:x="36" fg:w="1"/><text x="8.9879%" y="991.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="965" width="0.2427%" height="15" fill="rgb(250,160,47)" fg:x="36" fg:w="1"/><text x="8.9879%" y="975.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="8.7379%" y="949" width="0.2427%" height="15" fill="rgb(216,222,40)" fg:x="36" fg:w="1"/><text x="8.9879%" y="959.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="933" width="0.2427%" height="15" fill="rgb(234,217,39)" fg:x="36" fg:w="1"/><text x="8.9879%" y="943.50"></text></g><g><title>&lt;resast::spanned::expr::CallExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="917" width="0.2427%" height="15" fill="rgb(207,178,40)" fg:x="36" fg:w="1"/><text x="8.9879%" y="927.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="901" width="0.2427%" height="15" fill="rgb(221,136,13)" fg:x="36" fg:w="1"/><text x="8.9879%" y="911.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="8.7379%" y="885" width="0.2427%" height="15" fill="rgb(249,199,10)" fg:x="36" fg:w="1"/><text x="8.9879%" y="895.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="869" width="0.2427%" height="15" fill="rgb(249,222,13)" fg:x="36" fg:w="1"/><text x="8.9879%" y="879.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="853" width="0.2427%" height="15" fill="rgb(244,185,38)" fg:x="36" fg:w="1"/><text x="8.9879%" y="863.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="837" width="0.2427%" height="15" fill="rgb(236,202,9)" fg:x="36" fg:w="1"/><text x="8.9879%" y="847.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="8.7379%" y="821" width="0.2427%" height="15" fill="rgb(250,229,37)" fg:x="36" fg:w="1"/><text x="8.9879%" y="831.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="805" width="0.2427%" height="15" fill="rgb(206,174,23)" fg:x="36" fg:w="1"/><text x="8.9879%" y="815.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="789" width="0.2427%" height="15" fill="rgb(211,33,43)" fg:x="36" fg:w="1"/><text x="8.9879%" y="799.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="8.7379%" y="773" width="0.2427%" height="15" fill="rgb(245,58,50)" fg:x="36" fg:w="1"/><text x="8.9879%" y="783.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (1 samples, 0.24%)</title><rect x="8.7379%" y="757" width="0.2427%" height="15" fill="rgb(244,68,36)" fg:x="36" fg:w="1"/><text x="8.9879%" y="767.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (1 samples, 0.24%)</title><rect x="8.7379%" y="741" width="0.2427%" height="15" fill="rgb(232,229,15)" fg:x="36" fg:w="1"/><text x="8.9879%" y="751.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="8.7379%" y="725" width="0.2427%" height="15" fill="rgb(254,30,23)" fg:x="36" fg:w="1"/><text x="8.9879%" y="735.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="8.7379%" y="709" width="0.2427%" height="15" fill="rgb(235,160,14)" fg:x="36" fg:w="1"/><text x="8.9879%" y="719.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="8.7379%" y="693" width="0.2427%" height="15" fill="rgb(212,155,44)" fg:x="36" fg:w="1"/><text x="8.9879%" y="703.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="8.7379%" y="677" width="0.2427%" height="15" fill="rgb(226,2,50)" fg:x="36" fg:w="1"/><text x="8.9879%" y="687.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="8.7379%" y="661" width="0.2427%" height="15" fill="rgb(234,177,6)" fg:x="36" fg:w="1"/><text x="8.9879%" y="671.50"></text></g><g><title>unlink_chunk.isra.0 (1 samples, 0.24%)</title><rect x="8.7379%" y="645" width="0.2427%" height="15" fill="rgb(217,24,9)" fg:x="36" fg:w="1"/><text x="8.9879%" y="655.50"></text></g><g><title>__rust_probestack (1 samples, 0.24%)</title><rect x="8.9806%" y="997" width="0.2427%" height="15" fill="rgb(220,13,46)" fg:x="37" fg:w="1"/><text x="9.2306%" y="1007.50"></text></g><g><title>__GI___libc_sigaction (2 samples, 0.49%)</title><rect x="9.4660%" y="981" width="0.4854%" height="15" fill="rgb(239,221,27)" fg:x="39" fg:w="2"/><text x="9.7160%" y="991.50"></text></g><g><title>[unknown] (2 samples, 0.49%)</title><rect x="9.4660%" y="965" width="0.4854%" height="15" fill="rgb(222,198,25)" fg:x="39" fg:w="2"/><text x="9.7160%" y="975.50"></text></g><g><title>[unknown] (2 samples, 0.49%)</title><rect x="9.4660%" y="949" width="0.4854%" height="15" fill="rgb(211,99,13)" fg:x="39" fg:w="2"/><text x="9.7160%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="9.7087%" y="933" width="0.2427%" height="15" fill="rgb(232,111,31)" fg:x="40" fg:w="1"/><text x="9.9587%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="9.7087%" y="917" width="0.2427%" height="15" fill="rgb(245,82,37)" fg:x="40" fg:w="1"/><text x="9.9587%" y="927.50"></text></g><g><title>__spawni_child (5 samples, 1.21%)</title><rect x="9.2233%" y="997" width="1.2136%" height="15" fill="rgb(227,149,46)" fg:x="38" fg:w="5"/><text x="9.4733%" y="1007.50"></text></g><g><title>__sigprocmask (2 samples, 0.49%)</title><rect x="9.9515%" y="981" width="0.4854%" height="15" fill="rgb(218,36,50)" fg:x="41" fg:w="2"/><text x="10.2015%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="10.1942%" y="965" width="0.2427%" height="15" fill="rgb(226,80,48)" fg:x="42" fg:w="1"/><text x="10.4442%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="10.1942%" y="949" width="0.2427%" height="15" fill="rgb(238,224,15)" fg:x="42" fg:w="1"/><text x="10.4442%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="917" width="0.2427%" height="15" fill="rgb(241,136,10)" fg:x="43" fg:w="1"/><text x="10.6869%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="901" width="0.2427%" height="15" fill="rgb(208,32,45)" fg:x="43" fg:w="1"/><text x="10.6869%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="885" width="0.2427%" height="15" fill="rgb(207,135,9)" fg:x="43" fg:w="1"/><text x="10.6869%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="869" width="0.2427%" height="15" fill="rgb(206,86,44)" fg:x="43" fg:w="1"/><text x="10.6869%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="853" width="0.2427%" height="15" fill="rgb(245,177,15)" fg:x="43" fg:w="1"/><text x="10.6869%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.4369%" y="837" width="0.2427%" height="15" fill="rgb(206,64,50)" fg:x="43" fg:w="1"/><text x="10.6869%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="821" width="0.2427%" height="15" fill="rgb(234,36,40)" fg:x="43" fg:w="1"/><text x="10.6869%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="805" width="0.2427%" height="15" fill="rgb(213,64,8)" fg:x="43" fg:w="1"/><text x="10.6869%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="789" width="0.2427%" height="15" fill="rgb(210,75,36)" fg:x="43" fg:w="1"/><text x="10.6869%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="773" width="0.2427%" height="15" fill="rgb(229,88,21)" fg:x="43" fg:w="1"/><text x="10.6869%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="757" width="0.2427%" height="15" fill="rgb(252,204,47)" fg:x="43" fg:w="1"/><text x="10.6869%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="741" width="0.2427%" height="15" fill="rgb(208,77,27)" fg:x="43" fg:w="1"/><text x="10.6869%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.4369%" y="725" width="0.2427%" height="15" fill="rgb(221,76,26)" fg:x="43" fg:w="1"/><text x="10.6869%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="709" width="0.2427%" height="15" fill="rgb(225,139,18)" fg:x="43" fg:w="1"/><text x="10.6869%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="693" width="0.2427%" height="15" fill="rgb(230,137,11)" fg:x="43" fg:w="1"/><text x="10.6869%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="677" width="0.2427%" height="15" fill="rgb(212,28,1)" fg:x="43" fg:w="1"/><text x="10.6869%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::decl::VarDecl&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="661" width="0.2427%" height="15" fill="rgb(248,164,17)" fg:x="43" fg:w="1"/><text x="10.6869%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.4369%" y="645" width="0.2427%" height="15" fill="rgb(222,171,42)" fg:x="43" fg:w="1"/><text x="10.6869%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::decl::VarDecl]&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="629" width="0.2427%" height="15" fill="rgb(243,84,45)" fg:x="43" fg:w="1"/><text x="10.6869%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="613" width="0.2427%" height="15" fill="rgb(252,49,23)" fg:x="43" fg:w="1"/><text x="10.6869%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="597" width="0.2427%" height="15" fill="rgb(215,19,7)" fg:x="43" fg:w="1"/><text x="10.6869%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="581" width="0.2427%" height="15" fill="rgb(238,81,41)" fg:x="43" fg:w="1"/><text x="10.6869%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="565" width="0.2427%" height="15" fill="rgb(210,199,37)" fg:x="43" fg:w="1"/><text x="10.6869%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.4369%" y="549" width="0.2427%" height="15" fill="rgb(244,192,49)" fg:x="43" fg:w="1"/><text x="10.6869%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="533" width="0.2427%" height="15" fill="rgb(226,211,11)" fg:x="43" fg:w="1"/><text x="10.6869%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="517" width="0.2427%" height="15" fill="rgb(236,162,54)" fg:x="43" fg:w="1"/><text x="10.6869%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="501" width="0.2427%" height="15" fill="rgb(220,229,9)" fg:x="43" fg:w="1"/><text x="10.6869%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="485" width="0.2427%" height="15" fill="rgb(250,87,22)" fg:x="43" fg:w="1"/><text x="10.6869%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="469" width="0.2427%" height="15" fill="rgb(239,43,17)" fg:x="43" fg:w="1"/><text x="10.6869%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="453" width="0.2427%" height="15" fill="rgb(231,177,25)" fg:x="43" fg:w="1"/><text x="10.6869%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="437" width="0.2427%" height="15" fill="rgb(219,179,1)" fg:x="43" fg:w="1"/><text x="10.6869%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.4369%" y="421" width="0.2427%" height="15" fill="rgb(238,219,53)" fg:x="43" fg:w="1"/><text x="10.6869%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="405" width="0.2427%" height="15" fill="rgb(232,167,36)" fg:x="43" fg:w="1"/><text x="10.6869%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="389" width="0.2427%" height="15" fill="rgb(244,19,51)" fg:x="43" fg:w="1"/><text x="10.6869%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::LogicalExpr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="373" width="0.2427%" height="15" fill="rgb(224,6,22)" fg:x="43" fg:w="1"/><text x="10.6869%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="357" width="0.2427%" height="15" fill="rgb(224,145,5)" fg:x="43" fg:w="1"/><text x="10.6869%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="341" width="0.2427%" height="15" fill="rgb(234,130,49)" fg:x="43" fg:w="1"/><text x="10.6869%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="325" width="0.2427%" height="15" fill="rgb(254,6,2)" fg:x="43" fg:w="1"/><text x="10.6869%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="309" width="0.2427%" height="15" fill="rgb(208,96,46)" fg:x="43" fg:w="1"/><text x="10.6869%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="293" width="0.2427%" height="15" fill="rgb(239,3,39)" fg:x="43" fg:w="1"/><text x="10.6869%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="277" width="0.2427%" height="15" fill="rgb(233,210,1)" fg:x="43" fg:w="1"/><text x="10.6869%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.4369%" y="261" width="0.2427%" height="15" fill="rgb(244,137,37)" fg:x="43" fg:w="1"/><text x="10.6869%" y="271.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="10.4369%" y="245" width="0.2427%" height="15" fill="rgb(240,136,2)" fg:x="43" fg:w="1"/><text x="10.6869%" y="255.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="10.4369%" y="229" width="0.2427%" height="15" fill="rgb(239,18,37)" fg:x="43" fg:w="1"/><text x="10.6869%" y="239.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="10.4369%" y="213" width="0.2427%" height="15" fill="rgb(218,185,22)" fg:x="43" fg:w="1"/><text x="10.6869%" y="223.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="10.4369%" y="197" width="0.2427%" height="15" fill="rgb(225,218,4)" fg:x="43" fg:w="1"/><text x="10.6869%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (2 samples, 0.49%)</title><rect x="10.4369%" y="933" width="0.4854%" height="15" fill="rgb(230,182,32)" fg:x="43" fg:w="2"/><text x="10.6869%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="917" width="0.2427%" height="15" fill="rgb(242,56,43)" fg:x="44" fg:w="1"/><text x="10.9296%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="901" width="0.2427%" height="15" fill="rgb(233,99,24)" fg:x="44" fg:w="1"/><text x="10.9296%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="885" width="0.2427%" height="15" fill="rgb(234,209,42)" fg:x="44" fg:w="1"/><text x="10.9296%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="869" width="0.2427%" height="15" fill="rgb(227,7,12)" fg:x="44" fg:w="1"/><text x="10.9296%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="853" width="0.2427%" height="15" fill="rgb(245,203,43)" fg:x="44" fg:w="1"/><text x="10.9296%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="837" width="0.2427%" height="15" fill="rgb(238,205,33)" fg:x="44" fg:w="1"/><text x="10.9296%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="821" width="0.2427%" height="15" fill="rgb(231,56,7)" fg:x="44" fg:w="1"/><text x="10.9296%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="805" width="0.2427%" height="15" fill="rgb(244,186,29)" fg:x="44" fg:w="1"/><text x="10.9296%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="789" width="0.2427%" height="15" fill="rgb(234,111,31)" fg:x="44" fg:w="1"/><text x="10.9296%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="773" width="0.2427%" height="15" fill="rgb(241,149,10)" fg:x="44" fg:w="1"/><text x="10.9296%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="757" width="0.2427%" height="15" fill="rgb(249,206,44)" fg:x="44" fg:w="1"/><text x="10.9296%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="741" width="0.2427%" height="15" fill="rgb(251,153,30)" fg:x="44" fg:w="1"/><text x="10.9296%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="725" width="0.2427%" height="15" fill="rgb(239,152,38)" fg:x="44" fg:w="1"/><text x="10.9296%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="709" width="0.2427%" height="15" fill="rgb(249,139,47)" fg:x="44" fg:w="1"/><text x="10.9296%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="693" width="0.2427%" height="15" fill="rgb(244,64,35)" fg:x="44" fg:w="1"/><text x="10.9296%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="677" width="0.2427%" height="15" fill="rgb(216,46,15)" fg:x="44" fg:w="1"/><text x="10.9296%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="661" width="0.2427%" height="15" fill="rgb(250,74,19)" fg:x="44" fg:w="1"/><text x="10.9296%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::DoWhileStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="645" width="0.2427%" height="15" fill="rgb(249,42,33)" fg:x="44" fg:w="1"/><text x="10.9296%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="629" width="0.2427%" height="15" fill="rgb(242,149,17)" fg:x="44" fg:w="1"/><text x="10.9296%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="613" width="0.2427%" height="15" fill="rgb(244,29,21)" fg:x="44" fg:w="1"/><text x="10.9296%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="597" width="0.2427%" height="15" fill="rgb(220,130,37)" fg:x="44" fg:w="1"/><text x="10.9296%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="581" width="0.2427%" height="15" fill="rgb(211,67,2)" fg:x="44" fg:w="1"/><text x="10.9296%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="565" width="0.2427%" height="15" fill="rgb(235,68,52)" fg:x="44" fg:w="1"/><text x="10.9296%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="549" width="0.2427%" height="15" fill="rgb(246,142,3)" fg:x="44" fg:w="1"/><text x="10.9296%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="533" width="0.2427%" height="15" fill="rgb(241,25,7)" fg:x="44" fg:w="1"/><text x="10.9296%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="517" width="0.2427%" height="15" fill="rgb(242,119,39)" fg:x="44" fg:w="1"/><text x="10.9296%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="501" width="0.2427%" height="15" fill="rgb(241,98,45)" fg:x="44" fg:w="1"/><text x="10.9296%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="485" width="0.2427%" height="15" fill="rgb(254,28,30)" fg:x="44" fg:w="1"/><text x="10.9296%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="469" width="0.2427%" height="15" fill="rgb(241,142,54)" fg:x="44" fg:w="1"/><text x="10.9296%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="453" width="0.2427%" height="15" fill="rgb(222,85,15)" fg:x="44" fg:w="1"/><text x="10.9296%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="437" width="0.2427%" height="15" fill="rgb(210,85,47)" fg:x="44" fg:w="1"/><text x="10.9296%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="421" width="0.2427%" height="15" fill="rgb(224,206,25)" fg:x="44" fg:w="1"/><text x="10.9296%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="405" width="0.2427%" height="15" fill="rgb(243,201,19)" fg:x="44" fg:w="1"/><text x="10.9296%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="389" width="0.2427%" height="15" fill="rgb(236,59,4)" fg:x="44" fg:w="1"/><text x="10.9296%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="373" width="0.2427%" height="15" fill="rgb(254,179,45)" fg:x="44" fg:w="1"/><text x="10.9296%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="357" width="0.2427%" height="15" fill="rgb(226,14,10)" fg:x="44" fg:w="1"/><text x="10.9296%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="341" width="0.2427%" height="15" fill="rgb(244,27,41)" fg:x="44" fg:w="1"/><text x="10.9296%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="325" width="0.2427%" height="15" fill="rgb(235,35,32)" fg:x="44" fg:w="1"/><text x="10.9296%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="309" width="0.2427%" height="15" fill="rgb(218,68,31)" fg:x="44" fg:w="1"/><text x="10.9296%" y="319.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.6796%" y="293" width="0.2427%" height="15" fill="rgb(207,120,37)" fg:x="44" fg:w="1"/><text x="10.9296%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="277" width="0.2427%" height="15" fill="rgb(227,98,0)" fg:x="44" fg:w="1"/><text x="10.9296%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="261" width="0.2427%" height="15" fill="rgb(207,7,3)" fg:x="44" fg:w="1"/><text x="10.9296%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="245" width="0.2427%" height="15" fill="rgb(206,98,19)" fg:x="44" fg:w="1"/><text x="10.9296%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignLeft&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="229" width="0.2427%" height="15" fill="rgb(217,5,26)" fg:x="44" fg:w="1"/><text x="10.9296%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="213" width="0.2427%" height="15" fill="rgb(235,190,38)" fg:x="44" fg:w="1"/><text x="10.9296%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="197" width="0.2427%" height="15" fill="rgb(247,86,24)" fg:x="44" fg:w="1"/><text x="10.9296%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::MemberExpr&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="181" width="0.2427%" height="15" fill="rgb(205,101,16)" fg:x="44" fg:w="1"/><text x="10.9296%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.6796%" y="165" width="0.2427%" height="15" fill="rgb(246,168,33)" fg:x="44" fg:w="1"/><text x="10.9296%" y="175.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="10.6796%" y="149" width="0.2427%" height="15" fill="rgb(231,114,1)" fg:x="44" fg:w="1"/><text x="10.9296%" y="159.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="10.6796%" y="133" width="0.2427%" height="15" fill="rgb(207,184,53)" fg:x="44" fg:w="1"/><text x="10.9296%" y="143.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="10.6796%" y="117" width="0.2427%" height="15" fill="rgb(224,95,51)" fg:x="44" fg:w="1"/><text x="10.9296%" y="127.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="10.6796%" y="101" width="0.2427%" height="15" fill="rgb(212,188,45)" fg:x="44" fg:w="1"/><text x="10.9296%" y="111.50"></text></g><g><title>criterion::Bencher&lt;M&gt;::iter (3 samples, 0.73%)</title><rect x="10.4369%" y="997" width="0.7282%" height="15" fill="rgb(223,154,38)" fg:x="43" fg:w="3"/><text x="10.6869%" y="1007.50"></text></g><g><title>major_libs::bench::{{closure}}::{{closure}} (3 samples, 0.73%)</title><rect x="10.4369%" y="981" width="0.7282%" height="15" fill="rgb(251,22,52)" fg:x="43" fg:w="3"/><text x="10.6869%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (3 samples, 0.73%)</title><rect x="10.4369%" y="965" width="0.7282%" height="15" fill="rgb(229,209,22)" fg:x="43" fg:w="3"/><text x="10.6869%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (3 samples, 0.73%)</title><rect x="10.4369%" y="949" width="0.7282%" height="15" fill="rgb(234,138,34)" fg:x="43" fg:w="3"/><text x="10.6869%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::UnaryExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="933" width="0.2427%" height="15" fill="rgb(212,95,11)" fg:x="45" fg:w="1"/><text x="11.1723%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="917" width="0.2427%" height="15" fill="rgb(240,179,47)" fg:x="45" fg:w="1"/><text x="11.1723%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="901" width="0.2427%" height="15" fill="rgb(240,163,11)" fg:x="45" fg:w="1"/><text x="11.1723%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="885" width="0.2427%" height="15" fill="rgb(236,37,12)" fg:x="45" fg:w="1"/><text x="11.1723%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="869" width="0.2427%" height="15" fill="rgb(232,164,16)" fg:x="45" fg:w="1"/><text x="11.1723%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="853" width="0.2427%" height="15" fill="rgb(244,205,15)" fg:x="45" fg:w="1"/><text x="11.1723%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="837" width="0.2427%" height="15" fill="rgb(223,117,47)" fg:x="45" fg:w="1"/><text x="11.1723%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="821" width="0.2427%" height="15" fill="rgb(244,107,35)" fg:x="45" fg:w="1"/><text x="11.1723%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="805" width="0.2427%" height="15" fill="rgb(205,140,8)" fg:x="45" fg:w="1"/><text x="11.1723%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="789" width="0.2427%" height="15" fill="rgb(228,84,46)" fg:x="45" fg:w="1"/><text x="11.1723%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="773" width="0.2427%" height="15" fill="rgb(254,188,9)" fg:x="45" fg:w="1"/><text x="11.1723%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="757" width="0.2427%" height="15" fill="rgb(206,112,54)" fg:x="45" fg:w="1"/><text x="11.1723%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="741" width="0.2427%" height="15" fill="rgb(216,84,49)" fg:x="45" fg:w="1"/><text x="11.1723%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="725" width="0.2427%" height="15" fill="rgb(214,194,35)" fg:x="45" fg:w="1"/><text x="11.1723%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="709" width="0.2427%" height="15" fill="rgb(249,28,3)" fg:x="45" fg:w="1"/><text x="11.1723%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="693" width="0.2427%" height="15" fill="rgb(222,56,52)" fg:x="45" fg:w="1"/><text x="11.1723%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="677" width="0.2427%" height="15" fill="rgb(245,217,50)" fg:x="45" fg:w="1"/><text x="11.1723%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="661" width="0.2427%" height="15" fill="rgb(213,201,24)" fg:x="45" fg:w="1"/><text x="11.1723%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="645" width="0.2427%" height="15" fill="rgb(248,116,28)" fg:x="45" fg:w="1"/><text x="11.1723%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="629" width="0.2427%" height="15" fill="rgb(219,72,43)" fg:x="45" fg:w="1"/><text x="11.1723%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="613" width="0.2427%" height="15" fill="rgb(209,138,14)" fg:x="45" fg:w="1"/><text x="11.1723%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="597" width="0.2427%" height="15" fill="rgb(222,18,33)" fg:x="45" fg:w="1"/><text x="11.1723%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="581" width="0.2427%" height="15" fill="rgb(213,199,7)" fg:x="45" fg:w="1"/><text x="11.1723%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::ObjProp&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="565" width="0.2427%" height="15" fill="rgb(250,110,10)" fg:x="45" fg:w="1"/><text x="11.1723%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="549" width="0.2427%" height="15" fill="rgb(248,123,6)" fg:x="45" fg:w="1"/><text x="11.1723%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::ObjProp]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="533" width="0.2427%" height="15" fill="rgb(206,91,31)" fg:x="45" fg:w="1"/><text x="11.1723%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::ObjProp&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="517" width="0.2427%" height="15" fill="rgb(211,154,13)" fg:x="45" fg:w="1"/><text x="11.1723%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="501" width="0.2427%" height="15" fill="rgb(225,148,7)" fg:x="45" fg:w="1"/><text x="11.1723%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="485" width="0.2427%" height="15" fill="rgb(220,160,43)" fg:x="45" fg:w="1"/><text x="11.1723%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="469" width="0.2427%" height="15" fill="rgb(213,52,39)" fg:x="45" fg:w="1"/><text x="11.1723%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="453" width="0.2427%" height="15" fill="rgb(243,137,7)" fg:x="45" fg:w="1"/><text x="11.1723%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="10.9223%" y="437" width="0.2427%" height="15" fill="rgb(230,79,13)" fg:x="45" fg:w="1"/><text x="11.1723%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="421" width="0.2427%" height="15" fill="rgb(247,105,23)" fg:x="45" fg:w="1"/><text x="11.1723%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="405" width="0.2427%" height="15" fill="rgb(223,179,41)" fg:x="45" fg:w="1"/><text x="11.1723%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::LogicalExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="389" width="0.2427%" height="15" fill="rgb(218,9,34)" fg:x="45" fg:w="1"/><text x="11.1723%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="373" width="0.2427%" height="15" fill="rgb(222,106,8)" fg:x="45" fg:w="1"/><text x="11.1723%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="357" width="0.2427%" height="15" fill="rgb(211,220,0)" fg:x="45" fg:w="1"/><text x="11.1723%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::LogicalExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="341" width="0.2427%" height="15" fill="rgb(229,52,16)" fg:x="45" fg:w="1"/><text x="11.1723%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="325" width="0.2427%" height="15" fill="rgb(212,155,18)" fg:x="45" fg:w="1"/><text x="11.1723%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="309" width="0.2427%" height="15" fill="rgb(242,21,14)" fg:x="45" fg:w="1"/><text x="11.1723%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::LogicalExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="293" width="0.2427%" height="15" fill="rgb(222,19,48)" fg:x="45" fg:w="1"/><text x="11.1723%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="277" width="0.2427%" height="15" fill="rgb(232,45,27)" fg:x="45" fg:w="1"/><text x="11.1723%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="261" width="0.2427%" height="15" fill="rgb(249,103,42)" fg:x="45" fg:w="1"/><text x="11.1723%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::BinaryExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="245" width="0.2427%" height="15" fill="rgb(246,81,33)" fg:x="45" fg:w="1"/><text x="11.1723%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="229" width="0.2427%" height="15" fill="rgb(252,33,42)" fg:x="45" fg:w="1"/><text x="11.1723%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="213" width="0.2427%" height="15" fill="rgb(209,212,41)" fg:x="45" fg:w="1"/><text x="11.1723%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::UpdateExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="197" width="0.2427%" height="15" fill="rgb(207,154,6)" fg:x="45" fg:w="1"/><text x="11.1723%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="181" width="0.2427%" height="15" fill="rgb(223,64,47)" fg:x="45" fg:w="1"/><text x="11.1723%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="165" width="0.2427%" height="15" fill="rgb(211,161,38)" fg:x="45" fg:w="1"/><text x="11.1723%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::MemberExpr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="149" width="0.2427%" height="15" fill="rgb(219,138,40)" fg:x="45" fg:w="1"/><text x="11.1723%" y="159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="133" width="0.2427%" height="15" fill="rgb(241,228,46)" fg:x="45" fg:w="1"/><text x="11.1723%" y="143.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="117" width="0.2427%" height="15" fill="rgb(223,209,38)" fg:x="45" fg:w="1"/><text x="11.1723%" y="127.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Ident&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="101" width="0.2427%" height="15" fill="rgb(236,164,45)" fg:x="45" fg:w="1"/><text x="11.1723%" y="111.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::borrow::Cow&lt;str&gt;&gt; (1 samples, 0.24%)</title><rect x="10.9223%" y="85" width="0.2427%" height="15" fill="rgb(231,15,5)" fg:x="45" fg:w="1"/><text x="11.1723%" y="95.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="11.1650%" y="229" width="0.2427%" height="15" fill="rgb(252,35,15)" fg:x="46" fg:w="1"/><text x="11.4150%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="213" width="0.2427%" height="15" fill="rgb(248,181,18)" fg:x="46" fg:w="1"/><text x="11.4150%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="197" width="0.2427%" height="15" fill="rgb(233,39,42)" fg:x="46" fg:w="1"/><text x="11.4150%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="181" width="0.2427%" height="15" fill="rgb(238,110,33)" fg:x="46" fg:w="1"/><text x="11.4150%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="165" width="0.2427%" height="15" fill="rgb(233,195,10)" fg:x="46" fg:w="1"/><text x="11.4150%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="149" width="0.2427%" height="15" fill="rgb(254,105,3)" fg:x="46" fg:w="1"/><text x="11.4150%" y="159.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="133" width="0.2427%" height="15" fill="rgb(221,225,9)" fg:x="46" fg:w="1"/><text x="11.4150%" y="143.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="11.1650%" y="117" width="0.2427%" height="15" fill="rgb(224,227,45)" fg:x="46" fg:w="1"/><text x="11.4150%" y="127.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="101" width="0.2427%" height="15" fill="rgb(229,198,43)" fg:x="46" fg:w="1"/><text x="11.4150%" y="111.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="85" width="0.2427%" height="15" fill="rgb(206,209,35)" fg:x="46" fg:w="1"/><text x="11.4150%" y="95.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="69" width="0.2427%" height="15" fill="rgb(245,195,53)" fg:x="46" fg:w="1"/><text x="11.4150%" y="79.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="11.1650%" y="53" width="0.2427%" height="15" fill="rgb(240,92,26)" fg:x="46" fg:w="1"/><text x="11.4150%" y="63.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="645" width="0.4854%" height="15" fill="rgb(207,40,23)" fg:x="46" fg:w="2"/><text x="11.4150%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="629" width="0.4854%" height="15" fill="rgb(223,111,35)" fg:x="46" fg:w="2"/><text x="11.4150%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="613" width="0.4854%" height="15" fill="rgb(229,147,28)" fg:x="46" fg:w="2"/><text x="11.4150%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="597" width="0.4854%" height="15" fill="rgb(211,29,28)" fg:x="46" fg:w="2"/><text x="11.4150%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="581" width="0.4854%" height="15" fill="rgb(228,72,33)" fg:x="46" fg:w="2"/><text x="11.4150%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.49%)</title><rect x="11.1650%" y="565" width="0.4854%" height="15" fill="rgb(205,214,31)" fg:x="46" fg:w="2"/><text x="11.4150%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="549" width="0.4854%" height="15" fill="rgb(224,111,15)" fg:x="46" fg:w="2"/><text x="11.4150%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="533" width="0.4854%" height="15" fill="rgb(253,21,26)" fg:x="46" fg:w="2"/><text x="11.4150%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="517" width="0.4854%" height="15" fill="rgb(245,139,43)" fg:x="46" fg:w="2"/><text x="11.4150%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="501" width="0.4854%" height="15" fill="rgb(252,170,7)" fg:x="46" fg:w="2"/><text x="11.4150%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="485" width="0.4854%" height="15" fill="rgb(231,118,14)" fg:x="46" fg:w="2"/><text x="11.4150%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="469" width="0.4854%" height="15" fill="rgb(238,83,0)" fg:x="46" fg:w="2"/><text x="11.4150%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.49%)</title><rect x="11.1650%" y="453" width="0.4854%" height="15" fill="rgb(221,39,39)" fg:x="46" fg:w="2"/><text x="11.4150%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="437" width="0.4854%" height="15" fill="rgb(222,119,46)" fg:x="46" fg:w="2"/><text x="11.4150%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="421" width="0.4854%" height="15" fill="rgb(222,165,49)" fg:x="46" fg:w="2"/><text x="11.4150%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="405" width="0.4854%" height="15" fill="rgb(219,113,52)" fg:x="46" fg:w="2"/><text x="11.4150%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="389" width="0.4854%" height="15" fill="rgb(214,7,15)" fg:x="46" fg:w="2"/><text x="11.4150%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="373" width="0.4854%" height="15" fill="rgb(235,32,4)" fg:x="46" fg:w="2"/><text x="11.4150%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;core::option::Option&lt;resast::expr::Expr&gt;&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="357" width="0.4854%" height="15" fill="rgb(238,90,54)" fg:x="46" fg:w="2"/><text x="11.4150%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.49%)</title><rect x="11.1650%" y="341" width="0.4854%" height="15" fill="rgb(213,208,19)" fg:x="46" fg:w="2"/><text x="11.4150%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;[core::option::Option&lt;resast::expr::Expr&gt;]&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="325" width="0.4854%" height="15" fill="rgb(233,156,4)" fg:x="46" fg:w="2"/><text x="11.4150%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;resast::expr::Expr&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="309" width="0.4854%" height="15" fill="rgb(207,194,5)" fg:x="46" fg:w="2"/><text x="11.4150%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="293" width="0.4854%" height="15" fill="rgb(206,111,30)" fg:x="46" fg:w="2"/><text x="11.4150%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="277" width="0.4854%" height="15" fill="rgb(243,70,54)" fg:x="46" fg:w="2"/><text x="11.4150%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="261" width="0.4854%" height="15" fill="rgb(242,28,8)" fg:x="46" fg:w="2"/><text x="11.4150%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (2 samples, 0.49%)</title><rect x="11.1650%" y="245" width="0.4854%" height="15" fill="rgb(219,106,18)" fg:x="46" fg:w="2"/><text x="11.4150%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="11.4078%" y="229" width="0.2427%" height="15" fill="rgb(244,222,10)" fg:x="47" fg:w="1"/><text x="11.6578%" y="239.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="11.4078%" y="213" width="0.2427%" height="15" fill="rgb(236,179,52)" fg:x="47" fg:w="1"/><text x="11.6578%" y="223.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (1 samples, 0.24%)</title><rect x="11.4078%" y="197" width="0.2427%" height="15" fill="rgb(213,23,39)" fg:x="47" fg:w="1"/><text x="11.6578%" y="207.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="11.6505%" y="389" width="0.2427%" height="15" fill="rgb(238,48,10)" fg:x="48" fg:w="1"/><text x="11.9005%" y="399.50"></text></g><g><title>malloc_consolidate (1 samples, 0.24%)</title><rect x="11.6505%" y="373" width="0.2427%" height="15" fill="rgb(251,196,23)" fg:x="48" fg:w="1"/><text x="11.9005%" y="383.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="11.8932%" y="277" width="0.2427%" height="15" fill="rgb(250,152,24)" fg:x="49" fg:w="1"/><text x="12.1432%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (2 samples, 0.49%)</title><rect x="11.8932%" y="373" width="0.4854%" height="15" fill="rgb(209,150,17)" fg:x="49" fg:w="2"/><text x="12.1432%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (2 samples, 0.49%)</title><rect x="11.8932%" y="357" width="0.4854%" height="15" fill="rgb(234,202,34)" fg:x="49" fg:w="2"/><text x="12.1432%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.49%)</title><rect x="11.8932%" y="341" width="0.4854%" height="15" fill="rgb(253,148,53)" fg:x="49" fg:w="2"/><text x="12.1432%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (2 samples, 0.49%)</title><rect x="11.8932%" y="325" width="0.4854%" height="15" fill="rgb(218,129,16)" fg:x="49" fg:w="2"/><text x="12.1432%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (2 samples, 0.49%)</title><rect x="11.8932%" y="309" width="0.4854%" height="15" fill="rgb(216,85,19)" fg:x="49" fg:w="2"/><text x="12.1432%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (2 samples, 0.49%)</title><rect x="11.8932%" y="293" width="0.4854%" height="15" fill="rgb(235,228,7)" fg:x="49" fg:w="2"/><text x="12.1432%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="277" width="0.2427%" height="15" fill="rgb(245,175,0)" fg:x="50" fg:w="1"/><text x="12.3859%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::LogicalExpr&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="261" width="0.2427%" height="15" fill="rgb(208,168,36)" fg:x="50" fg:w="1"/><text x="12.3859%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="245" width="0.2427%" height="15" fill="rgb(246,171,24)" fg:x="50" fg:w="1"/><text x="12.3859%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="229" width="0.2427%" height="15" fill="rgb(215,142,24)" fg:x="50" fg:w="1"/><text x="12.3859%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::BinaryExpr&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="213" width="0.2427%" height="15" fill="rgb(250,187,7)" fg:x="50" fg:w="1"/><text x="12.3859%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="197" width="0.2427%" height="15" fill="rgb(228,66,33)" fg:x="50" fg:w="1"/><text x="12.3859%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Lit&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="181" width="0.2427%" height="15" fill="rgb(234,215,21)" fg:x="50" fg:w="1"/><text x="12.3859%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::StringLit&gt; (1 samples, 0.24%)</title><rect x="12.1359%" y="165" width="0.2427%" height="15" fill="rgb(222,191,20)" fg:x="50" fg:w="1"/><text x="12.3859%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="501" width="0.9709%" height="15" fill="rgb(245,79,54)" fg:x="48" fg:w="4"/><text x="11.9005%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="485" width="0.9709%" height="15" fill="rgb(240,10,37)" fg:x="48" fg:w="4"/><text x="11.9005%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="469" width="0.9709%" height="15" fill="rgb(214,192,32)" fg:x="48" fg:w="4"/><text x="11.9005%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="453" width="0.9709%" height="15" fill="rgb(209,36,54)" fg:x="48" fg:w="4"/><text x="11.9005%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="437" width="0.9709%" height="15" fill="rgb(220,10,11)" fg:x="48" fg:w="4"/><text x="11.9005%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.97%)</title><rect x="11.6505%" y="421" width="0.9709%" height="15" fill="rgb(221,106,17)" fg:x="48" fg:w="4"/><text x="11.9005%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (4 samples, 0.97%)</title><rect x="11.6505%" y="405" width="0.9709%" height="15" fill="rgb(251,142,44)" fg:x="48" fg:w="4"/><text x="11.9005%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (3 samples, 0.73%)</title><rect x="11.8932%" y="389" width="0.7282%" height="15" fill="rgb(238,13,15)" fg:x="49" fg:w="3"/><text x="12.1432%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="12.3786%" y="373" width="0.2427%" height="15" fill="rgb(208,107,27)" fg:x="51" fg:w="1"/><text x="12.6286%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="12.3786%" y="357" width="0.2427%" height="15" fill="rgb(205,136,37)" fg:x="51" fg:w="1"/><text x="12.6286%" y="367.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="12.3786%" y="341" width="0.2427%" height="15" fill="rgb(250,205,27)" fg:x="51" fg:w="1"/><text x="12.6286%" y="351.50"></text></g><g><title>unlink_chunk.isra.0 (1 samples, 0.24%)</title><rect x="12.3786%" y="325" width="0.2427%" height="15" fill="rgb(210,80,43)" fg:x="51" fg:w="1"/><text x="12.6286%" y="335.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (7 samples, 1.70%)</title><rect x="11.1650%" y="997" width="1.6990%" height="15" fill="rgb(247,160,36)" fg:x="46" fg:w="7"/><text x="11.4150%" y="1007.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::run_bench (7 samples, 1.70%)</title><rect x="11.1650%" y="981" width="1.6990%" height="15" fill="rgb(234,13,49)" fg:x="46" fg:w="7"/><text x="11.4150%" y="991.50"></text></g><g><title>criterion::analysis::common (7 samples, 1.70%)</title><rect x="11.1650%" y="965" width="1.6990%" height="15" fill="rgb(234,122,0)" fg:x="46" fg:w="7"/><text x="11.4150%" y="975.50"></text></g><g><title>criterion::routine::Routine::test (7 samples, 1.70%)</title><rect x="11.1650%" y="949" width="1.6990%" height="15" fill="rgb(207,146,38)" fg:x="46" fg:w="7"/><text x="11.4150%" y="959.50"></text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::bench (7 samples, 1.70%)</title><rect x="11.1650%" y="933" width="1.6990%" height="15" fill="rgb(207,177,25)" fg:x="46" fg:w="7"/><text x="11.4150%" y="943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (7 samples, 1.70%)</title><rect x="11.1650%" y="917" width="1.6990%" height="15" fill="rgb(211,178,42)" fg:x="46" fg:w="7"/><text x="11.4150%" 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 (7 samples, 1.70%)</title><rect x="11.1650%" y="901" width="1.6990%" height="15" fill="rgb(230,69,54)" fg:x="46" fg:w="7"/><text x="11.4150%" 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 (7 samples, 1.70%)</title><rect x="11.1650%" y="885" width="1.6990%" height="15" fill="rgb(214,135,41)" fg:x="46" fg:w="7"/><text x="11.4150%" 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 (7 samples, 1.70%)</title><rect x="11.1650%" y="869" width="1.6990%" height="15" fill="rgb(237,67,25)" fg:x="46" fg:w="7"/><text x="11.4150%" y="879.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 (7 samples, 1.70%)</title><rect x="11.1650%" y="853" width="1.6990%" height="15" fill="rgb(222,189,50)" fg:x="46" fg:w="7"/><text x="11.4150%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (7 samples, 1.70%)</title><rect x="11.1650%" y="837" width="1.6990%" height="15" fill="rgb(245,148,34)" fg:x="46" fg:w="7"/><text x="11.4150%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 1.70%)</title><rect x="11.1650%" y="821" width="1.6990%" height="15" fill="rgb(222,29,6)" fg:x="46" fg:w="7"/><text x="11.4150%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 1.70%)</title><rect x="11.1650%" y="805" width="1.6990%" height="15" fill="rgb(221,189,43)" fg:x="46" fg:w="7"/><text x="11.4150%" y="815.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (7 samples, 1.70%)</title><rect x="11.1650%" y="789" width="1.6990%" height="15" fill="rgb(207,36,27)" fg:x="46" fg:w="7"/><text x="11.4150%" y="799.50"></text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::bench::{{closure}} (7 samples, 1.70%)</title><rect x="11.1650%" y="773" width="1.6990%" height="15" fill="rgb(217,90,24)" fg:x="46" fg:w="7"/><text x="11.4150%" y="783.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function::{{closure}} (7 samples, 1.70%)</title><rect x="11.1650%" y="757" width="1.6990%" height="15" fill="rgb(224,66,35)" fg:x="46" fg:w="7"/><text x="11.4150%" y="767.50"></text></g><g><title>major_libs::bench::{{closure}} (7 samples, 1.70%)</title><rect x="11.1650%" y="741" width="1.6990%" height="15" fill="rgb(221,13,50)" fg:x="46" fg:w="7"/><text x="11.4150%" y="751.50"></text></g><g><title>criterion::Bencher&lt;M&gt;::iter (7 samples, 1.70%)</title><rect x="11.1650%" y="725" width="1.6990%" height="15" fill="rgb(236,68,49)" fg:x="46" fg:w="7"/><text x="11.4150%" y="735.50"></text></g><g><title>major_libs::bench::{{closure}}::{{closure}} (7 samples, 1.70%)</title><rect x="11.1650%" y="709" width="1.6990%" height="15" fill="rgb(229,146,28)" fg:x="46" fg:w="7"/><text x="11.4150%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (7 samples, 1.70%)</title><rect x="11.1650%" y="693" width="1.6990%" height="15" fill="rgb(225,31,38)" fg:x="46" fg:w="7"/><text x="11.4150%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (7 samples, 1.70%)</title><rect x="11.1650%" y="677" width="1.6990%" height="15" fill="rgb(250,208,3)" fg:x="46" fg:w="7"/><text x="11.4150%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (7 samples, 1.70%)</title><rect x="11.1650%" y="661" width="1.6990%" height="15" fill="rgb(246,54,23)" fg:x="46" fg:w="7"/><text x="11.4150%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="645" width="1.2136%" height="15" fill="rgb(243,76,11)" fg:x="48" fg:w="5"/><text x="11.9005%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 1.21%)</title><rect x="11.6505%" y="629" width="1.2136%" height="15" fill="rgb(245,21,50)" fg:x="48" fg:w="5"/><text x="11.9005%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="613" width="1.2136%" height="15" fill="rgb(228,9,43)" fg:x="48" fg:w="5"/><text x="11.9005%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="597" width="1.2136%" height="15" fill="rgb(208,100,47)" fg:x="48" fg:w="5"/><text x="11.9005%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="581" width="1.2136%" height="15" fill="rgb(232,26,8)" fg:x="48" fg:w="5"/><text x="11.9005%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="565" width="1.2136%" height="15" fill="rgb(216,166,38)" fg:x="48" fg:w="5"/><text x="11.9005%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="549" width="1.2136%" height="15" fill="rgb(251,202,51)" fg:x="48" fg:w="5"/><text x="11.9005%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 1.21%)</title><rect x="11.6505%" y="533" width="1.2136%" height="15" fill="rgb(254,216,34)" fg:x="48" fg:w="5"/><text x="11.9005%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (5 samples, 1.21%)</title><rect x="11.6505%" y="517" width="1.2136%" height="15" fill="rgb(251,32,27)" fg:x="48" fg:w="5"/><text x="11.9005%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="501" width="0.2427%" height="15" fill="rgb(208,127,28)" fg:x="52" fg:w="1"/><text x="12.8714%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="485" width="0.2427%" height="15" fill="rgb(224,137,22)" fg:x="52" fg:w="1"/><text x="12.8714%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="469" width="0.2427%" height="15" fill="rgb(254,70,32)" fg:x="52" fg:w="1"/><text x="12.8714%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="453" width="0.2427%" height="15" fill="rgb(229,75,37)" fg:x="52" fg:w="1"/><text x="12.8714%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::ObjProp&gt;&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="437" width="0.2427%" height="15" fill="rgb(252,64,23)" fg:x="52" fg:w="1"/><text x="12.8714%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.6214%" y="421" width="0.2427%" height="15" fill="rgb(232,162,48)" fg:x="52" fg:w="1"/><text x="12.8714%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::ObjProp]&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="405" width="0.2427%" height="15" fill="rgb(246,160,12)" fg:x="52" fg:w="1"/><text x="12.8714%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::ObjProp&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="389" width="0.2427%" height="15" fill="rgb(247,166,0)" fg:x="52" fg:w="1"/><text x="12.8714%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="373" width="0.2427%" height="15" fill="rgb(249,219,21)" fg:x="52" fg:w="1"/><text x="12.8714%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::ObjProp&gt;&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="357" width="0.2427%" height="15" fill="rgb(205,209,3)" fg:x="52" fg:w="1"/><text x="12.8714%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.6214%" y="341" width="0.2427%" height="15" fill="rgb(243,44,1)" fg:x="52" fg:w="1"/><text x="12.8714%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::ObjProp]&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="325" width="0.2427%" height="15" fill="rgb(206,159,16)" fg:x="52" fg:w="1"/><text x="12.8714%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::ObjProp&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="309" width="0.2427%" height="15" fill="rgb(244,77,30)" fg:x="52" fg:w="1"/><text x="12.8714%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="293" width="0.2427%" height="15" fill="rgb(218,69,12)" fg:x="52" fg:w="1"/><text x="12.8714%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="277" width="0.2427%" height="15" fill="rgb(212,87,7)" fg:x="52" fg:w="1"/><text x="12.8714%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="261" width="0.2427%" height="15" fill="rgb(245,114,25)" fg:x="52" fg:w="1"/><text x="12.8714%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="245" width="0.2427%" height="15" fill="rgb(210,61,42)" fg:x="52" fg:w="1"/><text x="12.8714%" y="255.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.6214%" y="229" width="0.2427%" height="15" fill="rgb(211,52,33)" fg:x="52" fg:w="1"/><text x="12.8714%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="213" width="0.2427%" height="15" fill="rgb(234,58,33)" fg:x="52" fg:w="1"/><text x="12.8714%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="197" width="0.2427%" height="15" fill="rgb(220,115,36)" fg:x="52" fg:w="1"/><text x="12.8714%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="181" width="0.2427%" height="15" fill="rgb(243,153,54)" fg:x="52" fg:w="1"/><text x="12.8714%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="165" width="0.2427%" height="15" fill="rgb(251,47,18)" fg:x="52" fg:w="1"/><text x="12.8714%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.6214%" y="149" width="0.2427%" height="15" fill="rgb(242,102,42)" fg:x="52" fg:w="1"/><text x="12.8714%" y="159.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="709" width="0.2427%" height="15" fill="rgb(234,31,38)" fg:x="53" fg:w="1"/><text x="13.1141%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="693" width="0.2427%" height="15" fill="rgb(221,117,51)" fg:x="53" fg:w="1"/><text x="13.1141%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="677" width="0.2427%" height="15" fill="rgb(212,20,18)" fg:x="53" fg:w="1"/><text x="13.1141%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="661" width="0.2427%" height="15" fill="rgb(245,133,36)" fg:x="53" fg:w="1"/><text x="13.1141%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="645" width="0.2427%" height="15" fill="rgb(212,6,19)" fg:x="53" fg:w="1"/><text x="13.1141%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="629" width="0.2427%" height="15" fill="rgb(218,1,36)" fg:x="53" fg:w="1"/><text x="13.1141%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="613" width="0.2427%" height="15" fill="rgb(246,84,54)" fg:x="53" fg:w="1"/><text x="13.1141%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="597" width="0.2427%" height="15" fill="rgb(242,110,6)" fg:x="53" fg:w="1"/><text x="13.1141%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="581" width="0.2427%" height="15" fill="rgb(214,47,5)" fg:x="53" fg:w="1"/><text x="13.1141%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="565" width="0.2427%" height="15" fill="rgb(218,159,25)" fg:x="53" fg:w="1"/><text x="13.1141%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="549" width="0.2427%" height="15" fill="rgb(215,211,28)" fg:x="53" fg:w="1"/><text x="13.1141%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="533" width="0.2427%" height="15" fill="rgb(238,59,32)" fg:x="53" fg:w="1"/><text x="13.1141%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="517" width="0.2427%" height="15" fill="rgb(226,82,3)" fg:x="53" fg:w="1"/><text x="13.1141%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="501" width="0.2427%" height="15" fill="rgb(240,164,32)" fg:x="53" fg:w="1"/><text x="13.1141%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="485" width="0.2427%" height="15" fill="rgb(232,46,7)" fg:x="53" fg:w="1"/><text x="13.1141%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="469" width="0.2427%" height="15" fill="rgb(229,129,53)" fg:x="53" fg:w="1"/><text x="13.1141%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="453" width="0.2427%" height="15" fill="rgb(234,188,29)" fg:x="53" fg:w="1"/><text x="13.1141%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="437" width="0.2427%" height="15" fill="rgb(246,141,4)" fg:x="53" fg:w="1"/><text x="13.1141%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="421" width="0.2427%" height="15" fill="rgb(229,23,39)" fg:x="53" fg:w="1"/><text x="13.1141%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::decl::VarDecl&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="405" width="0.2427%" height="15" fill="rgb(206,12,3)" fg:x="53" fg:w="1"/><text x="13.1141%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="389" width="0.2427%" height="15" fill="rgb(252,226,20)" fg:x="53" fg:w="1"/><text x="13.1141%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::decl::VarDecl]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="373" width="0.2427%" height="15" fill="rgb(216,123,35)" fg:x="53" fg:w="1"/><text x="13.1141%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="357" width="0.2427%" height="15" fill="rgb(212,68,40)" fg:x="53" fg:w="1"/><text x="13.1141%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="341" width="0.2427%" height="15" fill="rgb(254,125,32)" fg:x="53" fg:w="1"/><text x="13.1141%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="325" width="0.2427%" height="15" fill="rgb(253,97,22)" fg:x="53" fg:w="1"/><text x="13.1141%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="309" width="0.2427%" height="15" fill="rgb(241,101,14)" fg:x="53" fg:w="1"/><text x="13.1141%" y="319.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="293" width="0.2427%" height="15" fill="rgb(238,103,29)" fg:x="53" fg:w="1"/><text x="13.1141%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="277" width="0.2427%" height="15" fill="rgb(233,195,47)" fg:x="53" fg:w="1"/><text x="13.1141%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="261" width="0.2427%" height="15" fill="rgb(246,218,30)" fg:x="53" fg:w="1"/><text x="13.1141%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::BlockStmt&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="245" width="0.2427%" height="15" fill="rgb(219,145,47)" fg:x="53" fg:w="1"/><text x="13.1141%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="229" width="0.2427%" height="15" fill="rgb(243,12,26)" fg:x="53" fg:w="1"/><text x="13.1141%" y="239.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="12.8641%" y="213" width="0.2427%" height="15" fill="rgb(214,87,16)" fg:x="53" fg:w="1"/><text x="13.1141%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="197" width="0.2427%" height="15" fill="rgb(208,99,42)" fg:x="53" fg:w="1"/><text x="13.1141%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::Stmt&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="181" width="0.2427%" height="15" fill="rgb(253,99,2)" fg:x="53" fg:w="1"/><text x="13.1141%" y="191.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::stmt::IfStmt&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="165" width="0.2427%" height="15" fill="rgb(220,168,23)" fg:x="53" fg:w="1"/><text x="13.1141%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::stmt::Stmt&gt;&gt; (1 samples, 0.24%)</title><rect x="12.8641%" y="149" width="0.2427%" height="15" fill="rgb(242,38,24)" fg:x="53" fg:w="1"/><text x="13.1141%" y="159.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="12.8641%" y="133" width="0.2427%" height="15" fill="rgb(225,182,9)" fg:x="53" fg:w="1"/><text x="13.1141%" y="143.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="12.8641%" y="117" width="0.2427%" height="15" fill="rgb(243,178,37)" fg:x="53" fg:w="1"/><text x="13.1141%" y="127.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="12.8641%" y="101" width="0.2427%" height="15" fill="rgb(232,139,19)" fg:x="53" fg:w="1"/><text x="13.1141%" y="111.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="12.8641%" y="85" width="0.2427%" height="15" fill="rgb(225,201,24)" fg:x="53" fg:w="1"/><text x="13.1141%" y="95.50"></text></g><g><title>criterion::routine::Routine::test (2 samples, 0.49%)</title><rect x="12.8641%" y="997" width="0.4854%" height="15" fill="rgb(221,47,46)" fg:x="53" fg:w="2"/><text x="13.1141%" y="1007.50"></text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::bench (2 samples, 0.49%)</title><rect x="12.8641%" y="981" width="0.4854%" height="15" fill="rgb(249,23,13)" fg:x="53" fg:w="2"/><text x="13.1141%" y="991.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="12.8641%" y="965" width="0.4854%" height="15" fill="rgb(219,9,5)" fg:x="53" fg:w="2"/><text x="13.1141%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="12.8641%" y="949" width="0.4854%" height="15" fill="rgb(254,171,16)" fg:x="53" fg:w="2"/><text x="13.1141%" y="959.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 (2 samples, 0.49%)</title><rect x="12.8641%" y="933" width="0.4854%" height="15" fill="rgb(230,171,20)" fg:x="53" fg:w="2"/><text x="13.1141%" y="943.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 (2 samples, 0.49%)</title><rect x="12.8641%" y="917" width="0.4854%" height="15" fill="rgb(210,71,41)" fg:x="53" fg:w="2"/><text x="13.1141%" 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 (2 samples, 0.49%)</title><rect x="12.8641%" y="901" width="0.4854%" height="15" fill="rgb(206,173,20)" fg:x="53" fg:w="2"/><text x="13.1141%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="12.8641%" y="885" width="0.4854%" height="15" fill="rgb(233,88,34)" fg:x="53" fg:w="2"/><text x="13.1141%" 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 (2 samples, 0.49%)</title><rect x="12.8641%" y="869" width="0.4854%" height="15" fill="rgb(223,209,46)" fg:x="53" fg:w="2"/><text x="13.1141%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="12.8641%" y="853" width="0.4854%" height="15" fill="rgb(250,43,18)" fg:x="53" fg:w="2"/><text x="13.1141%" y="863.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.49%)</title><rect x="12.8641%" y="837" width="0.4854%" height="15" fill="rgb(208,13,10)" fg:x="53" fg:w="2"/><text x="13.1141%" y="847.50"></text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::bench::{{closure}} (2 samples, 0.49%)</title><rect x="12.8641%" y="821" width="0.4854%" height="15" fill="rgb(212,200,36)" fg:x="53" fg:w="2"/><text x="13.1141%" y="831.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function::{{closure}} (2 samples, 0.49%)</title><rect x="12.8641%" y="805" width="0.4854%" height="15" fill="rgb(225,90,30)" fg:x="53" fg:w="2"/><text x="13.1141%" y="815.50"></text></g><g><title>major_libs::bench::{{closure}} (2 samples, 0.49%)</title><rect x="12.8641%" y="789" width="0.4854%" height="15" fill="rgb(236,182,39)" fg:x="53" fg:w="2"/><text x="13.1141%" y="799.50"></text></g><g><title>criterion::Bencher&lt;M&gt;::iter (2 samples, 0.49%)</title><rect x="12.8641%" y="773" width="0.4854%" height="15" fill="rgb(212,144,35)" fg:x="53" fg:w="2"/><text x="13.1141%" y="783.50"></text></g><g><title>major_libs::bench::{{closure}}::{{closure}} (2 samples, 0.49%)</title><rect x="12.8641%" y="757" width="0.4854%" height="15" fill="rgb(228,63,44)" fg:x="53" fg:w="2"/><text x="13.1141%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (2 samples, 0.49%)</title><rect x="12.8641%" y="741" width="0.4854%" height="15" fill="rgb(228,109,6)" fg:x="53" fg:w="2"/><text x="13.1141%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (2 samples, 0.49%)</title><rect x="12.8641%" y="725" width="0.4854%" height="15" fill="rgb(238,117,24)" fg:x="53" fg:w="2"/><text x="13.1141%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::UnaryExpr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="709" width="0.2427%" height="15" fill="rgb(242,26,26)" fg:x="54" fg:w="1"/><text x="13.3568%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="693" width="0.2427%" height="15" fill="rgb(221,92,48)" fg:x="54" fg:w="1"/><text x="13.3568%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="677" width="0.2427%" height="15" fill="rgb(209,209,32)" fg:x="54" fg:w="1"/><text x="13.3568%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="661" width="0.2427%" height="15" fill="rgb(221,70,22)" fg:x="54" fg:w="1"/><text x="13.3568%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="645" width="0.2427%" height="15" fill="rgb(248,145,5)" fg:x="54" fg:w="1"/><text x="13.3568%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="629" width="0.2427%" height="15" fill="rgb(226,116,26)" fg:x="54" fg:w="1"/><text x="13.3568%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="613" width="0.2427%" height="15" fill="rgb(244,5,17)" fg:x="54" fg:w="1"/><text x="13.3568%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="597" width="0.2427%" height="15" fill="rgb(252,159,33)" fg:x="54" fg:w="1"/><text x="13.3568%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="581" width="0.2427%" height="15" fill="rgb(206,71,0)" fg:x="54" fg:w="1"/><text x="13.3568%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="565" width="0.2427%" height="15" fill="rgb(233,118,54)" fg:x="54" fg:w="1"/><text x="13.3568%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="549" width="0.2427%" height="15" fill="rgb(234,83,48)" fg:x="54" fg:w="1"/><text x="13.3568%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="533" width="0.2427%" height="15" fill="rgb(228,3,54)" fg:x="54" fg:w="1"/><text x="13.3568%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="517" width="0.2427%" height="15" fill="rgb(226,155,13)" fg:x="54" fg:w="1"/><text x="13.3568%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="501" width="0.2427%" height="15" fill="rgb(241,28,37)" fg:x="54" fg:w="1"/><text x="13.3568%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="485" width="0.2427%" height="15" fill="rgb(233,93,10)" fg:x="54" fg:w="1"/><text x="13.3568%" y="495.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="469" width="0.2427%" height="15" fill="rgb(225,113,19)" fg:x="54" fg:w="1"/><text x="13.3568%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="453" width="0.2427%" height="15" fill="rgb(241,2,18)" fg:x="54" fg:w="1"/><text x="13.3568%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="437" width="0.2427%" height="15" fill="rgb(228,207,21)" fg:x="54" fg:w="1"/><text x="13.3568%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="421" width="0.2427%" height="15" fill="rgb(213,211,35)" fg:x="54" fg:w="1"/><text x="13.3568%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="405" width="0.2427%" height="15" fill="rgb(209,83,10)" fg:x="54" fg:w="1"/><text x="13.3568%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="389" width="0.2427%" height="15" fill="rgb(209,164,1)" fg:x="54" fg:w="1"/><text x="13.3568%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="373" width="0.2427%" height="15" fill="rgb(213,184,43)" fg:x="54" fg:w="1"/><text x="13.3568%" y="383.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="357" width="0.2427%" height="15" fill="rgb(231,61,34)" fg:x="54" fg:w="1"/><text x="13.3568%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::expr::Expr]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="341" width="0.2427%" height="15" fill="rgb(235,75,3)" fg:x="54" fg:w="1"/><text x="13.3568%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="325" width="0.2427%" height="15" fill="rgb(220,106,47)" fg:x="54" fg:w="1"/><text x="13.3568%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::ConditionalExpr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="309" width="0.2427%" height="15" fill="rgb(210,196,33)" fg:x="54" fg:w="1"/><text x="13.3568%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="293" width="0.2427%" height="15" fill="rgb(229,154,42)" fg:x="54" fg:w="1"/><text x="13.3568%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="277" width="0.2427%" height="15" fill="rgb(228,114,26)" fg:x="54" fg:w="1"/><text x="13.3568%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::CallExpr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="261" width="0.2427%" height="15" fill="rgb(208,144,1)" fg:x="54" fg:w="1"/><text x="13.3568%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="245" width="0.2427%" height="15" fill="rgb(239,112,37)" fg:x="54" fg:w="1"/><text x="13.3568%" y="255.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="229" width="0.2427%" height="15" fill="rgb(210,96,50)" fg:x="54" fg:w="1"/><text x="13.3568%" y="239.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::Func&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="213" width="0.2427%" height="15" fill="rgb(222,178,2)" fg:x="54" fg:w="1"/><text x="13.3568%" y="223.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::FuncBody&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="197" width="0.2427%" height="15" fill="rgb(226,74,18)" fg:x="54" fg:w="1"/><text x="13.3568%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="181" width="0.2427%" height="15" fill="rgb(225,67,54)" fg:x="54" fg:w="1"/><text x="13.3568%" y="191.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="165" width="0.2427%" height="15" fill="rgb(251,92,32)" fg:x="54" fg:w="1"/><text x="13.3568%" y="175.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::ProgramPart]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="149" width="0.2427%" height="15" fill="rgb(228,149,22)" fg:x="54" fg:w="1"/><text x="13.3568%" y="159.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::ProgramPart&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="133" width="0.2427%" height="15" fill="rgb(243,54,13)" fg:x="54" fg:w="1"/><text x="13.3568%" y="143.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::Decl&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="117" width="0.2427%" height="15" fill="rgb(243,180,28)" fg:x="54" fg:w="1"/><text x="13.3568%" y="127.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::decl::VarDecl&gt;&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="101" width="0.2427%" height="15" fill="rgb(208,167,24)" fg:x="54" fg:w="1"/><text x="13.3568%" y="111.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="13.1068%" y="85" width="0.2427%" height="15" fill="rgb(245,73,45)" fg:x="54" fg:w="1"/><text x="13.3568%" y="95.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::decl::VarDecl]&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="69" width="0.2427%" height="15" fill="rgb(237,203,48)" fg:x="54" fg:w="1"/><text x="13.3568%" y="79.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::decl::VarDecl&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="53" width="0.2427%" height="15" fill="rgb(211,197,16)" fg:x="54" fg:w="1"/><text x="13.3568%" y="63.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::pat::Pat&gt; (1 samples, 0.24%)</title><rect x="13.1068%" y="37" width="0.2427%" height="15" fill="rgb(243,99,51)" fg:x="54" fg:w="1"/><text x="13.3568%" y="47.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.49%)</title><rect x="13.3495%" y="757" width="0.4854%" height="15" fill="rgb(215,123,29)" fg:x="55" fg:w="2"/><text x="13.5995%" y="767.50"></text></g><g><title>core::ptr::read (2 samples, 0.49%)</title><rect x="13.3495%" y="741" width="0.4854%" height="15" fill="rgb(239,186,37)" fg:x="55" fg:w="2"/><text x="13.5995%" y="751.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="13.3495%" y="725" width="0.4854%" height="15" fill="rgb(252,136,39)" fg:x="55" fg:w="2"/><text x="13.5995%" y="735.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.49%)</title><rect x="13.8350%" y="757" width="0.4854%" height="15" fill="rgb(223,213,32)" fg:x="57" fg:w="2"/><text x="14.0850%" y="767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (2 samples, 0.49%)</title><rect x="13.8350%" y="741" width="0.4854%" height="15" fill="rgb(233,115,5)" fg:x="57" fg:w="2"/><text x="14.0850%" y="751.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::{{closure}} (2 samples, 0.49%)</title><rect x="13.8350%" y="725" width="0.4854%" height="15" fill="rgb(207,226,44)" fg:x="57" fg:w="2"/><text x="14.0850%" y="735.50"></text></g><g><title>core::ptr::write (2 samples, 0.49%)</title><rect x="13.8350%" y="709" width="0.4854%" height="15" fill="rgb(208,126,0)" fg:x="57" fg:w="2"/><text x="14.0850%" y="719.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="13.8350%" y="693" width="0.4854%" height="15" fill="rgb(244,66,21)" fg:x="57" fg:w="2"/><text x="14.0850%" y="703.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (5 samples, 1.21%)</title><rect x="13.3495%" y="949" width="1.2136%" height="15" fill="rgb(222,97,12)" fg:x="55" fg:w="5"/><text x="13.5995%" y="959.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (5 samples, 1.21%)</title><rect x="13.3495%" y="933" width="1.2136%" height="15" fill="rgb(219,213,19)" fg:x="55" fg:w="5"/><text x="13.5995%" y="943.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (5 samples, 1.21%)</title><rect x="13.3495%" y="917" width="1.2136%" height="15" fill="rgb(252,169,30)" fg:x="55" fg:w="5"/><text x="13.5995%" y="927.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::FuncBody&gt; for resast::FuncBody&gt;::from (5 samples, 1.21%)</title><rect x="13.3495%" y="901" width="1.2136%" height="15" fill="rgb(206,32,51)" fg:x="55" fg:w="5"/><text x="13.5995%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 1.21%)</title><rect x="13.3495%" y="885" width="1.2136%" height="15" fill="rgb(250,172,42)" fg:x="55" fg:w="5"/><text x="13.5995%" 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 (5 samples, 1.21%)</title><rect x="13.3495%" y="869" width="1.2136%" height="15" fill="rgb(209,34,43)" fg:x="55" fg:w="5"/><text x="13.5995%" y="879.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (5 samples, 1.21%)</title><rect x="13.3495%" y="853" width="1.2136%" height="15" fill="rgb(223,11,35)" fg:x="55" fg:w="5"/><text x="13.5995%" 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 (5 samples, 1.21%)</title><rect x="13.3495%" y="837" width="1.2136%" height="15" fill="rgb(251,219,26)" fg:x="55" fg:w="5"/><text x="13.5995%" 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 (5 samples, 1.21%)</title><rect x="13.3495%" y="821" width="1.2136%" height="15" fill="rgb(231,119,3)" fg:x="55" fg:w="5"/><text x="13.5995%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (5 samples, 1.21%)</title><rect x="13.3495%" y="805" width="1.2136%" height="15" fill="rgb(216,97,11)" fg:x="55" fg:w="5"/><text x="13.5995%" 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 (5 samples, 1.21%)</title><rect x="13.3495%" y="789" width="1.2136%" height="15" fill="rgb(223,59,9)" fg:x="55" fg:w="5"/><text x="13.5995%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (5 samples, 1.21%)</title><rect x="13.3495%" y="773" width="1.2136%" height="15" fill="rgb(233,93,31)" fg:x="55" fg:w="5"/><text x="13.5995%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;resast::spanned::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="14.3204%" y="757" width="0.2427%" height="15" fill="rgb(239,81,33)" fg:x="59" fg:w="1"/><text x="14.5704%" y="767.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="14.3204%" y="741" width="0.2427%" height="15" fill="rgb(213,120,34)" fg:x="59" fg:w="1"/><text x="14.5704%" y="751.50"></text></g><g><title>core::ptr::drop_in_place&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;resast::spanned::ProgramPart,alloc::alloc::Global&gt;&gt; (1 samples, 0.24%)</title><rect x="14.3204%" y="725" width="0.2427%" height="15" fill="rgb(243,49,53)" fg:x="59" fg:w="1"/><text x="14.5704%" y="735.50"></text></g><g><title>&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="14.3204%" y="709" width="0.2427%" height="15" fill="rgb(247,216,33)" fg:x="59" fg:w="1"/><text x="14.5704%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;resast::spanned::ProgramPart&gt;&gt; (1 samples, 0.24%)</title><rect x="14.3204%" y="693" width="0.2427%" height="15" fill="rgb(226,26,14)" fg:x="59" fg:w="1"/><text x="14.5704%" y="703.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="14.3204%" y="677" width="0.2427%" height="15" fill="rgb(215,49,53)" fg:x="59" fg:w="1"/><text x="14.5704%" y="687.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="14.3204%" y="661" width="0.2427%" height="15" fill="rgb(245,162,40)" fg:x="59" fg:w="1"/><text x="14.5704%" y="671.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="14.3204%" y="645" width="0.2427%" height="15" fill="rgb(229,68,17)" fg:x="59" fg:w="1"/><text x="14.5704%" y="655.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="14.3204%" y="629" width="0.2427%" height="15" fill="rgb(213,182,10)" fg:x="59" fg:w="1"/><text x="14.5704%" y="639.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (1 samples, 0.24%)</title><rect x="14.5631%" y="693" width="0.2427%" height="15" fill="rgb(245,125,30)" fg:x="60" fg:w="1"/><text x="14.8131%" y="703.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="14.5631%" y="677" width="0.2427%" height="15" fill="rgb(232,202,2)" fg:x="60" fg:w="1"/><text x="14.8131%" y="687.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="14.5631%" y="661" width="0.2427%" height="15" fill="rgb(237,140,51)" fg:x="60" fg:w="1"/><text x="14.8131%" y="671.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="14.5631%" y="645" width="0.2427%" height="15" fill="rgb(236,157,25)" fg:x="60" fg:w="1"/><text x="14.8131%" y="655.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="14.5631%" y="629" width="0.2427%" height="15" fill="rgb(219,209,0)" fg:x="60" fg:w="1"/><text x="14.8131%" y="639.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="14.5631%" y="613" width="0.2427%" height="15" fill="rgb(240,116,54)" fg:x="60" fg:w="1"/><text x="14.8131%" y="623.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="14.5631%" y="597" width="0.2427%" height="15" fill="rgb(216,10,36)" fg:x="60" fg:w="1"/><text x="14.8131%" y="607.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="14.5631%" y="581" width="0.2427%" height="15" fill="rgb(222,72,44)" fg:x="60" fg:w="1"/><text x="14.8131%" y="591.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="14.8058%" y="693" width="0.2427%" height="15" fill="rgb(232,159,9)" fg:x="61" fg:w="1"/><text x="15.0558%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="14.8058%" y="677" width="0.2427%" height="15" fill="rgb(210,39,32)" fg:x="61" fg:w="1"/><text x="15.0558%" y="687.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="14.8058%" y="661" width="0.2427%" height="15" fill="rgb(216,194,45)" fg:x="61" fg:w="1"/><text x="15.0558%" y="671.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="14.8058%" y="645" width="0.2427%" height="15" fill="rgb(218,18,35)" fg:x="61" fg:w="1"/><text x="15.0558%" y="655.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="14.8058%" y="629" width="0.2427%" height="15" fill="rgb(207,83,51)" fg:x="61" fg:w="1"/><text x="15.0558%" y="639.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="14.5631%" y="709" width="0.7282%" height="15" fill="rgb(225,63,43)" fg:x="60" fg:w="3"/><text x="14.8131%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::UnaryExpr&gt; for resast::expr::UnaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="15.0485%" y="693" width="0.2427%" height="15" fill="rgb(207,57,36)" fg:x="62" fg:w="1"/><text x="15.2985%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="15.0485%" y="677" width="0.2427%" height="15" fill="rgb(216,99,33)" fg:x="62" fg:w="1"/><text x="15.2985%" y="687.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="15.0485%" y="661" width="0.2427%" height="15" fill="rgb(225,42,16)" fg:x="62" fg:w="1"/><text x="15.2985%" y="671.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::UnaryExpr&gt; for resast::expr::UnaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="15.0485%" y="645" width="0.2427%" height="15" fill="rgb(220,201,45)" fg:x="62" fg:w="1"/><text x="15.2985%" y="655.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="15.0485%" y="629" width="0.2427%" height="15" fill="rgb(225,33,4)" fg:x="62" fg:w="1"/><text x="15.2985%" y="639.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="15.0485%" y="613" width="0.2427%" height="15" fill="rgb(224,33,50)" fg:x="62" fg:w="1"/><text x="15.2985%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="15.0485%" y="597" width="0.2427%" height="15" fill="rgb(246,198,51)" fg:x="62" fg:w="1"/><text x="15.2985%" y="607.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="15.0485%" y="581" width="0.2427%" height="15" fill="rgb(205,22,4)" fg:x="62" fg:w="1"/><text x="15.2985%" y="591.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="15.0485%" y="565" width="0.2427%" height="15" fill="rgb(206,3,8)" fg:x="62" fg:w="1"/><text x="15.2985%" y="575.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="15.0485%" y="549" width="0.2427%" height="15" fill="rgb(251,23,15)" fg:x="62" fg:w="1"/><text x="15.2985%" y="559.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="15.0485%" y="533" width="0.2427%" height="15" fill="rgb(252,88,28)" fg:x="62" fg:w="1"/><text x="15.2985%" y="543.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::Decl&gt; for resast::decl::Decl&gt;::from (9 samples, 2.18%)</title><rect x="13.3495%" y="965" width="2.1845%" height="15" fill="rgb(212,127,14)" fg:x="55" fg:w="9"/><text x="13.5995%" y="975.50">r..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (4 samples, 0.97%)</title><rect x="14.5631%" y="949" width="0.9709%" height="15" fill="rgb(247,145,37)" fg:x="60" fg:w="4"/><text x="14.8131%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (4 samples, 0.97%)</title><rect x="14.5631%" y="933" width="0.9709%" height="15" fill="rgb(209,117,53)" fg:x="60" fg:w="4"/><text x="14.8131%" y="943.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (4 samples, 0.97%)</title><rect x="14.5631%" y="917" width="0.9709%" height="15" fill="rgb(212,90,42)" fg:x="60" fg:w="4"/><text x="14.8131%" y="927.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 (4 samples, 0.97%)</title><rect x="14.5631%" y="901" width="0.9709%" height="15" fill="rgb(218,164,37)" fg:x="60" fg:w="4"/><text x="14.8131%" y="911.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 (4 samples, 0.97%)</title><rect x="14.5631%" y="885" width="0.9709%" height="15" fill="rgb(246,65,34)" fg:x="60" fg:w="4"/><text x="14.8131%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (4 samples, 0.97%)</title><rect x="14.5631%" y="869" width="0.9709%" height="15" fill="rgb(231,100,33)" fg:x="60" fg:w="4"/><text x="14.8131%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.97%)</title><rect x="14.5631%" y="853" width="0.9709%" height="15" fill="rgb(228,126,14)" fg:x="60" fg:w="4"/><text x="14.8131%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.97%)</title><rect x="14.5631%" y="837" width="0.9709%" height="15" fill="rgb(215,173,21)" fg:x="60" fg:w="4"/><text x="14.8131%" y="847.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (4 samples, 0.97%)</title><rect x="14.5631%" y="821" width="0.9709%" height="15" fill="rgb(210,6,40)" fg:x="60" fg:w="4"/><text x="14.8131%" y="831.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from::{{closure}} (4 samples, 0.97%)</title><rect x="14.5631%" y="805" width="0.9709%" height="15" fill="rgb(212,48,18)" fg:x="60" fg:w="4"/><text x="14.8131%" y="815.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (4 samples, 0.97%)</title><rect x="14.5631%" y="789" width="0.9709%" height="15" fill="rgb(230,214,11)" fg:x="60" fg:w="4"/><text x="14.8131%" y="799.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::VarDecl&gt; for resast::decl::VarDecl&gt;::from (4 samples, 0.97%)</title><rect x="14.5631%" y="773" width="0.9709%" height="15" fill="rgb(254,105,39)" fg:x="60" fg:w="4"/><text x="14.8131%" y="783.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (4 samples, 0.97%)</title><rect x="14.5631%" y="757" width="0.9709%" height="15" fill="rgb(245,158,5)" fg:x="60" fg:w="4"/><text x="14.8131%" y="767.50"></text></g><g><title>core::ops::function::FnOnce::call_once (4 samples, 0.97%)</title><rect x="14.5631%" y="741" width="0.9709%" height="15" fill="rgb(249,208,11)" fg:x="60" fg:w="4"/><text x="14.8131%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (4 samples, 0.97%)</title><rect x="14.5631%" y="725" width="0.9709%" height="15" fill="rgb(210,39,28)" fg:x="60" fg:w="4"/><text x="14.8131%" y="735.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="15.2913%" y="709" width="0.2427%" height="15" fill="rgb(211,56,53)" fg:x="63" fg:w="1"/><text x="15.5413%" 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 (1 samples, 0.24%)</title><rect x="15.2913%" y="693" width="0.2427%" height="15" fill="rgb(226,201,30)" fg:x="63" fg:w="1"/><text x="15.5413%" y="703.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="15.2913%" y="677" width="0.2427%" height="15" fill="rgb(239,101,34)" fg:x="63" fg:w="1"/><text x="15.5413%" 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 (1 samples, 0.24%)</title><rect x="15.2913%" y="661" width="0.2427%" height="15" fill="rgb(226,209,5)" fg:x="63" fg:w="1"/><text x="15.5413%" 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 (1 samples, 0.24%)</title><rect x="15.2913%" y="645" width="0.2427%" height="15" fill="rgb(250,105,47)" fg:x="63" fg:w="1"/><text x="15.5413%" y="655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="15.2913%" y="629" width="0.2427%" height="15" fill="rgb(230,72,3)" fg:x="63" fg:w="1"/><text x="15.5413%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="15.2913%" y="613" width="0.2427%" height="15" fill="rgb(232,218,39)" fg:x="63" fg:w="1"/><text x="15.5413%" y="623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="15.2913%" y="597" width="0.2427%" height="15" fill="rgb(248,166,6)" fg:x="63" fg:w="1"/><text x="15.5413%" y="607.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="15.2913%" y="581" width="0.2427%" height="15" fill="rgb(247,89,20)" fg:x="63" fg:w="1"/><text x="15.5413%" y="591.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="15.2913%" y="565" width="0.2427%" height="15" fill="rgb(248,130,54)" fg:x="63" fg:w="1"/><text x="15.5413%" y="575.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="15.2913%" y="549" width="0.2427%" height="15" fill="rgb(234,196,4)" fg:x="63" fg:w="1"/><text x="15.5413%" y="559.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="15.2913%" y="533" width="0.2427%" height="15" fill="rgb(250,143,31)" fg:x="63" fg:w="1"/><text x="15.5413%" y="543.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="15.2913%" y="517" width="0.2427%" height="15" fill="rgb(211,110,34)" fg:x="63" fg:w="1"/><text x="15.5413%" y="527.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="15.2913%" y="501" width="0.2427%" height="15" fill="rgb(215,124,48)" fg:x="63" fg:w="1"/><text x="15.5413%" y="511.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="15.2913%" y="485" width="0.2427%" height="15" fill="rgb(216,46,13)" fg:x="63" fg:w="1"/><text x="15.5413%" y="495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="15.2913%" y="469" width="0.2427%" height="15" fill="rgb(205,184,25)" fg:x="63" fg:w="1"/><text x="15.5413%" 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 (1 samples, 0.24%)</title><rect x="15.2913%" y="453" width="0.2427%" height="15" fill="rgb(228,1,10)" fg:x="63" fg:w="1"/><text x="15.5413%" y="463.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="15.2913%" y="437" width="0.2427%" height="15" fill="rgb(213,116,27)" fg:x="63" fg:w="1"/><text x="15.5413%" 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 (1 samples, 0.24%)</title><rect x="15.2913%" y="421" width="0.2427%" height="15" fill="rgb(241,95,50)" fg:x="63" fg:w="1"/><text x="15.5413%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="15.2913%" y="405" width="0.2427%" height="15" fill="rgb(238,48,32)" fg:x="63" fg:w="1"/><text x="15.5413%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="15.2913%" y="389" width="0.2427%" height="15" fill="rgb(235,113,49)" fg:x="63" fg:w="1"/><text x="15.5413%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="15.2913%" y="373" width="0.2427%" height="15" fill="rgb(205,127,43)" fg:x="63" fg:w="1"/><text x="15.5413%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="15.2913%" y="357" width="0.2427%" height="15" fill="rgb(250,162,2)" fg:x="63" fg:w="1"/><text x="15.5413%" y="367.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="15.2913%" y="341" width="0.2427%" height="15" fill="rgb(220,13,41)" fg:x="63" fg:w="1"/><text x="15.5413%" y="351.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="15.2913%" y="325" width="0.2427%" height="15" fill="rgb(249,221,25)" fg:x="63" fg:w="1"/><text x="15.5413%" y="335.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="15.2913%" y="309" width="0.2427%" height="15" fill="rgb(215,208,19)" fg:x="63" fg:w="1"/><text x="15.5413%" y="319.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="15.2913%" y="293" width="0.2427%" height="15" fill="rgb(236,175,2)" fg:x="63" fg:w="1"/><text x="15.5413%" y="303.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="15.2913%" y="277" width="0.2427%" height="15" fill="rgb(241,52,2)" fg:x="63" fg:w="1"/><text x="15.5413%" y="287.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="15.5340%" y="805" width="0.2427%" height="15" fill="rgb(248,140,14)" fg:x="64" fg:w="1"/><text x="15.7840%" y="815.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="15.7767%" y="805" width="0.2427%" height="15" fill="rgb(253,22,42)" fg:x="65" fg:w="1"/><text x="16.0267%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="15.7767%" y="789" width="0.2427%" height="15" fill="rgb(234,61,47)" fg:x="65" fg:w="1"/><text x="16.0267%" y="799.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="15.7767%" y="773" width="0.2427%" height="15" fill="rgb(208,226,15)" fg:x="65" fg:w="1"/><text x="16.0267%" y="783.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="15.7767%" y="757" width="0.2427%" height="15" fill="rgb(217,221,4)" fg:x="65" fg:w="1"/><text x="16.0267%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="15.5340%" y="885" width="0.7282%" height="15" fill="rgb(212,174,34)" fg:x="64" fg:w="3"/><text x="15.7840%" y="895.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignLeft&gt; for resast::expr::AssignLeft&gt;::from (3 samples, 0.73%)</title><rect x="15.5340%" y="869" width="0.7282%" height="15" fill="rgb(253,83,4)" fg:x="64" fg:w="3"/><text x="15.7840%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (3 samples, 0.73%)</title><rect x="15.5340%" y="853" width="0.7282%" height="15" fill="rgb(250,195,49)" fg:x="64" fg:w="3"/><text x="15.7840%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="15.5340%" y="837" width="0.7282%" height="15" fill="rgb(241,192,25)" fg:x="64" fg:w="3"/><text x="15.7840%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (3 samples, 0.73%)</title><rect x="15.5340%" y="821" width="0.7282%" height="15" fill="rgb(208,124,10)" fg:x="64" fg:w="3"/><text x="15.7840%" y="831.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="16.0194%" y="805" width="0.2427%" height="15" fill="rgb(222,33,0)" fg:x="66" fg:w="1"/><text x="16.2694%" y="815.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="16.0194%" y="789" width="0.2427%" height="15" fill="rgb(234,209,28)" fg:x="66" fg:w="1"/><text x="16.2694%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="16.0194%" y="773" width="0.2427%" height="15" fill="rgb(224,11,23)" fg:x="66" fg:w="1"/><text x="16.2694%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="16.0194%" y="757" width="0.2427%" height="15" fill="rgb(232,99,1)" fg:x="66" fg:w="1"/><text x="16.2694%" y="767.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="16.0194%" y="741" width="0.2427%" height="15" fill="rgb(237,95,45)" fg:x="66" fg:w="1"/><text x="16.2694%" y="751.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="16.0194%" y="725" width="0.2427%" height="15" fill="rgb(208,109,11)" fg:x="66" fg:w="1"/><text x="16.2694%" y="735.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="16.0194%" y="709" width="0.2427%" height="15" fill="rgb(216,190,48)" fg:x="66" fg:w="1"/><text x="16.2694%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="16.2621%" y="853" width="0.2427%" height="15" fill="rgb(251,171,36)" fg:x="67" fg:w="1"/><text x="16.5121%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="16.2621%" y="837" width="0.2427%" height="15" fill="rgb(230,62,22)" fg:x="67" fg:w="1"/><text x="16.5121%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="16.2621%" y="821" width="0.2427%" height="15" fill="rgb(225,114,35)" fg:x="67" fg:w="1"/><text x="16.5121%" y="831.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="16.2621%" y="805" width="0.2427%" height="15" fill="rgb(215,118,42)" fg:x="67" fg:w="1"/><text x="16.5121%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="16.2621%" y="789" width="0.2427%" height="15" fill="rgb(243,119,21)" fg:x="67" fg:w="1"/><text x="16.5121%" 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 (1 samples, 0.24%)</title><rect x="16.2621%" y="773" width="0.2427%" height="15" fill="rgb(252,177,53)" fg:x="67" fg:w="1"/><text x="16.5121%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="16.2621%" y="757" width="0.2427%" height="15" fill="rgb(237,209,29)" fg:x="67" fg:w="1"/><text x="16.5121%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="16.2621%" y="741" width="0.2427%" height="15" fill="rgb(212,65,23)" fg:x="67" fg:w="1"/><text x="16.5121%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="16.2621%" y="725" width="0.2427%" height="15" fill="rgb(230,222,46)" fg:x="67" fg:w="1"/><text x="16.5121%" y="735.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="16.2621%" y="709" width="0.2427%" height="15" fill="rgb(215,135,32)" fg:x="67" fg:w="1"/><text x="16.5121%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="16.2621%" y="693" width="0.2427%" height="15" fill="rgb(246,101,22)" fg:x="67" fg:w="1"/><text x="16.5121%" y="703.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="16.2621%" y="677" width="0.2427%" height="15" fill="rgb(206,107,13)" fg:x="67" fg:w="1"/><text x="16.5121%" y="687.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="16.2621%" y="661" width="0.2427%" height="15" fill="rgb(250,100,44)" fg:x="67" fg:w="1"/><text x="16.5121%" y="671.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (5 samples, 1.21%)</title><rect x="15.5340%" y="901" width="1.2136%" height="15" fill="rgb(231,147,38)" fg:x="64" fg:w="5"/><text x="15.7840%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="16.2621%" y="885" width="0.4854%" height="15" fill="rgb(229,8,40)" fg:x="67" fg:w="2"/><text x="16.5121%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="16.2621%" y="869" width="0.4854%" height="15" fill="rgb(221,135,30)" fg:x="67" fg:w="2"/><text x="16.5121%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="16.5049%" y="853" width="0.2427%" height="15" fill="rgb(249,193,18)" fg:x="68" fg:w="1"/><text x="16.7549%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="16.5049%" y="837" width="0.2427%" height="15" fill="rgb(209,133,39)" fg:x="68" fg:w="1"/><text x="16.7549%" y="847.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="16.5049%" y="821" width="0.2427%" height="15" fill="rgb(232,100,14)" fg:x="68" fg:w="1"/><text x="16.7549%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="16.5049%" y="805" width="0.2427%" height="15" fill="rgb(224,185,1)" fg:x="68" fg:w="1"/><text x="16.7549%" y="815.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="16.5049%" y="789" width="0.2427%" height="15" fill="rgb(223,139,8)" fg:x="68" fg:w="1"/><text x="16.7549%" y="799.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="16.5049%" y="773" width="0.2427%" height="15" fill="rgb(232,213,38)" fg:x="68" fg:w="1"/><text x="16.7549%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="16.5049%" y="757" width="0.2427%" height="15" fill="rgb(207,94,22)" fg:x="68" fg:w="1"/><text x="16.7549%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="16.5049%" y="741" width="0.2427%" height="15" fill="rgb(219,183,54)" fg:x="68" fg:w="1"/><text x="16.7549%" y="751.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="16.5049%" y="725" width="0.2427%" height="15" fill="rgb(216,185,54)" fg:x="68" fg:w="1"/><text x="16.7549%" y="735.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="16.5049%" y="709" width="0.2427%" height="15" fill="rgb(254,217,39)" fg:x="68" fg:w="1"/><text x="16.7549%" y="719.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="16.5049%" y="693" width="0.2427%" height="15" fill="rgb(240,178,23)" fg:x="68" fg:w="1"/><text x="16.7549%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="16.7476%" y="677" width="0.2427%" height="15" fill="rgb(218,11,47)" fg:x="69" fg:w="1"/><text x="16.9976%" y="687.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="16.7476%" y="661" width="0.2427%" height="15" fill="rgb(218,51,51)" fg:x="69" fg:w="1"/><text x="16.9976%" y="671.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="16.7476%" y="645" width="0.2427%" height="15" fill="rgb(238,126,27)" fg:x="69" fg:w="1"/><text x="16.9976%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="16.7476%" y="629" width="0.2427%" height="15" fill="rgb(249,202,22)" fg:x="69" fg:w="1"/><text x="16.9976%" y="639.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="16.7476%" y="613" width="0.2427%" height="15" fill="rgb(254,195,49)" fg:x="69" fg:w="1"/><text x="16.9976%" y="623.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="16.7476%" y="597" width="0.2427%" height="15" fill="rgb(208,123,14)" fg:x="69" fg:w="1"/><text x="16.9976%" y="607.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="16.7476%" y="581" width="0.2427%" height="15" fill="rgb(224,200,8)" fg:x="69" fg:w="1"/><text x="16.9976%" y="591.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="16.7476%" y="565" width="0.2427%" height="15" fill="rgb(217,61,36)" fg:x="69" fg:w="1"/><text x="16.9976%" y="575.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (7 samples, 1.70%)</title><rect x="15.5340%" y="917" width="1.6990%" height="15" fill="rgb(206,35,45)" fg:x="64" fg:w="7"/><text x="15.7840%" y="927.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (2 samples, 0.49%)</title><rect x="16.7476%" y="901" width="0.4854%" height="15" fill="rgb(217,65,33)" fg:x="69" fg:w="2"/><text x="16.9976%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="16.7476%" y="885" width="0.4854%" height="15" fill="rgb(222,158,48)" fg:x="69" fg:w="2"/><text x="16.9976%" 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 (2 samples, 0.49%)</title><rect x="16.7476%" y="869" width="0.4854%" height="15" fill="rgb(254,2,54)" fg:x="69" fg:w="2"/><text x="16.9976%" y="879.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="16.7476%" y="853" width="0.4854%" height="15" fill="rgb(250,143,38)" fg:x="69" fg:w="2"/><text x="16.9976%" 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 (2 samples, 0.49%)</title><rect x="16.7476%" y="837" width="0.4854%" height="15" fill="rgb(248,25,0)" fg:x="69" fg:w="2"/><text x="16.9976%" 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 (2 samples, 0.49%)</title><rect x="16.7476%" y="821" width="0.4854%" height="15" fill="rgb(206,152,27)" fg:x="69" fg:w="2"/><text x="16.9976%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="16.7476%" y="805" width="0.4854%" height="15" fill="rgb(240,77,30)" fg:x="69" fg:w="2"/><text x="16.9976%" 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 (2 samples, 0.49%)</title><rect x="16.7476%" y="789" width="0.4854%" height="15" fill="rgb(231,5,3)" fg:x="69" fg:w="2"/><text x="16.9976%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="16.7476%" y="773" width="0.4854%" height="15" fill="rgb(207,226,32)" fg:x="69" fg:w="2"/><text x="16.9976%" y="783.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.49%)</title><rect x="16.7476%" y="757" width="0.4854%" height="15" fill="rgb(222,207,47)" fg:x="69" fg:w="2"/><text x="16.9976%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (2 samples, 0.49%)</title><rect x="16.7476%" y="741" width="0.4854%" height="15" fill="rgb(229,115,45)" fg:x="69" fg:w="2"/><text x="16.9976%" y="751.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="16.7476%" y="725" width="0.4854%" height="15" fill="rgb(224,191,6)" fg:x="69" fg:w="2"/><text x="16.9976%" y="735.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="16.7476%" y="709" width="0.4854%" height="15" fill="rgb(230,227,24)" fg:x="69" fg:w="2"/><text x="16.9976%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="16.7476%" y="693" width="0.4854%" height="15" fill="rgb(228,80,19)" fg:x="69" fg:w="2"/><text x="16.9976%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="16.9903%" y="677" width="0.2427%" height="15" fill="rgb(247,229,0)" fg:x="70" fg:w="1"/><text x="17.2403%" y="687.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="16.9903%" y="661" width="0.2427%" height="15" fill="rgb(237,194,15)" fg:x="70" fg:w="1"/><text x="17.2403%" y="671.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (1 samples, 0.24%)</title><rect x="17.2330%" y="709" width="0.2427%" height="15" fill="rgb(219,203,20)" fg:x="71" fg:w="1"/><text x="17.4830%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="17.2330%" y="693" width="0.2427%" height="15" fill="rgb(234,128,8)" fg:x="71" fg:w="1"/><text x="17.4830%" y="703.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="17.2330%" y="677" width="0.2427%" height="15" fill="rgb(248,202,8)" fg:x="71" fg:w="1"/><text x="17.4830%" y="687.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="17.2330%" y="661" width="0.2427%" height="15" fill="rgb(206,104,37)" fg:x="71" fg:w="1"/><text x="17.4830%" y="671.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="17.2330%" y="645" width="0.2427%" height="15" fill="rgb(223,8,27)" fg:x="71" fg:w="1"/><text x="17.4830%" y="655.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (10 samples, 2.43%)</title><rect x="15.5340%" y="933" width="2.4272%" height="15" fill="rgb(216,217,28)" fg:x="64" fg:w="10"/><text x="15.7840%" y="943.50">re..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (3 samples, 0.73%)</title><rect x="17.2330%" y="917" width="0.7282%" height="15" fill="rgb(249,199,1)" fg:x="71" fg:w="3"/><text x="17.4830%" 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 (3 samples, 0.73%)</title><rect x="17.2330%" y="901" width="0.7282%" height="15" fill="rgb(240,85,17)" fg:x="71" fg:w="3"/><text x="17.4830%" y="911.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (3 samples, 0.73%)</title><rect x="17.2330%" y="885" width="0.7282%" height="15" fill="rgb(206,108,45)" fg:x="71" fg:w="3"/><text x="17.4830%" 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 (3 samples, 0.73%)</title><rect x="17.2330%" y="869" width="0.7282%" height="15" fill="rgb(245,210,41)" fg:x="71" fg:w="3"/><text x="17.4830%" y="879.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 (3 samples, 0.73%)</title><rect x="17.2330%" y="853" width="0.7282%" height="15" fill="rgb(206,13,37)" fg:x="71" fg:w="3"/><text x="17.4830%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (3 samples, 0.73%)</title><rect x="17.2330%" y="837" width="0.7282%" height="15" fill="rgb(250,61,18)" fg:x="71" fg:w="3"/><text x="17.4830%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.73%)</title><rect x="17.2330%" y="821" width="0.7282%" height="15" fill="rgb(235,172,48)" fg:x="71" fg:w="3"/><text x="17.4830%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.73%)</title><rect x="17.2330%" y="805" width="0.7282%" height="15" fill="rgb(249,201,17)" fg:x="71" fg:w="3"/><text x="17.4830%" y="815.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (3 samples, 0.73%)</title><rect x="17.2330%" y="789" width="0.7282%" height="15" fill="rgb(219,208,6)" fg:x="71" fg:w="3"/><text x="17.4830%" y="799.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (3 samples, 0.73%)</title><rect x="17.2330%" y="773" width="0.7282%" height="15" fill="rgb(248,31,23)" fg:x="71" fg:w="3"/><text x="17.4830%" y="783.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="17.2330%" y="757" width="0.7282%" height="15" fill="rgb(245,15,42)" fg:x="71" fg:w="3"/><text x="17.4830%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (3 samples, 0.73%)</title><rect x="17.2330%" y="741" width="0.7282%" height="15" fill="rgb(222,217,39)" fg:x="71" fg:w="3"/><text x="17.4830%" y="751.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="17.2330%" y="725" width="0.7282%" height="15" fill="rgb(210,219,27)" fg:x="71" fg:w="3"/><text x="17.4830%" y="735.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (2 samples, 0.49%)</title><rect x="17.4757%" y="709" width="0.4854%" height="15" fill="rgb(252,166,36)" fg:x="72" fg:w="2"/><text x="17.7257%" y="719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="17.4757%" y="693" width="0.4854%" height="15" fill="rgb(245,132,34)" fg:x="72" fg:w="2"/><text x="17.7257%" 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 (2 samples, 0.49%)</title><rect x="17.4757%" y="677" width="0.4854%" height="15" fill="rgb(236,54,3)" fg:x="72" fg:w="2"/><text x="17.7257%" y="687.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="17.4757%" y="661" width="0.4854%" height="15" fill="rgb(241,173,43)" fg:x="72" fg:w="2"/><text x="17.7257%" 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 (2 samples, 0.49%)</title><rect x="17.4757%" y="645" width="0.4854%" height="15" fill="rgb(215,190,9)" fg:x="72" fg:w="2"/><text x="17.7257%" y="655.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 samples, 0.49%)</title><rect x="17.4757%" y="629" width="0.4854%" height="15" fill="rgb(242,101,16)" fg:x="72" fg:w="2"/><text x="17.7257%" y="639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="17.4757%" y="613" width="0.4854%" height="15" fill="rgb(223,190,21)" fg:x="72" fg:w="2"/><text x="17.7257%" 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 (2 samples, 0.49%)</title><rect x="17.4757%" y="597" width="0.4854%" height="15" fill="rgb(215,228,25)" fg:x="72" fg:w="2"/><text x="17.7257%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="17.4757%" y="581" width="0.4854%" height="15" fill="rgb(225,36,22)" fg:x="72" fg:w="2"/><text x="17.7257%" y="591.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="17.7184%" y="565" width="0.2427%" height="15" fill="rgb(251,106,46)" fg:x="73" fg:w="1"/><text x="17.9684%" y="575.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="17.7184%" y="549" width="0.2427%" height="15" fill="rgb(208,90,1)" fg:x="73" fg:w="1"/><text x="17.9684%" y="559.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="17.7184%" y="533" width="0.2427%" height="15" fill="rgb(243,10,4)" fg:x="73" fg:w="1"/><text x="17.9684%" y="543.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="17.7184%" y="517" width="0.2427%" height="15" fill="rgb(212,137,27)" fg:x="73" fg:w="1"/><text x="17.9684%" y="527.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::ForStmt&gt; for resast::stmt::ForStmt&gt;::from (1 samples, 0.24%)</title><rect x="17.9612%" y="933" width="0.2427%" height="15" fill="rgb(231,220,49)" fg:x="74" fg:w="1"/><text x="18.2112%" y="943.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="17.9612%" y="917" width="0.2427%" height="15" fill="rgb(237,96,20)" fg:x="74" fg:w="1"/><text x="18.2112%" y="927.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="17.9612%" y="901" width="0.2427%" height="15" fill="rgb(239,229,30)" fg:x="74" fg:w="1"/><text x="18.2112%" y="911.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::LoopInit&gt; for resast::stmt::LoopInit&gt;::from (1 samples, 0.24%)</title><rect x="17.9612%" y="885" width="0.2427%" height="15" fill="rgb(219,65,33)" fg:x="74" fg:w="1"/><text x="18.2112%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="17.9612%" y="869" width="0.2427%" height="15" fill="rgb(243,134,7)" fg:x="74" fg:w="1"/><text x="18.2112%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="17.9612%" y="853" width="0.2427%" height="15" fill="rgb(216,177,54)" fg:x="74" fg:w="1"/><text x="18.2112%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="17.9612%" y="837" width="0.2427%" height="15" fill="rgb(211,160,20)" fg:x="74" fg:w="1"/><text x="18.2112%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (1 samples, 0.24%)</title><rect x="17.9612%" y="821" width="0.2427%" height="15" fill="rgb(239,85,39)" fg:x="74" fg:w="1"/><text x="18.2112%" y="831.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="17.9612%" y="805" width="0.2427%" height="15" fill="rgb(232,125,22)" fg:x="74" fg:w="1"/><text x="18.2112%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="17.9612%" y="789" width="0.2427%" height="15" fill="rgb(244,57,34)" fg:x="74" fg:w="1"/><text x="18.2112%" y="799.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="17.9612%" y="773" width="0.2427%" height="15" fill="rgb(214,203,32)" fg:x="74" fg:w="1"/><text x="18.2112%" y="783.50"></text></g><g><title>__GI___libc_free (1 samples, 0.24%)</title><rect x="17.9612%" y="757" width="0.2427%" height="15" fill="rgb(207,58,43)" fg:x="74" fg:w="1"/><text x="18.2112%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (2 samples, 0.49%)</title><rect x="18.2039%" y="869" width="0.4854%" height="15" fill="rgb(215,193,15)" fg:x="75" fg:w="2"/><text x="18.4539%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="18.2039%" y="853" width="0.4854%" height="15" fill="rgb(232,15,44)" fg:x="75" fg:w="2"/><text x="18.4539%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="18.6893%" y="869" width="0.2427%" height="15" fill="rgb(212,3,48)" fg:x="77" fg:w="1"/><text x="18.9393%" y="879.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="18.6893%" y="853" width="0.2427%" height="15" fill="rgb(218,128,7)" fg:x="77" fg:w="1"/><text x="18.9393%" y="863.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="18.6893%" y="837" width="0.2427%" height="15" fill="rgb(226,216,39)" fg:x="77" fg:w="1"/><text x="18.9393%" y="847.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="18.6893%" y="821" width="0.2427%" height="15" fill="rgb(243,47,51)" fg:x="77" fg:w="1"/><text x="18.9393%" y="831.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="18.6893%" y="805" width="0.2427%" height="15" fill="rgb(241,183,40)" fg:x="77" fg:w="1"/><text x="18.9393%" y="815.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (3 samples, 0.73%)</title><rect x="18.9320%" y="853" width="0.7282%" height="15" fill="rgb(231,217,32)" fg:x="78" fg:w="3"/><text x="19.1820%" y="863.50"></text></g><g><title>alloc::alloc::exchange_malloc (3 samples, 0.73%)</title><rect x="18.9320%" y="837" width="0.7282%" height="15" fill="rgb(229,61,38)" fg:x="78" fg:w="3"/><text x="19.1820%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3 samples, 0.73%)</title><rect x="18.9320%" y="821" width="0.7282%" height="15" fill="rgb(225,210,5)" fg:x="78" fg:w="3"/><text x="19.1820%" y="831.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 0.73%)</title><rect x="18.9320%" y="805" width="0.7282%" height="15" fill="rgb(231,79,45)" fg:x="78" fg:w="3"/><text x="19.1820%" y="815.50"></text></g><g><title>alloc::alloc::alloc (3 samples, 0.73%)</title><rect x="18.9320%" y="789" width="0.7282%" height="15" fill="rgb(224,100,7)" fg:x="78" fg:w="3"/><text x="19.1820%" y="799.50"></text></g><g><title>__GI___libc_malloc (3 samples, 0.73%)</title><rect x="18.9320%" y="773" width="0.7282%" height="15" fill="rgb(241,198,18)" fg:x="78" fg:w="3"/><text x="19.1820%" y="783.50"></text></g><g><title>_int_malloc (3 samples, 0.73%)</title><rect x="18.9320%" y="757" width="0.7282%" height="15" fill="rgb(252,97,53)" fg:x="78" fg:w="3"/><text x="19.1820%" y="767.50"></text></g><g><title>unlink_chunk.isra.0 (1 samples, 0.24%)</title><rect x="19.4175%" y="741" width="0.2427%" height="15" fill="rgb(220,88,7)" fg:x="80" fg:w="1"/><text x="19.6675%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (4 samples, 0.97%)</title><rect x="18.9320%" y="869" width="0.9709%" height="15" fill="rgb(213,176,14)" fg:x="78" fg:w="4"/><text x="19.1820%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="19.6602%" y="853" width="0.2427%" height="15" fill="rgb(246,73,7)" fg:x="81" fg:w="1"/><text x="19.9102%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="19.6602%" y="837" width="0.2427%" height="15" fill="rgb(245,64,36)" fg:x="81" fg:w="1"/><text x="19.9102%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="19.6602%" y="821" width="0.2427%" height="15" fill="rgb(245,80,10)" fg:x="81" fg:w="1"/><text x="19.9102%" y="831.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="19.6602%" y="805" width="0.2427%" height="15" fill="rgb(232,107,50)" fg:x="81" fg:w="1"/><text x="19.9102%" y="815.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="19.6602%" y="789" width="0.2427%" height="15" fill="rgb(253,3,0)" fg:x="81" fg:w="1"/><text x="19.9102%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="19.6602%" y="773" width="0.2427%" height="15" fill="rgb(212,99,53)" fg:x="81" fg:w="1"/><text x="19.9102%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="19.6602%" y="757" width="0.2427%" height="15" fill="rgb(249,111,54)" fg:x="81" fg:w="1"/><text x="19.9102%" y="767.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="19.6602%" y="741" width="0.2427%" height="15" fill="rgb(249,55,30)" fg:x="81" fg:w="1"/><text x="19.9102%" y="751.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="19.6602%" y="725" width="0.2427%" height="15" fill="rgb(237,47,42)" fg:x="81" fg:w="1"/><text x="19.9102%" y="735.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="19.6602%" y="709" width="0.2427%" height="15" fill="rgb(211,20,18)" fg:x="81" fg:w="1"/><text x="19.9102%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (8 samples, 1.94%)</title><rect x="18.2039%" y="917" width="1.9417%" height="15" fill="rgb(231,203,46)" fg:x="75" fg:w="8"/><text x="18.4539%" y="927.50">&lt;..</text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (8 samples, 1.94%)</title><rect x="18.2039%" y="901" width="1.9417%" height="15" fill="rgb(237,142,3)" fg:x="75" fg:w="8"/><text x="18.4539%" y="911.50">r..</text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (8 samples, 1.94%)</title><rect x="18.2039%" y="885" width="1.9417%" height="15" fill="rgb(241,107,1)" fg:x="75" fg:w="8"/><text x="18.4539%" y="895.50">&lt;..</text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::UnaryExpr&gt; for resast::expr::UnaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="19.9029%" y="869" width="0.2427%" height="15" fill="rgb(229,83,13)" fg:x="82" fg:w="1"/><text x="20.1529%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="19.9029%" y="853" width="0.2427%" height="15" fill="rgb(241,91,40)" fg:x="82" fg:w="1"/><text x="20.1529%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="19.9029%" y="837" width="0.2427%" height="15" fill="rgb(225,3,45)" fg:x="82" fg:w="1"/><text x="20.1529%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="19.9029%" y="821" width="0.2427%" height="15" fill="rgb(244,223,14)" fg:x="82" fg:w="1"/><text x="20.1529%" y="831.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="19.9029%" y="805" width="0.2427%" height="15" fill="rgb(224,124,37)" fg:x="82" fg:w="1"/><text x="20.1529%" y="815.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="19.9029%" y="789" width="0.2427%" height="15" fill="rgb(251,171,30)" fg:x="82" fg:w="1"/><text x="20.1529%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="19.9029%" y="773" width="0.2427%" height="15" fill="rgb(236,46,54)" fg:x="82" fg:w="1"/><text x="20.1529%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="19.9029%" y="757" width="0.2427%" height="15" fill="rgb(245,213,5)" fg:x="82" fg:w="1"/><text x="20.1529%" y="767.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="19.9029%" y="741" width="0.2427%" height="15" fill="rgb(230,144,27)" fg:x="82" fg:w="1"/><text x="20.1529%" y="751.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="19.9029%" y="725" width="0.2427%" height="15" fill="rgb(220,86,6)" fg:x="82" fg:w="1"/><text x="20.1529%" y="735.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="19.9029%" y="709" width="0.2427%" height="15" fill="rgb(240,20,13)" fg:x="82" fg:w="1"/><text x="20.1529%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (20 samples, 4.85%)</title><rect x="15.5340%" y="949" width="4.8544%" height="15" fill="rgb(217,89,34)" fg:x="64" fg:w="20"/><text x="15.7840%" y="959.50">&lt;T as ..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (9 samples, 2.18%)</title><rect x="18.2039%" y="933" width="2.1845%" height="15" fill="rgb(229,13,5)" fg:x="75" fg:w="9"/><text x="18.4539%" y="943.50">r..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (1 samples, 0.24%)</title><rect x="20.1456%" y="917" width="0.2427%" height="15" fill="rgb(244,67,35)" fg:x="83" fg:w="1"/><text x="20.3956%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.1456%" y="901" width="0.2427%" height="15" fill="rgb(221,40,2)" fg:x="83" fg:w="1"/><text x="20.3956%" y="911.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::BlockStmt&gt; for resast::stmt::BlockStmt&gt;::from (1 samples, 0.24%)</title><rect x="20.1456%" y="885" width="0.2427%" height="15" fill="rgb(237,157,21)" fg:x="83" fg:w="1"/><text x="20.3956%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="20.1456%" y="869" width="0.2427%" height="15" fill="rgb(222,94,11)" fg:x="83" fg:w="1"/><text x="20.3956%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.1456%" y="853" width="0.2427%" height="15" fill="rgb(249,113,6)" fg:x="83" fg:w="1"/><text x="20.3956%" y="863.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.1456%" y="837" width="0.2427%" height="15" fill="rgb(238,137,36)" fg:x="83" fg:w="1"/><text x="20.3956%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.1456%" y="821" width="0.2427%" height="15" fill="rgb(210,102,26)" fg:x="83" fg:w="1"/><text x="20.3956%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.24%)</title><rect x="20.1456%" y="805" width="0.2427%" height="15" fill="rgb(218,30,30)" fg:x="83" fg:w="1"/><text x="20.3956%" y="815.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="20.1456%" y="789" width="0.2427%" height="15" fill="rgb(214,67,26)" fg:x="83" fg:w="1"/><text x="20.3956%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="20.1456%" y="773" width="0.2427%" height="15" fill="rgb(251,9,53)" fg:x="83" fg:w="1"/><text x="20.3956%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="20.1456%" y="757" width="0.2427%" height="15" fill="rgb(228,204,25)" fg:x="83" fg:w="1"/><text x="20.3956%" y="767.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="20.1456%" y="741" width="0.2427%" height="15" fill="rgb(207,153,8)" fg:x="83" fg:w="1"/><text x="20.3956%" y="751.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="20.1456%" y="725" width="0.2427%" height="15" fill="rgb(242,9,16)" fg:x="83" fg:w="1"/><text x="20.3956%" y="735.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="20.1456%" y="709" width="0.2427%" height="15" fill="rgb(217,211,10)" fg:x="83" fg:w="1"/><text x="20.3956%" y="719.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="20.1456%" y="693" width="0.2427%" height="15" fill="rgb(219,228,52)" fg:x="83" fg:w="1"/><text x="20.3956%" y="703.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="20.1456%" y="677" width="0.2427%" height="15" fill="rgb(231,92,29)" fg:x="83" fg:w="1"/><text x="20.3956%" y="687.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::ProgramPart&gt; for resast::ProgramPart&gt;::from (30 samples, 7.28%)</title><rect x="13.3495%" y="997" width="7.2816%" height="15" fill="rgb(232,8,23)" fg:x="55" fg:w="30"/><text x="13.5995%" y="1007.50">resast::sp..</text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (30 samples, 7.28%)</title><rect x="13.3495%" y="981" width="7.2816%" height="15" fill="rgb(216,211,34)" fg:x="55" fg:w="30"/><text x="13.5995%" y="991.50">&lt;T as core..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (21 samples, 5.10%)</title><rect x="15.5340%" y="965" width="5.0971%" height="15" fill="rgb(236,151,0)" fg:x="64" fg:w="21"/><text x="15.7840%" y="975.50">resast..</text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="20.3883%" y="949" width="0.2427%" height="15" fill="rgb(209,168,3)" fg:x="84" fg:w="1"/><text x="20.6383%" y="959.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="20.3883%" y="933" width="0.2427%" height="15" fill="rgb(208,129,28)" fg:x="84" fg:w="1"/><text x="20.6383%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="20.3883%" y="917" width="0.2427%" height="15" fill="rgb(229,78,22)" fg:x="84" fg:w="1"/><text x="20.6383%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.3883%" y="901" width="0.2427%" height="15" fill="rgb(228,187,13)" fg:x="84" fg:w="1"/><text x="20.6383%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="20.3883%" y="885" width="0.2427%" height="15" fill="rgb(240,119,24)" fg:x="84" fg:w="1"/><text x="20.6383%" y="895.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="20.3883%" y="869" width="0.2427%" height="15" fill="rgb(209,194,42)" fg:x="84" fg:w="1"/><text x="20.6383%" y="879.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.3883%" y="853" width="0.2427%" height="15" fill="rgb(247,200,46)" fg:x="84" fg:w="1"/><text x="20.6383%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="20.3883%" y="837" width="0.2427%" height="15" fill="rgb(218,76,16)" fg:x="84" fg:w="1"/><text x="20.6383%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="20.3883%" y="821" width="0.2427%" height="15" fill="rgb(225,21,48)" fg:x="84" fg:w="1"/><text x="20.6383%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.3883%" y="805" width="0.2427%" height="15" fill="rgb(239,223,50)" fg:x="84" fg:w="1"/><text x="20.6383%" y="815.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.3883%" y="789" width="0.2427%" height="15" fill="rgb(244,45,21)" fg:x="84" fg:w="1"/><text x="20.6383%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.3883%" y="773" width="0.2427%" height="15" fill="rgb(232,33,43)" fg:x="84" fg:w="1"/><text x="20.6383%" y="783.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 samples, 0.24%)</title><rect x="20.3883%" y="757" width="0.2427%" height="15" fill="rgb(209,8,3)" fg:x="84" fg:w="1"/><text x="20.6383%" y="767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="20.3883%" y="741" width="0.2427%" height="15" fill="rgb(214,25,53)" fg:x="84" fg:w="1"/><text x="20.6383%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="20.3883%" y="725" width="0.2427%" height="15" fill="rgb(254,186,54)" fg:x="84" fg:w="1"/><text x="20.6383%" y="735.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="20.3883%" y="709" width="0.2427%" height="15" fill="rgb(208,174,49)" fg:x="84" fg:w="1"/><text x="20.6383%" y="719.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="20.3883%" y="693" width="0.2427%" height="15" fill="rgb(233,191,51)" fg:x="84" fg:w="1"/><text x="20.6383%" y="703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (1 samples, 0.24%)</title><rect x="20.3883%" y="677" width="0.2427%" height="15" fill="rgb(222,134,10)" fg:x="84" fg:w="1"/><text x="20.6383%" y="687.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::{{closure}} (1 samples, 0.24%)</title><rect x="20.3883%" y="661" width="0.2427%" height="15" fill="rgb(230,226,20)" fg:x="84" fg:w="1"/><text x="20.6383%" y="671.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="20.3883%" y="645" width="0.2427%" height="15" fill="rgb(251,111,25)" fg:x="84" fg:w="1"/><text x="20.6383%" y="655.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::Decl&gt; for resast::decl::Decl&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="997" width="0.2427%" height="15" fill="rgb(224,40,46)" fg:x="85" fg:w="1"/><text x="20.8811%" y="1007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="20.6311%" y="981" width="0.2427%" height="15" fill="rgb(236,108,47)" fg:x="85" fg:w="1"/><text x="20.8811%" 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 (1 samples, 0.24%)</title><rect x="20.6311%" y="965" width="0.2427%" height="15" fill="rgb(234,93,0)" fg:x="85" fg:w="1"/><text x="20.8811%" y="975.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.6311%" y="949" width="0.2427%" height="15" fill="rgb(224,213,32)" fg:x="85" fg:w="1"/><text x="20.8811%" 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 (1 samples, 0.24%)</title><rect x="20.6311%" y="933" width="0.2427%" height="15" fill="rgb(251,11,48)" fg:x="85" fg:w="1"/><text x="20.8811%" y="943.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 samples, 0.24%)</title><rect x="20.6311%" y="917" width="0.2427%" height="15" fill="rgb(236,173,5)" fg:x="85" fg:w="1"/><text x="20.8811%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="20.6311%" y="901" width="0.2427%" height="15" fill="rgb(230,95,12)" fg:x="85" fg:w="1"/><text x="20.8811%" y="911.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="20.6311%" y="885" width="0.2427%" height="15" fill="rgb(232,209,1)" fg:x="85" fg:w="1"/><text x="20.8811%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="20.6311%" y="869" width="0.2427%" height="15" fill="rgb(232,6,1)" fg:x="85" fg:w="1"/><text x="20.8811%" y="879.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="20.6311%" y="853" width="0.2427%" height="15" fill="rgb(210,224,50)" fg:x="85" fg:w="1"/><text x="20.8811%" y="863.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="20.6311%" y="837" width="0.2427%" height="15" fill="rgb(228,127,35)" fg:x="85" fg:w="1"/><text x="20.8811%" y="847.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.6311%" y="821" width="0.2427%" height="15" fill="rgb(245,102,45)" fg:x="85" fg:w="1"/><text x="20.8811%" y="831.50"></text></g><g><title>resast::spanned::decl::&lt;impl core::convert::From&lt;resast::spanned::decl::VarDecl&gt; for resast::decl::VarDecl&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="805" width="0.2427%" height="15" fill="rgb(214,1,49)" fg:x="85" fg:w="1"/><text x="20.8811%" y="815.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="20.6311%" y="789" width="0.2427%" height="15" fill="rgb(226,163,40)" fg:x="85" fg:w="1"/><text x="20.8811%" y="799.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="20.6311%" y="773" width="0.2427%" height="15" fill="rgb(239,212,28)" fg:x="85" fg:w="1"/><text x="20.8811%" y="783.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="757" width="0.2427%" height="15" fill="rgb(220,20,13)" fg:x="85" fg:w="1"/><text x="20.8811%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.6311%" y="741" width="0.2427%" height="15" fill="rgb(210,164,35)" fg:x="85" fg:w="1"/><text x="20.8811%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="725" width="0.2427%" height="15" fill="rgb(248,109,41)" fg:x="85" fg:w="1"/><text x="20.8811%" y="735.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="20.6311%" y="709" width="0.2427%" height="15" fill="rgb(238,23,50)" fg:x="85" fg:w="1"/><text x="20.8811%" 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 (1 samples, 0.24%)</title><rect x="20.6311%" y="693" width="0.2427%" height="15" fill="rgb(211,48,49)" fg:x="85" fg:w="1"/><text x="20.8811%" y="703.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="20.6311%" y="677" width="0.2427%" height="15" fill="rgb(223,36,21)" fg:x="85" fg:w="1"/><text x="20.8811%" 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 (1 samples, 0.24%)</title><rect x="20.6311%" y="661" width="0.2427%" height="15" fill="rgb(207,123,46)" fg:x="85" fg:w="1"/><text x="20.8811%" 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 (1 samples, 0.24%)</title><rect x="20.6311%" y="645" width="0.2427%" height="15" fill="rgb(240,218,32)" fg:x="85" fg:w="1"/><text x="20.8811%" y="655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="20.6311%" y="629" width="0.2427%" height="15" fill="rgb(252,5,43)" fg:x="85" fg:w="1"/><text x="20.8811%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="20.6311%" y="613" width="0.2427%" height="15" fill="rgb(252,84,19)" fg:x="85" fg:w="1"/><text x="20.8811%" y="623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="20.6311%" y="597" width="0.2427%" height="15" fill="rgb(243,152,39)" fg:x="85" fg:w="1"/><text x="20.8811%" y="607.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="20.6311%" y="581" width="0.2427%" height="15" fill="rgb(234,160,15)" fg:x="85" fg:w="1"/><text x="20.8811%" y="591.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="20.6311%" y="565" width="0.2427%" height="15" fill="rgb(237,34,20)" fg:x="85" fg:w="1"/><text x="20.8811%" y="575.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.6311%" y="549" width="0.2427%" height="15" fill="rgb(229,97,13)" fg:x="85" fg:w="1"/><text x="20.8811%" y="559.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="533" width="0.2427%" height="15" fill="rgb(234,71,50)" fg:x="85" fg:w="1"/><text x="20.8811%" y="543.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.6311%" y="517" width="0.2427%" height="15" fill="rgb(253,155,4)" fg:x="85" fg:w="1"/><text x="20.8811%" y="527.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="20.6311%" y="501" width="0.2427%" height="15" fill="rgb(222,185,37)" fg:x="85" fg:w="1"/><text x="20.8811%" y="511.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="20.6311%" y="485" width="0.2427%" height="15" fill="rgb(251,177,13)" fg:x="85" fg:w="1"/><text x="20.8811%" y="495.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="20.8738%" y="741" width="0.2427%" height="15" fill="rgb(250,179,40)" fg:x="86" fg:w="1"/><text x="21.1238%" y="751.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="20.8738%" y="725" width="0.2427%" height="15" fill="rgb(242,44,2)" fg:x="86" fg:w="1"/><text x="21.1238%" y="735.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (2 samples, 0.49%)</title><rect x="20.8738%" y="965" width="0.4854%" height="15" fill="rgb(216,177,13)" fg:x="86" fg:w="2"/><text x="21.1238%" y="975.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="20.8738%" y="949" width="0.4854%" height="15" fill="rgb(216,106,43)" fg:x="86" fg:w="2"/><text x="21.1238%" y="959.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::FuncBody&gt; for resast::FuncBody&gt;::from (2 samples, 0.49%)</title><rect x="20.8738%" y="933" width="0.4854%" height="15" fill="rgb(216,183,2)" fg:x="86" fg:w="2"/><text x="21.1238%" y="943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="20.8738%" y="917" width="0.4854%" height="15" fill="rgb(249,75,3)" fg:x="86" fg:w="2"/><text x="21.1238%" 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 (2 samples, 0.49%)</title><rect x="20.8738%" y="901" width="0.4854%" height="15" fill="rgb(219,67,39)" fg:x="86" fg:w="2"/><text x="21.1238%" y="911.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="20.8738%" y="885" width="0.4854%" height="15" fill="rgb(253,228,2)" fg:x="86" fg:w="2"/><text x="21.1238%" 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 (2 samples, 0.49%)</title><rect x="20.8738%" y="869" width="0.4854%" height="15" fill="rgb(235,138,27)" fg:x="86" fg:w="2"/><text x="21.1238%" y="879.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 samples, 0.49%)</title><rect x="20.8738%" y="853" width="0.4854%" height="15" fill="rgb(236,97,51)" fg:x="86" fg:w="2"/><text x="21.1238%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="20.8738%" y="837" width="0.4854%" height="15" fill="rgb(240,80,30)" fg:x="86" fg:w="2"/><text x="21.1238%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2 samples, 0.49%)</title><rect x="20.8738%" y="821" width="0.4854%" height="15" fill="rgb(230,178,19)" fg:x="86" fg:w="2"/><text x="21.1238%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="20.8738%" y="805" width="0.4854%" height="15" fill="rgb(210,190,27)" fg:x="86" fg:w="2"/><text x="21.1238%" y="815.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.49%)</title><rect x="20.8738%" y="789" width="0.4854%" height="15" fill="rgb(222,107,31)" fg:x="86" fg:w="2"/><text x="21.1238%" y="799.50"></text></g><g><title>core::ops::function::FnMut::call_mut (2 samples, 0.49%)</title><rect x="20.8738%" y="773" width="0.4854%" height="15" fill="rgb(216,127,34)" fg:x="86" fg:w="2"/><text x="21.1238%" y="783.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::ProgramPart&gt; for resast::ProgramPart&gt;::from (2 samples, 0.49%)</title><rect x="20.8738%" y="757" width="0.4854%" height="15" fill="rgb(234,116,52)" fg:x="86" fg:w="2"/><text x="21.1238%" y="767.50"></text></g><g><title>resast::ProgramPart::Decl (1 samples, 0.24%)</title><rect x="21.1165%" y="741" width="0.2427%" height="15" fill="rgb(222,124,15)" fg:x="87" fg:w="1"/><text x="21.3665%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.3592%" y="965" width="0.2427%" height="15" fill="rgb(231,179,28)" fg:x="88" fg:w="1"/><text x="21.6092%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="21.3592%" y="949" width="0.2427%" height="15" fill="rgb(226,93,45)" fg:x="88" fg:w="1"/><text x="21.6092%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.3592%" y="933" width="0.2427%" height="15" fill="rgb(215,8,51)" fg:x="88" fg:w="1"/><text x="21.6092%" y="943.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.3592%" y="917" width="0.2427%" height="15" fill="rgb(223,106,5)" fg:x="88" fg:w="1"/><text x="21.6092%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.3592%" y="901" width="0.2427%" height="15" fill="rgb(250,191,5)" fg:x="88" fg:w="1"/><text x="21.6092%" y="911.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 samples, 0.24%)</title><rect x="21.3592%" y="885" width="0.2427%" height="15" fill="rgb(242,132,44)" fg:x="88" fg:w="1"/><text x="21.6092%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="21.3592%" y="869" width="0.2427%" height="15" fill="rgb(251,152,29)" fg:x="88" fg:w="1"/><text x="21.6092%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="21.3592%" y="853" width="0.2427%" height="15" fill="rgb(218,179,5)" fg:x="88" fg:w="1"/><text x="21.6092%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="21.3592%" y="837" width="0.2427%" height="15" fill="rgb(227,67,19)" fg:x="88" fg:w="1"/><text x="21.6092%" y="847.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="21.3592%" y="821" width="0.2427%" height="15" fill="rgb(233,119,31)" fg:x="88" fg:w="1"/><text x="21.6092%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="21.3592%" y="805" width="0.2427%" height="15" fill="rgb(241,120,22)" fg:x="88" fg:w="1"/><text x="21.6092%" y="815.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.3592%" y="789" width="0.2427%" height="15" fill="rgb(224,102,30)" fg:x="88" fg:w="1"/><text x="21.6092%" y="799.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.3592%" y="773" width="0.2427%" height="15" fill="rgb(210,164,37)" fg:x="88" fg:w="1"/><text x="21.6092%" y="783.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.3592%" y="757" width="0.2427%" height="15" fill="rgb(226,191,16)" fg:x="88" fg:w="1"/><text x="21.6092%" y="767.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="21.3592%" y="741" width="0.2427%" height="15" fill="rgb(214,40,45)" fg:x="88" fg:w="1"/><text x="21.6092%" y="751.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.3592%" y="725" width="0.2427%" height="15" fill="rgb(244,29,26)" fg:x="88" fg:w="1"/><text x="21.6092%" y="735.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::FuncBody&gt; for resast::FuncBody&gt;::from (1 samples, 0.24%)</title><rect x="21.3592%" y="709" width="0.2427%" height="15" fill="rgb(216,16,5)" fg:x="88" fg:w="1"/><text x="21.6092%" y="719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="21.3592%" y="693" width="0.2427%" height="15" fill="rgb(249,76,35)" fg:x="88" fg:w="1"/><text x="21.6092%" 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 (1 samples, 0.24%)</title><rect x="21.3592%" y="677" width="0.2427%" height="15" fill="rgb(207,11,44)" fg:x="88" fg:w="1"/><text x="21.6092%" y="687.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.3592%" y="661" width="0.2427%" height="15" fill="rgb(228,190,49)" fg:x="88" fg:w="1"/><text x="21.6092%" 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 (1 samples, 0.24%)</title><rect x="21.3592%" y="645" width="0.2427%" height="15" fill="rgb(214,173,12)" fg:x="88" fg:w="1"/><text x="21.6092%" y="655.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 samples, 0.24%)</title><rect x="21.3592%" y="629" width="0.2427%" height="15" fill="rgb(218,26,35)" fg:x="88" fg:w="1"/><text x="21.6092%" y="639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="21.3592%" y="613" width="0.2427%" height="15" fill="rgb(220,200,19)" fg:x="88" fg:w="1"/><text x="21.6092%" 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 (1 samples, 0.24%)</title><rect x="21.3592%" y="597" width="0.2427%" height="15" fill="rgb(239,95,49)" fg:x="88" fg:w="1"/><text x="21.6092%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="21.3592%" y="581" width="0.2427%" height="15" fill="rgb(235,85,53)" fg:x="88" fg:w="1"/><text x="21.6092%" y="591.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="21.3592%" y="565" width="0.2427%" height="15" fill="rgb(233,133,31)" fg:x="88" fg:w="1"/><text x="21.6092%" y="575.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="21.3592%" y="549" width="0.2427%" height="15" fill="rgb(218,25,20)" fg:x="88" fg:w="1"/><text x="21.6092%" y="559.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="21.3592%" y="533" width="0.2427%" height="15" fill="rgb(252,210,38)" fg:x="88" fg:w="1"/><text x="21.6092%" y="543.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (4 samples, 0.97%)</title><rect x="20.8738%" y="981" width="0.9709%" height="15" fill="rgb(242,134,21)" fg:x="86" fg:w="4"/><text x="21.1238%" y="991.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="965" width="0.2427%" height="15" fill="rgb(213,28,48)" fg:x="89" fg:w="1"/><text x="21.8519%" y="975.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="949" width="0.2427%" height="15" fill="rgb(250,196,2)" fg:x="89" fg:w="1"/><text x="21.8519%" y="959.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.6019%" y="933" width="0.2427%" height="15" fill="rgb(227,5,17)" fg:x="89" fg:w="1"/><text x="21.8519%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="917" width="0.2427%" height="15" fill="rgb(221,226,24)" fg:x="89" fg:w="1"/><text x="21.8519%" y="927.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="901" width="0.2427%" height="15" fill="rgb(211,5,48)" fg:x="89" fg:w="1"/><text x="21.8519%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="21.6019%" y="885" width="0.2427%" height="15" fill="rgb(219,150,6)" fg:x="89" fg:w="1"/><text x="21.8519%" 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 (1 samples, 0.24%)</title><rect x="21.6019%" y="869" width="0.2427%" height="15" fill="rgb(251,46,16)" fg:x="89" fg:w="1"/><text x="21.8519%" y="879.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.6019%" y="853" width="0.2427%" height="15" fill="rgb(220,204,40)" fg:x="89" fg:w="1"/><text x="21.8519%" 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 (1 samples, 0.24%)</title><rect x="21.6019%" y="837" width="0.2427%" height="15" fill="rgb(211,85,2)" fg:x="89" fg:w="1"/><text x="21.8519%" 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 (1 samples, 0.24%)</title><rect x="21.6019%" y="821" width="0.2427%" height="15" fill="rgb(229,17,7)" fg:x="89" fg:w="1"/><text x="21.8519%" y="831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="21.6019%" y="805" width="0.2427%" height="15" fill="rgb(239,72,28)" fg:x="89" fg:w="1"/><text x="21.8519%" 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 (1 samples, 0.24%)</title><rect x="21.6019%" y="789" width="0.2427%" height="15" fill="rgb(230,47,54)" fg:x="89" fg:w="1"/><text x="21.8519%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="21.6019%" y="773" width="0.2427%" height="15" fill="rgb(214,50,8)" fg:x="89" fg:w="1"/><text x="21.8519%" y="783.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="21.6019%" y="757" width="0.2427%" height="15" fill="rgb(216,198,43)" fg:x="89" fg:w="1"/><text x="21.8519%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="21.6019%" y="741" width="0.2427%" height="15" fill="rgb(234,20,35)" fg:x="89" fg:w="1"/><text x="21.8519%" y="751.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.6019%" y="725" width="0.2427%" height="15" fill="rgb(254,45,19)" fg:x="89" fg:w="1"/><text x="21.8519%" y="735.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="709" width="0.2427%" height="15" fill="rgb(219,14,44)" fg:x="89" fg:w="1"/><text x="21.8519%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.6019%" y="693" width="0.2427%" height="15" fill="rgb(217,220,26)" fg:x="89" fg:w="1"/><text x="21.8519%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="677" width="0.2427%" height="15" fill="rgb(213,158,28)" fg:x="89" fg:w="1"/><text x="21.8519%" y="687.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="661" width="0.2427%" height="15" fill="rgb(252,51,52)" fg:x="89" fg:w="1"/><text x="21.8519%" y="671.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.6019%" y="645" width="0.2427%" height="15" fill="rgb(246,89,16)" fg:x="89" fg:w="1"/><text x="21.8519%" y="655.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.6019%" y="629" width="0.2427%" height="15" fill="rgb(216,158,49)" fg:x="89" fg:w="1"/><text x="21.8519%" y="639.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="21.6019%" y="613" width="0.2427%" height="15" fill="rgb(236,107,19)" fg:x="89" fg:w="1"/><text x="21.8519%" y="623.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (5 samples, 1.21%)</title><rect x="20.8738%" y="997" width="1.2136%" height="15" fill="rgb(228,185,30)" fg:x="86" fg:w="5"/><text x="21.1238%" y="1007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="21.8447%" y="981" width="0.2427%" height="15" fill="rgb(246,134,8)" fg:x="90" fg:w="1"/><text x="22.0947%" 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 (1 samples, 0.24%)</title><rect x="21.8447%" y="965" width="0.2427%" height="15" fill="rgb(214,143,50)" fg:x="90" fg:w="1"/><text x="22.0947%" y="975.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.8447%" y="949" width="0.2427%" height="15" fill="rgb(228,75,8)" fg:x="90" fg:w="1"/><text x="22.0947%" 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 (1 samples, 0.24%)</title><rect x="21.8447%" y="933" width="0.2427%" height="15" fill="rgb(207,175,4)" fg:x="90" fg:w="1"/><text x="22.0947%" y="943.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 samples, 0.24%)</title><rect x="21.8447%" y="917" width="0.2427%" height="15" fill="rgb(205,108,24)" fg:x="90" fg:w="1"/><text x="22.0947%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="21.8447%" y="901" width="0.2427%" height="15" fill="rgb(244,120,49)" fg:x="90" fg:w="1"/><text x="22.0947%" y="911.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="21.8447%" y="885" width="0.2427%" height="15" fill="rgb(223,47,38)" fg:x="90" fg:w="1"/><text x="22.0947%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="21.8447%" y="869" width="0.2427%" height="15" fill="rgb(229,179,11)" fg:x="90" fg:w="1"/><text x="22.0947%" y="879.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="21.8447%" y="853" width="0.2427%" height="15" fill="rgb(231,122,1)" fg:x="90" fg:w="1"/><text x="22.0947%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="21.8447%" y="837" width="0.2427%" height="15" fill="rgb(245,119,9)" fg:x="90" fg:w="1"/><text x="22.0947%" y="847.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.8447%" y="821" width="0.2427%" height="15" fill="rgb(241,163,25)" fg:x="90" fg:w="1"/><text x="22.0947%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="805" width="0.2427%" height="15" fill="rgb(217,214,3)" fg:x="90" fg:w="1"/><text x="22.0947%" y="815.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.8447%" y="789" width="0.2427%" height="15" fill="rgb(240,86,28)" fg:x="90" fg:w="1"/><text x="22.0947%" y="799.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="773" width="0.2427%" height="15" fill="rgb(215,47,9)" fg:x="90" fg:w="1"/><text x="22.0947%" y="783.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="757" width="0.2427%" height="15" fill="rgb(252,25,45)" fg:x="90" fg:w="1"/><text x="22.0947%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.8447%" y="741" width="0.2427%" height="15" fill="rgb(251,164,9)" fg:x="90" fg:w="1"/><text x="22.0947%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="725" width="0.2427%" height="15" fill="rgb(233,194,0)" fg:x="90" fg:w="1"/><text x="22.0947%" y="735.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="709" width="0.2427%" height="15" fill="rgb(249,111,24)" fg:x="90" fg:w="1"/><text x="22.0947%" y="719.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="21.8447%" y="693" width="0.2427%" height="15" fill="rgb(250,223,3)" fg:x="90" fg:w="1"/><text x="22.0947%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="21.8447%" y="677" width="0.2427%" height="15" fill="rgb(236,178,37)" fg:x="90" fg:w="1"/><text x="22.0947%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="21.8447%" y="661" width="0.2427%" height="15" fill="rgb(241,158,50)" fg:x="90" fg:w="1"/><text x="22.0947%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.8447%" y="645" width="0.2427%" height="15" fill="rgb(213,121,41)" fg:x="90" fg:w="1"/><text x="22.0947%" y="655.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.8447%" y="629" width="0.2427%" height="15" fill="rgb(240,92,3)" fg:x="90" fg:w="1"/><text x="22.0947%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="21.8447%" y="613" width="0.2427%" height="15" fill="rgb(205,123,3)" fg:x="90" fg:w="1"/><text x="22.0947%" y="623.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 samples, 0.24%)</title><rect x="21.8447%" y="597" width="0.2427%" height="15" fill="rgb(205,97,47)" fg:x="90" fg:w="1"/><text x="22.0947%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="21.8447%" y="581" width="0.2427%" height="15" fill="rgb(247,152,14)" fg:x="90" fg:w="1"/><text x="22.0947%" 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 (1 samples, 0.24%)</title><rect x="21.8447%" y="565" width="0.2427%" height="15" fill="rgb(248,195,53)" fg:x="90" fg:w="1"/><text x="22.0947%" y="575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="21.8447%" y="549" width="0.2427%" height="15" fill="rgb(226,201,16)" fg:x="90" fg:w="1"/><text x="22.0947%" y="559.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::ForInStmt&gt; for resast::stmt::ForInStmt&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="997" width="0.2427%" height="15" fill="rgb(205,98,0)" fg:x="91" fg:w="1"/><text x="22.3374%" y="1007.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="981" width="0.2427%" height="15" fill="rgb(214,191,48)" fg:x="91" fg:w="1"/><text x="22.3374%" y="991.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="22.0874%" y="965" width="0.2427%" height="15" fill="rgb(237,112,39)" fg:x="91" fg:w="1"/><text x="22.3374%" y="975.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="949" width="0.2427%" height="15" fill="rgb(247,203,27)" fg:x="91" fg:w="1"/><text x="22.3374%" y="959.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="22.0874%" y="933" width="0.2427%" height="15" fill="rgb(235,124,28)" fg:x="91" fg:w="1"/><text x="22.3374%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="917" width="0.2427%" height="15" fill="rgb(208,207,46)" fg:x="91" fg:w="1"/><text x="22.3374%" y="927.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="901" width="0.2427%" height="15" fill="rgb(234,176,4)" fg:x="91" fg:w="1"/><text x="22.3374%" y="911.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="22.0874%" y="885" width="0.2427%" height="15" fill="rgb(230,133,28)" fg:x="91" fg:w="1"/><text x="22.3374%" y="895.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="869" width="0.2427%" height="15" fill="rgb(211,137,40)" fg:x="91" fg:w="1"/><text x="22.3374%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="853" width="0.2427%" height="15" fill="rgb(254,35,13)" fg:x="91" fg:w="1"/><text x="22.3374%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="22.0874%" y="837" width="0.2427%" height="15" fill="rgb(225,49,51)" fg:x="91" fg:w="1"/><text x="22.3374%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="821" width="0.2427%" height="15" fill="rgb(251,10,15)" fg:x="91" fg:w="1"/><text x="22.3374%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="22.0874%" y="805" width="0.2427%" height="15" fill="rgb(228,207,15)" fg:x="91" fg:w="1"/><text x="22.3374%" y="815.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="22.0874%" y="789" width="0.2427%" height="15" fill="rgb(241,99,19)" fg:x="91" fg:w="1"/><text x="22.3374%" y="799.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::BlockStmt&gt; for resast::stmt::BlockStmt&gt;::from (1 samples, 0.24%)</title><rect x="22.3301%" y="917" width="0.2427%" height="15" fill="rgb(207,104,49)" fg:x="92" fg:w="1"/><text x="22.5801%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="22.3301%" y="901" width="0.2427%" height="15" fill="rgb(234,99,18)" fg:x="92" fg:w="1"/><text x="22.5801%" 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 (1 samples, 0.24%)</title><rect x="22.3301%" y="885" width="0.2427%" height="15" fill="rgb(213,191,49)" fg:x="92" fg:w="1"/><text x="22.5801%" y="895.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="22.3301%" y="869" width="0.2427%" height="15" fill="rgb(210,226,19)" fg:x="92" fg:w="1"/><text x="22.5801%" 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 (1 samples, 0.24%)</title><rect x="22.3301%" y="853" width="0.2427%" height="15" fill="rgb(229,97,18)" fg:x="92" fg:w="1"/><text x="22.5801%" y="863.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 samples, 0.24%)</title><rect x="22.3301%" y="837" width="0.2427%" height="15" fill="rgb(211,167,15)" fg:x="92" fg:w="1"/><text x="22.5801%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="22.3301%" y="821" width="0.2427%" height="15" fill="rgb(210,169,34)" fg:x="92" fg:w="1"/><text x="22.5801%" 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 (1 samples, 0.24%)</title><rect x="22.3301%" y="805" width="0.2427%" height="15" fill="rgb(241,121,31)" fg:x="92" fg:w="1"/><text x="22.5801%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="22.3301%" y="789" width="0.2427%" height="15" fill="rgb(232,40,11)" fg:x="92" fg:w="1"/><text x="22.5801%" y="799.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="22.3301%" y="773" width="0.2427%" height="15" fill="rgb(205,86,26)" fg:x="92" fg:w="1"/><text x="22.5801%" y="783.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="22.3301%" y="757" width="0.2427%" height="15" fill="rgb(231,126,28)" fg:x="92" fg:w="1"/><text x="22.5801%" y="767.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="22.3301%" y="741" width="0.2427%" height="15" fill="rgb(219,221,18)" fg:x="92" fg:w="1"/><text x="22.5801%" y="751.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (3 samples, 0.73%)</title><rect x="22.3301%" y="981" width="0.7282%" height="15" fill="rgb(211,40,0)" fg:x="92" fg:w="3"/><text x="22.5801%" y="991.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from::{{closure}} (3 samples, 0.73%)</title><rect x="22.3301%" y="965" width="0.7282%" height="15" fill="rgb(239,85,43)" fg:x="92" fg:w="3"/><text x="22.5801%" y="975.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (3 samples, 0.73%)</title><rect x="22.3301%" y="949" width="0.7282%" height="15" fill="rgb(231,55,21)" fg:x="92" fg:w="3"/><text x="22.5801%" y="959.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="22.3301%" y="933" width="0.7282%" height="15" fill="rgb(225,184,43)" fg:x="92" fg:w="3"/><text x="22.5801%" y="943.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (2 samples, 0.49%)</title><rect x="22.5728%" y="917" width="0.4854%" height="15" fill="rgb(251,158,41)" fg:x="93" fg:w="2"/><text x="22.8228%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="22.5728%" y="901" width="0.4854%" height="15" fill="rgb(234,159,37)" fg:x="93" fg:w="2"/><text x="22.8228%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="22.5728%" y="885" width="0.4854%" height="15" fill="rgb(216,204,22)" fg:x="93" fg:w="2"/><text x="22.8228%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="22.5728%" y="869" width="0.4854%" height="15" fill="rgb(214,17,3)" fg:x="93" fg:w="2"/><text x="22.8228%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (2 samples, 0.49%)</title><rect x="22.5728%" y="853" width="0.4854%" height="15" fill="rgb(212,111,17)" fg:x="93" fg:w="2"/><text x="22.8228%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (2 samples, 0.49%)</title><rect x="22.5728%" y="837" width="0.4854%" height="15" fill="rgb(221,157,24)" fg:x="93" fg:w="2"/><text x="22.8228%" y="847.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="22.5728%" y="821" width="0.4854%" height="15" fill="rgb(252,16,13)" fg:x="93" fg:w="2"/><text x="22.8228%" y="831.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (2 samples, 0.49%)</title><rect x="22.5728%" y="805" width="0.4854%" height="15" fill="rgb(221,62,2)" fg:x="93" fg:w="2"/><text x="22.8228%" y="815.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="22.5728%" y="789" width="0.4854%" height="15" fill="rgb(247,87,22)" fg:x="93" fg:w="2"/><text x="22.8228%" y="799.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="23.0583%" y="805" width="0.2427%" height="15" fill="rgb(215,73,9)" fg:x="95" fg:w="1"/><text x="23.3083%" y="815.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="23.0583%" y="789" width="0.2427%" height="15" fill="rgb(207,175,33)" fg:x="95" fg:w="1"/><text x="23.3083%" y="799.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="23.0583%" y="773" width="0.2427%" height="15" fill="rgb(243,129,54)" fg:x="95" fg:w="1"/><text x="23.3083%" y="783.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (5 samples, 1.21%)</title><rect x="22.3301%" y="997" width="1.2136%" height="15" fill="rgb(227,119,45)" fg:x="92" fg:w="5"/><text x="22.5801%" y="1007.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (2 samples, 0.49%)</title><rect x="23.0583%" y="981" width="0.4854%" height="15" fill="rgb(205,109,36)" fg:x="95" fg:w="2"/><text x="23.3083%" y="991.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="23.0583%" y="965" width="0.4854%" height="15" fill="rgb(205,6,39)" fg:x="95" fg:w="2"/><text x="23.3083%" y="975.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::BlockStmt&gt; for resast::stmt::BlockStmt&gt;::from (2 samples, 0.49%)</title><rect x="23.0583%" y="949" width="0.4854%" height="15" fill="rgb(221,32,16)" fg:x="95" fg:w="2"/><text x="23.3083%" y="959.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="23.0583%" y="933" width="0.4854%" height="15" fill="rgb(228,144,50)" fg:x="95" fg:w="2"/><text x="23.3083%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="23.0583%" y="917" width="0.4854%" height="15" fill="rgb(229,201,53)" fg:x="95" fg:w="2"/><text x="23.3083%" y="927.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="23.0583%" y="901" width="0.4854%" height="15" fill="rgb(249,153,27)" fg:x="95" fg:w="2"/><text x="23.3083%" y="911.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 (2 samples, 0.49%)</title><rect x="23.0583%" y="885" width="0.4854%" height="15" fill="rgb(227,106,25)" fg:x="95" fg:w="2"/><text x="23.3083%" y="895.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 samples, 0.49%)</title><rect x="23.0583%" y="869" width="0.4854%" height="15" fill="rgb(230,65,29)" fg:x="95" fg:w="2"/><text x="23.3083%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="23.0583%" y="853" width="0.4854%" height="15" fill="rgb(221,57,46)" fg:x="95" fg:w="2"/><text x="23.3083%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2 samples, 0.49%)</title><rect x="23.0583%" y="837" width="0.4854%" height="15" fill="rgb(229,161,17)" fg:x="95" fg:w="2"/><text x="23.3083%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="23.0583%" y="821" width="0.4854%" height="15" fill="rgb(222,213,11)" fg:x="95" fg:w="2"/><text x="23.3083%" y="831.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="23.3010%" y="805" width="0.2427%" height="15" fill="rgb(235,35,13)" fg:x="96" fg:w="1"/><text x="23.5510%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (1 samples, 0.24%)</title><rect x="23.3010%" y="789" width="0.2427%" height="15" fill="rgb(233,158,34)" fg:x="96" fg:w="1"/><text x="23.5510%" 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::{{closure}} (1 samples, 0.24%)</title><rect x="23.3010%" y="773" width="0.2427%" height="15" fill="rgb(215,151,48)" fg:x="96" fg:w="1"/><text x="23.5510%" y="783.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="23.3010%" y="757" width="0.2427%" height="15" fill="rgb(229,84,14)" fg:x="96" fg:w="1"/><text x="23.5510%" y="767.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="23.3010%" y="741" width="0.2427%" height="15" fill="rgb(229,68,14)" fg:x="96" fg:w="1"/><text x="23.5510%" y="751.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="23.5437%" y="885" width="0.2427%" height="15" fill="rgb(243,106,26)" fg:x="97" fg:w="1"/><text x="23.7937%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="23.5437%" y="869" width="0.2427%" height="15" fill="rgb(206,45,38)" fg:x="97" fg:w="1"/><text x="23.7937%" y="879.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::FuncBody&gt; for resast::FuncBody&gt;::from (1 samples, 0.24%)</title><rect x="23.5437%" y="853" width="0.2427%" height="15" fill="rgb(226,6,15)" fg:x="97" fg:w="1"/><text x="23.7937%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="23.5437%" y="837" width="0.2427%" height="15" fill="rgb(232,22,54)" fg:x="97" fg:w="1"/><text x="23.7937%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="23.5437%" y="821" width="0.2427%" height="15" fill="rgb(229,222,32)" fg:x="97" fg:w="1"/><text x="23.7937%" y="831.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="23.5437%" y="805" width="0.2427%" height="15" fill="rgb(228,62,29)" fg:x="97" fg:w="1"/><text x="23.7937%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="23.5437%" y="789" width="0.2427%" height="15" fill="rgb(251,103,34)" fg:x="97" fg:w="1"/><text x="23.7937%" 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 (1 samples, 0.24%)</title><rect x="23.5437%" y="773" width="0.2427%" height="15" fill="rgb(233,12,30)" fg:x="97" fg:w="1"/><text x="23.7937%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="23.5437%" y="757" width="0.2427%" height="15" fill="rgb(238,52,0)" fg:x="97" fg:w="1"/><text x="23.7937%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="23.5437%" y="741" width="0.2427%" height="15" fill="rgb(223,98,5)" fg:x="97" fg:w="1"/><text x="23.7937%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="23.5437%" y="725" width="0.2427%" height="15" fill="rgb(228,75,37)" fg:x="97" fg:w="1"/><text x="23.7937%" y="735.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="23.5437%" y="709" width="0.2427%" height="15" fill="rgb(205,115,49)" fg:x="97" fg:w="1"/><text x="23.7937%" y="719.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="23.5437%" y="693" width="0.2427%" height="15" fill="rgb(250,154,43)" fg:x="97" fg:w="1"/><text x="23.7937%" y="703.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="23.5437%" y="677" width="0.2427%" height="15" fill="rgb(226,43,29)" fg:x="97" fg:w="1"/><text x="23.7937%" y="687.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="885" width="0.2427%" height="15" fill="rgb(249,228,39)" fg:x="98" fg:w="1"/><text x="24.0364%" y="895.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="869" width="0.2427%" height="15" fill="rgb(216,79,43)" fg:x="98" fg:w="1"/><text x="24.0364%" y="879.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="23.7864%" y="853" width="0.2427%" height="15" fill="rgb(228,95,12)" fg:x="98" fg:w="1"/><text x="24.0364%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="837" width="0.2427%" height="15" fill="rgb(249,221,15)" fg:x="98" fg:w="1"/><text x="24.0364%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="821" width="0.2427%" height="15" fill="rgb(233,34,13)" fg:x="98" fg:w="1"/><text x="24.0364%" y="831.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="23.7864%" y="805" width="0.2427%" height="15" fill="rgb(214,103,39)" fg:x="98" fg:w="1"/><text x="24.0364%" y="815.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="789" width="0.2427%" height="15" fill="rgb(251,126,39)" fg:x="98" fg:w="1"/><text x="24.0364%" y="799.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="773" width="0.2427%" height="15" fill="rgb(214,216,36)" fg:x="98" fg:w="1"/><text x="24.0364%" y="783.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="23.7864%" y="757" width="0.2427%" height="15" fill="rgb(220,221,8)" fg:x="98" fg:w="1"/><text x="24.0364%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::MemberExpr&gt; for resast::expr::MemberExpr&gt;::from (1 samples, 0.24%)</title><rect x="23.7864%" y="741" width="0.2427%" height="15" fill="rgb(240,216,3)" fg:x="98" fg:w="1"/><text x="24.0364%" y="751.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="23.7864%" y="725" width="0.2427%" height="15" fill="rgb(232,218,17)" fg:x="98" fg:w="1"/><text x="24.0364%" y="735.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="23.7864%" y="709" width="0.2427%" height="15" fill="rgb(229,163,45)" fg:x="98" fg:w="1"/><text x="24.0364%" y="719.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="23.7864%" y="693" width="0.2427%" height="15" fill="rgb(231,110,42)" fg:x="98" fg:w="1"/><text x="24.0364%" y="703.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="23.7864%" y="677" width="0.2427%" height="15" fill="rgb(208,170,48)" fg:x="98" fg:w="1"/><text x="24.0364%" y="687.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="23.7864%" y="661" width="0.2427%" height="15" fill="rgb(239,116,25)" fg:x="98" fg:w="1"/><text x="24.0364%" y="671.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="23.7864%" y="645" width="0.2427%" height="15" fill="rgb(219,200,50)" fg:x="98" fg:w="1"/><text x="24.0364%" y="655.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="23.7864%" y="629" width="0.2427%" height="15" fill="rgb(245,200,0)" fg:x="98" fg:w="1"/><text x="24.0364%" y="639.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (3 samples, 0.73%)</title><rect x="23.5437%" y="933" width="0.7282%" height="15" fill="rgb(245,119,33)" fg:x="97" fg:w="3"/><text x="23.7937%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (3 samples, 0.73%)</title><rect x="23.5437%" y="917" width="0.7282%" height="15" fill="rgb(231,125,12)" fg:x="97" fg:w="3"/><text x="23.7937%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (3 samples, 0.73%)</title><rect x="23.5437%" y="901" width="0.7282%" height="15" fill="rgb(216,96,41)" fg:x="97" fg:w="3"/><text x="23.7937%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="885" width="0.2427%" height="15" fill="rgb(248,43,45)" fg:x="99" fg:w="1"/><text x="24.2791%" y="895.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="869" width="0.2427%" height="15" fill="rgb(217,222,7)" fg:x="99" fg:w="1"/><text x="24.2791%" y="879.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="24.0291%" y="853" width="0.2427%" height="15" fill="rgb(233,28,6)" fg:x="99" fg:w="1"/><text x="24.2791%" y="863.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::LogicalExpr&gt; for resast::expr::LogicalExpr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="837" width="0.2427%" height="15" fill="rgb(231,218,15)" fg:x="99" fg:w="1"/><text x="24.2791%" y="847.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="821" width="0.2427%" height="15" fill="rgb(226,171,48)" fg:x="99" fg:w="1"/><text x="24.2791%" y="831.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="24.0291%" y="805" width="0.2427%" height="15" fill="rgb(235,201,9)" fg:x="99" fg:w="1"/><text x="24.2791%" y="815.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::AssignExpr&gt; for resast::expr::AssignExpr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="789" width="0.2427%" height="15" fill="rgb(217,80,15)" fg:x="99" fg:w="1"/><text x="24.2791%" y="799.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="773" width="0.2427%" height="15" fill="rgb(219,152,8)" fg:x="99" fg:w="1"/><text x="24.2791%" y="783.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="24.0291%" y="757" width="0.2427%" height="15" fill="rgb(243,107,38)" fg:x="99" fg:w="1"/><text x="24.2791%" y="767.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="24.0291%" y="741" width="0.2427%" height="15" fill="rgb(231,17,5)" fg:x="99" fg:w="1"/><text x="24.2791%" y="751.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="24.0291%" y="725" width="0.2427%" height="15" fill="rgb(209,25,54)" fg:x="99" fg:w="1"/><text x="24.2791%" y="735.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="24.0291%" y="709" width="0.2427%" height="15" fill="rgb(219,0,2)" fg:x="99" fg:w="1"/><text x="24.2791%" y="719.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="24.0291%" y="693" width="0.2427%" height="15" fill="rgb(246,9,5)" fg:x="99" fg:w="1"/><text x="24.2791%" y="703.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="24.0291%" y="677" width="0.2427%" height="15" fill="rgb(226,159,4)" fg:x="99" fg:w="1"/><text x="24.2791%" y="687.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="24.0291%" y="661" width="0.2427%" height="15" fill="rgb(219,175,34)" fg:x="99" fg:w="1"/><text x="24.2791%" y="671.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="24.0291%" y="645" width="0.2427%" height="15" fill="rgb(236,10,46)" fg:x="99" fg:w="1"/><text x="24.2791%" y="655.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="24.0291%" y="629" width="0.2427%" height="15" fill="rgb(240,211,16)" fg:x="99" fg:w="1"/><text x="24.2791%" y="639.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (4 samples, 0.97%)</title><rect x="23.5437%" y="965" width="0.9709%" height="15" fill="rgb(205,3,43)" fg:x="97" fg:w="4"/><text x="23.7937%" y="975.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (4 samples, 0.97%)</title><rect x="23.5437%" y="949" width="0.9709%" height="15" fill="rgb(245,7,22)" fg:x="97" fg:w="4"/><text x="23.7937%" y="959.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="24.2718%" y="933" width="0.2427%" height="15" fill="rgb(239,132,32)" fg:x="100" fg:w="1"/><text x="24.5218%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="24.2718%" y="917" width="0.2427%" height="15" fill="rgb(228,202,34)" fg:x="100" fg:w="1"/><text x="24.5218%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="24.2718%" y="901" width="0.2427%" height="15" fill="rgb(254,200,22)" fg:x="100" fg:w="1"/><text x="24.5218%" y="911.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::Func&gt; for resast::Func&gt;::from (1 samples, 0.24%)</title><rect x="24.2718%" y="885" width="0.2427%" height="15" fill="rgb(219,10,39)" fg:x="100" fg:w="1"/><text x="24.5218%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="24.2718%" y="869" width="0.2427%" height="15" fill="rgb(226,210,39)" fg:x="100" fg:w="1"/><text x="24.5218%" y="879.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::FuncBody&gt; for resast::FuncBody&gt;::from (1 samples, 0.24%)</title><rect x="24.2718%" y="853" width="0.2427%" height="15" fill="rgb(208,219,16)" fg:x="100" fg:w="1"/><text x="24.5218%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="24.2718%" y="837" width="0.2427%" height="15" fill="rgb(216,158,51)" fg:x="100" fg:w="1"/><text x="24.5218%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="24.2718%" y="821" width="0.2427%" height="15" fill="rgb(233,14,44)" fg:x="100" fg:w="1"/><text x="24.5218%" y="831.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="24.2718%" y="805" width="0.2427%" height="15" fill="rgb(237,97,39)" fg:x="100" fg:w="1"/><text x="24.5218%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="24.2718%" y="789" width="0.2427%" height="15" fill="rgb(218,198,43)" fg:x="100" fg:w="1"/><text x="24.5218%" 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 (1 samples, 0.24%)</title><rect x="24.2718%" y="773" width="0.2427%" height="15" fill="rgb(231,104,20)" fg:x="100" fg:w="1"/><text x="24.5218%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="24.2718%" y="757" width="0.2427%" height="15" fill="rgb(254,36,13)" fg:x="100" fg:w="1"/><text x="24.5218%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="24.2718%" y="741" width="0.2427%" height="15" fill="rgb(248,14,50)" fg:x="100" fg:w="1"/><text x="24.5218%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="24.2718%" y="725" width="0.2427%" height="15" fill="rgb(217,107,29)" fg:x="100" fg:w="1"/><text x="24.5218%" y="735.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="24.2718%" y="709" width="0.2427%" height="15" fill="rgb(251,169,33)" fg:x="100" fg:w="1"/><text x="24.5218%" y="719.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::BlockStmt&gt; for resast::stmt::BlockStmt&gt;::from (2 samples, 0.49%)</title><rect x="24.5146%" y="965" width="0.4854%" height="15" fill="rgb(217,108,32)" fg:x="101" fg:w="2"/><text x="24.7646%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2 samples, 0.49%)</title><rect x="24.5146%" y="949" width="0.4854%" height="15" fill="rgb(219,66,42)" fg:x="101" fg:w="2"/><text x="24.7646%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="24.5146%" y="933" width="0.4854%" height="15" fill="rgb(206,180,7)" fg:x="101" fg:w="2"/><text x="24.7646%" y="943.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (2 samples, 0.49%)</title><rect x="24.5146%" y="917" width="0.4854%" height="15" fill="rgb(208,226,31)" fg:x="101" fg:w="2"/><text x="24.7646%" y="927.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 (2 samples, 0.49%)</title><rect x="24.5146%" y="901" width="0.4854%" height="15" fill="rgb(218,26,49)" fg:x="101" fg:w="2"/><text x="24.7646%" y="911.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 samples, 0.49%)</title><rect x="24.5146%" y="885" width="0.4854%" height="15" fill="rgb(233,197,48)" fg:x="101" fg:w="2"/><text x="24.7646%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.49%)</title><rect x="24.5146%" y="869" width="0.4854%" height="15" fill="rgb(252,181,51)" fg:x="101" fg:w="2"/><text x="24.7646%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2 samples, 0.49%)</title><rect x="24.5146%" y="853" width="0.4854%" height="15" fill="rgb(253,90,19)" fg:x="101" fg:w="2"/><text x="24.7646%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.49%)</title><rect x="24.5146%" y="837" width="0.4854%" height="15" fill="rgb(215,171,30)" fg:x="101" fg:w="2"/><text x="24.7646%" y="847.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.49%)</title><rect x="24.5146%" y="821" width="0.4854%" height="15" fill="rgb(214,222,9)" fg:x="101" fg:w="2"/><text x="24.7646%" y="831.50"></text></g><g><title>core::ops::function::FnMut::call_mut (2 samples, 0.49%)</title><rect x="24.5146%" y="805" width="0.4854%" height="15" fill="rgb(223,3,22)" fg:x="101" fg:w="2"/><text x="24.7646%" y="815.50"></text></g><g><title>resast::spanned::&lt;impl core::convert::From&lt;resast::spanned::ProgramPart&gt; for resast::ProgramPart&gt;::from (2 samples, 0.49%)</title><rect x="24.5146%" y="789" width="0.4854%" height="15" fill="rgb(225,196,46)" fg:x="101" fg:w="2"/><text x="24.7646%" y="799.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (2 samples, 0.49%)</title><rect x="24.5146%" y="773" width="0.4854%" height="15" fill="rgb(209,110,37)" fg:x="101" fg:w="2"/><text x="24.7646%" y="783.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="24.5146%" y="757" width="0.4854%" height="15" fill="rgb(249,89,12)" fg:x="101" fg:w="2"/><text x="24.7646%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.0000%" y="949" width="0.2427%" height="15" fill="rgb(226,27,33)" fg:x="103" fg:w="1"/><text x="25.2500%" y="959.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="25.0000%" y="933" width="0.2427%" height="15" fill="rgb(213,82,22)" fg:x="103" fg:w="1"/><text x="25.2500%" y="943.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.0000%" y="917" width="0.2427%" height="15" fill="rgb(248,140,0)" fg:x="103" fg:w="1"/><text x="25.2500%" y="927.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::BinaryExpr&gt; for resast::expr::BinaryExpr&gt;::from (1 samples, 0.24%)</title><rect x="25.0000%" y="901" width="0.2427%" height="15" fill="rgb(228,106,3)" fg:x="103" fg:w="1"/><text x="25.2500%" y="911.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="25.0000%" y="885" width="0.2427%" height="15" fill="rgb(209,23,37)" fg:x="103" fg:w="1"/><text x="25.2500%" y="895.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.0000%" y="869" width="0.2427%" height="15" fill="rgb(241,93,50)" fg:x="103" fg:w="1"/><text x="25.2500%" y="879.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="25.0000%" y="853" width="0.2427%" height="15" fill="rgb(253,46,43)" fg:x="103" fg:w="1"/><text x="25.2500%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="25.0000%" y="837" width="0.2427%" height="15" fill="rgb(226,206,43)" fg:x="103" fg:w="1"/><text x="25.2500%" y="847.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.0000%" y="821" width="0.2427%" height="15" fill="rgb(217,54,7)" fg:x="103" fg:w="1"/><text x="25.2500%" y="831.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.0000%" y="805" width="0.2427%" height="15" fill="rgb(223,5,52)" fg:x="103" fg:w="1"/><text x="25.2500%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.0000%" y="789" width="0.2427%" height="15" fill="rgb(206,52,46)" fg:x="103" fg:w="1"/><text x="25.2500%" 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 (1 samples, 0.24%)</title><rect x="25.0000%" y="773" width="0.2427%" height="15" fill="rgb(253,136,11)" fg:x="103" fg:w="1"/><text x="25.2500%" y="783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="25.0000%" y="757" width="0.2427%" height="15" fill="rgb(208,106,33)" fg:x="103" fg:w="1"/><text x="25.2500%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="25.0000%" y="741" width="0.2427%" height="15" fill="rgb(206,54,4)" fg:x="103" fg:w="1"/><text x="25.2500%" y="751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="25.0000%" y="725" width="0.2427%" height="15" fill="rgb(213,3,15)" fg:x="103" fg:w="1"/><text x="25.2500%" y="735.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="25.0000%" y="709" width="0.2427%" height="15" fill="rgb(252,211,39)" fg:x="103" fg:w="1"/><text x="25.2500%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="25.0000%" y="693" width="0.2427%" height="15" fill="rgb(223,6,36)" fg:x="103" fg:w="1"/><text x="25.2500%" y="703.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.0000%" y="677" width="0.2427%" height="15" fill="rgb(252,169,45)" fg:x="103" fg:w="1"/><text x="25.2500%" y="687.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="25.0000%" y="661" width="0.2427%" height="15" fill="rgb(212,48,26)" fg:x="103" fg:w="1"/><text x="25.2500%" y="671.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (2 samples, 0.49%)</title><rect x="25.0000%" y="965" width="0.4854%" height="15" fill="rgb(251,102,48)" fg:x="103" fg:w="2"/><text x="25.2500%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="25.2427%" y="949" width="0.2427%" height="15" fill="rgb(243,208,16)" fg:x="104" fg:w="1"/><text x="25.4927%" y="959.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="25.2427%" y="933" width="0.2427%" height="15" fill="rgb(219,96,24)" fg:x="104" fg:w="1"/><text x="25.4927%" y="943.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (1 samples, 0.24%)</title><rect x="25.2427%" y="917" width="0.2427%" height="15" fill="rgb(219,33,29)" fg:x="104" fg:w="1"/><text x="25.4927%" y="927.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.2427%" y="901" width="0.2427%" height="15" fill="rgb(223,176,5)" fg:x="104" fg:w="1"/><text x="25.4927%" y="911.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::IfStmt&gt; for resast::stmt::IfStmt&gt;::from (1 samples, 0.24%)</title><rect x="25.2427%" y="885" width="0.2427%" height="15" fill="rgb(228,140,14)" fg:x="104" fg:w="1"/><text x="25.4927%" y="895.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="25.2427%" y="869" width="0.2427%" height="15" fill="rgb(217,179,31)" fg:x="104" fg:w="1"/><text x="25.4927%" y="879.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="25.2427%" y="853" width="0.2427%" height="15" fill="rgb(230,9,30)" fg:x="104" fg:w="1"/><text x="25.4927%" y="863.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="25.2427%" y="837" width="0.2427%" height="15" fill="rgb(230,136,20)" fg:x="104" fg:w="1"/><text x="25.4927%" y="847.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="25.2427%" y="821" width="0.2427%" height="15" fill="rgb(215,210,22)" fg:x="104" fg:w="1"/><text x="25.4927%" y="831.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="25.2427%" y="805" width="0.2427%" height="15" fill="rgb(218,43,5)" fg:x="104" fg:w="1"/><text x="25.4927%" y="815.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="25.2427%" y="789" width="0.2427%" height="15" fill="rgb(216,11,5)" fg:x="104" fg:w="1"/><text x="25.4927%" y="799.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="25.2427%" y="773" width="0.2427%" height="15" fill="rgb(209,82,29)" fg:x="104" fg:w="1"/><text x="25.4927%" y="783.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (9 samples, 2.18%)</title><rect x="23.5437%" y="981" width="2.1845%" height="15" fill="rgb(244,115,12)" fg:x="97" fg:w="9"/><text x="23.7937%" y="991.50">&lt;..</text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::SwitchStmt&gt; for resast::stmt::SwitchStmt&gt;::from (1 samples, 0.24%)</title><rect x="25.4854%" y="965" width="0.2427%" height="15" fill="rgb(222,82,18)" fg:x="105" fg:w="1"/><text x="25.7354%" y="975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="25.4854%" y="949" width="0.2427%" height="15" fill="rgb(249,227,8)" fg:x="105" fg:w="1"/><text x="25.7354%" y="959.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="933" width="0.2427%" height="15" fill="rgb(253,141,45)" fg:x="105" fg:w="1"/><text x="25.7354%" y="943.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="917" width="0.2427%" height="15" fill="rgb(234,184,4)" fg:x="105" fg:w="1"/><text x="25.7354%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="901" width="0.2427%" height="15" fill="rgb(218,194,23)" fg:x="105" fg:w="1"/><text x="25.7354%" y="911.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 samples, 0.24%)</title><rect x="25.4854%" y="885" width="0.2427%" height="15" fill="rgb(235,66,41)" fg:x="105" fg:w="1"/><text x="25.7354%" y="895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="25.4854%" y="869" width="0.2427%" height="15" fill="rgb(245,217,1)" fg:x="105" fg:w="1"/><text x="25.7354%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="25.4854%" y="853" width="0.2427%" height="15" fill="rgb(229,91,1)" fg:x="105" fg:w="1"/><text x="25.7354%" y="863.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="25.4854%" y="837" width="0.2427%" height="15" fill="rgb(207,101,30)" fg:x="105" fg:w="1"/><text x="25.7354%" y="847.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="25.4854%" y="821" width="0.2427%" height="15" fill="rgb(223,82,49)" fg:x="105" fg:w="1"/><text x="25.7354%" y="831.50"></text></g><g><title>core::ops::function::FnMut::call_mut (1 samples, 0.24%)</title><rect x="25.4854%" y="805" width="0.2427%" height="15" fill="rgb(218,167,17)" fg:x="105" fg:w="1"/><text x="25.7354%" y="815.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::SwitchCase&gt; for resast::stmt::SwitchCase&gt;::from (1 samples, 0.24%)</title><rect x="25.4854%" y="789" width="0.2427%" height="15" fill="rgb(208,103,14)" fg:x="105" fg:w="1"/><text x="25.7354%" y="799.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="25.4854%" y="773" width="0.2427%" height="15" fill="rgb(238,20,8)" fg:x="105" fg:w="1"/><text x="25.7354%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="757" width="0.2427%" height="15" fill="rgb(218,80,54)" fg:x="105" fg:w="1"/><text x="25.7354%" y="767.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="741" width="0.2427%" height="15" fill="rgb(240,144,17)" fg:x="105" fg:w="1"/><text x="25.7354%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.4854%" y="725" width="0.2427%" height="15" fill="rgb(245,27,50)" fg:x="105" fg:w="1"/><text x="25.7354%" 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 (1 samples, 0.24%)</title><rect x="25.4854%" y="709" width="0.2427%" height="15" fill="rgb(251,51,7)" fg:x="105" fg:w="1"/><text x="25.7354%" y="719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="25.4854%" y="693" width="0.2427%" height="15" fill="rgb(245,217,29)" fg:x="105" fg:w="1"/><text x="25.7354%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.24%)</title><rect x="25.4854%" y="677" width="0.2427%" height="15" fill="rgb(221,176,29)" fg:x="105" fg:w="1"/><text x="25.7354%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="25.4854%" y="661" width="0.2427%" height="15" fill="rgb(212,180,24)" fg:x="105" fg:w="1"/><text x="25.7354%" y="671.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="25.4854%" y="645" width="0.2427%" height="15" fill="rgb(254,24,2)" fg:x="105" fg:w="1"/><text x="25.7354%" y="655.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="25.4854%" y="629" width="0.2427%" height="15" fill="rgb(230,100,2)" fg:x="105" fg:w="1"/><text x="25.7354%" y="639.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="25.4854%" y="613" width="0.2427%" height="15" fill="rgb(219,142,25)" fg:x="105" fg:w="1"/><text x="25.7354%" y="623.50"></text></g><g><title>resast::spanned::stmt::&lt;impl core::convert::From&lt;resast::spanned::stmt::Stmt&gt; for resast::stmt::Stmt&gt;::from (10 samples, 2.43%)</title><rect x="23.5437%" y="997" width="2.4272%" height="15" fill="rgb(240,73,43)" fg:x="97" fg:w="10"/><text x="23.7937%" y="1007.50">re..</text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.24%)</title><rect x="25.7282%" y="981" width="0.2427%" height="15" fill="rgb(214,114,15)" fg:x="106" fg:w="1"/><text x="25.9782%" y="991.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="25.7282%" y="965" width="0.2427%" height="15" fill="rgb(207,130,4)" fg:x="106" fg:w="1"/><text x="25.9782%" y="975.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="949" width="0.2427%" height="15" fill="rgb(221,25,40)" fg:x="106" fg:w="1"/><text x="25.9782%" y="959.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.7282%" y="933" width="0.2427%" height="15" fill="rgb(241,184,7)" fg:x="106" fg:w="1"/><text x="25.9782%" y="943.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="917" width="0.2427%" height="15" fill="rgb(235,159,4)" fg:x="106" fg:w="1"/><text x="25.9782%" y="927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="25.7282%" y="901" width="0.2427%" height="15" fill="rgb(214,87,48)" fg:x="106" fg:w="1"/><text x="25.9782%" 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 (1 samples, 0.24%)</title><rect x="25.7282%" y="885" width="0.2427%" height="15" fill="rgb(246,198,24)" fg:x="106" fg:w="1"/><text x="25.9782%" y="895.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.7282%" y="869" width="0.2427%" height="15" fill="rgb(209,66,40)" fg:x="106" fg:w="1"/><text x="25.9782%" 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 (1 samples, 0.24%)</title><rect x="25.7282%" y="853" width="0.2427%" height="15" fill="rgb(233,147,39)" fg:x="106" fg:w="1"/><text x="25.9782%" y="863.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 samples, 0.24%)</title><rect x="25.7282%" y="837" width="0.2427%" height="15" fill="rgb(231,145,52)" fg:x="106" fg:w="1"/><text x="25.9782%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.24%)</title><rect x="25.7282%" y="821" width="0.2427%" height="15" fill="rgb(206,20,26)" fg:x="106" fg:w="1"/><text x="25.9782%" 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 (1 samples, 0.24%)</title><rect x="25.7282%" y="805" width="0.2427%" height="15" fill="rgb(238,220,4)" fg:x="106" fg:w="1"/><text x="25.9782%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.24%)</title><rect x="25.7282%" y="789" width="0.2427%" height="15" fill="rgb(252,195,42)" fg:x="106" fg:w="1"/><text x="25.9782%" y="799.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.24%)</title><rect x="25.7282%" y="773" width="0.2427%" height="15" fill="rgb(209,10,6)" fg:x="106" fg:w="1"/><text x="25.9782%" y="783.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from::{{closure}} (1 samples, 0.24%)</title><rect x="25.7282%" y="757" width="0.2427%" height="15" fill="rgb(229,3,52)" fg:x="106" fg:w="1"/><text x="25.9782%" y="767.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.7282%" y="741" width="0.2427%" height="15" fill="rgb(253,49,37)" fg:x="106" fg:w="1"/><text x="25.9782%" y="751.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="725" width="0.2427%" height="15" fill="rgb(240,103,49)" fg:x="106" fg:w="1"/><text x="25.9782%" y="735.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.7282%" y="709" width="0.2427%" height="15" fill="rgb(250,182,30)" fg:x="106" fg:w="1"/><text x="25.9782%" y="719.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::ConditionalExpr&gt; for resast::expr::ConditionalExpr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="693" width="0.2427%" height="15" fill="rgb(248,8,30)" fg:x="106" fg:w="1"/><text x="25.9782%" y="703.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::Expr&gt; for resast::expr::Expr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="677" width="0.2427%" height="15" fill="rgb(237,120,30)" fg:x="106" fg:w="1"/><text x="25.9782%" y="687.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="25.7282%" y="661" width="0.2427%" height="15" fill="rgb(221,146,34)" fg:x="106" fg:w="1"/><text x="25.9782%" y="671.50"></text></g><g><title>resast::spanned::expr::&lt;impl core::convert::From&lt;resast::spanned::expr::CallExpr&gt; for resast::expr::CallExpr&gt;::from (1 samples, 0.24%)</title><rect x="25.7282%" y="645" width="0.2427%" height="15" fill="rgb(242,55,13)" fg:x="106" fg:w="1"/><text x="25.9782%" y="655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.24%)</title><rect x="25.7282%" y="629" width="0.2427%" height="15" fill="rgb(242,112,31)" fg:x="106" fg:w="1"/><text x="25.9782%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.7282%" y="613" width="0.2427%" height="15" fill="rgb(249,192,27)" fg:x="106" fg:w="1"/><text x="25.9782%" y="623.50"></text></g><g><title>alloc::vec::source_iter_marker::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.7282%" y="597" width="0.2427%" height="15" fill="rgb(208,204,44)" fg:x="106" fg:w="1"/><text x="25.9782%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.24%)</title><rect x="25.7282%" y="581" width="0.2427%" height="15" fill="rgb(208,93,54)" fg:x="106" fg:w="1"/><text x="25.9782%" 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 (1 samples, 0.24%)</title><rect x="25.7282%" y="565" width="0.2427%" height="15" fill="rgb(242,1,31)" fg:x="106" fg:w="1"/><text x="25.9782%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.24%)</title><rect x="25.7282%" y="549" width="0.2427%" height="15" fill="rgb(241,83,25)" fg:x="106" fg:w="1"/><text x="25.9782%" y="559.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (1 samples, 0.24%)</title><rect x="25.7282%" y="533" width="0.2427%" height="15" fill="rgb(205,169,50)" fg:x="106" fg:w="1"/><text x="25.9782%" y="543.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset_from (1 samples, 0.24%)</title><rect x="25.7282%" y="517" width="0.2427%" height="15" fill="rgb(239,186,37)" fg:x="106" fg:w="1"/><text x="25.9782%" y="527.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_new_expr (1 samples, 0.24%)</title><rect x="25.9709%" y="965" width="0.2427%" height="15" fill="rgb(205,221,10)" fg:x="107" fg:w="1"/><text x="26.2209%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_args (1 samples, 0.24%)</title><rect x="25.9709%" y="949" width="0.2427%" height="15" fill="rgb(218,196,15)" fg:x="107" fg:w="1"/><text x="26.2209%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="25.9709%" y="933" width="0.2427%" height="15" fill="rgb(218,196,35)" fg:x="107" fg:w="1"/><text x="26.2209%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="25.9709%" y="917" width="0.2427%" height="15" fill="rgb(233,63,24)" fg:x="107" fg:w="1"/><text x="26.2209%" y="927.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="25.9709%" y="901" width="0.2427%" height="15" fill="rgb(225,8,4)" fg:x="107" fg:w="1"/><text x="26.2209%" y="911.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="25.9709%" y="885" width="0.2427%" height="15" fill="rgb(234,105,35)" fg:x="107" fg:w="1"/><text x="26.2209%" y="895.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="25.9709%" y="869" width="0.2427%" height="15" fill="rgb(236,21,32)" fg:x="107" fg:w="1"/><text x="26.2209%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::skip_whitespace (1 samples, 0.24%)</title><rect x="25.9709%" y="853" width="0.2427%" height="15" fill="rgb(228,109,6)" fg:x="107" fg:w="1"/><text x="26.2209%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::at_new_line (1 samples, 0.24%)</title><rect x="25.9709%" y="837" width="0.2427%" height="15" fill="rgb(229,215,31)" fg:x="107" fg:w="1"/><text x="26.2209%" y="847.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::at_new_line (1 samples, 0.24%)</title><rect x="25.9709%" y="821" width="0.2427%" height="15" fill="rgb(221,52,54)" fg:x="107" fg:w="1"/><text x="26.2209%" y="831.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="26.6990%" y="949" width="0.2427%" height="15" fill="rgb(252,129,43)" fg:x="110" fg:w="1"/><text x="26.9490%" y="959.50"></text></g><g><title>&lt;resast::spanned::Ident as core::convert::From&lt;resast::spanned::Slice&gt;&gt;::from (1 samples, 0.24%)</title><rect x="26.6990%" y="933" width="0.2427%" height="15" fill="rgb(248,183,27)" fg:x="110" fg:w="1"/><text x="26.9490%" y="943.50"></text></g><g><title>ressa::regex::validate_regex (1 samples, 0.24%)</title><rect x="26.9417%" y="949" width="0.2427%" height="15" fill="rgb(250,0,22)" fg:x="111" fg:w="1"/><text x="27.1917%" y="959.50"></text></g><g><title>res_regex::RegexParser::validate (1 samples, 0.24%)</title><rect x="26.9417%" y="933" width="0.2427%" height="15" fill="rgb(213,166,10)" fg:x="111" fg:w="1"/><text x="27.1917%" y="943.50"></text></g><g><title>res_regex::RegexParser::pattern (1 samples, 0.24%)</title><rect x="26.9417%" y="917" width="0.2427%" height="15" fill="rgb(207,163,36)" fg:x="111" fg:w="1"/><text x="27.1917%" y="927.50"></text></g><g><title>res_regex::RegexParser::disjunction (1 samples, 0.24%)</title><rect x="26.9417%" y="901" width="0.2427%" height="15" fill="rgb(208,122,22)" fg:x="111" fg:w="1"/><text x="27.1917%" y="911.50"></text></g><g><title>res_regex::RegexParser::alternative (1 samples, 0.24%)</title><rect x="26.9417%" y="885" width="0.2427%" height="15" fill="rgb(207,104,49)" fg:x="111" fg:w="1"/><text x="27.1917%" y="895.50"></text></g><g><title>res_regex::RegexParser::eat_term (1 samples, 0.24%)</title><rect x="26.9417%" y="869" width="0.2427%" height="15" fill="rgb(248,211,50)" fg:x="111" fg:w="1"/><text x="27.1917%" y="879.50"></text></g><g><title>res_regex::RegexParser::eat_assertion (1 samples, 0.24%)</title><rect x="26.9417%" y="853" width="0.2427%" height="15" fill="rgb(217,13,45)" fg:x="111" fg:w="1"/><text x="27.1917%" y="863.50"></text></g><g><title>res_regex::RegexParser::reset_to (1 samples, 0.24%)</title><rect x="26.9417%" y="837" width="0.2427%" height="15" fill="rgb(211,216,49)" fg:x="111" fg:w="1"/><text x="27.1917%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::ok_or_else (1 samples, 0.24%)</title><rect x="27.1845%" y="901" width="0.2427%" height="15" fill="rgb(221,58,53)" fg:x="112" fg:w="1"/><text x="27.4345%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::at_async_function (2 samples, 0.49%)</title><rect x="27.1845%" y="949" width="0.4854%" height="15" fill="rgb(220,112,41)" fg:x="112" fg:w="2"/><text x="27.4345%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::at_contextual_keyword (2 samples, 0.49%)</title><rect x="27.1845%" y="933" width="0.4854%" height="15" fill="rgb(236,38,28)" fg:x="112" fg:w="2"/><text x="27.4345%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::get_slice (2 samples, 0.49%)</title><rect x="27.1845%" y="917" width="0.4854%" height="15" fill="rgb(227,195,22)" fg:x="112" fg:w="2"/><text x="27.4345%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::slice_from (1 samples, 0.24%)</title><rect x="27.4272%" y="901" width="0.2427%" height="15" fill="rgb(214,55,33)" fg:x="113" fg:w="1"/><text x="27.6772%" y="911.50"></text></g><g><title>ress::Scanner::str_for (1 samples, 0.24%)</title><rect x="27.4272%" y="885" width="0.2427%" height="15" fill="rgb(248,80,13)" fg:x="113" fg:w="1"/><text x="27.6772%" y="895.50"></text></g><g><title>ress::manual_scanner::ManualScanner::str_for (1 samples, 0.24%)</title><rect x="27.4272%" y="869" width="0.2427%" height="15" fill="rgb(238,52,6)" fg:x="113" fg:w="1"/><text x="27.6772%" y="879.50"></text></g><g><title>core::str::traits::&lt;impl core::ops::index::Index&lt;I&gt; for str&gt;::index (1 samples, 0.24%)</title><rect x="27.4272%" y="853" width="0.2427%" height="15" fill="rgb(224,198,47)" fg:x="113" fg:w="1"/><text x="27.6772%" y="863.50"></text></g><g><title>core::str::traits::&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::Range&lt;usize&gt;&gt;::index (1 samples, 0.24%)</title><rect x="27.4272%" y="837" width="0.2427%" height="15" fill="rgb(233,171,20)" fg:x="113" fg:w="1"/><text x="27.6772%" y="847.50"></text></g><g><title>core::str::traits::&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::Range&lt;usize&gt;&gt;::get (1 samples, 0.24%)</title><rect x="27.4272%" y="821" width="0.2427%" height="15" fill="rgb(241,30,25)" fg:x="113" fg:w="1"/><text x="27.6772%" y="831.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::at_keyword (1 samples, 0.24%)</title><rect x="27.6699%" y="949" width="0.2427%" height="15" fill="rgb(207,171,38)" fg:x="114" fg:w="1"/><text x="27.9199%" y="959.50"></text></g><g><title>ress::tokens::Token&lt;T&gt;::matches_keyword (1 samples, 0.24%)</title><rect x="27.6699%" y="933" width="0.2427%" height="15" fill="rgb(234,70,1)" fg:x="114" fg:w="1"/><text x="27.9199%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="27.9126%" y="933" width="0.2427%" height="15" fill="rgb(232,178,18)" fg:x="115" fg:w="1"/><text x="28.1626%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="28.1553%" y="901" width="0.2427%" height="15" fill="rgb(241,78,40)" fg:x="116" fg:w="1"/><text x="28.4053%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (3 samples, 0.73%)</title><rect x="27.9126%" y="949" width="0.7282%" height="15" fill="rgb(222,35,25)" fg:x="115" fg:w="3"/><text x="28.1626%" y="959.50"></text></g><g><title>core::ops::function::Fn::call (2 samples, 0.49%)</title><rect x="28.1553%" y="933" width="0.4854%" height="15" fill="rgb(207,92,16)" fg:x="116" fg:w="2"/><text x="28.4053%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_group_expr (2 samples, 0.49%)</title><rect x="28.1553%" y="917" width="0.4854%" height="15" fill="rgb(216,59,51)" fg:x="116" fg:w="2"/><text x="28.4053%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="28.3981%" y="901" width="0.2427%" height="15" fill="rgb(213,80,28)" fg:x="117" fg:w="1"/><text x="28.6481%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_primary_expression (17 samples, 4.13%)</title><rect x="26.2136%" y="965" width="4.1262%" height="15" fill="rgb(220,93,7)" fg:x="108" fg:w="17"/><text x="26.4636%" y="975.50">ress..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (7 samples, 1.70%)</title><rect x="28.6408%" y="949" width="1.6990%" height="15" fill="rgb(225,24,44)" fg:x="118" fg:w="7"/><text x="28.8908%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 1.46%)</title><rect x="28.8835%" y="933" width="1.4563%" height="15" fill="rgb(243,74,40)" fg:x="119" fg:w="6"/><text x="29.1335%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (6 samples, 1.46%)</title><rect x="28.8835%" y="917" width="1.4563%" height="15" fill="rgb(228,39,7)" fg:x="119" fg:w="6"/><text x="29.1335%" y="927.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="29.3689%" y="901" width="0.9709%" height="15" fill="rgb(227,79,8)" fg:x="121" fg:w="4"/><text x="29.6189%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (2 samples, 0.49%)</title><rect x="29.8544%" y="885" width="0.4854%" height="15" fill="rgb(236,58,11)" fg:x="123" fg:w="2"/><text x="30.1044%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (1 samples, 0.24%)</title><rect x="30.0971%" y="869" width="0.2427%" height="15" fill="rgb(249,63,35)" fg:x="124" fg:w="1"/><text x="30.3471%" y="879.50"></text></g><g><title>&lt;log::Level as core::cmp::PartialOrd&lt;log::LevelFilter&gt;&gt;::le (1 samples, 0.24%)</title><rect x="30.8252%" y="885" width="0.2427%" height="15" fill="rgb(252,114,16)" fg:x="127" fg:w="1"/><text x="31.0752%" y="895.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="31.0680%" y="885" width="0.2427%" height="15" fill="rgb(254,151,24)" fg:x="128" fg:w="1"/><text x="31.3180%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (5 samples, 1.21%)</title><rect x="31.3107%" y="885" width="1.2136%" height="15" fill="rgb(253,54,39)" fg:x="129" fg:w="5"/><text x="31.5607%" y="895.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="32.5243%" y="869" width="0.2427%" height="15" fill="rgb(243,25,45)" fg:x="134" fg:w="1"/><text x="32.7743%" y="879.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (6 samples, 1.46%)</title><rect x="32.5243%" y="885" width="1.4563%" height="15" fill="rgb(234,134,9)" fg:x="134" fg:w="6"/><text x="32.7743%" y="895.50"></text></g><g><title>alloc::alloc::exchange_malloc (5 samples, 1.21%)</title><rect x="32.7670%" y="869" width="1.2136%" height="15" fill="rgb(227,166,31)" fg:x="135" fg:w="5"/><text x="33.0170%" y="879.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (5 samples, 1.21%)</title><rect x="32.7670%" y="853" width="1.2136%" height="15" fill="rgb(245,143,41)" fg:x="135" fg:w="5"/><text x="33.0170%" y="863.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (5 samples, 1.21%)</title><rect x="32.7670%" y="837" width="1.2136%" height="15" fill="rgb(238,181,32)" fg:x="135" fg:w="5"/><text x="33.0170%" y="847.50"></text></g><g><title>alloc::alloc::alloc (5 samples, 1.21%)</title><rect x="32.7670%" y="821" width="1.2136%" height="15" fill="rgb(224,113,18)" fg:x="135" fg:w="5"/><text x="33.0170%" y="831.50"></text></g><g><title>__GI___libc_malloc (5 samples, 1.21%)</title><rect x="32.7670%" y="805" width="1.2136%" height="15" fill="rgb(240,229,28)" fg:x="135" fg:w="5"/><text x="33.0170%" y="815.50"></text></g><g><title>_int_malloc (5 samples, 1.21%)</title><rect x="32.7670%" y="789" width="1.2136%" height="15" fill="rgb(250,185,3)" fg:x="135" fg:w="5"/><text x="33.0170%" y="799.50"></text></g><g><title>log::max_level (1 samples, 0.24%)</title><rect x="33.9806%" y="885" width="0.2427%" height="15" fill="rgb(212,59,25)" fg:x="140" fg:w="1"/><text x="34.2306%" y="895.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.24%)</title><rect x="33.9806%" y="869" width="0.2427%" height="15" fill="rgb(221,87,20)" fg:x="140" fg:w="1"/><text x="34.2306%" y="879.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.24%)</title><rect x="33.9806%" y="853" width="0.2427%" height="15" fill="rgb(213,74,28)" fg:x="140" fg:w="1"/><text x="34.2306%" y="863.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (3 samples, 0.73%)</title><rect x="34.2233%" y="885" width="0.7282%" height="15" fill="rgb(224,132,34)" fg:x="141" fg:w="3"/><text x="34.4733%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="34.2233%" y="869" width="0.7282%" height="15" fill="rgb(222,101,24)" fg:x="141" fg:w="3"/><text x="34.4733%" y="879.50"></text></g><g><title>ress::Scanner::has_pending_new_line (1 samples, 0.24%)</title><rect x="34.7087%" y="853" width="0.2427%" height="15" fill="rgb(254,142,4)" fg:x="143" fg:w="1"/><text x="34.9587%" y="863.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.24%)</title><rect x="35.1942%" y="869" width="0.2427%" height="15" fill="rgb(230,229,49)" fg:x="145" fg:w="1"/><text x="35.4442%" y="879.50"></text></g><g><title>&lt;resast::spanned::Ident as core::convert::From&lt;resast::spanned::Slice&gt;&gt;::from (1 samples, 0.24%)</title><rect x="35.1942%" y="853" width="0.2427%" height="15" fill="rgb(238,70,47)" fg:x="145" fg:w="1"/><text x="35.4442%" y="863.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="35.6796%" y="853" width="0.2427%" height="15" fill="rgb(231,160,17)" fg:x="147" fg:w="1"/><text x="35.9296%" y="863.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="35.6796%" y="837" width="0.2427%" height="15" fill="rgb(218,68,53)" fg:x="147" fg:w="1"/><text x="35.9296%" y="847.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (42 samples, 10.19%)</title><rect x="25.9709%" y="997" width="10.1942%" height="15" fill="rgb(236,111,10)" fg:x="107" fg:w="42"/><text x="26.2209%" y="1007.50">ressa::spanned:..</text></g><g><title>core::ops::function::Fn::call (42 samples, 10.19%)</title><rect x="25.9709%" y="981" width="10.1942%" height="15" fill="rgb(224,34,41)" fg:x="107" fg:w="42"/><text x="26.2209%" y="991.50">core::ops::func..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_unary_expression (24 samples, 5.83%)</title><rect x="30.3398%" y="965" width="5.8252%" height="15" fill="rgb(241,118,19)" fg:x="125" fg:w="24"/><text x="30.5898%" y="975.50">ressa::..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_update_expr (24 samples, 5.83%)</title><rect x="30.3398%" y="949" width="5.8252%" height="15" fill="rgb(238,129,25)" fg:x="125" fg:w="24"/><text x="30.5898%" y="959.50">ressa::..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (24 samples, 5.83%)</title><rect x="30.3398%" y="933" width="5.8252%" height="15" fill="rgb(238,22,31)" fg:x="125" fg:w="24"/><text x="30.5898%" y="943.50">ressa::..</text></g><g><title>core::ops::function::Fn::call (24 samples, 5.83%)</title><rect x="30.3398%" y="917" width="5.8252%" height="15" fill="rgb(222,174,48)" fg:x="125" fg:w="24"/><text x="30.5898%" y="927.50">core::o..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_left_hand_side_expr_allow_call (24 samples, 5.83%)</title><rect x="30.3398%" y="901" width="5.8252%" height="15" fill="rgb(206,152,40)" fg:x="125" fg:w="24"/><text x="30.5898%" y="911.50">ressa::..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_ident_name (5 samples, 1.21%)</title><rect x="34.9515%" y="885" width="1.2136%" height="15" fill="rgb(218,99,54)" fg:x="144" fg:w="5"/><text x="35.2015%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="35.4369%" y="869" width="0.7282%" height="15" fill="rgb(220,174,26)" fg:x="146" fg:w="3"/><text x="35.6869%" y="879.50"></text></g><g><title>core::mem::replace (1 samples, 0.24%)</title><rect x="35.9223%" y="853" width="0.2427%" height="15" fill="rgb(245,116,9)" fg:x="148" fg:w="1"/><text x="36.1723%" y="863.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (2 samples, 0.49%)</title><rect x="36.4078%" y="981" width="0.4854%" height="15" fill="rgb(209,72,35)" fg:x="150" fg:w="2"/><text x="36.6578%" y="991.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="36.4078%" y="965" width="0.4854%" height="15" fill="rgb(226,126,21)" fg:x="150" fg:w="2"/><text x="36.6578%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="36.8932%" y="981" width="0.4854%" height="15" fill="rgb(227,192,1)" fg:x="152" fg:w="2"/><text x="37.1432%" y="991.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="37.3786%" y="965" width="0.2427%" height="15" fill="rgb(237,180,29)" fg:x="154" fg:w="1"/><text x="37.6286%" y="975.50"></text></g><g><title>__rdl_alloc (1 samples, 0.24%)</title><rect x="37.6214%" y="885" width="0.2427%" height="15" fill="rgb(230,197,35)" fg:x="155" fg:w="1"/><text x="37.8714%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.24%)</title><rect x="37.6214%" y="869" width="0.2427%" height="15" fill="rgb(246,193,31)" fg:x="155" fg:w="1"/><text x="37.8714%" y="879.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="37.6214%" y="965" width="0.4854%" height="15" fill="rgb(241,36,4)" fg:x="155" fg:w="2"/><text x="37.8714%" y="975.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.49%)</title><rect x="37.6214%" y="949" width="0.4854%" height="15" fill="rgb(241,130,17)" fg:x="155" fg:w="2"/><text x="37.8714%" y="959.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.49%)</title><rect x="37.6214%" y="933" width="0.4854%" height="15" fill="rgb(206,137,32)" fg:x="155" fg:w="2"/><text x="37.8714%" y="943.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.49%)</title><rect x="37.6214%" y="917" width="0.4854%" height="15" fill="rgb(237,228,51)" fg:x="155" fg:w="2"/><text x="37.8714%" y="927.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.49%)</title><rect x="37.6214%" y="901" width="0.4854%" height="15" fill="rgb(243,6,42)" fg:x="155" fg:w="2"/><text x="37.8714%" y="911.50"></text></g><g><title>__rust_alloc (1 samples, 0.24%)</title><rect x="37.8641%" y="885" width="0.2427%" height="15" fill="rgb(251,74,28)" fg:x="156" fg:w="1"/><text x="38.1141%" y="895.50"></text></g><g><title>ress::manual_scanner::ManualScanner::bump_line_cursors (1 samples, 0.24%)</title><rect x="38.5922%" y="901" width="0.2427%" height="15" fill="rgb(218,20,49)" fg:x="159" fg:w="1"/><text x="38.8422%" y="911.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="38.8350%" y="869" width="0.2427%" height="15" fill="rgb(238,28,14)" fg:x="160" fg:w="1"/><text x="39.0850%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_assignment_after_start (8 samples, 1.94%)</title><rect x="37.3786%" y="981" width="1.9417%" height="15" fill="rgb(229,40,46)" fg:x="154" fg:w="8"/><text x="37.6286%" y="991.50">r..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (5 samples, 1.21%)</title><rect x="38.1068%" y="965" width="1.2136%" height="15" fill="rgb(244,195,20)" fg:x="157" fg:w="5"/><text x="38.3568%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.97%)</title><rect x="38.3495%" y="949" width="0.9709%" height="15" fill="rgb(253,56,35)" fg:x="158" fg:w="4"/><text x="38.5995%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (4 samples, 0.97%)</title><rect x="38.3495%" y="933" width="0.9709%" height="15" fill="rgb(210,149,44)" fg:x="158" fg:w="4"/><text x="38.5995%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="38.3495%" y="917" width="0.9709%" height="15" fill="rgb(240,135,12)" fg:x="158" fg:w="4"/><text x="38.5995%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (2 samples, 0.49%)</title><rect x="38.8350%" y="901" width="0.4854%" height="15" fill="rgb(251,24,50)" fg:x="160" fg:w="2"/><text x="39.0850%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (2 samples, 0.49%)</title><rect x="38.8350%" y="885" width="0.4854%" height="15" fill="rgb(243,200,47)" fg:x="160" fg:w="2"/><text x="39.0850%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::is_id_continue (1 samples, 0.24%)</title><rect x="39.0777%" y="869" width="0.2427%" height="15" fill="rgb(224,166,26)" fg:x="161" fg:w="1"/><text x="39.3277%" y="879.50"></text></g><g><title>ress::tokenizer::unicode::is_id_continue (1 samples, 0.24%)</title><rect x="39.0777%" y="853" width="0.2427%" height="15" fill="rgb(233,0,47)" fg:x="161" fg:w="1"/><text x="39.3277%" y="863.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.97%)</title><rect x="39.8058%" y="965" width="0.9709%" height="15" fill="rgb(253,80,5)" fg:x="164" fg:w="4"/><text x="40.0558%" y="975.50"></text></g><g><title>__rust_probestack (1 samples, 0.24%)</title><rect x="40.7767%" y="965" width="0.2427%" height="15" fill="rgb(214,133,25)" fg:x="168" fg:w="1"/><text x="41.0267%" y="975.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="41.0194%" y="965" width="0.4854%" height="15" fill="rgb(209,27,14)" fg:x="169" fg:w="2"/><text x="41.2694%" y="975.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.49%)</title><rect x="41.0194%" y="949" width="0.4854%" height="15" fill="rgb(219,102,51)" fg:x="169" fg:w="2"/><text x="41.2694%" y="959.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.49%)</title><rect x="41.0194%" y="933" width="0.4854%" height="15" fill="rgb(237,18,16)" fg:x="169" fg:w="2"/><text x="41.2694%" y="943.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.49%)</title><rect x="41.0194%" y="917" width="0.4854%" height="15" fill="rgb(241,85,17)" fg:x="169" fg:w="2"/><text x="41.2694%" y="927.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.49%)</title><rect x="41.0194%" y="901" width="0.4854%" height="15" fill="rgb(236,90,42)" fg:x="169" fg:w="2"/><text x="41.2694%" y="911.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.49%)</title><rect x="41.0194%" y="885" width="0.4854%" height="15" fill="rgb(249,57,21)" fg:x="169" fg:w="2"/><text x="41.2694%" y="895.50"></text></g><g><title>_int_malloc (2 samples, 0.49%)</title><rect x="41.0194%" y="869" width="0.4854%" height="15" fill="rgb(243,12,36)" fg:x="169" fg:w="2"/><text x="41.2694%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="41.5049%" y="949" width="0.2427%" height="15" fill="rgb(253,128,47)" fg:x="171" fg:w="1"/><text x="41.7549%" y="959.50"></text></g><g><title>&lt;resast::spanned::expr::CallExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.4757%" y="901" width="0.2427%" height="15" fill="rgb(207,33,20)" fg:x="175" fg:w="1"/><text x="42.7257%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.4757%" y="885" width="0.2427%" height="15" fill="rgb(233,215,35)" fg:x="175" fg:w="1"/><text x="42.7257%" y="895.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.24%)</title><rect x="42.4757%" y="869" width="0.2427%" height="15" fill="rgb(249,188,52)" fg:x="175" fg:w="1"/><text x="42.7257%" y="879.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.24%)</title><rect x="42.4757%" y="853" width="0.2427%" height="15" fill="rgb(225,12,32)" fg:x="175" fg:w="1"/><text x="42.7257%" y="863.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.24%)</title><rect x="42.4757%" y="837" width="0.2427%" height="15" fill="rgb(247,98,14)" fg:x="175" fg:w="1"/><text x="42.7257%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="42.4757%" y="821" width="0.2427%" height="15" fill="rgb(247,219,48)" fg:x="175" fg:w="1"/><text x="42.7257%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="42.4757%" y="805" width="0.2427%" height="15" fill="rgb(253,60,48)" fg:x="175" fg:w="1"/><text x="42.7257%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="42.4757%" y="789" width="0.2427%" height="15" fill="rgb(245,15,52)" fg:x="175" fg:w="1"/><text x="42.7257%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="42.4757%" y="773" width="0.2427%" height="15" fill="rgb(220,133,28)" fg:x="175" fg:w="1"/><text x="42.7257%" y="783.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="42.4757%" y="757" width="0.2427%" height="15" fill="rgb(217,180,4)" fg:x="175" fg:w="1"/><text x="42.7257%" y="767.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="42.4757%" y="741" width="0.2427%" height="15" fill="rgb(251,24,1)" fg:x="175" fg:w="1"/><text x="42.7257%" y="751.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="42.4757%" y="725" width="0.2427%" height="15" fill="rgb(212,185,49)" fg:x="175" fg:w="1"/><text x="42.7257%" y="735.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="42.4757%" y="709" width="0.2427%" height="15" fill="rgb(215,175,22)" fg:x="175" fg:w="1"/><text x="42.7257%" y="719.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.7184%" y="901" width="0.2427%" height="15" fill="rgb(250,205,14)" fg:x="176" fg:w="1"/><text x="42.9684%" y="911.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.7184%" y="885" width="0.2427%" height="15" fill="rgb(225,211,22)" fg:x="176" fg:w="1"/><text x="42.9684%" y="895.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="42.7184%" y="869" width="0.2427%" height="15" fill="rgb(251,179,42)" fg:x="176" fg:w="1"/><text x="42.9684%" y="879.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (1 samples, 0.24%)</title><rect x="42.7184%" y="853" width="0.2427%" height="15" fill="rgb(208,216,51)" fg:x="176" fg:w="1"/><text x="42.9684%" y="863.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="42.7184%" y="837" width="0.2427%" height="15" fill="rgb(235,36,11)" fg:x="176" fg:w="1"/><text x="42.9684%" y="847.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="42.7184%" y="821" width="0.2427%" height="15" fill="rgb(213,189,28)" fg:x="176" fg:w="1"/><text x="42.9684%" y="831.50"></text></g><g><title>&lt;resast::spanned::expr::UnaryExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.9612%" y="901" width="0.2427%" height="15" fill="rgb(227,203,42)" fg:x="177" fg:w="1"/><text x="43.2112%" y="911.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="42.9612%" y="885" width="0.2427%" height="15" fill="rgb(244,72,36)" fg:x="177" fg:w="1"/><text x="43.2112%" y="895.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="42.9612%" y="869" width="0.2427%" height="15" fill="rgb(213,53,17)" fg:x="177" fg:w="1"/><text x="43.2112%" y="879.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (1 samples, 0.24%)</title><rect x="42.9612%" y="853" width="0.2427%" height="15" fill="rgb(207,167,3)" fg:x="177" fg:w="1"/><text x="43.2112%" y="863.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="42.9612%" y="837" width="0.2427%" height="15" fill="rgb(216,98,30)" fg:x="177" fg:w="1"/><text x="43.2112%" y="847.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="42.9612%" y="821" width="0.2427%" height="15" fill="rgb(236,123,15)" fg:x="177" fg:w="1"/><text x="43.2112%" y="831.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (5 samples, 1.21%)</title><rect x="42.2330%" y="917" width="1.2136%" height="15" fill="rgb(248,81,50)" fg:x="174" fg:w="5"/><text x="42.4830%" y="927.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="43.2039%" y="901" width="0.2427%" height="15" fill="rgb(214,120,4)" fg:x="178" fg:w="1"/><text x="43.4539%" y="911.50"></text></g><g><title>&lt;ress::Item&lt;T&gt; as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="43.4466%" y="917" width="0.4854%" height="15" fill="rgb(208,179,34)" fg:x="179" fg:w="2"/><text x="43.6966%" y="927.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="43.9320%" y="917" width="0.2427%" height="15" fill="rgb(227,140,7)" fg:x="181" fg:w="1"/><text x="44.1820%" y="927.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="43.9320%" y="901" width="0.2427%" height="15" fill="rgb(214,22,6)" fg:x="181" fg:w="1"/><text x="44.1820%" y="911.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="43.9320%" y="885" width="0.2427%" height="15" fill="rgb(207,137,27)" fg:x="181" fg:w="1"/><text x="44.1820%" y="895.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="43.9320%" y="869" width="0.2427%" height="15" fill="rgb(210,8,46)" fg:x="181" fg:w="1"/><text x="44.1820%" y="879.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="43.9320%" y="853" width="0.2427%" height="15" fill="rgb(240,16,54)" fg:x="181" fg:w="1"/><text x="44.1820%" y="863.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="43.9320%" y="837" width="0.2427%" height="15" fill="rgb(211,209,29)" fg:x="181" fg:w="1"/><text x="44.1820%" y="847.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (3 samples, 0.73%)</title><rect x="44.1748%" y="917" width="0.7282%" height="15" fill="rgb(226,228,24)" fg:x="182" fg:w="3"/><text x="44.4248%" y="927.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.73%)</title><rect x="44.1748%" y="901" width="0.7282%" height="15" fill="rgb(222,84,9)" fg:x="182" fg:w="3"/><text x="44.4248%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.49%)</title><rect x="44.9029%" y="917" width="0.4854%" height="15" fill="rgb(234,203,30)" fg:x="185" fg:w="2"/><text x="45.1529%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="44.9029%" y="901" width="0.4854%" height="15" fill="rgb(238,109,14)" fg:x="185" fg:w="2"/><text x="45.1529%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="44.9029%" y="885" width="0.4854%" height="15" fill="rgb(233,206,34)" fg:x="185" fg:w="2"/><text x="45.1529%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (2 samples, 0.49%)</title><rect x="44.9029%" y="869" width="0.4854%" height="15" fill="rgb(220,167,47)" fg:x="185" fg:w="2"/><text x="45.1529%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.49%)</title><rect x="44.9029%" y="853" width="0.4854%" height="15" fill="rgb(238,105,10)" fg:x="185" fg:w="2"/><text x="45.1529%" y="863.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.49%)</title><rect x="44.9029%" y="837" width="0.4854%" height="15" fill="rgb(213,227,17)" fg:x="185" fg:w="2"/><text x="45.1529%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (2 samples, 0.49%)</title><rect x="44.9029%" y="821" width="0.4854%" height="15" fill="rgb(217,132,38)" fg:x="185" fg:w="2"/><text x="45.1529%" y="831.50"></text></g><g><title>alloc::alloc::Global::grow_impl (2 samples, 0.49%)</title><rect x="44.9029%" y="805" width="0.4854%" height="15" fill="rgb(242,146,4)" fg:x="185" fg:w="2"/><text x="45.1529%" y="815.50"></text></g><g><title>alloc::alloc::realloc (2 samples, 0.49%)</title><rect x="44.9029%" y="789" width="0.4854%" height="15" fill="rgb(212,61,9)" fg:x="185" fg:w="2"/><text x="45.1529%" y="799.50"></text></g><g><title>__GI___libc_realloc (2 samples, 0.49%)</title><rect x="44.9029%" y="773" width="0.4854%" height="15" fill="rgb(247,126,22)" fg:x="185" fg:w="2"/><text x="45.1529%" y="783.50"></text></g><g><title>_int_realloc (2 samples, 0.49%)</title><rect x="44.9029%" y="757" width="0.4854%" height="15" fill="rgb(220,196,2)" fg:x="185" fg:w="2"/><text x="45.1529%" y="767.50"></text></g><g><title>_int_malloc (2 samples, 0.49%)</title><rect x="44.9029%" y="741" width="0.4854%" height="15" fill="rgb(208,46,4)" fg:x="185" fg:w="2"/><text x="45.1529%" y="751.50"></text></g><g><title>core::option::Option&lt;T&gt;::ok_or_else (1 samples, 0.24%)</title><rect x="45.3883%" y="917" width="0.2427%" height="15" fill="rgb(252,104,46)" fg:x="187" fg:w="1"/><text x="45.6383%" y="927.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="45.3883%" y="901" width="0.2427%" height="15" fill="rgb(237,152,48)" fg:x="187" fg:w="1"/><text x="45.6383%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;usize&gt;&gt; (1 samples, 0.24%)</title><rect x="45.6311%" y="917" width="0.2427%" height="15" fill="rgb(221,59,37)" fg:x="188" fg:w="1"/><text x="45.8811%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;usize&gt;&gt; (1 samples, 0.24%)</title><rect x="45.6311%" y="901" width="0.2427%" height="15" fill="rgb(209,202,51)" fg:x="188" fg:w="1"/><text x="45.8811%" y="911.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="45.6311%" y="885" width="0.2427%" height="15" fill="rgb(228,81,30)" fg:x="188" fg:w="1"/><text x="45.8811%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="45.6311%" y="869" width="0.2427%" height="15" fill="rgb(227,42,39)" fg:x="188" fg:w="1"/><text x="45.8811%" y="879.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="45.6311%" y="853" width="0.2427%" height="15" fill="rgb(221,26,2)" fg:x="188" fg:w="1"/><text x="45.8811%" y="863.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="45.6311%" y="837" width="0.2427%" height="15" fill="rgb(254,61,31)" fg:x="188" fg:w="1"/><text x="45.8811%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;resast::spanned::ListEntry&lt;resast::spanned::expr::Expr&gt;&gt;&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="901" width="0.2427%" height="15" fill="rgb(222,173,38)" fg:x="189" fg:w="1"/><text x="46.1238%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="45.8738%" y="885" width="0.2427%" height="15" fill="rgb(218,50,12)" fg:x="189" fg:w="1"/><text x="46.1238%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;[resast::spanned::ListEntry&lt;resast::spanned::expr::Expr&gt;]&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="869" width="0.2427%" height="15" fill="rgb(223,88,40)" fg:x="189" fg:w="1"/><text x="46.1238%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::ListEntry&lt;resast::spanned::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="853" width="0.2427%" height="15" fill="rgb(237,54,19)" fg:x="189" fg:w="1"/><text x="46.1238%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="837" width="0.2427%" height="15" fill="rgb(251,129,25)" fg:x="189" fg:w="1"/><text x="46.1238%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::AssignExpr&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="821" width="0.2427%" height="15" fill="rgb(238,97,19)" fg:x="189" fg:w="1"/><text x="46.1238%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::AssignLeft&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="805" width="0.2427%" height="15" fill="rgb(240,169,18)" fg:x="189" fg:w="1"/><text x="46.1238%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::spanned::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="789" width="0.2427%" height="15" fill="rgb(230,187,49)" fg:x="189" fg:w="1"/><text x="46.1238%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::Expr&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="773" width="0.2427%" height="15" fill="rgb(209,44,26)" fg:x="189" fg:w="1"/><text x="46.1238%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::MemberExpr&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="757" width="0.2427%" height="15" fill="rgb(244,0,6)" fg:x="189" fg:w="1"/><text x="46.1238%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::spanned::expr::Expr&gt;&gt; (1 samples, 0.24%)</title><rect x="45.8738%" y="741" width="0.2427%" height="15" fill="rgb(248,18,21)" fg:x="189" fg:w="1"/><text x="46.1238%" y="751.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="45.8738%" y="725" width="0.2427%" height="15" fill="rgb(245,180,19)" fg:x="189" fg:w="1"/><text x="46.1238%" y="735.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="45.8738%" y="709" width="0.2427%" height="15" fill="rgb(252,118,36)" fg:x="189" fg:w="1"/><text x="46.1238%" y="719.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="45.8738%" y="693" width="0.2427%" height="15" fill="rgb(210,224,19)" fg:x="189" fg:w="1"/><text x="46.1238%" y="703.50"></text></g><g><title>__rdl_dealloc (1 samples, 0.24%)</title><rect x="45.8738%" y="677" width="0.2427%" height="15" fill="rgb(218,30,24)" fg:x="189" fg:w="1"/><text x="46.1238%" y="687.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (1 samples, 0.24%)</title><rect x="45.8738%" y="661" width="0.2427%" height="15" fill="rgb(219,75,50)" fg:x="189" fg:w="1"/><text x="46.1238%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::Expr&gt; (3 samples, 0.73%)</title><rect x="45.8738%" y="917" width="0.7282%" height="15" fill="rgb(234,72,50)" fg:x="189" fg:w="3"/><text x="46.1238%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;resast::spanned::expr::CallExpr&gt; (2 samples, 0.49%)</title><rect x="46.1165%" y="901" width="0.4854%" height="15" fill="rgb(219,100,48)" fg:x="190" fg:w="2"/><text x="46.3665%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;resast::spanned::expr::Expr&gt;&gt; (2 samples, 0.49%)</title><rect x="46.1165%" y="885" width="0.4854%" height="15" fill="rgb(253,5,41)" fg:x="190" fg:w="2"/><text x="46.3665%" y="895.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.24%)</title><rect x="46.3592%" y="869" width="0.2427%" height="15" fill="rgb(247,181,11)" fg:x="191" fg:w="1"/><text x="46.6092%" y="879.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="46.3592%" y="853" width="0.2427%" height="15" fill="rgb(222,223,25)" fg:x="191" fg:w="1"/><text x="46.6092%" y="863.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="46.3592%" y="837" width="0.2427%" height="15" fill="rgb(214,198,28)" fg:x="191" fg:w="1"/><text x="46.6092%" y="847.50"></text></g><g><title>_int_free (1 samples, 0.24%)</title><rect x="46.3592%" y="821" width="0.2427%" height="15" fill="rgb(230,46,43)" fg:x="191" fg:w="1"/><text x="46.6092%" y="831.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::bin_precedence (2 samples, 0.49%)</title><rect x="46.6019%" y="917" width="0.4854%" height="15" fill="rgb(233,65,53)" fg:x="192" fg:w="2"/><text x="46.8519%" y="927.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="47.5728%" y="901" width="0.2427%" height="15" fill="rgb(221,121,27)" fg:x="196" fg:w="1"/><text x="47.8228%" y="911.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="47.8155%" y="901" width="0.2427%" height="15" fill="rgb(247,70,47)" fg:x="197" fg:w="1"/><text x="48.0655%" y="911.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (5 samples, 1.21%)</title><rect x="48.0583%" y="869" width="1.2136%" height="15" fill="rgb(228,85,35)" fg:x="198" fg:w="5"/><text x="48.3083%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.97%)</title><rect x="48.3010%" y="853" width="0.9709%" height="15" fill="rgb(209,50,18)" fg:x="199" fg:w="4"/><text x="48.5510%" y="863.50"></text></g><g><title>core::ops::function::Fn::call (11 samples, 2.67%)</title><rect x="48.0583%" y="901" width="2.6699%" height="15" fill="rgb(250,19,35)" fg:x="198" fg:w="11"/><text x="48.3083%" y="911.50">co..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_exponentiation_expression (11 samples, 2.67%)</title><rect x="48.0583%" y="885" width="2.6699%" height="15" fill="rgb(253,107,29)" fg:x="198" fg:w="11"/><text x="48.3083%" y="895.50">re..</text></g><g><title>__memmove_avx_unaligned_erms (6 samples, 1.46%)</title><rect x="49.2718%" y="869" width="1.4563%" height="15" fill="rgb(252,179,29)" fg:x="203" fg:w="6"/><text x="49.5218%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (16 samples, 3.88%)</title><rect x="47.0874%" y="917" width="3.8835%" height="15" fill="rgb(238,194,6)" fg:x="194" fg:w="16"/><text x="47.3374%" y="927.50">ress..</text></g><g><title>ressa::Context::set_is_binding_element (1 samples, 0.24%)</title><rect x="50.7282%" y="901" width="0.2427%" height="15" fill="rgb(238,164,29)" fg:x="209" fg:w="1"/><text x="50.9782%" y="911.50"></text></g><g><title>&lt;log::Level as core::cmp::PartialOrd&lt;log::LevelFilter&gt;&gt;::le (1 samples, 0.24%)</title><rect x="50.7282%" y="885" width="0.2427%" height="15" fill="rgb(224,25,9)" fg:x="209" fg:w="1"/><text x="50.9782%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (1 samples, 0.24%)</title><rect x="50.9709%" y="917" width="0.2427%" height="15" fill="rgb(244,153,23)" fg:x="210" fg:w="1"/><text x="51.2209%" y="927.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="50.9709%" y="901" width="0.2427%" height="15" fill="rgb(212,203,14)" fg:x="210" fg:w="1"/><text x="51.2209%" y="911.50"></text></g><g><title>core::ops::function::Fn::call (40 samples, 9.71%)</title><rect x="41.7476%" y="949" width="9.7087%" height="15" fill="rgb(220,164,20)" fg:x="172" fg:w="40"/><text x="41.9976%" y="959.50">core::ops::fun..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_binary_expression (40 samples, 9.71%)</title><rect x="41.7476%" y="933" width="9.7087%" height="15" fill="rgb(222,203,48)" fg:x="172" fg:w="40"/><text x="41.9976%" y="943.50">ressa::spanned..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="51.2136%" y="917" width="0.2427%" height="15" fill="rgb(215,159,22)" fg:x="211" fg:w="1"/><text x="51.4636%" y="927.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="51.2136%" y="901" width="0.2427%" height="15" fill="rgb(216,183,47)" fg:x="211" fg:w="1"/><text x="51.4636%" y="911.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="51.2136%" y="885" width="0.2427%" height="15" fill="rgb(229,195,25)" fg:x="211" fg:w="1"/><text x="51.4636%" y="895.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="51.2136%" y="869" width="0.2427%" height="15" fill="rgb(224,132,51)" fg:x="211" fg:w="1"/><text x="51.4636%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="51.2136%" y="853" width="0.2427%" height="15" fill="rgb(240,63,7)" fg:x="211" fg:w="1"/><text x="51.4636%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::number (1 samples, 0.24%)</title><rect x="51.2136%" y="837" width="0.2427%" height="15" fill="rgb(249,182,41)" fg:x="211" fg:w="1"/><text x="51.4636%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::dec_number (1 samples, 0.24%)</title><rect x="51.2136%" y="821" width="0.2427%" height="15" fill="rgb(243,47,26)" fg:x="211" fg:w="1"/><text x="51.4636%" y="831.50"></text></g><g><title>ress::tokenizer::Tokenizer::check_trailing_underscore (1 samples, 0.24%)</title><rect x="51.2136%" y="805" width="0.2427%" height="15" fill="rgb(233,48,2)" fg:x="211" fg:w="1"/><text x="51.4636%" y="815.50"></text></g><g><title>log::max_level (1 samples, 0.24%)</title><rect x="51.2136%" y="789" width="0.2427%" height="15" fill="rgb(244,165,34)" fg:x="211" fg:w="1"/><text x="51.4636%" y="799.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.24%)</title><rect x="51.2136%" y="773" width="0.2427%" height="15" fill="rgb(207,89,7)" fg:x="211" fg:w="1"/><text x="51.4636%" y="783.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.24%)</title><rect x="51.2136%" y="757" width="0.2427%" height="15" fill="rgb(244,117,36)" fg:x="211" fg:w="1"/><text x="51.4636%" y="767.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1 samples, 0.24%)</title><rect x="51.4563%" y="949" width="0.2427%" height="15" fill="rgb(226,144,34)" fg:x="212" fg:w="1"/><text x="51.7063%" y="959.50"></text></g><g><title>core::mem::replace (1 samples, 0.24%)</title><rect x="51.4563%" y="933" width="0.2427%" height="15" fill="rgb(213,23,19)" fg:x="212" fg:w="1"/><text x="51.7063%" y="943.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="51.4563%" y="917" width="0.2427%" height="15" fill="rgb(217,75,12)" fg:x="212" fg:w="1"/><text x="51.7063%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_assignment_expr (65 samples, 15.78%)</title><rect x="36.1650%" y="997" width="15.7767%" height="15" fill="rgb(224,159,17)" fg:x="149" fg:w="65"/><text x="36.4150%" y="1007.50">ressa::spanned::Parser&lt;C..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_conditional_expr (52 samples, 12.62%)</title><rect x="39.3204%" y="981" width="12.6214%" height="15" fill="rgb(217,118,1)" fg:x="162" fg:w="52"/><text x="39.5704%" y="991.50">ressa::spanned::Par..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (43 samples, 10.44%)</title><rect x="41.5049%" y="965" width="10.4369%" height="15" fill="rgb(232,180,48)" fg:x="171" fg:w="43"/><text x="41.7549%" y="975.50">ressa::spanned:..</text></g><g><title>ressa::Context::set_is_assignment_target (1 samples, 0.24%)</title><rect x="51.6990%" y="949" width="0.2427%" height="15" fill="rgb(230,27,33)" fg:x="213" fg:w="1"/><text x="51.9490%" y="959.50"></text></g><g><title>log::max_level (1 samples, 0.24%)</title><rect x="51.9417%" y="869" width="0.2427%" height="15" fill="rgb(205,31,21)" fg:x="214" fg:w="1"/><text x="52.1917%" y="879.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.24%)</title><rect x="51.9417%" y="853" width="0.2427%" height="15" fill="rgb(253,59,4)" fg:x="214" fg:w="1"/><text x="52.1917%" y="863.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.24%)</title><rect x="51.9417%" y="837" width="0.2427%" height="15" fill="rgb(224,201,9)" fg:x="214" fg:w="1"/><text x="52.1917%" y="847.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::e_keywords (1 samples, 0.24%)</title><rect x="52.1845%" y="853" width="0.2427%" height="15" fill="rgb(229,206,30)" fg:x="215" fg:w="1"/><text x="52.4345%" y="863.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="52.1845%" y="837" width="0.2427%" height="15" fill="rgb(212,67,47)" fg:x="215" fg:w="1"/><text x="52.4345%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (3 samples, 0.73%)</title><rect x="51.9417%" y="885" width="0.7282%" height="15" fill="rgb(211,96,50)" fg:x="214" fg:w="3"/><text x="52.1917%" y="895.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (2 samples, 0.49%)</title><rect x="52.1845%" y="869" width="0.4854%" height="15" fill="rgb(252,114,18)" fg:x="215" fg:w="2"/><text x="52.4345%" y="879.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::suffix_for_token (1 samples, 0.24%)</title><rect x="52.4272%" y="853" width="0.2427%" height="15" fill="rgb(223,58,37)" fg:x="216" fg:w="1"/><text x="52.6772%" y="863.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::at_ident_end (1 samples, 0.24%)</title><rect x="52.4272%" y="837" width="0.2427%" height="15" fill="rgb(237,70,4)" fg:x="216" fg:w="1"/><text x="52.6772%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_matches (1 samples, 0.24%)</title><rect x="52.4272%" y="821" width="0.2427%" height="15" fill="rgb(244,85,46)" fg:x="216" fg:w="1"/><text x="52.6772%" y="831.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::look_ahead_matches (1 samples, 0.24%)</title><rect x="52.4272%" y="805" width="0.2427%" height="15" fill="rgb(223,39,52)" fg:x="216" fg:w="1"/><text x="52.6772%" y="815.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.24%)</title><rect x="52.4272%" y="789" width="0.2427%" height="15" fill="rgb(218,200,14)" fg:x="216" fg:w="1"/><text x="52.6772%" y="799.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (1 samples, 0.24%)</title><rect x="52.4272%" y="773" width="0.2427%" height="15" fill="rgb(208,171,16)" fg:x="216" fg:w="1"/><text x="52.6772%" y="783.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.24%)</title><rect x="52.4272%" y="757" width="0.2427%" height="15" fill="rgb(234,200,18)" fg:x="216" fg:w="1"/><text x="52.6772%" y="767.50"></text></g><g><title>__memcmp_avx2_movbe (1 samples, 0.24%)</title><rect x="52.4272%" y="741" width="0.2427%" height="15" fill="rgb(228,45,11)" fg:x="216" fg:w="1"/><text x="52.6772%" y="751.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_block (4 samples, 0.97%)</title><rect x="51.9417%" y="997" width="0.9709%" height="15" fill="rgb(237,182,11)" fg:x="214" fg:w="4"/><text x="52.1917%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (4 samples, 0.97%)</title><rect x="51.9417%" y="981" width="0.9709%" height="15" fill="rgb(241,175,49)" fg:x="214" fg:w="4"/><text x="52.1917%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (4 samples, 0.97%)</title><rect x="51.9417%" y="965" width="0.9709%" height="15" fill="rgb(247,38,35)" fg:x="214" fg:w="4"/><text x="52.1917%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.97%)</title><rect x="51.9417%" y="949" width="0.9709%" height="15" fill="rgb(228,39,49)" fg:x="214" fg:w="4"/><text x="52.1917%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (4 samples, 0.97%)</title><rect x="51.9417%" y="933" width="0.9709%" height="15" fill="rgb(226,101,26)" fg:x="214" fg:w="4"/><text x="52.1917%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="51.9417%" y="917" width="0.9709%" height="15" fill="rgb(206,141,19)" fg:x="214" fg:w="4"/><text x="52.1917%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (4 samples, 0.97%)</title><rect x="51.9417%" y="901" width="0.9709%" height="15" fill="rgb(211,200,13)" fg:x="214" fg:w="4"/><text x="52.1917%" y="911.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (1 samples, 0.24%)</title><rect x="52.6699%" y="885" width="0.2427%" height="15" fill="rgb(241,121,6)" fg:x="217" fg:w="1"/><text x="52.9199%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_class_body (1 samples, 0.24%)</title><rect x="52.9126%" y="997" width="0.2427%" height="15" fill="rgb(234,221,29)" fg:x="218" fg:w="1"/><text x="53.1626%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_class_el (1 samples, 0.24%)</title><rect x="52.9126%" y="981" width="0.2427%" height="15" fill="rgb(229,136,5)" fg:x="218" fg:w="1"/><text x="53.1626%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="52.9126%" y="965" width="0.2427%" height="15" fill="rgb(238,36,11)" fg:x="218" fg:w="1"/><text x="53.1626%" y="975.50"></text></g><g><title>&lt;resast::spanned::expr::AssignExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="917" width="0.2427%" height="15" fill="rgb(251,55,41)" fg:x="219" fg:w="1"/><text x="53.4053%" y="927.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="901" width="0.2427%" height="15" fill="rgb(242,34,40)" fg:x="219" fg:w="1"/><text x="53.4053%" y="911.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="53.1553%" y="885" width="0.2427%" height="15" fill="rgb(215,42,17)" fg:x="219" fg:w="1"/><text x="53.4053%" y="895.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="869" width="0.2427%" height="15" fill="rgb(207,44,46)" fg:x="219" fg:w="1"/><text x="53.4053%" y="879.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="853" width="0.2427%" height="15" fill="rgb(211,206,28)" fg:x="219" fg:w="1"/><text x="53.4053%" y="863.50"></text></g><g><title>&lt;resast::spanned::expr::MemberIndexer as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="837" width="0.2427%" height="15" fill="rgb(237,167,16)" fg:x="219" fg:w="1"/><text x="53.4053%" y="847.50"></text></g><g><title>&lt;resast::spanned::Slice as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="821" width="0.2427%" height="15" fill="rgb(233,66,6)" fg:x="219" fg:w="1"/><text x="53.4053%" y="831.50"></text></g><g><title>&lt;alloc::borrow::Cow&lt;B&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="53.1553%" y="805" width="0.2427%" height="15" fill="rgb(246,123,29)" fg:x="219" fg:w="1"/><text x="53.4053%" y="815.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.24%)</title><rect x="53.3981%" y="821" width="0.2427%" height="15" fill="rgb(209,62,40)" fg:x="220" fg:w="1"/><text x="53.6481%" y="831.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (1 samples, 0.24%)</title><rect x="53.3981%" y="805" width="0.2427%" height="15" fill="rgb(218,4,25)" fg:x="220" fg:w="1"/><text x="53.6481%" y="815.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="53.3981%" y="789" width="0.2427%" height="15" fill="rgb(253,91,49)" fg:x="220" fg:w="1"/><text x="53.6481%" y="799.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="53.3981%" y="773" width="0.2427%" height="15" fill="rgb(228,155,29)" fg:x="220" fg:w="1"/><text x="53.6481%" y="783.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (3 samples, 0.73%)</title><rect x="53.1553%" y="933" width="0.7282%" height="15" fill="rgb(243,57,37)" fg:x="219" fg:w="3"/><text x="53.4053%" y="943.50"></text></g><g><title>&lt;resast::spanned::expr::CallExpr as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="53.3981%" y="917" width="0.4854%" height="15" fill="rgb(244,167,17)" fg:x="220" fg:w="2"/><text x="53.6481%" y="927.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="53.3981%" y="901" width="0.4854%" height="15" fill="rgb(207,181,38)" fg:x="220" fg:w="2"/><text x="53.6481%" y="911.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (2 samples, 0.49%)</title><rect x="53.3981%" y="885" width="0.4854%" height="15" fill="rgb(211,8,23)" fg:x="220" fg:w="2"/><text x="53.6481%" y="895.50"></text></g><g><title>&lt;resast::spanned::expr::Expr as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="53.3981%" y="869" width="0.4854%" height="15" fill="rgb(235,11,44)" fg:x="220" fg:w="2"/><text x="53.6481%" y="879.50"></text></g><g><title>&lt;resast::spanned::expr::MemberExpr as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="53.3981%" y="853" width="0.4854%" height="15" fill="rgb(248,18,52)" fg:x="220" fg:w="2"/><text x="53.6481%" y="863.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.49%)</title><rect x="53.3981%" y="837" width="0.4854%" height="15" fill="rgb(208,4,7)" fg:x="220" fg:w="2"/><text x="53.6481%" y="847.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (1 samples, 0.24%)</title><rect x="53.6408%" y="821" width="0.2427%" height="15" fill="rgb(240,17,39)" fg:x="221" fg:w="1"/><text x="53.8908%" y="831.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (1 samples, 0.24%)</title><rect x="53.6408%" y="805" width="0.2427%" height="15" fill="rgb(207,170,3)" fg:x="221" fg:w="1"/><text x="53.8908%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="53.6408%" y="789" width="0.2427%" height="15" fill="rgb(236,100,52)" fg:x="221" fg:w="1"/><text x="53.8908%" y="799.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="53.6408%" y="773" width="0.2427%" height="15" fill="rgb(246,78,51)" fg:x="221" fg:w="1"/><text x="53.8908%" y="783.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="53.6408%" y="757" width="0.2427%" height="15" fill="rgb(211,17,15)" fg:x="221" fg:w="1"/><text x="53.8908%" y="767.50"></text></g><g><title>__rdl_alloc (1 samples, 0.24%)</title><rect x="53.6408%" y="741" width="0.2427%" height="15" fill="rgb(209,59,46)" fg:x="221" fg:w="1"/><text x="53.8908%" y="751.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.73%)</title><rect x="53.8835%" y="869" width="0.7282%" height="15" fill="rgb(210,92,25)" fg:x="222" fg:w="3"/><text x="54.1335%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (4 samples, 0.97%)</title><rect x="53.8835%" y="933" width="0.9709%" height="15" fill="rgb(238,174,52)" fg:x="222" fg:w="4"/><text x="54.1335%" y="943.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.97%)</title><rect x="53.8835%" y="917" width="0.9709%" height="15" fill="rgb(230,73,7)" fg:x="222" fg:w="4"/><text x="54.1335%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_exponentiation_expression (4 samples, 0.97%)</title><rect x="53.8835%" y="901" width="0.9709%" height="15" fill="rgb(243,124,40)" fg:x="222" fg:w="4"/><text x="54.1335%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (4 samples, 0.97%)</title><rect x="53.8835%" y="885" width="0.9709%" height="15" fill="rgb(244,170,11)" fg:x="222" fg:w="4"/><text x="54.1335%" y="895.50"></text></g><g><title>ressa::Context::set_is_binding_element (1 samples, 0.24%)</title><rect x="54.6117%" y="869" width="0.2427%" height="15" fill="rgb(207,114,54)" fg:x="225" fg:w="1"/><text x="54.8617%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="54.8544%" y="869" width="0.2427%" height="15" fill="rgb(205,42,20)" fg:x="226" fg:w="1"/><text x="55.1044%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_conditional_expr (9 samples, 2.18%)</title><rect x="53.1553%" y="997" width="2.1845%" height="15" fill="rgb(230,30,28)" fg:x="219" fg:w="9"/><text x="53.4053%" y="1007.50">r..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (9 samples, 2.18%)</title><rect x="53.1553%" y="981" width="2.1845%" height="15" fill="rgb(205,73,54)" fg:x="219" fg:w="9"/><text x="53.4053%" y="991.50">r..</text></g><g><title>core::ops::function::Fn::call (9 samples, 2.18%)</title><rect x="53.1553%" y="965" width="2.1845%" height="15" fill="rgb(254,227,23)" fg:x="219" fg:w="9"/><text x="53.4053%" y="975.50">c..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_binary_expression (9 samples, 2.18%)</title><rect x="53.1553%" y="949" width="2.1845%" height="15" fill="rgb(228,202,34)" fg:x="219" fg:w="9"/><text x="53.4053%" y="959.50">r..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (2 samples, 0.49%)</title><rect x="54.8544%" y="933" width="0.4854%" height="15" fill="rgb(222,225,37)" fg:x="226" fg:w="2"/><text x="55.1044%" y="943.50"></text></g><g><title>core::ops::function::Fn::call (2 samples, 0.49%)</title><rect x="54.8544%" y="917" width="0.4854%" height="15" fill="rgb(221,14,54)" fg:x="226" fg:w="2"/><text x="55.1044%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_exponentiation_expression (2 samples, 0.49%)</title><rect x="54.8544%" y="901" width="0.4854%" height="15" fill="rgb(254,102,2)" fg:x="226" fg:w="2"/><text x="55.1044%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (2 samples, 0.49%)</title><rect x="54.8544%" y="885" width="0.4854%" height="15" fill="rgb(232,104,17)" fg:x="226" fg:w="2"/><text x="55.1044%" y="895.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1 samples, 0.24%)</title><rect x="55.0971%" y="869" width="0.2427%" height="15" fill="rgb(250,220,14)" fg:x="227" fg:w="1"/><text x="55.3471%" y="879.50"></text></g><g><title>core::mem::replace (1 samples, 0.24%)</title><rect x="55.0971%" y="853" width="0.2427%" height="15" fill="rgb(241,158,9)" fg:x="227" fg:w="1"/><text x="55.3471%" y="863.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="55.0971%" y="837" width="0.2427%" height="15" fill="rgb(246,9,43)" fg:x="227" fg:w="1"/><text x="55.3471%" y="847.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="55.5825%" y="853" width="0.2427%" height="15" fill="rgb(206,73,33)" fg:x="229" fg:w="1"/><text x="55.8325%" y="863.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="55.5825%" y="837" width="0.2427%" height="15" fill="rgb(222,79,8)" fg:x="229" fg:w="1"/><text x="55.8325%" y="847.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="55.5825%" y="933" width="0.4854%" height="15" fill="rgb(234,8,54)" fg:x="229" fg:w="2"/><text x="55.8325%" y="943.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.49%)</title><rect x="55.5825%" y="917" width="0.4854%" height="15" fill="rgb(209,134,38)" fg:x="229" fg:w="2"/><text x="55.8325%" y="927.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.49%)</title><rect x="55.5825%" y="901" width="0.4854%" height="15" fill="rgb(230,127,29)" fg:x="229" fg:w="2"/><text x="55.8325%" y="911.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.49%)</title><rect x="55.5825%" y="885" width="0.4854%" height="15" fill="rgb(242,44,41)" fg:x="229" fg:w="2"/><text x="55.8325%" y="895.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.49%)</title><rect x="55.5825%" y="869" width="0.4854%" height="15" fill="rgb(222,56,43)" fg:x="229" fg:w="2"/><text x="55.8325%" y="879.50"></text></g><g><title>__rdl_alloc (1 samples, 0.24%)</title><rect x="55.8252%" y="853" width="0.2427%" height="15" fill="rgb(238,39,47)" fg:x="230" fg:w="1"/><text x="56.0752%" y="863.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.24%)</title><rect x="55.8252%" y="837" width="0.2427%" height="15" fill="rgb(226,79,43)" fg:x="230" fg:w="1"/><text x="56.0752%" y="847.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="56.0680%" y="933" width="0.2427%" height="15" fill="rgb(242,105,53)" fg:x="231" fg:w="1"/><text x="56.3180%" y="943.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="56.0680%" y="917" width="0.2427%" height="15" fill="rgb(251,132,46)" fg:x="231" fg:w="1"/><text x="56.3180%" y="927.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="56.0680%" y="901" width="0.2427%" height="15" fill="rgb(231,77,14)" fg:x="231" fg:w="1"/><text x="56.3180%" y="911.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="56.0680%" y="885" width="0.2427%" height="15" fill="rgb(240,135,9)" fg:x="231" fg:w="1"/><text x="56.3180%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="56.0680%" y="869" width="0.2427%" height="15" fill="rgb(248,109,14)" fg:x="231" fg:w="1"/><text x="56.3180%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (1 samples, 0.24%)</title><rect x="56.0680%" y="853" width="0.2427%" height="15" fill="rgb(227,146,52)" fg:x="231" fg:w="1"/><text x="56.3180%" y="863.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (1 samples, 0.24%)</title><rect x="56.0680%" y="837" width="0.2427%" height="15" fill="rgb(232,54,3)" fg:x="231" fg:w="1"/><text x="56.3180%" y="847.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_or_zero (1 samples, 0.24%)</title><rect x="56.0680%" y="821" width="0.2427%" height="15" fill="rgb(229,201,43)" fg:x="231" fg:w="1"/><text x="56.3180%" y="831.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="56.3107%" y="917" width="0.2427%" height="15" fill="rgb(252,161,33)" fg:x="232" fg:w="1"/><text x="56.5607%" y="927.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="56.3107%" y="901" width="0.2427%" height="15" fill="rgb(226,146,40)" fg:x="232" fg:w="1"/><text x="56.5607%" y="911.50"></text></g><g><title>&lt;ress::Item&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="56.5534%" y="917" width="0.2427%" height="15" fill="rgb(219,47,25)" fg:x="233" fg:w="1"/><text x="56.8034%" y="927.50"></text></g><g><title>&lt;ress::tokens::Token&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="56.5534%" y="901" width="0.2427%" height="15" fill="rgb(250,135,13)" fg:x="233" fg:w="1"/><text x="56.8034%" y="911.50"></text></g><g><title>__memmove_avx_unaligned_erms (6 samples, 1.46%)</title><rect x="56.7961%" y="917" width="1.4563%" height="15" fill="rgb(219,229,18)" fg:x="234" fg:w="6"/><text x="57.0461%" y="927.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="58.2524%" y="901" width="0.2427%" height="15" fill="rgb(217,152,27)" fg:x="240" fg:w="1"/><text x="58.5024%" y="911.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="58.2524%" y="885" width="0.2427%" height="15" fill="rgb(225,71,47)" fg:x="240" fg:w="1"/><text x="58.5024%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.97%)</title><rect x="58.4951%" y="901" width="0.9709%" height="15" fill="rgb(220,139,14)" fg:x="241" fg:w="4"/><text x="58.7451%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_exponentiation_expression (18 samples, 4.37%)</title><rect x="55.3398%" y="997" width="4.3689%" height="15" fill="rgb(247,54,32)" fg:x="228" fg:w="18"/><text x="55.5898%" y="1007.50">ressa..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (18 samples, 4.37%)</title><rect x="55.3398%" y="981" width="4.3689%" height="15" fill="rgb(252,131,39)" fg:x="228" fg:w="18"/><text x="55.5898%" y="991.50">ressa..</text></g><g><title>core::ops::function::Fn::call (18 samples, 4.37%)</title><rect x="55.3398%" y="965" width="4.3689%" height="15" fill="rgb(210,108,39)" fg:x="228" fg:w="18"/><text x="55.5898%" y="975.50">core:..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_unary_expression (18 samples, 4.37%)</title><rect x="55.3398%" y="949" width="4.3689%" height="15" fill="rgb(205,23,29)" fg:x="228" fg:w="18"/><text x="55.5898%" y="959.50">ressa..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_update_expr (14 samples, 3.40%)</title><rect x="56.3107%" y="933" width="3.3981%" height="15" fill="rgb(246,139,46)" fg:x="232" fg:w="14"/><text x="56.5607%" y="943.50">res..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (6 samples, 1.46%)</title><rect x="58.2524%" y="917" width="1.4563%" height="15" fill="rgb(250,81,26)" fg:x="240" fg:w="6"/><text x="58.5024%" y="927.50"></text></g><g><title>ressa::Context::set_is_binding_element (1 samples, 0.24%)</title><rect x="59.4660%" y="901" width="0.2427%" height="15" fill="rgb(214,104,7)" fg:x="245" fg:w="1"/><text x="59.7160%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_fn_stmt (1 samples, 0.24%)</title><rect x="59.7087%" y="997" width="0.2427%" height="15" fill="rgb(233,189,8)" fg:x="246" fg:w="1"/><text x="59.9587%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_func (1 samples, 0.24%)</title><rect x="59.7087%" y="981" width="0.2427%" height="15" fill="rgb(228,141,17)" fg:x="246" fg:w="1"/><text x="59.9587%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_source_el (1 samples, 0.24%)</title><rect x="59.7087%" y="965" width="0.2427%" height="15" fill="rgb(247,157,1)" fg:x="246" fg:w="1"/><text x="59.9587%" y="975.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="59.7087%" y="949" width="0.2427%" height="15" fill="rgb(249,225,5)" fg:x="246" fg:w="1"/><text x="59.9587%" y="959.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="59.7087%" y="933" width="0.2427%" height="15" fill="rgb(242,55,13)" fg:x="246" fg:w="1"/><text x="59.9587%" y="943.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="59.9515%" y="981" width="0.2427%" height="15" fill="rgb(230,49,50)" fg:x="247" fg:w="1"/><text x="60.2015%" y="991.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="59.9515%" y="965" width="0.2427%" height="15" fill="rgb(241,111,38)" fg:x="247" fg:w="1"/><text x="60.2015%" y="975.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="59.9515%" y="949" width="0.2427%" height="15" fill="rgb(252,155,4)" fg:x="247" fg:w="1"/><text x="60.2015%" y="959.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="59.9515%" y="933" width="0.2427%" height="15" fill="rgb(212,69,32)" fg:x="247" fg:w="1"/><text x="60.2015%" y="943.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="59.9515%" y="917" width="0.2427%" height="15" fill="rgb(243,107,47)" fg:x="247" fg:w="1"/><text x="60.2015%" y="927.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="59.9515%" y="901" width="0.2427%" height="15" fill="rgb(247,130,12)" fg:x="247" fg:w="1"/><text x="60.2015%" y="911.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="59.9515%" y="885" width="0.2427%" height="15" fill="rgb(233,74,16)" fg:x="247" fg:w="1"/><text x="60.2015%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="59.9515%" y="869" width="0.2427%" height="15" fill="rgb(208,58,18)" fg:x="247" fg:w="1"/><text x="60.2015%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="59.9515%" y="853" width="0.2427%" height="15" fill="rgb(242,225,1)" fg:x="247" fg:w="1"/><text x="60.2015%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="59.9515%" y="837" width="0.2427%" height="15" fill="rgb(249,39,40)" fg:x="247" fg:w="1"/><text x="60.2015%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="59.9515%" y="821" width="0.2427%" height="15" fill="rgb(207,72,44)" fg:x="247" fg:w="1"/><text x="60.2015%" y="831.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_for_stmt (2 samples, 0.49%)</title><rect x="59.9515%" y="997" width="0.4854%" height="15" fill="rgb(215,193,12)" fg:x="247" fg:w="2"/><text x="60.2015%" y="1007.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::pop (1 samples, 0.24%)</title><rect x="60.1942%" y="981" width="0.2427%" height="15" fill="rgb(248,41,39)" fg:x="248" fg:w="1"/><text x="60.4442%" y="991.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="60.1942%" y="965" width="0.2427%" height="15" fill="rgb(253,85,4)" fg:x="248" fg:w="1"/><text x="60.4442%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="60.1942%" y="949" width="0.2427%" height="15" fill="rgb(243,70,31)" fg:x="248" fg:w="1"/><text x="60.4442%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.24%)</title><rect x="60.4369%" y="965" width="0.2427%" height="15" fill="rgb(253,195,26)" fg:x="249" fg:w="1"/><text x="60.6869%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.24%)</title><rect x="60.4369%" y="949" width="0.2427%" height="15" fill="rgb(243,42,11)" fg:x="249" fg:w="1"/><text x="60.6869%" y="959.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.24%)</title><rect x="60.4369%" y="933" width="0.2427%" height="15" fill="rgb(239,66,17)" fg:x="249" fg:w="1"/><text x="60.6869%" y="943.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="60.4369%" y="917" width="0.2427%" height="15" fill="rgb(217,132,21)" fg:x="249" fg:w="1"/><text x="60.6869%" y="927.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="60.4369%" y="901" width="0.2427%" height="15" fill="rgb(252,202,21)" fg:x="249" fg:w="1"/><text x="60.6869%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="60.4369%" y="885" width="0.2427%" height="15" fill="rgb(233,98,36)" fg:x="249" fg:w="1"/><text x="60.6869%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="60.6796%" y="789" width="0.2427%" height="15" fill="rgb(216,153,54)" fg:x="250" fg:w="1"/><text x="60.9296%" y="799.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.49%)</title><rect x="60.6796%" y="965" width="0.4854%" height="15" fill="rgb(250,99,7)" fg:x="250" fg:w="2"/><text x="60.9296%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="60.6796%" y="949" width="0.4854%" height="15" fill="rgb(207,56,50)" fg:x="250" fg:w="2"/><text x="60.9296%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="60.6796%" y="933" width="0.4854%" height="15" fill="rgb(244,61,34)" fg:x="250" fg:w="2"/><text x="60.9296%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (2 samples, 0.49%)</title><rect x="60.6796%" y="917" width="0.4854%" height="15" fill="rgb(241,50,38)" fg:x="250" fg:w="2"/><text x="60.9296%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.49%)</title><rect x="60.6796%" y="901" width="0.4854%" height="15" fill="rgb(212,166,30)" fg:x="250" fg:w="2"/><text x="60.9296%" y="911.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.49%)</title><rect x="60.6796%" y="885" width="0.4854%" height="15" fill="rgb(249,127,32)" fg:x="250" fg:w="2"/><text x="60.9296%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (2 samples, 0.49%)</title><rect x="60.6796%" y="869" width="0.4854%" height="15" fill="rgb(209,103,0)" fg:x="250" fg:w="2"/><text x="60.9296%" y="879.50"></text></g><g><title>alloc::alloc::Global::grow_impl (2 samples, 0.49%)</title><rect x="60.6796%" y="853" width="0.4854%" height="15" fill="rgb(238,209,51)" fg:x="250" fg:w="2"/><text x="60.9296%" y="863.50"></text></g><g><title>alloc::alloc::realloc (2 samples, 0.49%)</title><rect x="60.6796%" y="837" width="0.4854%" height="15" fill="rgb(237,56,23)" fg:x="250" fg:w="2"/><text x="60.9296%" y="847.50"></text></g><g><title>__GI___libc_realloc (2 samples, 0.49%)</title><rect x="60.6796%" y="821" width="0.4854%" height="15" fill="rgb(215,153,46)" fg:x="250" fg:w="2"/><text x="60.9296%" y="831.50"></text></g><g><title>_int_realloc (2 samples, 0.49%)</title><rect x="60.6796%" y="805" width="0.4854%" height="15" fill="rgb(224,49,31)" fg:x="250" fg:w="2"/><text x="60.9296%" y="815.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="60.9223%" y="789" width="0.2427%" height="15" fill="rgb(250,18,42)" fg:x="251" fg:w="1"/><text x="61.1723%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="60.9223%" y="773" width="0.2427%" height="15" fill="rgb(215,176,39)" fg:x="251" fg:w="1"/><text x="61.1723%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="60.9223%" y="757" width="0.2427%" height="15" fill="rgb(223,77,29)" fg:x="251" fg:w="1"/><text x="61.1723%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="60.9223%" y="741" width="0.2427%" height="15" fill="rgb(234,94,52)" fg:x="251" fg:w="1"/><text x="61.1723%" y="751.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_func (4 samples, 0.97%)</title><rect x="60.4369%" y="997" width="0.9709%" height="15" fill="rgb(220,154,50)" fg:x="249" fg:w="4"/><text x="60.6869%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_source_el (4 samples, 0.97%)</title><rect x="60.4369%" y="981" width="0.9709%" height="15" fill="rgb(212,11,10)" fg:x="249" fg:w="4"/><text x="60.6869%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="61.1650%" y="965" width="0.2427%" height="15" fill="rgb(205,166,19)" fg:x="252" fg:w="1"/><text x="61.4150%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="61.1650%" y="949" width="0.2427%" height="15" fill="rgb(244,198,16)" fg:x="252" fg:w="1"/><text x="61.4150%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="61.1650%" y="933" width="0.2427%" height="15" fill="rgb(219,69,12)" fg:x="252" fg:w="1"/><text x="61.4150%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="61.1650%" y="917" width="0.2427%" height="15" fill="rgb(245,30,7)" fg:x="252" fg:w="1"/><text x="61.4150%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (5 samples, 1.21%)</title><rect x="61.4078%" y="965" width="1.2136%" height="15" fill="rgb(218,221,48)" fg:x="253" fg:w="5"/><text x="61.6578%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (5 samples, 1.21%)</title><rect x="61.4078%" y="949" width="1.2136%" height="15" fill="rgb(216,66,15)" fg:x="253" fg:w="5"/><text x="61.6578%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (5 samples, 1.21%)</title><rect x="61.4078%" y="933" width="1.2136%" height="15" fill="rgb(226,122,50)" fg:x="253" fg:w="5"/><text x="61.6578%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (5 samples, 1.21%)</title><rect x="61.4078%" y="917" width="1.2136%" height="15" fill="rgb(239,156,16)" fg:x="253" fg:w="5"/><text x="61.6578%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (5 samples, 1.21%)</title><rect x="61.4078%" y="901" width="1.2136%" height="15" fill="rgb(224,27,38)" fg:x="253" fg:w="5"/><text x="61.6578%" y="911.50"></text></g><g><title>alloc::raw_vec::finish_grow (5 samples, 1.21%)</title><rect x="61.4078%" y="885" width="1.2136%" height="15" fill="rgb(224,39,27)" fg:x="253" fg:w="5"/><text x="61.6578%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (5 samples, 1.21%)</title><rect x="61.4078%" y="869" width="1.2136%" height="15" fill="rgb(215,92,29)" fg:x="253" fg:w="5"/><text x="61.6578%" y="879.50"></text></g><g><title>alloc::alloc::Global::grow_impl (5 samples, 1.21%)</title><rect x="61.4078%" y="853" width="1.2136%" height="15" fill="rgb(207,159,16)" fg:x="253" fg:w="5"/><text x="61.6578%" y="863.50"></text></g><g><title>alloc::alloc::realloc (5 samples, 1.21%)</title><rect x="61.4078%" y="837" width="1.2136%" height="15" fill="rgb(238,163,47)" fg:x="253" fg:w="5"/><text x="61.6578%" y="847.50"></text></g><g><title>__GI___libc_realloc (5 samples, 1.21%)</title><rect x="61.4078%" y="821" width="1.2136%" height="15" fill="rgb(219,91,49)" fg:x="253" fg:w="5"/><text x="61.6578%" y="831.50"></text></g><g><title>_int_realloc (5 samples, 1.21%)</title><rect x="61.4078%" y="805" width="1.2136%" height="15" fill="rgb(227,167,31)" fg:x="253" fg:w="5"/><text x="61.6578%" y="815.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.97%)</title><rect x="61.6505%" y="789" width="0.9709%" height="15" fill="rgb(234,80,54)" fg:x="254" fg:w="4"/><text x="61.9005%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="773" width="0.2427%" height="15" fill="rgb(212,114,2)" fg:x="257" fg:w="1"/><text x="62.6286%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="757" width="0.2427%" height="15" fill="rgb(234,50,24)" fg:x="257" fg:w="1"/><text x="62.6286%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="741" width="0.2427%" height="15" fill="rgb(221,68,8)" fg:x="257" fg:w="1"/><text x="62.6286%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="725" width="0.2427%" height="15" fill="rgb(254,180,31)" fg:x="257" fg:w="1"/><text x="62.6286%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="709" width="0.2427%" height="15" fill="rgb(247,130,50)" fg:x="257" fg:w="1"/><text x="62.6286%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="693" width="0.2427%" height="15" fill="rgb(211,109,4)" fg:x="257" fg:w="1"/><text x="62.6286%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="62.3786%" y="677" width="0.2427%" height="15" fill="rgb(238,50,21)" fg:x="257" fg:w="1"/><text x="62.6286%" y="687.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_expr (6 samples, 1.46%)</title><rect x="61.4078%" y="997" width="1.4563%" height="15" fill="rgb(225,57,45)" fg:x="253" fg:w="6"/><text x="61.6578%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_source_el (6 samples, 1.46%)</title><rect x="61.4078%" y="981" width="1.4563%" height="15" fill="rgb(209,196,50)" fg:x="253" fg:w="6"/><text x="61.6578%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="62.6214%" y="965" width="0.2427%" height="15" fill="rgb(242,140,13)" fg:x="258" fg:w="1"/><text x="62.8714%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="62.6214%" y="949" width="0.2427%" height="15" fill="rgb(217,111,7)" fg:x="258" fg:w="1"/><text x="62.8714%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_source_el (1 samples, 0.24%)</title><rect x="62.8641%" y="997" width="0.2427%" height="15" fill="rgb(253,193,51)" fg:x="259" fg:w="1"/><text x="63.1141%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="62.8641%" y="981" width="0.2427%" height="15" fill="rgb(252,70,29)" fg:x="259" fg:w="1"/><text x="63.1141%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="62.8641%" y="965" width="0.2427%" height="15" fill="rgb(232,127,12)" fg:x="259" fg:w="1"/><text x="63.1141%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="62.8641%" y="949" width="0.2427%" height="15" fill="rgb(211,180,21)" fg:x="259" fg:w="1"/><text x="63.1141%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="62.8641%" y="933" width="0.2427%" height="15" fill="rgb(229,72,13)" fg:x="259" fg:w="1"/><text x="63.1141%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="62.8641%" y="917" width="0.2427%" height="15" fill="rgb(240,211,49)" fg:x="259" fg:w="1"/><text x="63.1141%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="62.8641%" y="901" width="0.2427%" height="15" fill="rgb(219,149,40)" fg:x="259" fg:w="1"/><text x="63.1141%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (1 samples, 0.24%)</title><rect x="62.8641%" y="885" width="0.2427%" height="15" fill="rgb(210,127,46)" fg:x="259" fg:w="1"/><text x="63.1141%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::forward_slash (1 samples, 0.24%)</title><rect x="62.8641%" y="869" width="0.2427%" height="15" fill="rgb(220,106,7)" fg:x="259" fg:w="1"/><text x="63.1141%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::multi_comment (1 samples, 0.24%)</title><rect x="62.8641%" y="853" width="0.2427%" height="15" fill="rgb(249,31,22)" fg:x="259" fg:w="1"/><text x="63.1141%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::is_new_line_not_cr (1 samples, 0.24%)</title><rect x="62.8641%" y="837" width="0.2427%" height="15" fill="rgb(253,1,49)" fg:x="259" fg:w="1"/><text x="63.1141%" y="847.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="63.1068%" y="965" width="0.2427%" height="15" fill="rgb(227,144,33)" fg:x="260" fg:w="1"/><text x="63.3568%" y="975.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (2 samples, 0.49%)</title><rect x="63.5922%" y="869" width="0.4854%" height="15" fill="rgb(249,163,44)" fg:x="262" fg:w="2"/><text x="63.8422%" y="879.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_or_zero (2 samples, 0.49%)</title><rect x="63.5922%" y="853" width="0.4854%" height="15" fill="rgb(234,15,39)" fg:x="262" fg:w="2"/><text x="63.8422%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (3 samples, 0.73%)</title><rect x="63.5922%" y="901" width="0.7282%" height="15" fill="rgb(207,66,16)" fg:x="262" fg:w="3"/><text x="63.8422%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (3 samples, 0.73%)</title><rect x="63.5922%" y="885" width="0.7282%" height="15" fill="rgb(233,112,24)" fg:x="262" fg:w="3"/><text x="63.8422%" y="895.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (1 samples, 0.24%)</title><rect x="64.0777%" y="869" width="0.2427%" height="15" fill="rgb(230,90,22)" fg:x="264" fg:w="1"/><text x="64.3277%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::consume_semicolon (6 samples, 1.46%)</title><rect x="63.1068%" y="981" width="1.4563%" height="15" fill="rgb(229,61,13)" fg:x="260" fg:w="6"/><text x="63.3568%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (5 samples, 1.21%)</title><rect x="63.3495%" y="965" width="1.2136%" height="15" fill="rgb(225,57,24)" fg:x="261" fg:w="5"/><text x="63.5995%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 1.21%)</title><rect x="63.3495%" y="949" width="1.2136%" height="15" fill="rgb(208,169,48)" fg:x="261" fg:w="5"/><text x="63.5995%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (5 samples, 1.21%)</title><rect x="63.3495%" y="933" width="1.2136%" height="15" fill="rgb(244,218,51)" fg:x="261" fg:w="5"/><text x="63.5995%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="63.5922%" y="917" width="0.9709%" height="15" fill="rgb(214,148,10)" fg:x="262" fg:w="4"/><text x="63.8422%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::skip_whitespace (1 samples, 0.24%)</title><rect x="64.3204%" y="901" width="0.2427%" height="15" fill="rgb(225,174,27)" fg:x="265" fg:w="1"/><text x="64.5704%" y="911.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="64.5631%" y="965" width="0.2427%" height="15" fill="rgb(230,96,26)" fg:x="266" fg:w="1"/><text x="64.8131%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="64.5631%" y="949" width="0.2427%" height="15" fill="rgb(232,10,30)" fg:x="266" fg:w="1"/><text x="64.8131%" y="959.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="64.8058%" y="965" width="0.2427%" height="15" fill="rgb(222,8,50)" fg:x="267" fg:w="1"/><text x="65.0558%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="65.0485%" y="965" width="0.2427%" height="15" fill="rgb(213,81,27)" fg:x="268" fg:w="1"/><text x="65.2985%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="65.0485%" y="949" width="0.2427%" height="15" fill="rgb(245,50,10)" fg:x="268" fg:w="1"/><text x="65.2985%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="65.0485%" y="933" width="0.2427%" height="15" fill="rgb(216,100,18)" fg:x="268" fg:w="1"/><text x="65.2985%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.24%)</title><rect x="65.0485%" y="917" width="0.2427%" height="15" fill="rgb(236,147,54)" fg:x="268" fg:w="1"/><text x="65.2985%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.24%)</title><rect x="65.0485%" y="901" width="0.2427%" height="15" fill="rgb(205,143,26)" fg:x="268" fg:w="1"/><text x="65.2985%" y="911.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.24%)</title><rect x="65.0485%" y="885" width="0.2427%" height="15" fill="rgb(236,26,9)" fg:x="268" fg:w="1"/><text x="65.2985%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.24%)</title><rect x="65.0485%" y="869" width="0.2427%" height="15" fill="rgb(221,165,53)" fg:x="268" fg:w="1"/><text x="65.2985%" y="879.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.24%)</title><rect x="65.0485%" y="853" width="0.2427%" height="15" fill="rgb(214,110,17)" fg:x="268" fg:w="1"/><text x="65.2985%" y="863.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.24%)</title><rect x="65.0485%" y="837" width="0.2427%" height="15" fill="rgb(237,197,12)" fg:x="268" fg:w="1"/><text x="65.2985%" y="847.50"></text></g><g><title>__GI___libc_realloc (1 samples, 0.24%)</title><rect x="65.0485%" y="821" width="0.2427%" height="15" fill="rgb(205,84,17)" fg:x="268" fg:w="1"/><text x="65.2985%" y="831.50"></text></g><g><title>_int_realloc (1 samples, 0.24%)</title><rect x="65.0485%" y="805" width="0.2427%" height="15" fill="rgb(237,18,45)" fg:x="268" fg:w="1"/><text x="65.2985%" y="815.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="65.0485%" y="789" width="0.2427%" height="15" fill="rgb(221,87,14)" fg:x="268" fg:w="1"/><text x="65.2985%" y="799.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_labelled_statement (11 samples, 2.67%)</title><rect x="63.1068%" y="997" width="2.6699%" height="15" fill="rgb(238,186,15)" fg:x="260" fg:w="11"/><text x="63.3568%" y="1007.50">re..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_expression (5 samples, 1.21%)</title><rect x="64.5631%" y="981" width="1.2136%" height="15" fill="rgb(208,115,11)" fg:x="266" fg:w="5"/><text x="64.8131%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (2 samples, 0.49%)</title><rect x="65.2913%" y="965" width="0.4854%" height="15" fill="rgb(254,175,0)" fg:x="269" fg:w="2"/><text x="65.5413%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="65.2913%" y="949" width="0.4854%" height="15" fill="rgb(227,24,42)" fg:x="269" fg:w="2"/><text x="65.5413%" y="959.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="65.7767%" y="885" width="0.2427%" height="15" fill="rgb(223,211,37)" fg:x="271" fg:w="1"/><text x="66.0267%" y="895.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="65.7767%" y="869" width="0.2427%" height="15" fill="rgb(235,49,27)" fg:x="271" fg:w="1"/><text x="66.0267%" y="879.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="65.7767%" y="853" width="0.2427%" height="15" fill="rgb(254,97,51)" fg:x="271" fg:w="1"/><text x="66.0267%" y="863.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="65.7767%" y="837" width="0.2427%" height="15" fill="rgb(249,51,40)" fg:x="271" fg:w="1"/><text x="66.0267%" y="847.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="65.7767%" y="821" width="0.2427%" height="15" fill="rgb(210,128,45)" fg:x="271" fg:w="1"/><text x="66.0267%" y="831.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="65.7767%" y="805" width="0.2427%" height="15" fill="rgb(224,137,50)" fg:x="271" fg:w="1"/><text x="66.0267%" y="815.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="65.7767%" y="789" width="0.2427%" height="15" fill="rgb(242,15,9)" fg:x="271" fg:w="1"/><text x="66.0267%" y="799.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (2 samples, 0.49%)</title><rect x="65.7767%" y="981" width="0.4854%" height="15" fill="rgb(233,187,41)" fg:x="271" fg:w="2"/><text x="66.0267%" y="991.50"></text></g><g><title>core::ops::function::Fn::call (2 samples, 0.49%)</title><rect x="65.7767%" y="965" width="0.4854%" height="15" fill="rgb(227,2,29)" fg:x="271" fg:w="2"/><text x="66.0267%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_new_expr (2 samples, 0.49%)</title><rect x="65.7767%" y="949" width="0.4854%" height="15" fill="rgb(222,70,3)" fg:x="271" fg:w="2"/><text x="66.0267%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (2 samples, 0.49%)</title><rect x="65.7767%" y="933" width="0.4854%" height="15" fill="rgb(213,11,42)" fg:x="271" fg:w="2"/><text x="66.0267%" y="943.50"></text></g><g><title>core::ops::function::Fn::call (2 samples, 0.49%)</title><rect x="65.7767%" y="917" width="0.4854%" height="15" fill="rgb(225,150,9)" fg:x="271" fg:w="2"/><text x="66.0267%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_left_hand_side_expr (2 samples, 0.49%)</title><rect x="65.7767%" y="901" width="0.4854%" height="15" fill="rgb(230,162,45)" fg:x="271" fg:w="2"/><text x="66.0267%" y="911.50"></text></g><g><title>ress::Item&lt;T&gt;::is_template (1 samples, 0.24%)</title><rect x="66.0194%" y="885" width="0.2427%" height="15" fill="rgb(222,14,52)" fg:x="272" fg:w="1"/><text x="66.2694%" y="895.50"></text></g><g><title>ress::tokens::Token&lt;T&gt;::is_template_head (1 samples, 0.24%)</title><rect x="66.0194%" y="869" width="0.2427%" height="15" fill="rgb(254,198,14)" fg:x="272" fg:w="1"/><text x="66.2694%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_left_hand_side_expr_allow_call (3 samples, 0.73%)</title><rect x="65.7767%" y="997" width="0.7282%" height="15" fill="rgb(220,217,30)" fg:x="271" fg:w="3"/><text x="66.0267%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_args (1 samples, 0.24%)</title><rect x="66.2621%" y="981" width="0.2427%" height="15" fill="rgb(215,146,41)" fg:x="273" fg:w="1"/><text x="66.5121%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_comma_sep (1 samples, 0.24%)</title><rect x="66.2621%" y="965" width="0.2427%" height="15" fill="rgb(217,27,36)" fg:x="273" fg:w="1"/><text x="66.5121%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="66.2621%" y="949" width="0.2427%" height="15" fill="rgb(219,218,39)" fg:x="273" fg:w="1"/><text x="66.5121%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="66.2621%" y="933" width="0.2427%" height="15" fill="rgb(219,4,42)" fg:x="273" fg:w="1"/><text x="66.5121%" y="943.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="66.2621%" y="917" width="0.2427%" height="15" fill="rgb(249,119,36)" fg:x="273" fg:w="1"/><text x="66.5121%" y="927.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="66.2621%" y="901" width="0.2427%" height="15" fill="rgb(209,23,33)" fg:x="273" fg:w="1"/><text x="66.5121%" y="911.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="66.2621%" y="885" width="0.2427%" height="15" fill="rgb(211,10,0)" fg:x="273" fg:w="1"/><text x="66.5121%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="66.2621%" y="869" width="0.2427%" height="15" fill="rgb(208,99,37)" fg:x="273" fg:w="1"/><text x="66.5121%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (1 samples, 0.24%)</title><rect x="66.2621%" y="853" width="0.2427%" height="15" fill="rgb(213,132,31)" fg:x="273" fg:w="1"/><text x="66.5121%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::single_comment (1 samples, 0.24%)</title><rect x="66.2621%" y="837" width="0.2427%" height="15" fill="rgb(243,129,40)" fg:x="273" fg:w="1"/><text x="66.5121%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::at_new_line (1 samples, 0.24%)</title><rect x="66.2621%" y="821" width="0.2427%" height="15" fill="rgb(210,66,33)" fg:x="273" fg:w="1"/><text x="66.5121%" y="831.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::at_new_line (1 samples, 0.24%)</title><rect x="66.2621%" y="805" width="0.2427%" height="15" fill="rgb(209,189,4)" fg:x="273" fg:w="1"/><text x="66.5121%" y="815.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="66.5049%" y="981" width="0.4854%" height="15" fill="rgb(214,107,37)" fg:x="274" fg:w="2"/><text x="66.7549%" y="991.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="66.9903%" y="981" width="0.2427%" height="15" fill="rgb(245,88,54)" fg:x="276" fg:w="1"/><text x="67.2403%" y="991.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="66.9903%" y="965" width="0.2427%" height="15" fill="rgb(205,146,20)" fg:x="276" fg:w="1"/><text x="67.2403%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="66.9903%" y="949" width="0.2427%" height="15" fill="rgb(220,161,25)" fg:x="276" fg:w="1"/><text x="67.2403%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="67.2330%" y="981" width="0.2427%" height="15" fill="rgb(215,152,15)" fg:x="277" fg:w="1"/><text x="67.4830%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="67.2330%" y="965" width="0.2427%" height="15" fill="rgb(233,192,44)" fg:x="277" fg:w="1"/><text x="67.4830%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="67.2330%" y="949" width="0.2427%" height="15" fill="rgb(240,170,46)" fg:x="277" fg:w="1"/><text x="67.4830%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="67.2330%" y="933" width="0.2427%" height="15" fill="rgb(207,104,33)" fg:x="277" fg:w="1"/><text x="67.4830%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="67.4757%" y="965" width="0.2427%" height="15" fill="rgb(219,21,39)" fg:x="278" fg:w="1"/><text x="67.7257%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_obj_init (6 samples, 1.46%)</title><rect x="66.5049%" y="997" width="1.4563%" height="15" fill="rgb(214,133,29)" fg:x="274" fg:w="6"/><text x="66.7549%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_obj_prop (2 samples, 0.49%)</title><rect x="67.4757%" y="981" width="0.4854%" height="15" fill="rgb(226,93,6)" fg:x="278" fg:w="2"/><text x="67.7257%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="67.7184%" y="965" width="0.2427%" height="15" fill="rgb(252,222,34)" fg:x="279" fg:w="1"/><text x="67.9684%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="67.7184%" y="949" width="0.2427%" height="15" fill="rgb(252,92,48)" fg:x="279" fg:w="1"/><text x="67.9684%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_pattern (1 samples, 0.24%)</title><rect x="67.9612%" y="997" width="0.2427%" height="15" fill="rgb(245,223,24)" fg:x="280" fg:w="1"/><text x="68.2112%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_ident (1 samples, 0.24%)</title><rect x="67.9612%" y="981" width="0.2427%" height="15" fill="rgb(205,176,3)" fg:x="280" fg:w="1"/><text x="68.2112%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="67.9612%" y="965" width="0.2427%" height="15" fill="rgb(235,151,15)" fg:x="280" fg:w="1"/><text x="68.2112%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="67.9612%" y="949" width="0.2427%" height="15" fill="rgb(237,209,11)" fg:x="280" fg:w="1"/><text x="68.2112%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="67.9612%" y="933" width="0.2427%" height="15" fill="rgb(243,227,24)" fg:x="280" fg:w="1"/><text x="68.2112%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="67.9612%" y="917" width="0.2427%" height="15" fill="rgb(239,193,16)" fg:x="280" fg:w="1"/><text x="68.2112%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="67.9612%" y="901" width="0.2427%" height="15" fill="rgb(231,27,9)" fg:x="280" fg:w="1"/><text x="68.2112%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_pattern_with_default (1 samples, 0.24%)</title><rect x="68.2039%" y="997" width="0.2427%" height="15" fill="rgb(219,169,10)" fg:x="281" fg:w="1"/><text x="68.4539%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_pattern (1 samples, 0.24%)</title><rect x="68.2039%" y="981" width="0.2427%" height="15" fill="rgb(244,229,43)" fg:x="281" fg:w="1"/><text x="68.4539%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_ident (1 samples, 0.24%)</title><rect x="68.2039%" y="965" width="0.2427%" height="15" fill="rgb(254,38,20)" fg:x="281" fg:w="1"/><text x="68.4539%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="68.2039%" y="949" width="0.2427%" height="15" fill="rgb(250,47,30)" fg:x="281" fg:w="1"/><text x="68.4539%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="68.2039%" y="933" width="0.2427%" height="15" fill="rgb(224,124,36)" fg:x="281" fg:w="1"/><text x="68.4539%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="68.2039%" y="917" width="0.2427%" height="15" fill="rgb(246,68,51)" fg:x="281" fg:w="1"/><text x="68.4539%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (1 samples, 0.24%)</title><rect x="68.4466%" y="981" width="0.2427%" height="15" fill="rgb(253,43,49)" fg:x="282" fg:w="1"/><text x="68.6966%" y="991.50"></text></g><g><title>core::ops::function::Fn::call (1 samples, 0.24%)</title><rect x="68.4466%" y="965" width="0.2427%" height="15" fill="rgb(219,54,36)" fg:x="282" fg:w="1"/><text x="68.6966%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_array_init (1 samples, 0.24%)</title><rect x="68.4466%" y="949" width="0.2427%" height="15" fill="rgb(227,133,34)" fg:x="282" fg:w="1"/><text x="68.6966%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="68.4466%" y="933" width="0.2427%" height="15" fill="rgb(247,227,15)" fg:x="282" fg:w="1"/><text x="68.6966%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="68.4466%" y="917" width="0.2427%" height="15" fill="rgb(229,96,14)" fg:x="282" fg:w="1"/><text x="68.6966%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::ampersand (1 samples, 0.24%)</title><rect x="68.9320%" y="885" width="0.2427%" height="15" fill="rgb(220,79,17)" fg:x="284" fg:w="1"/><text x="69.1820%" y="895.50"></text></g><g><title>&lt;log::Level as core::cmp::PartialOrd&lt;log::LevelFilter&gt;&gt;::le (1 samples, 0.24%)</title><rect x="68.9320%" y="869" width="0.2427%" height="15" fill="rgb(205,131,53)" fg:x="284" fg:w="1"/><text x="69.1820%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::gen_punct (1 samples, 0.24%)</title><rect x="69.1748%" y="885" width="0.2427%" height="15" fill="rgb(209,50,29)" fg:x="285" fg:w="1"/><text x="69.4248%" y="895.50"></text></g><g><title>log::max_level (1 samples, 0.24%)</title><rect x="69.1748%" y="869" width="0.2427%" height="15" fill="rgb(245,86,46)" fg:x="285" fg:w="1"/><text x="69.4248%" y="879.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.24%)</title><rect x="69.1748%" y="853" width="0.2427%" height="15" fill="rgb(235,66,46)" fg:x="285" fg:w="1"/><text x="69.4248%" y="863.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.24%)</title><rect x="69.1748%" y="837" width="0.2427%" height="15" fill="rgb(232,148,31)" fg:x="285" fg:w="1"/><text x="69.4248%" y="847.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (4 samples, 0.97%)</title><rect x="68.6893%" y="981" width="0.9709%" height="15" fill="rgb(217,149,8)" fg:x="283" fg:w="4"/><text x="68.9393%" y="991.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.97%)</title><rect x="68.6893%" y="965" width="0.9709%" height="15" fill="rgb(209,183,11)" fg:x="283" fg:w="4"/><text x="68.9393%" y="975.50"></text></g><g><title>ress::Scanner::get_next_token (4 samples, 0.97%)</title><rect x="68.6893%" y="949" width="0.9709%" height="15" fill="rgb(208,55,20)" fg:x="283" fg:w="4"/><text x="68.9393%" y="959.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="68.6893%" y="933" width="0.9709%" height="15" fill="rgb(218,39,14)" fg:x="283" fg:w="4"/><text x="68.9393%" y="943.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (4 samples, 0.97%)</title><rect x="68.6893%" y="917" width="0.9709%" height="15" fill="rgb(216,169,33)" fg:x="283" fg:w="4"/><text x="68.9393%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (4 samples, 0.97%)</title><rect x="68.6893%" y="901" width="0.9709%" height="15" fill="rgb(233,80,24)" fg:x="283" fg:w="4"/><text x="68.9393%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::period (1 samples, 0.24%)</title><rect x="69.4175%" y="885" width="0.2427%" height="15" fill="rgb(213,179,31)" fg:x="286" fg:w="1"/><text x="69.6675%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_matches (1 samples, 0.24%)</title><rect x="69.4175%" y="869" width="0.2427%" height="15" fill="rgb(209,19,5)" fg:x="286" fg:w="1"/><text x="69.6675%" y="879.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::look_ahead_matches (1 samples, 0.24%)</title><rect x="69.4175%" y="853" width="0.2427%" height="15" fill="rgb(219,18,35)" fg:x="286" fg:w="1"/><text x="69.6675%" y="863.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.24%)</title><rect x="69.4175%" y="837" width="0.2427%" height="15" fill="rgb(209,169,16)" fg:x="286" fg:w="1"/><text x="69.6675%" y="847.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (1 samples, 0.24%)</title><rect x="69.4175%" y="821" width="0.2427%" height="15" fill="rgb(245,90,51)" fg:x="286" fg:w="1"/><text x="69.6675%" y="831.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.24%)</title><rect x="69.4175%" y="805" width="0.2427%" height="15" fill="rgb(220,99,45)" fg:x="286" fg:w="1"/><text x="69.6675%" y="815.50"></text></g><g><title>__memcmp_avx2_movbe (1 samples, 0.24%)</title><rect x="69.4175%" y="789" width="0.2427%" height="15" fill="rgb(249,89,25)" fg:x="286" fg:w="1"/><text x="69.6675%" y="799.50"></text></g><g><title>ressa::formal_params::have_duplicates (1 samples, 0.24%)</title><rect x="69.6602%" y="965" width="0.2427%" height="15" fill="rgb(239,193,0)" fg:x="287" fg:w="1"/><text x="69.9102%" y="975.50"></text></g><g><title>ressa::formal_params::find_duplicate (1 samples, 0.24%)</title><rect x="69.6602%" y="949" width="0.2427%" height="15" fill="rgb(231,126,1)" fg:x="287" fg:w="1"/><text x="69.9102%" y="959.50"></text></g><g><title>ressa::formal_params::update_with_pat (1 samples, 0.24%)</title><rect x="69.6602%" y="933" width="0.2427%" height="15" fill="rgb(243,166,3)" fg:x="287" fg:w="1"/><text x="69.9102%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::add_scope (1 samples, 0.24%)</title><rect x="69.9029%" y="965" width="0.2427%" height="15" fill="rgb(223,22,34)" fg:x="288" fg:w="1"/><text x="70.1529%" y="975.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::new_child (1 samples, 0.24%)</title><rect x="69.9029%" y="949" width="0.2427%" height="15" fill="rgb(251,52,51)" fg:x="288" fg:w="1"/><text x="70.1529%" y="959.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::new_child (1 samples, 0.24%)</title><rect x="69.9029%" y="933" width="0.2427%" height="15" fill="rgb(221,165,28)" fg:x="288" fg:w="1"/><text x="70.1529%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="69.9029%" y="917" width="0.2427%" height="15" fill="rgb(218,121,47)" fg:x="288" fg:w="1"/><text x="70.1529%" y="927.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="69.9029%" y="901" width="0.2427%" height="15" fill="rgb(209,120,9)" fg:x="288" fg:w="1"/><text x="70.1529%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="70.1456%" y="933" width="0.2427%" height="15" fill="rgb(236,68,12)" fg:x="289" fg:w="1"/><text x="70.3956%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="70.1456%" y="917" width="0.2427%" height="15" fill="rgb(225,194,26)" fg:x="289" fg:w="1"/><text x="70.3956%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.24%)</title><rect x="70.1456%" y="901" width="0.2427%" height="15" fill="rgb(231,84,39)" fg:x="289" fg:w="1"/><text x="70.3956%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.24%)</title><rect x="70.1456%" y="885" width="0.2427%" height="15" fill="rgb(210,11,45)" fg:x="289" fg:w="1"/><text x="70.3956%" y="895.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.24%)</title><rect x="70.1456%" y="869" width="0.2427%" height="15" fill="rgb(224,54,52)" fg:x="289" fg:w="1"/><text x="70.3956%" y="879.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="70.1456%" y="853" width="0.2427%" height="15" fill="rgb(238,102,14)" fg:x="289" fg:w="1"/><text x="70.3956%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.49%)</title><rect x="70.1456%" y="949" width="0.4854%" height="15" fill="rgb(243,160,52)" fg:x="289" fg:w="2"/><text x="70.3956%" y="959.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="70.3883%" y="933" width="0.2427%" height="15" fill="rgb(216,114,19)" fg:x="290" fg:w="1"/><text x="70.6383%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="70.3883%" y="917" width="0.2427%" height="15" fill="rgb(244,166,37)" fg:x="290" fg:w="1"/><text x="70.6383%" y="927.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::has_at (1 samples, 0.24%)</title><rect x="70.6311%" y="885" width="0.2427%" height="15" fill="rgb(246,29,44)" fg:x="291" fg:w="1"/><text x="70.8811%" y="895.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::contains_key (1 samples, 0.24%)</title><rect x="70.6311%" y="869" width="0.2427%" height="15" fill="rgb(215,56,53)" fg:x="291" fg:w="1"/><text x="70.8811%" y="879.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::contains_key (1 samples, 0.24%)</title><rect x="70.6311%" y="853" width="0.2427%" height="15" fill="rgb(217,60,2)" fg:x="291" fg:w="1"/><text x="70.8811%" y="863.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner (1 samples, 0.24%)</title><rect x="70.6311%" y="837" width="0.2427%" height="15" fill="rgb(207,26,24)" fg:x="291" fg:w="1"/><text x="70.8811%" y="847.50"></text></g><g><title>hashbrown::map::make_hash (1 samples, 0.24%)</title><rect x="70.6311%" y="821" width="0.2427%" height="15" fill="rgb(252,210,15)" fg:x="291" fg:w="1"/><text x="70.8811%" y="831.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="70.6311%" y="805" width="0.2427%" height="15" fill="rgb(253,209,26)" fg:x="291" fg:w="1"/><text x="70.8811%" y="815.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="70.6311%" y="789" width="0.2427%" height="15" fill="rgb(238,170,14)" fg:x="291" fg:w="1"/><text x="70.8811%" y="799.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="70.6311%" y="773" width="0.2427%" height="15" fill="rgb(216,178,15)" fg:x="291" fg:w="1"/><text x="70.8811%" y="783.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::declare_pat (2 samples, 0.49%)</title><rect x="70.6311%" y="933" width="0.4854%" height="15" fill="rgb(250,197,2)" fg:x="291" fg:w="2"/><text x="70.8811%" y="943.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare_pat (2 samples, 0.49%)</title><rect x="70.6311%" y="917" width="0.4854%" height="15" fill="rgb(212,70,42)" fg:x="291" fg:w="2"/><text x="70.8811%" y="927.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare (2 samples, 0.49%)</title><rect x="70.6311%" y="901" width="0.4854%" height="15" fill="rgb(227,213,9)" fg:x="291" fg:w="2"/><text x="70.8811%" y="911.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::add_var (1 samples, 0.24%)</title><rect x="70.8738%" y="885" width="0.2427%" height="15" fill="rgb(245,99,25)" fg:x="292" fg:w="1"/><text x="71.1238%" y="895.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::get_mut (1 samples, 0.24%)</title><rect x="70.8738%" y="869" width="0.2427%" height="15" fill="rgb(250,82,29)" fg:x="292" fg:w="1"/><text x="71.1238%" y="879.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get_mut (1 samples, 0.24%)</title><rect x="70.8738%" y="853" width="0.2427%" height="15" fill="rgb(241,226,54)" fg:x="292" fg:w="1"/><text x="71.1238%" y="863.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_mut (1 samples, 0.24%)</title><rect x="70.8738%" y="837" width="0.2427%" height="15" fill="rgb(221,99,41)" fg:x="292" fg:w="1"/><text x="71.1238%" y="847.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner_mut (1 samples, 0.24%)</title><rect x="70.8738%" y="821" width="0.2427%" height="15" fill="rgb(213,90,21)" fg:x="292" fg:w="1"/><text x="71.1238%" y="831.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (1 samples, 0.24%)</title><rect x="70.8738%" y="805" width="0.2427%" height="15" fill="rgb(205,208,24)" fg:x="292" fg:w="1"/><text x="71.1238%" y="815.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.24%)</title><rect x="70.8738%" y="789" width="0.2427%" height="15" fill="rgb(246,31,12)" fg:x="292" fg:w="1"/><text x="71.1238%" y="799.50"></text></g><g><title>&lt;hashbrown::raw::RawIterHash&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="70.8738%" y="773" width="0.2427%" height="15" fill="rgb(213,154,6)" fg:x="292" fg:w="1"/><text x="71.1238%" y="783.50"></text></g><g><title>&lt;hashbrown::raw::RawIterHashInner&lt;A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="70.8738%" y="757" width="0.2427%" height="15" fill="rgb(222,163,29)" fg:x="292" fg:w="1"/><text x="71.1238%" y="767.50"></text></g><g><title>&lt;hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="70.8738%" y="741" width="0.2427%" height="15" fill="rgb(227,201,8)" fg:x="292" fg:w="1"/><text x="71.1238%" y="751.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_formal_params (6 samples, 1.46%)</title><rect x="70.1456%" y="965" width="1.4563%" height="15" fill="rgb(233,9,32)" fg:x="289" fg:w="6"/><text x="70.3956%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_formal_param (4 samples, 0.97%)</title><rect x="70.6311%" y="949" width="0.9709%" height="15" fill="rgb(217,54,24)" fg:x="291" fg:w="4"/><text x="70.8811%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_pattern_with_default (2 samples, 0.49%)</title><rect x="71.1165%" y="933" width="0.4854%" height="15" fill="rgb(235,192,0)" fg:x="293" fg:w="2"/><text x="71.3665%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="71.1165%" y="917" width="0.4854%" height="15" fill="rgb(235,45,9)" fg:x="293" fg:w="2"/><text x="71.3665%" y="927.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="71.6019%" y="949" width="0.4854%" height="15" fill="rgb(246,42,40)" fg:x="295" fg:w="2"/><text x="71.8519%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_source_el (4 samples, 0.97%)</title><rect x="71.6019%" y="965" width="0.9709%" height="15" fill="rgb(248,111,24)" fg:x="295" fg:w="4"/><text x="71.8519%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.49%)</title><rect x="72.0874%" y="949" width="0.4854%" height="15" fill="rgb(249,65,22)" fg:x="297" fg:w="2"/><text x="72.3374%" y="959.50"></text></g><g><title>core::ptr::write (2 samples, 0.49%)</title><rect x="72.0874%" y="933" width="0.4854%" height="15" fill="rgb(238,111,51)" fg:x="297" fg:w="2"/><text x="72.3374%" y="943.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="72.0874%" y="917" width="0.4854%" height="15" fill="rgb(250,118,22)" fg:x="297" fg:w="2"/><text x="72.3374%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_primary_expression (18 samples, 4.37%)</title><rect x="68.4466%" y="997" width="4.3689%" height="15" fill="rgb(234,84,26)" fg:x="282" fg:w="18"/><text x="68.6966%" y="1007.50">ressa..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_function_expr (13 samples, 3.16%)</title><rect x="69.6602%" y="981" width="3.1553%" height="15" fill="rgb(243,172,12)" fg:x="287" fg:w="13"/><text x="69.9102%" y="991.50">res..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::remove_scope (1 samples, 0.24%)</title><rect x="72.5728%" y="965" width="0.2427%" height="15" fill="rgb(236,150,49)" fg:x="299" fg:w="1"/><text x="72.8228%" y="975.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::remove_child (1 samples, 0.24%)</title><rect x="72.5728%" y="949" width="0.2427%" height="15" fill="rgb(225,197,26)" fg:x="299" fg:w="1"/><text x="72.8228%" y="959.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::remove_var_child (1 samples, 0.24%)</title><rect x="72.5728%" y="933" width="0.2427%" height="15" fill="rgb(214,17,42)" fg:x="299" fg:w="1"/><text x="72.8228%" y="943.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;std::collections::hash::map::HashMap&lt;alloc::borrow::Cow&lt;str&gt;,alloc::vec::Vec&lt;ress::Position&gt;&gt;&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="917" width="0.2427%" height="15" fill="rgb(224,165,40)" fg:x="299" fg:w="1"/><text x="72.8228%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;alloc::borrow::Cow&lt;str&gt;,alloc::vec::Vec&lt;ress::Position&gt;&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="901" width="0.2427%" height="15" fill="rgb(246,100,4)" fg:x="299" fg:w="1"/><text x="72.8228%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;alloc::borrow::Cow&lt;str&gt;,alloc::vec::Vec&lt;ress::Position&gt;,std::collections::hash::map::RandomState&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="885" width="0.2427%" height="15" fill="rgb(222,103,0)" fg:x="299" fg:w="1"/><text x="72.8228%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(alloc::borrow::Cow&lt;str&gt;,alloc::vec::Vec&lt;ress::Position&gt;)&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="869" width="0.2427%" height="15" fill="rgb(227,189,26)" fg:x="299" fg:w="1"/><text x="72.8228%" y="879.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="72.5728%" y="853" width="0.2427%" height="15" fill="rgb(214,202,17)" fg:x="299" fg:w="1"/><text x="72.8228%" y="863.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::drop_elements (1 samples, 0.24%)</title><rect x="72.5728%" y="837" width="0.2427%" height="15" fill="rgb(229,111,3)" fg:x="299" fg:w="1"/><text x="72.8228%" y="847.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1 samples, 0.24%)</title><rect x="72.5728%" y="821" width="0.2427%" height="15" fill="rgb(229,172,15)" fg:x="299" fg:w="1"/><text x="72.8228%" y="831.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1 samples, 0.24%)</title><rect x="72.5728%" y="805" width="0.2427%" height="15" fill="rgb(230,224,35)" fg:x="299" fg:w="1"/><text x="72.8228%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;(alloc::borrow::Cow&lt;str&gt;,alloc::vec::Vec&lt;ress::Position&gt;)&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="789" width="0.2427%" height="15" fill="rgb(251,141,6)" fg:x="299" fg:w="1"/><text x="72.8228%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;ress::Position&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="773" width="0.2427%" height="15" fill="rgb(225,208,6)" fg:x="299" fg:w="1"/><text x="72.8228%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;ress::Position&gt;&gt; (1 samples, 0.24%)</title><rect x="72.5728%" y="757" width="0.2427%" height="15" fill="rgb(246,181,16)" fg:x="299" fg:w="1"/><text x="72.8228%" y="767.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.24%)</title><rect x="72.5728%" y="741" width="0.2427%" height="15" fill="rgb(227,129,36)" fg:x="299" fg:w="1"/><text x="72.8228%" y="751.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.24%)</title><rect x="72.5728%" y="725" width="0.2427%" height="15" fill="rgb(248,117,24)" fg:x="299" fg:w="1"/><text x="72.8228%" y="735.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.24%)</title><rect x="72.5728%" y="709" width="0.2427%" height="15" fill="rgb(214,185,35)" fg:x="299" fg:w="1"/><text x="72.8228%" y="719.50"></text></g><g><title>__GI___libc_free (1 samples, 0.24%)</title><rect x="72.5728%" y="693" width="0.2427%" height="15" fill="rgb(236,150,34)" fg:x="299" fg:w="1"/><text x="72.8228%" y="703.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="73.3010%" y="981" width="0.4854%" height="15" fill="rgb(243,228,27)" fg:x="302" fg:w="2"/><text x="73.5510%" y="991.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="74.0291%" y="965" width="0.2427%" height="15" fill="rgb(245,77,44)" fg:x="305" fg:w="1"/><text x="74.2791%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.97%)</title><rect x="74.7573%" y="789" width="0.9709%" height="15" fill="rgb(235,214,42)" fg:x="308" fg:w="4"/><text x="75.0073%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (6 samples, 1.46%)</title><rect x="74.5146%" y="869" width="1.4563%" height="15" fill="rgb(221,74,3)" fg:x="307" fg:w="6"/><text x="74.7646%" y="879.50"></text></g><g><title>alloc::alloc::Global::grow_impl (6 samples, 1.46%)</title><rect x="74.5146%" y="853" width="1.4563%" height="15" fill="rgb(206,121,29)" fg:x="307" fg:w="6"/><text x="74.7646%" y="863.50"></text></g><g><title>alloc::alloc::realloc (6 samples, 1.46%)</title><rect x="74.5146%" y="837" width="1.4563%" height="15" fill="rgb(249,131,53)" fg:x="307" fg:w="6"/><text x="74.7646%" y="847.50"></text></g><g><title>__GI___libc_realloc (6 samples, 1.46%)</title><rect x="74.5146%" y="821" width="1.4563%" height="15" fill="rgb(236,170,29)" fg:x="307" fg:w="6"/><text x="74.7646%" y="831.50"></text></g><g><title>_int_realloc (6 samples, 1.46%)</title><rect x="74.5146%" y="805" width="1.4563%" height="15" fill="rgb(247,96,15)" fg:x="307" fg:w="6"/><text x="74.7646%" y="815.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="75.7282%" y="789" width="0.2427%" height="15" fill="rgb(211,210,7)" fg:x="312" fg:w="1"/><text x="75.9782%" y="799.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (10 samples, 2.43%)</title><rect x="74.5146%" y="949" width="2.4272%" height="15" fill="rgb(240,88,50)" fg:x="307" fg:w="10"/><text x="74.7646%" y="959.50">al..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (10 samples, 2.43%)</title><rect x="74.5146%" y="933" width="2.4272%" height="15" fill="rgb(209,229,26)" fg:x="307" fg:w="10"/><text x="74.7646%" y="943.50">al..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (10 samples, 2.43%)</title><rect x="74.5146%" y="917" width="2.4272%" height="15" fill="rgb(210,68,23)" fg:x="307" fg:w="10"/><text x="74.7646%" y="927.50">al..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (10 samples, 2.43%)</title><rect x="74.5146%" y="901" width="2.4272%" height="15" fill="rgb(229,180,13)" fg:x="307" fg:w="10"/><text x="74.7646%" y="911.50">al..</text></g><g><title>alloc::raw_vec::finish_grow (10 samples, 2.43%)</title><rect x="74.5146%" y="885" width="2.4272%" height="15" fill="rgb(236,53,44)" fg:x="307" fg:w="10"/><text x="74.7646%" y="895.50">al..</text></g><g><title>__GI___libc_malloc (4 samples, 0.97%)</title><rect x="75.9709%" y="869" width="0.9709%" height="15" fill="rgb(244,214,29)" fg:x="313" fg:w="4"/><text x="76.2209%" y="879.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="76.6990%" y="853" width="0.2427%" height="15" fill="rgb(220,75,29)" fg:x="316" fg:w="1"/><text x="76.9490%" y="863.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.24%)</title><rect x="76.9417%" y="933" width="0.2427%" height="15" fill="rgb(214,183,37)" fg:x="317" fg:w="1"/><text x="77.1917%" y="943.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (15 samples, 3.64%)</title><rect x="74.2718%" y="965" width="3.6408%" height="15" fill="rgb(239,117,29)" fg:x="306" fg:w="15"/><text x="74.5218%" y="975.50">allo..</text></g><g><title>core::ptr::write (4 samples, 0.97%)</title><rect x="76.9417%" y="949" width="0.9709%" height="15" fill="rgb(237,171,35)" fg:x="317" fg:w="4"/><text x="77.1917%" y="959.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.73%)</title><rect x="77.1845%" y="933" width="0.7282%" height="15" fill="rgb(229,178,53)" fg:x="318" fg:w="3"/><text x="77.4345%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (1 samples, 0.24%)</title><rect x="77.9126%" y="965" width="0.2427%" height="15" fill="rgb(210,102,19)" fg:x="321" fg:w="1"/><text x="78.1626%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="77.9126%" y="949" width="0.2427%" height="15" fill="rgb(235,127,22)" fg:x="321" fg:w="1"/><text x="78.1626%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="77.9126%" y="933" width="0.2427%" height="15" fill="rgb(244,31,31)" fg:x="321" fg:w="1"/><text x="78.1626%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="77.9126%" y="917" width="0.2427%" height="15" fill="rgb(231,43,21)" fg:x="321" fg:w="1"/><text x="78.1626%" y="927.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="77.9126%" y="901" width="0.2427%" height="15" fill="rgb(217,131,35)" fg:x="321" fg:w="1"/><text x="78.1626%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.24%)</title><rect x="78.1553%" y="917" width="0.2427%" height="15" fill="rgb(221,149,4)" fg:x="322" fg:w="1"/><text x="78.4053%" y="927.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.24%)</title><rect x="78.1553%" y="901" width="0.2427%" height="15" fill="rgb(232,170,28)" fg:x="322" fg:w="1"/><text x="78.4053%" y="911.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.24%)</title><rect x="78.1553%" y="885" width="0.2427%" height="15" fill="rgb(238,56,10)" fg:x="322" fg:w="1"/><text x="78.4053%" y="895.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::iter (1 samples, 0.24%)</title><rect x="78.1553%" y="869" width="0.2427%" height="15" fill="rgb(235,196,14)" fg:x="322" fg:w="1"/><text x="78.4053%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_block (20 samples, 4.85%)</title><rect x="73.7864%" y="981" width="4.8544%" height="15" fill="rgb(216,45,48)" fg:x="304" fg:w="20"/><text x="74.0364%" y="991.50">ressa:..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::remove_scope (2 samples, 0.49%)</title><rect x="78.1553%" y="965" width="0.4854%" height="15" fill="rgb(238,213,17)" fg:x="322" fg:w="2"/><text x="78.4053%" y="975.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::remove_child (2 samples, 0.49%)</title><rect x="78.1553%" y="949" width="0.4854%" height="15" fill="rgb(212,13,2)" fg:x="322" fg:w="2"/><text x="78.4053%" y="959.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::remove_var_child (2 samples, 0.49%)</title><rect x="78.1553%" y="933" width="0.4854%" height="15" fill="rgb(240,114,20)" fg:x="322" fg:w="2"/><text x="78.4053%" y="943.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::insert (1 samples, 0.24%)</title><rect x="78.3981%" y="917" width="0.2427%" height="15" fill="rgb(228,41,40)" fg:x="323" fg:w="1"/><text x="78.6481%" y="927.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.24%)</title><rect x="78.3981%" y="901" width="0.2427%" height="15" fill="rgb(244,132,35)" fg:x="323" fg:w="1"/><text x="78.6481%" y="911.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.24%)</title><rect x="78.3981%" y="885" width="0.2427%" height="15" fill="rgb(253,189,4)" fg:x="323" fg:w="1"/><text x="78.6481%" y="895.50"></text></g><g><title>hashbrown::map::make_insert_hash (1 samples, 0.24%)</title><rect x="78.3981%" y="869" width="0.2427%" height="15" fill="rgb(224,37,19)" fg:x="323" fg:w="1"/><text x="78.6481%" y="879.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="78.3981%" y="853" width="0.2427%" height="15" fill="rgb(235,223,18)" fg:x="323" fg:w="1"/><text x="78.6481%" y="863.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="78.3981%" y="837" width="0.2427%" height="15" fill="rgb(235,163,25)" fg:x="323" fg:w="1"/><text x="78.6481%" y="847.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (1 samples, 0.24%)</title><rect x="78.3981%" y="821" width="0.2427%" height="15" fill="rgb(217,145,28)" fg:x="323" fg:w="1"/><text x="78.6481%" y="831.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (2 samples, 0.49%)</title><rect x="78.6408%" y="965" width="0.4854%" height="15" fill="rgb(223,223,32)" fg:x="324" fg:w="2"/><text x="78.8908%" y="975.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="78.6408%" y="949" width="0.4854%" height="15" fill="rgb(227,189,39)" fg:x="324" fg:w="2"/><text x="78.8908%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_keyword (3 samples, 0.73%)</title><rect x="79.1262%" y="965" width="0.7282%" height="15" fill="rgb(248,10,22)" fg:x="326" fg:w="3"/><text x="79.3762%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="79.1262%" y="949" width="0.7282%" height="15" fill="rgb(248,46,39)" fg:x="326" fg:w="3"/><text x="79.3762%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.73%)</title><rect x="79.1262%" y="933" width="0.7282%" height="15" fill="rgb(248,113,48)" fg:x="326" fg:w="3"/><text x="79.3762%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (3 samples, 0.73%)</title><rect x="79.1262%" y="917" width="0.7282%" height="15" fill="rgb(245,16,25)" fg:x="326" fg:w="3"/><text x="79.3762%" y="927.50"></text></g><g><title>ress::Scanner::keep_books (2 samples, 0.49%)</title><rect x="79.3689%" y="901" width="0.4854%" height="15" fill="rgb(249,152,16)" fg:x="327" fg:w="2"/><text x="79.6189%" y="911.50"></text></g><g><title>ress::Scanner::handle_open_paren_books (2 samples, 0.49%)</title><rect x="79.3689%" y="885" width="0.4854%" height="15" fill="rgb(250,16,1)" fg:x="327" fg:w="2"/><text x="79.6189%" y="895.50"></text></g><g><title>ress::Scanner::keep_books (1 samples, 0.24%)</title><rect x="79.8544%" y="901" width="0.2427%" height="15" fill="rgb(249,138,3)" fg:x="329" fg:w="1"/><text x="80.1044%" y="911.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::c_keywords (1 samples, 0.24%)</title><rect x="80.0971%" y="837" width="0.2427%" height="15" fill="rgb(227,71,41)" fg:x="330" fg:w="1"/><text x="80.3471%" y="847.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::eat_ch_or_escaped (1 samples, 0.24%)</title><rect x="80.0971%" y="821" width="0.2427%" height="15" fill="rgb(209,184,23)" fg:x="330" fg:w="1"/><text x="80.3471%" y="831.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::p_keywords (1 samples, 0.24%)</title><rect x="80.3398%" y="837" width="0.2427%" height="15" fill="rgb(223,215,31)" fg:x="331" fg:w="1"/><text x="80.5898%" y="847.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::eat_ch_or_escaped (1 samples, 0.24%)</title><rect x="80.3398%" y="821" width="0.2427%" height="15" fill="rgb(210,146,28)" fg:x="331" fg:w="1"/><text x="80.5898%" y="831.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_matches (1 samples, 0.24%)</title><rect x="80.3398%" y="805" width="0.2427%" height="15" fill="rgb(209,183,41)" fg:x="331" fg:w="1"/><text x="80.5898%" y="815.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::look_ahead_matches (1 samples, 0.24%)</title><rect x="80.3398%" y="789" width="0.2427%" height="15" fill="rgb(209,224,45)" fg:x="331" fg:w="1"/><text x="80.5898%" y="799.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.24%)</title><rect x="80.3398%" y="773" width="0.2427%" height="15" fill="rgb(224,209,51)" fg:x="331" fg:w="1"/><text x="80.5898%" y="783.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (1 samples, 0.24%)</title><rect x="80.3398%" y="757" width="0.2427%" height="15" fill="rgb(223,17,39)" fg:x="331" fg:w="1"/><text x="80.5898%" y="767.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.24%)</title><rect x="80.3398%" y="741" width="0.2427%" height="15" fill="rgb(234,204,37)" fg:x="331" fg:w="1"/><text x="80.5898%" y="751.50"></text></g><g><title>__memcmp_avx2_movbe (1 samples, 0.24%)</title><rect x="80.3398%" y="725" width="0.2427%" height="15" fill="rgb(236,120,5)" fg:x="331" fg:w="1"/><text x="80.5898%" y="735.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (3 samples, 0.73%)</title><rect x="80.0971%" y="869" width="0.7282%" height="15" fill="rgb(248,97,27)" fg:x="330" fg:w="3"/><text x="80.3471%" y="879.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (3 samples, 0.73%)</title><rect x="80.0971%" y="853" width="0.7282%" height="15" fill="rgb(240,66,17)" fg:x="330" fg:w="3"/><text x="80.3471%" y="863.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::s_keywords (1 samples, 0.24%)</title><rect x="80.5825%" y="837" width="0.2427%" height="15" fill="rgb(210,79,3)" fg:x="332" fg:w="1"/><text x="80.8325%" y="847.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_if_stmt (10 samples, 2.43%)</title><rect x="78.6408%" y="981" width="2.4272%" height="15" fill="rgb(214,176,27)" fg:x="324" fg:w="10"/><text x="78.8908%" y="991.50">re..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (5 samples, 1.21%)</title><rect x="79.8544%" y="965" width="1.2136%" height="15" fill="rgb(235,185,3)" fg:x="329" fg:w="5"/><text x="80.1044%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (5 samples, 1.21%)</title><rect x="79.8544%" y="949" width="1.2136%" height="15" fill="rgb(227,24,12)" fg:x="329" fg:w="5"/><text x="80.1044%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 1.21%)</title><rect x="79.8544%" y="933" width="1.2136%" height="15" fill="rgb(252,169,48)" fg:x="329" fg:w="5"/><text x="80.1044%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (5 samples, 1.21%)</title><rect x="79.8544%" y="917" width="1.2136%" height="15" fill="rgb(212,65,1)" fg:x="329" fg:w="5"/><text x="80.1044%" y="927.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="80.0971%" y="901" width="0.9709%" height="15" fill="rgb(242,39,24)" fg:x="330" fg:w="4"/><text x="80.3471%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (4 samples, 0.97%)</title><rect x="80.0971%" y="885" width="0.9709%" height="15" fill="rgb(249,32,23)" fg:x="330" fg:w="4"/><text x="80.3471%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::string (1 samples, 0.24%)</title><rect x="80.8252%" y="869" width="0.2427%" height="15" fill="rgb(251,195,23)" fg:x="333" fg:w="1"/><text x="81.0752%" y="879.50"></text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (1 samples, 0.24%)</title><rect x="80.8252%" y="853" width="0.2427%" height="15" fill="rgb(236,174,8)" fg:x="333" fg:w="1"/><text x="81.0752%" y="863.50"></text></g><g><title>__rust_probestack (1 samples, 0.24%)</title><rect x="81.0680%" y="965" width="0.2427%" height="15" fill="rgb(220,197,8)" fg:x="334" fg:w="1"/><text x="81.3180%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_labelled_statement (2 samples, 0.49%)</title><rect x="81.0680%" y="981" width="0.4854%" height="15" fill="rgb(240,108,37)" fg:x="334" fg:w="2"/><text x="81.3180%" y="991.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.24%)</title><rect x="81.3107%" y="965" width="0.2427%" height="15" fill="rgb(232,176,24)" fg:x="335" fg:w="1"/><text x="81.5607%" y="975.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.24%)</title><rect x="81.3107%" y="949" width="0.2427%" height="15" fill="rgb(243,35,29)" fg:x="335" fg:w="1"/><text x="81.5607%" y="959.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="81.3107%" y="933" width="0.2427%" height="15" fill="rgb(210,37,18)" fg:x="335" fg:w="1"/><text x="81.5607%" y="943.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="81.3107%" y="917" width="0.2427%" height="15" fill="rgb(224,184,40)" fg:x="335" fg:w="1"/><text x="81.5607%" y="927.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="81.3107%" y="901" width="0.2427%" height="15" fill="rgb(236,39,29)" fg:x="335" fg:w="1"/><text x="81.5607%" y="911.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="81.3107%" y="885" width="0.2427%" height="15" fill="rgb(232,48,39)" fg:x="335" fg:w="1"/><text x="81.5607%" y="895.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="81.3107%" y="869" width="0.2427%" height="15" fill="rgb(236,34,42)" fg:x="335" fg:w="1"/><text x="81.5607%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_return_stmt (1 samples, 0.24%)</title><rect x="81.5534%" y="981" width="0.2427%" height="15" fill="rgb(243,106,37)" fg:x="336" fg:w="1"/><text x="81.8034%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_keyword (1 samples, 0.24%)</title><rect x="81.5534%" y="965" width="0.2427%" height="15" fill="rgb(218,96,6)" fg:x="336" fg:w="1"/><text x="81.8034%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="81.5534%" y="949" width="0.2427%" height="15" fill="rgb(235,130,12)" fg:x="336" fg:w="1"/><text x="81.8034%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="81.5534%" y="933" width="0.2427%" height="15" fill="rgb(231,95,0)" fg:x="336" fg:w="1"/><text x="81.8034%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="81.5534%" y="917" width="0.2427%" height="15" fill="rgb(228,12,23)" fg:x="336" fg:w="1"/><text x="81.8034%" y="927.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="81.5534%" y="901" width="0.2427%" height="15" fill="rgb(216,12,1)" fg:x="336" fg:w="1"/><text x="81.8034%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="81.5534%" y="885" width="0.2427%" height="15" fill="rgb(219,59,3)" fg:x="336" fg:w="1"/><text x="81.8034%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (1 samples, 0.24%)</title><rect x="81.5534%" y="869" width="0.2427%" height="15" fill="rgb(215,208,46)" fg:x="336" fg:w="1"/><text x="81.8034%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_statement (38 samples, 9.22%)</title><rect x="72.8155%" y="997" width="9.2233%" height="15" fill="rgb(254,224,29)" fg:x="300" fg:w="38"/><text x="73.0655%" y="1007.50">ressa::spanne..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_switch_stmt (1 samples, 0.24%)</title><rect x="81.7961%" y="981" width="0.2427%" height="15" fill="rgb(232,14,29)" fg:x="337" fg:w="1"/><text x="82.0461%" y="991.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="81.7961%" y="965" width="0.2427%" height="15" fill="rgb(208,45,52)" fg:x="337" fg:w="1"/><text x="82.0461%" y="975.50"></text></g><g><title>&lt;ress::tokens::Token&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.24%)</title><rect x="82.5243%" y="981" width="0.2427%" height="15" fill="rgb(234,191,28)" fg:x="340" fg:w="1"/><text x="82.7743%" y="991.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="82.7670%" y="981" width="0.4854%" height="15" fill="rgb(244,67,43)" fg:x="341" fg:w="2"/><text x="83.0170%" y="991.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (1 samples, 0.24%)</title><rect x="83.4951%" y="885" width="0.2427%" height="15" fill="rgb(236,189,24)" fg:x="344" fg:w="1"/><text x="83.7451%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::consume_semicolon (4 samples, 0.97%)</title><rect x="83.2524%" y="981" width="0.9709%" height="15" fill="rgb(239,214,33)" fg:x="343" fg:w="4"/><text x="83.5024%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (4 samples, 0.97%)</title><rect x="83.2524%" y="965" width="0.9709%" height="15" fill="rgb(226,176,41)" fg:x="343" fg:w="4"/><text x="83.5024%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.97%)</title><rect x="83.2524%" y="949" width="0.9709%" height="15" fill="rgb(248,47,8)" fg:x="343" fg:w="4"/><text x="83.5024%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (4 samples, 0.97%)</title><rect x="83.2524%" y="933" width="0.9709%" height="15" fill="rgb(218,81,44)" fg:x="343" fg:w="4"/><text x="83.5024%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (4 samples, 0.97%)</title><rect x="83.2524%" y="917" width="0.9709%" height="15" fill="rgb(213,98,6)" fg:x="343" fg:w="4"/><text x="83.5024%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (4 samples, 0.97%)</title><rect x="83.2524%" y="901" width="0.9709%" height="15" fill="rgb(222,85,22)" fg:x="343" fg:w="4"/><text x="83.5024%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (2 samples, 0.49%)</title><rect x="83.7379%" y="885" width="0.4854%" height="15" fill="rgb(239,46,39)" fg:x="345" fg:w="2"/><text x="83.9879%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::forward_slash (2 samples, 0.49%)</title><rect x="83.7379%" y="869" width="0.4854%" height="15" fill="rgb(237,12,29)" fg:x="345" fg:w="2"/><text x="83.9879%" y="879.50"></text></g><g><title>ress::tokenizer::Tokenizer::multi_comment (2 samples, 0.49%)</title><rect x="83.7379%" y="853" width="0.4854%" height="15" fill="rgb(214,77,8)" fg:x="345" fg:w="2"/><text x="83.9879%" y="863.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (2 samples, 0.49%)</title><rect x="83.7379%" y="837" width="0.4854%" height="15" fill="rgb(217,168,37)" fg:x="345" fg:w="2"/><text x="83.9879%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::is_id_continue (1 samples, 0.24%)</title><rect x="84.7087%" y="869" width="0.2427%" height="15" fill="rgb(221,217,23)" fg:x="349" fg:w="1"/><text x="84.9587%" y="879.50"></text></g><g><title>ress::tokenizer::unicode::is_id_continue (1 samples, 0.24%)</title><rect x="84.7087%" y="853" width="0.2427%" height="15" fill="rgb(243,229,36)" fg:x="349" fg:w="1"/><text x="84.9587%" y="863.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_keyword (4 samples, 0.97%)</title><rect x="84.2233%" y="981" width="0.9709%" height="15" fill="rgb(251,163,40)" fg:x="347" fg:w="4"/><text x="84.4733%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (4 samples, 0.97%)</title><rect x="84.2233%" y="965" width="0.9709%" height="15" fill="rgb(237,222,12)" fg:x="347" fg:w="4"/><text x="84.4733%" y="975.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.49%)</title><rect x="84.7087%" y="949" width="0.4854%" height="15" fill="rgb(248,132,6)" fg:x="349" fg:w="2"/><text x="84.9587%" y="959.50"></text></g><g><title>ress::Scanner::get_next_token (2 samples, 0.49%)</title><rect x="84.7087%" y="933" width="0.4854%" height="15" fill="rgb(227,167,50)" fg:x="349" fg:w="2"/><text x="84.9587%" y="943.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (2 samples, 0.49%)</title><rect x="84.7087%" y="917" width="0.4854%" height="15" fill="rgb(242,84,37)" fg:x="349" fg:w="2"/><text x="84.9587%" y="927.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (2 samples, 0.49%)</title><rect x="84.7087%" y="901" width="0.4854%" height="15" fill="rgb(212,4,50)" fg:x="349" fg:w="2"/><text x="84.9587%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (2 samples, 0.49%)</title><rect x="84.7087%" y="885" width="0.4854%" height="15" fill="rgb(230,228,32)" fg:x="349" fg:w="2"/><text x="84.9587%" y="895.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (1 samples, 0.24%)</title><rect x="84.9515%" y="869" width="0.2427%" height="15" fill="rgb(248,217,23)" fg:x="350" fg:w="1"/><text x="85.2015%" y="879.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::f_keywords (1 samples, 0.24%)</title><rect x="84.9515%" y="853" width="0.2427%" height="15" fill="rgb(238,197,32)" fg:x="350" fg:w="1"/><text x="85.2015%" y="863.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::eat_ch_or_escaped (1 samples, 0.24%)</title><rect x="84.9515%" y="837" width="0.2427%" height="15" fill="rgb(236,106,1)" fg:x="350" fg:w="1"/><text x="85.2015%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_byte_matches (1 samples, 0.24%)</title><rect x="84.9515%" y="821" width="0.2427%" height="15" fill="rgb(219,228,13)" fg:x="350" fg:w="1"/><text x="85.2015%" y="831.50"></text></g><g><title>log::max_level (1 samples, 0.24%)</title><rect x="84.9515%" y="805" width="0.2427%" height="15" fill="rgb(238,30,35)" fg:x="350" fg:w="1"/><text x="85.2015%" y="815.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.24%)</title><rect x="84.9515%" y="789" width="0.2427%" height="15" fill="rgb(236,70,23)" fg:x="350" fg:w="1"/><text x="85.2015%" y="799.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.24%)</title><rect x="84.9515%" y="773" width="0.2427%" height="15" fill="rgb(249,104,48)" fg:x="350" fg:w="1"/><text x="85.2015%" y="783.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="85.1942%" y="917" width="0.2427%" height="15" fill="rgb(254,117,50)" fg:x="351" fg:w="1"/><text x="85.4442%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="85.1942%" y="901" width="0.2427%" height="15" fill="rgb(223,152,4)" fg:x="351" fg:w="1"/><text x="85.4442%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="85.1942%" y="885" width="0.2427%" height="15" fill="rgb(245,6,2)" fg:x="351" fg:w="1"/><text x="85.4442%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.24%)</title><rect x="85.1942%" y="869" width="0.2427%" height="15" fill="rgb(249,150,24)" fg:x="351" fg:w="1"/><text x="85.4442%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.24%)</title><rect x="85.1942%" y="853" width="0.2427%" height="15" fill="rgb(228,185,42)" fg:x="351" fg:w="1"/><text x="85.4442%" y="863.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.24%)</title><rect x="85.1942%" y="837" width="0.2427%" height="15" fill="rgb(226,39,33)" fg:x="351" fg:w="1"/><text x="85.4442%" y="847.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="85.1942%" y="821" width="0.2427%" height="15" fill="rgb(221,166,19)" fg:x="351" fg:w="1"/><text x="85.4442%" y="831.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="85.1942%" y="805" width="0.2427%" height="15" fill="rgb(209,109,2)" fg:x="351" fg:w="1"/><text x="85.4442%" y="815.50"></text></g><g><title>ress::Scanner::keep_books (1 samples, 0.24%)</title><rect x="85.4369%" y="853" width="0.2427%" height="15" fill="rgb(252,216,26)" fg:x="352" fg:w="1"/><text x="85.6869%" y="863.50"></text></g><g><title>ress::Scanner::handle_open_brace_books (1 samples, 0.24%)</title><rect x="85.4369%" y="837" width="0.2427%" height="15" fill="rgb(227,173,36)" fg:x="352" fg:w="1"/><text x="85.6869%" y="847.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (2 samples, 0.49%)</title><rect x="85.4369%" y="917" width="0.4854%" height="15" fill="rgb(209,90,7)" fg:x="352" fg:w="2"/><text x="85.6869%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (2 samples, 0.49%)</title><rect x="85.4369%" y="901" width="0.4854%" height="15" fill="rgb(250,194,11)" fg:x="352" fg:w="2"/><text x="85.6869%" y="911.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.49%)</title><rect x="85.4369%" y="885" width="0.4854%" height="15" fill="rgb(220,72,50)" fg:x="352" fg:w="2"/><text x="85.6869%" y="895.50"></text></g><g><title>ress::Scanner::get_next_token (2 samples, 0.49%)</title><rect x="85.4369%" y="869" width="0.4854%" height="15" fill="rgb(222,106,48)" fg:x="352" fg:w="2"/><text x="85.6869%" y="879.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="85.6796%" y="853" width="0.2427%" height="15" fill="rgb(216,220,45)" fg:x="353" fg:w="1"/><text x="85.9296%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="85.6796%" y="837" width="0.2427%" height="15" fill="rgb(234,112,18)" fg:x="353" fg:w="1"/><text x="85.9296%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (1 samples, 0.24%)</title><rect x="85.6796%" y="821" width="0.2427%" height="15" fill="rgb(206,179,9)" fg:x="353" fg:w="1"/><text x="85.9296%" y="831.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (1 samples, 0.24%)</title><rect x="85.6796%" y="805" width="0.2427%" height="15" fill="rgb(215,115,40)" fg:x="353" fg:w="1"/><text x="85.9296%" y="815.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::suffix_for_token (1 samples, 0.24%)</title><rect x="85.6796%" y="789" width="0.2427%" height="15" fill="rgb(222,69,34)" fg:x="353" fg:w="1"/><text x="85.9296%" y="799.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::eat_chs_or_escaped (1 samples, 0.24%)</title><rect x="85.6796%" y="773" width="0.2427%" height="15" fill="rgb(209,161,10)" fg:x="353" fg:w="1"/><text x="85.9296%" y="783.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::eat_ch_or_escaped (1 samples, 0.24%)</title><rect x="85.6796%" y="757" width="0.2427%" height="15" fill="rgb(217,6,38)" fg:x="353" fg:w="1"/><text x="85.9296%" y="767.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_matches (1 samples, 0.24%)</title><rect x="85.6796%" y="741" width="0.2427%" height="15" fill="rgb(229,229,48)" fg:x="353" fg:w="1"/><text x="85.9296%" y="751.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::look_ahead_matches (1 samples, 0.24%)</title><rect x="85.6796%" y="725" width="0.2427%" height="15" fill="rgb(225,21,28)" fg:x="353" fg:w="1"/><text x="85.9296%" y="735.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.24%)</title><rect x="85.6796%" y="709" width="0.2427%" height="15" fill="rgb(206,33,13)" fg:x="353" fg:w="1"/><text x="85.9296%" y="719.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (1 samples, 0.24%)</title><rect x="85.6796%" y="693" width="0.2427%" height="15" fill="rgb(242,178,17)" fg:x="353" fg:w="1"/><text x="85.9296%" y="703.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.24%)</title><rect x="85.6796%" y="677" width="0.2427%" height="15" fill="rgb(220,162,5)" fg:x="353" fg:w="1"/><text x="85.9296%" y="687.50"></text></g><g><title>__memcmp_avx2_movbe (1 samples, 0.24%)</title><rect x="85.6796%" y="661" width="0.2427%" height="15" fill="rgb(210,33,43)" fg:x="353" fg:w="1"/><text x="85.9296%" y="671.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_fn_stmt (4 samples, 0.97%)</title><rect x="85.1942%" y="981" width="0.9709%" height="15" fill="rgb(216,116,54)" fg:x="351" fg:w="4"/><text x="85.4442%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_func (4 samples, 0.97%)</title><rect x="85.1942%" y="965" width="0.9709%" height="15" fill="rgb(249,92,24)" fg:x="351" fg:w="4"/><text x="85.4442%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_func_params (4 samples, 0.97%)</title><rect x="85.1942%" y="949" width="0.9709%" height="15" fill="rgb(231,189,14)" fg:x="351" fg:w="4"/><text x="85.4442%" y="959.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_formal_params (4 samples, 0.97%)</title><rect x="85.1942%" y="933" width="0.9709%" height="15" fill="rgb(230,8,41)" fg:x="351" fg:w="4"/><text x="85.4442%" y="943.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_formal_param (1 samples, 0.24%)</title><rect x="85.9223%" y="917" width="0.2427%" height="15" fill="rgb(249,7,27)" fg:x="354" fg:w="1"/><text x="86.1723%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::declare_pat (1 samples, 0.24%)</title><rect x="85.9223%" y="901" width="0.2427%" height="15" fill="rgb(232,86,5)" fg:x="354" fg:w="1"/><text x="86.1723%" y="911.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare_pat (1 samples, 0.24%)</title><rect x="85.9223%" y="885" width="0.2427%" height="15" fill="rgb(224,175,18)" fg:x="354" fg:w="1"/><text x="86.1723%" y="895.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare (1 samples, 0.24%)</title><rect x="85.9223%" y="869" width="0.2427%" height="15" fill="rgb(220,129,12)" fg:x="354" fg:w="1"/><text x="86.1723%" y="879.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::add_var (1 samples, 0.24%)</title><rect x="85.9223%" y="853" width="0.2427%" height="15" fill="rgb(210,19,36)" fg:x="354" fg:w="1"/><text x="86.1723%" y="863.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::get_mut (1 samples, 0.24%)</title><rect x="85.9223%" y="837" width="0.2427%" height="15" fill="rgb(219,96,14)" fg:x="354" fg:w="1"/><text x="86.1723%" y="847.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get_mut (1 samples, 0.24%)</title><rect x="85.9223%" y="821" width="0.2427%" height="15" fill="rgb(249,106,1)" fg:x="354" fg:w="1"/><text x="86.1723%" y="831.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_mut (1 samples, 0.24%)</title><rect x="85.9223%" y="805" width="0.2427%" height="15" fill="rgb(249,155,20)" fg:x="354" fg:w="1"/><text x="86.1723%" y="815.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner_mut (1 samples, 0.24%)</title><rect x="85.9223%" y="789" width="0.2427%" height="15" fill="rgb(244,168,9)" fg:x="354" fg:w="1"/><text x="86.1723%" y="799.50"></text></g><g><title>hashbrown::map::make_hash (1 samples, 0.24%)</title><rect x="85.9223%" y="773" width="0.2427%" height="15" fill="rgb(216,23,50)" fg:x="354" fg:w="1"/><text x="86.1723%" y="783.50"></text></g><g><title>&lt;alloc::borrow::Cow&lt;B&gt; as core::hash::Hash&gt;::hash (1 samples, 0.24%)</title><rect x="85.9223%" y="757" width="0.2427%" height="15" fill="rgb(224,219,20)" fg:x="354" fg:w="1"/><text x="86.1723%" y="767.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for str&gt;::hash (1 samples, 0.24%)</title><rect x="85.9223%" y="741" width="0.2427%" height="15" fill="rgb(222,156,15)" fg:x="354" fg:w="1"/><text x="86.1723%" y="751.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (1 samples, 0.24%)</title><rect x="85.9223%" y="725" width="0.2427%" height="15" fill="rgb(231,97,17)" fg:x="354" fg:w="1"/><text x="86.1723%" y="735.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (1 samples, 0.24%)</title><rect x="85.9223%" y="709" width="0.2427%" height="15" fill="rgb(218,70,48)" fg:x="354" fg:w="1"/><text x="86.1723%" y="719.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (1 samples, 0.24%)</title><rect x="85.9223%" y="693" width="0.2427%" height="15" fill="rgb(212,196,52)" fg:x="354" fg:w="1"/><text x="86.1723%" y="703.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_statement (1 samples, 0.24%)</title><rect x="86.1650%" y="981" width="0.2427%" height="15" fill="rgb(243,203,18)" fg:x="355" fg:w="1"/><text x="86.4150%" y="991.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="86.4078%" y="965" width="0.2427%" height="15" fill="rgb(252,125,41)" fg:x="356" fg:w="1"/><text x="86.6578%" y="975.50"></text></g><g><title>core::ptr::write (1 samples, 0.24%)</title><rect x="86.4078%" y="949" width="0.2427%" height="15" fill="rgb(223,180,33)" fg:x="356" fg:w="1"/><text x="86.6578%" y="959.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="86.4078%" y="933" width="0.2427%" height="15" fill="rgb(254,159,46)" fg:x="356" fg:w="1"/><text x="86.6578%" y="943.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::has_at (1 samples, 0.24%)</title><rect x="86.8932%" y="917" width="0.2427%" height="15" fill="rgb(254,38,10)" fg:x="358" fg:w="1"/><text x="87.1432%" y="927.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::contains_key (1 samples, 0.24%)</title><rect x="86.8932%" y="901" width="0.2427%" height="15" fill="rgb(208,217,32)" fg:x="358" fg:w="1"/><text x="87.1432%" y="911.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::contains_key (1 samples, 0.24%)</title><rect x="86.8932%" y="885" width="0.2427%" height="15" fill="rgb(221,120,13)" fg:x="358" fg:w="1"/><text x="87.1432%" y="895.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner (1 samples, 0.24%)</title><rect x="86.8932%" y="869" width="0.2427%" height="15" fill="rgb(246,54,52)" fg:x="358" fg:w="1"/><text x="87.1432%" y="879.50"></text></g><g><title>hashbrown::map::make_hash (1 samples, 0.24%)</title><rect x="86.8932%" y="853" width="0.2427%" height="15" fill="rgb(242,34,25)" fg:x="358" fg:w="1"/><text x="87.1432%" y="863.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::declare_pat (3 samples, 0.73%)</title><rect x="86.6505%" y="965" width="0.7282%" height="15" fill="rgb(247,209,9)" fg:x="357" fg:w="3"/><text x="86.9005%" y="975.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare_pat (3 samples, 0.73%)</title><rect x="86.6505%" y="949" width="0.7282%" height="15" fill="rgb(228,71,26)" fg:x="357" fg:w="3"/><text x="86.9005%" y="959.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::declare (2 samples, 0.49%)</title><rect x="86.8932%" y="933" width="0.4854%" height="15" fill="rgb(222,145,49)" fg:x="358" fg:w="2"/><text x="87.1432%" y="943.50"></text></g><g><title>ressa::lexical_names::DuplicateNameDetector::add_var (1 samples, 0.24%)</title><rect x="87.1359%" y="917" width="0.2427%" height="15" fill="rgb(218,121,17)" fg:x="359" fg:w="1"/><text x="87.3859%" y="927.50"></text></g><g><title>hash_chain::map::ChainMap&lt;K,V,S&gt;::insert (1 samples, 0.24%)</title><rect x="87.1359%" y="901" width="0.2427%" height="15" fill="rgb(244,50,7)" fg:x="359" fg:w="1"/><text x="87.3859%" y="911.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.24%)</title><rect x="87.1359%" y="885" width="0.2427%" height="15" fill="rgb(246,229,37)" fg:x="359" fg:w="1"/><text x="87.3859%" y="895.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.24%)</title><rect x="87.1359%" y="869" width="0.2427%" height="15" fill="rgb(225,18,5)" fg:x="359" fg:w="1"/><text x="87.3859%" y="879.50"></text></g><g><title>hashbrown::map::make_insert_hash (1 samples, 0.24%)</title><rect x="87.1359%" y="853" width="0.2427%" height="15" fill="rgb(213,204,8)" fg:x="359" fg:w="1"/><text x="87.3859%" y="863.50"></text></g><g><title>&lt;alloc::borrow::Cow&lt;B&gt; as core::hash::Hash&gt;::hash (1 samples, 0.24%)</title><rect x="87.1359%" y="837" width="0.2427%" height="15" fill="rgb(238,103,6)" fg:x="359" fg:w="1"/><text x="87.3859%" y="847.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for str&gt;::hash (1 samples, 0.24%)</title><rect x="87.1359%" y="821" width="0.2427%" height="15" fill="rgb(222,25,35)" fg:x="359" fg:w="1"/><text x="87.3859%" y="831.50"></text></g><g><title>core::hash::Hasher::write_u8 (1 samples, 0.24%)</title><rect x="87.1359%" y="805" width="0.2427%" height="15" fill="rgb(213,203,35)" fg:x="359" fg:w="1"/><text x="87.3859%" y="815.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (1 samples, 0.24%)</title><rect x="87.1359%" y="789" width="0.2427%" height="15" fill="rgb(221,79,53)" fg:x="359" fg:w="1"/><text x="87.3859%" y="799.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_statement_list_item (23 samples, 5.58%)</title><rect x="82.0388%" y="997" width="5.5825%" height="15" fill="rgb(243,200,35)" fg:x="338" fg:w="23"/><text x="82.2888%" y="1007.50">ressa::..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_decl_list (5 samples, 1.21%)</title><rect x="86.4078%" y="981" width="1.2136%" height="15" fill="rgb(248,60,25)" fg:x="356" fg:w="5"/><text x="86.6578%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_decl (1 samples, 0.24%)</title><rect x="87.3786%" y="965" width="0.2427%" height="15" fill="rgb(227,53,46)" fg:x="360" fg:w="1"/><text x="87.6286%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (1 samples, 0.24%)</title><rect x="87.3786%" y="949" width="0.2427%" height="15" fill="rgb(216,120,32)" fg:x="360" fg:w="1"/><text x="87.6286%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.24%)</title><rect x="87.3786%" y="933" width="0.2427%" height="15" fill="rgb(220,134,1)" fg:x="360" fg:w="1"/><text x="87.6286%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (1 samples, 0.24%)</title><rect x="87.3786%" y="917" width="0.2427%" height="15" fill="rgb(237,168,5)" fg:x="360" fg:w="1"/><text x="87.6286%" y="927.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (1 samples, 0.24%)</title><rect x="87.3786%" y="901" width="0.2427%" height="15" fill="rgb(231,100,33)" fg:x="360" fg:w="1"/><text x="87.6286%" y="911.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="87.3786%" y="885" width="0.2427%" height="15" fill="rgb(236,177,47)" fg:x="360" fg:w="1"/><text x="87.6286%" y="895.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (1 samples, 0.24%)</title><rect x="87.3786%" y="869" width="0.2427%" height="15" fill="rgb(235,7,49)" fg:x="360" fg:w="1"/><text x="87.6286%" y="879.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (1 samples, 0.24%)</title><rect x="87.3786%" y="853" width="0.2427%" height="15" fill="rgb(232,119,22)" fg:x="360" fg:w="1"/><text x="87.6286%" y="863.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_switch_case (1 samples, 0.24%)</title><rect x="87.6214%" y="997" width="0.2427%" height="15" fill="rgb(254,73,53)" fg:x="361" fg:w="1"/><text x="87.8714%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_expression (1 samples, 0.24%)</title><rect x="87.6214%" y="981" width="0.2427%" height="15" fill="rgb(251,35,20)" fg:x="361" fg:w="1"/><text x="87.8714%" y="991.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="87.6214%" y="965" width="0.2427%" height="15" fill="rgb(241,119,20)" fg:x="361" fg:w="1"/><text x="87.8714%" y="975.50"></text></g><g><title>core::str::traits::&lt;impl core::ops::index::Index&lt;I&gt; for str&gt;::index (1 samples, 0.24%)</title><rect x="87.8641%" y="837" width="0.2427%" height="15" fill="rgb(207,102,14)" fg:x="362" fg:w="1"/><text x="88.1141%" y="847.50"></text></g><g><title>core::str::traits::&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::Range&lt;usize&gt;&gt;::index (1 samples, 0.24%)</title><rect x="87.8641%" y="821" width="0.2427%" height="15" fill="rgb(248,201,50)" fg:x="362" fg:w="1"/><text x="88.1141%" y="831.50"></text></g><g><title>core::str::traits::&lt;impl core::slice::index::SliceIndex&lt;str&gt; for core::ops::range::Range&lt;usize&gt;&gt;::get (1 samples, 0.24%)</title><rect x="87.8641%" y="805" width="0.2427%" height="15" fill="rgb(222,185,44)" fg:x="362" fg:w="1"/><text x="88.1141%" y="815.50"></text></g><g><title>core::str::&lt;impl str&gt;::is_char_boundary (1 samples, 0.24%)</title><rect x="87.8641%" y="789" width="0.2427%" height="15" fill="rgb(218,107,18)" fg:x="362" fg:w="1"/><text x="88.1141%" y="799.50"></text></g><g><title>ress::tokenizer::Tokenizer::is_id_continue (1 samples, 0.24%)</title><rect x="88.1068%" y="805" width="0.2427%" height="15" fill="rgb(237,177,39)" fg:x="363" fg:w="1"/><text x="88.3568%" y="815.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (3 samples, 0.73%)</title><rect x="87.8641%" y="917" width="0.7282%" height="15" fill="rgb(246,69,6)" fg:x="362" fg:w="3"/><text x="88.1141%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="87.8641%" y="901" width="0.7282%" height="15" fill="rgb(234,208,37)" fg:x="362" fg:w="3"/><text x="88.1141%" y="911.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.73%)</title><rect x="87.8641%" y="885" width="0.7282%" height="15" fill="rgb(225,4,6)" fg:x="362" fg:w="3"/><text x="88.1141%" y="895.50"></text></g><g><title>ress::Scanner::get_next_token (3 samples, 0.73%)</title><rect x="87.8641%" y="869" width="0.7282%" height="15" fill="rgb(233,45,0)" fg:x="362" fg:w="3"/><text x="88.1141%" y="879.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (3 samples, 0.73%)</title><rect x="87.8641%" y="853" width="0.7282%" height="15" fill="rgb(226,136,5)" fg:x="362" fg:w="3"/><text x="88.1141%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (2 samples, 0.49%)</title><rect x="88.1068%" y="837" width="0.4854%" height="15" fill="rgb(211,91,47)" fg:x="363" fg:w="2"/><text x="88.3568%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::ident (2 samples, 0.49%)</title><rect x="88.1068%" y="821" width="0.4854%" height="15" fill="rgb(242,88,51)" fg:x="363" fg:w="2"/><text x="88.3568%" y="831.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::keyword (1 samples, 0.24%)</title><rect x="88.3495%" y="805" width="0.2427%" height="15" fill="rgb(230,91,28)" fg:x="364" fg:w="1"/><text x="88.5995%" y="815.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::i_keywords (1 samples, 0.24%)</title><rect x="88.3495%" y="789" width="0.2427%" height="15" fill="rgb(254,186,29)" fg:x="364" fg:w="1"/><text x="88.5995%" y="799.50"></text></g><g><title>ress::tokenizer::keyword_trie::&lt;impl ress::tokenizer::Tokenizer&gt;::at_ident_end (1 samples, 0.24%)</title><rect x="88.3495%" y="773" width="0.2427%" height="15" fill="rgb(238,6,4)" fg:x="364" fg:w="1"/><text x="88.5995%" y="783.50"></text></g><g><title>ress::tokenizer::Tokenizer::look_ahead_matches (1 samples, 0.24%)</title><rect x="88.3495%" y="757" width="0.2427%" height="15" fill="rgb(221,151,16)" fg:x="364" fg:w="1"/><text x="88.5995%" y="767.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::look_ahead_matches (1 samples, 0.24%)</title><rect x="88.3495%" y="741" width="0.2427%" height="15" fill="rgb(251,143,52)" fg:x="364" fg:w="1"/><text x="88.5995%" y="751.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (1 samples, 0.24%)</title><rect x="88.3495%" y="725" width="0.2427%" height="15" fill="rgb(206,90,15)" fg:x="364" fg:w="1"/><text x="88.5995%" y="735.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (1 samples, 0.24%)</title><rect x="88.3495%" y="709" width="0.2427%" height="15" fill="rgb(218,35,8)" fg:x="364" fg:w="1"/><text x="88.5995%" y="719.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.24%)</title><rect x="88.3495%" y="693" width="0.2427%" height="15" fill="rgb(239,215,6)" fg:x="364" fg:w="1"/><text x="88.5995%" y="703.50"></text></g><g><title>__memcmp_avx2_movbe (1 samples, 0.24%)</title><rect x="88.3495%" y="677" width="0.2427%" height="15" fill="rgb(245,116,39)" fg:x="364" fg:w="1"/><text x="88.5995%" y="687.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="88.5922%" y="901" width="0.2427%" height="15" fill="rgb(242,65,28)" fg:x="365" fg:w="1"/><text x="88.8422%" y="911.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="88.5922%" y="885" width="0.2427%" height="15" fill="rgb(252,132,53)" fg:x="365" fg:w="1"/><text x="88.8422%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (8 samples, 1.94%)</title><rect x="88.8350%" y="901" width="1.9417%" height="15" fill="rgb(224,159,50)" fg:x="366" fg:w="8"/><text x="89.0850%" y="911.50">_..</text></g><g><title>core::option::Option&lt;T&gt;::take (2 samples, 0.49%)</title><rect x="90.7767%" y="901" width="0.4854%" height="15" fill="rgb(224,93,4)" fg:x="374" fg:w="2"/><text x="91.0267%" y="911.50"></text></g><g><title>core::mem::replace (2 samples, 0.49%)</title><rect x="90.7767%" y="885" width="0.4854%" height="15" fill="rgb(208,81,34)" fg:x="374" fg:w="2"/><text x="91.0267%" y="895.50"></text></g><g><title>core::ptr::read (2 samples, 0.49%)</title><rect x="90.7767%" y="869" width="0.4854%" height="15" fill="rgb(233,92,54)" fg:x="374" fg:w="2"/><text x="91.0267%" y="879.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (12 samples, 2.91%)</title><rect x="88.5922%" y="917" width="2.9126%" height="15" fill="rgb(237,21,14)" fg:x="365" fg:w="12"/><text x="88.8422%" y="927.50">re..</text></g><g><title>ressa::Context::set_is_assignment_target (1 samples, 0.24%)</title><rect x="91.2621%" y="901" width="0.2427%" height="15" fill="rgb(249,128,51)" fg:x="376" fg:w="1"/><text x="91.5121%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (1 samples, 0.24%)</title><rect x="91.5049%" y="917" width="0.2427%" height="15" fill="rgb(223,129,24)" fg:x="377" fg:w="1"/><text x="91.7549%" y="927.50"></text></g><g><title>core::ops::function::Fn::call (1 samples, 0.24%)</title><rect x="91.5049%" y="901" width="0.2427%" height="15" fill="rgb(231,168,25)" fg:x="377" fg:w="1"/><text x="91.7549%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_expression (1 samples, 0.24%)</title><rect x="91.5049%" y="885" width="0.2427%" height="15" fill="rgb(224,39,20)" fg:x="377" fg:w="1"/><text x="91.7549%" y="895.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="91.5049%" y="869" width="0.2427%" height="15" fill="rgb(225,152,53)" fg:x="377" fg:w="1"/><text x="91.7549%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="91.5049%" y="853" width="0.2427%" height="15" fill="rgb(252,17,24)" fg:x="377" fg:w="1"/><text x="91.7549%" y="863.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (2 samples, 0.49%)</title><rect x="91.7476%" y="901" width="0.4854%" height="15" fill="rgb(250,114,30)" fg:x="378" fg:w="2"/><text x="91.9976%" y="911.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.49%)</title><rect x="91.7476%" y="885" width="0.4854%" height="15" fill="rgb(229,5,4)" fg:x="378" fg:w="2"/><text x="91.9976%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.24%)</title><rect x="92.2330%" y="805" width="0.2427%" height="15" fill="rgb(225,176,49)" fg:x="380" fg:w="1"/><text x="92.4830%" y="815.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.24%)</title><rect x="92.2330%" y="789" width="0.2427%" height="15" fill="rgb(224,221,49)" fg:x="380" fg:w="1"/><text x="92.4830%" y="799.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.24%)</title><rect x="92.2330%" y="773" width="0.2427%" height="15" fill="rgb(253,169,27)" fg:x="380" fg:w="1"/><text x="92.4830%" y="783.50"></text></g><g><title>__GI___libc_realloc (1 samples, 0.24%)</title><rect x="92.2330%" y="757" width="0.2427%" height="15" fill="rgb(211,206,16)" fg:x="380" fg:w="1"/><text x="92.4830%" y="767.50"></text></g><g><title>_int_realloc (1 samples, 0.24%)</title><rect x="92.2330%" y="741" width="0.2427%" height="15" fill="rgb(244,87,35)" fg:x="380" fg:w="1"/><text x="92.4830%" y="751.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="92.2330%" y="725" width="0.2427%" height="15" fill="rgb(246,28,10)" fg:x="380" fg:w="1"/><text x="92.4830%" y="735.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.49%)</title><rect x="92.2330%" y="901" width="0.4854%" height="15" fill="rgb(229,12,44)" fg:x="380" fg:w="2"/><text x="92.4830%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="92.2330%" y="885" width="0.4854%" height="15" fill="rgb(210,145,37)" fg:x="380" fg:w="2"/><text x="92.4830%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.49%)</title><rect x="92.2330%" y="869" width="0.4854%" height="15" fill="rgb(227,112,52)" fg:x="380" fg:w="2"/><text x="92.4830%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (2 samples, 0.49%)</title><rect x="92.2330%" y="853" width="0.4854%" height="15" fill="rgb(238,155,34)" fg:x="380" fg:w="2"/><text x="92.4830%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.49%)</title><rect x="92.2330%" y="837" width="0.4854%" height="15" fill="rgb(239,226,36)" fg:x="380" fg:w="2"/><text x="92.4830%" y="847.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.49%)</title><rect x="92.2330%" y="821" width="0.4854%" height="15" fill="rgb(230,16,23)" fg:x="380" fg:w="2"/><text x="92.4830%" y="831.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="92.4757%" y="805" width="0.2427%" height="15" fill="rgb(236,171,36)" fg:x="381" fg:w="1"/><text x="92.7257%" y="815.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="92.4757%" y="789" width="0.2427%" height="15" fill="rgb(221,22,14)" fg:x="381" fg:w="1"/><text x="92.7257%" y="799.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="92.9612%" y="805" width="0.2427%" height="15" fill="rgb(242,43,11)" fg:x="383" fg:w="1"/><text x="93.2112%" y="815.50"></text></g><g><title>ress::tokenizer::Tokenizer::string (1 samples, 0.24%)</title><rect x="92.9612%" y="789" width="0.2427%" height="15" fill="rgb(232,69,23)" fg:x="383" fg:w="1"/><text x="93.2112%" y="799.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::next_char (1 samples, 0.24%)</title><rect x="92.9612%" y="773" width="0.2427%" height="15" fill="rgb(216,180,54)" fg:x="383" fg:w="1"/><text x="93.2112%" y="783.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_comma_sep (3 samples, 0.73%)</title><rect x="92.7184%" y="901" width="0.7282%" height="15" fill="rgb(216,5,24)" fg:x="382" fg:w="3"/><text x="92.9684%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (3 samples, 0.73%)</title><rect x="92.7184%" y="885" width="0.7282%" height="15" fill="rgb(225,89,9)" fg:x="382" fg:w="3"/><text x="92.9684%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="92.7184%" y="869" width="0.7282%" height="15" fill="rgb(243,75,33)" fg:x="382" fg:w="3"/><text x="92.9684%" y="879.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.73%)</title><rect x="92.7184%" y="853" width="0.7282%" height="15" fill="rgb(247,141,45)" fg:x="382" fg:w="3"/><text x="92.9684%" y="863.50"></text></g><g><title>ress::Scanner::get_next_token (3 samples, 0.73%)</title><rect x="92.7184%" y="837" width="0.7282%" height="15" fill="rgb(232,177,36)" fg:x="382" fg:w="3"/><text x="92.9684%" y="847.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (3 samples, 0.73%)</title><rect x="92.7184%" y="821" width="0.7282%" height="15" fill="rgb(219,125,36)" fg:x="382" fg:w="3"/><text x="92.9684%" y="831.50"></text></g><g><title>ress::tokenizer::Tokenizer::skip_whitespace (1 samples, 0.24%)</title><rect x="93.2039%" y="805" width="0.2427%" height="15" fill="rgb(227,94,9)" fg:x="384" fg:w="1"/><text x="93.4539%" y="815.50"></text></g><g><title>ress::tokenizer::buffer::JSBuffer::at_whitespace (1 samples, 0.24%)</title><rect x="93.2039%" y="789" width="0.2427%" height="15" fill="rgb(240,34,52)" fg:x="384" fg:w="1"/><text x="93.4539%" y="799.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (1 samples, 0.24%)</title><rect x="94.4175%" y="821" width="0.2427%" height="15" fill="rgb(216,45,12)" fg:x="389" fg:w="1"/><text x="94.6675%" y="831.50"></text></g><g><title>ress::tokenizer::Tokenizer::punct (1 samples, 0.24%)</title><rect x="94.4175%" y="805" width="0.2427%" height="15" fill="rgb(246,21,19)" fg:x="389" fg:w="1"/><text x="94.6675%" y="815.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::expect_punct (6 samples, 1.46%)</title><rect x="93.4466%" y="901" width="1.4563%" height="15" fill="rgb(213,98,42)" fg:x="385" fg:w="6"/><text x="93.6966%" y="911.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (6 samples, 1.46%)</title><rect x="93.4466%" y="885" width="1.4563%" height="15" fill="rgb(250,136,47)" fg:x="385" fg:w="6"/><text x="93.6966%" y="895.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 1.46%)</title><rect x="93.4466%" y="869" width="1.4563%" height="15" fill="rgb(251,124,27)" fg:x="385" fg:w="6"/><text x="93.6966%" y="879.50"></text></g><g><title>ress::Scanner::get_next_token (6 samples, 1.46%)</title><rect x="93.4466%" y="853" width="1.4563%" height="15" fill="rgb(229,180,14)" fg:x="385" fg:w="6"/><text x="93.6966%" y="863.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (5 samples, 1.21%)</title><rect x="93.6893%" y="837" width="1.2136%" height="15" fill="rgb(245,216,25)" fg:x="386" fg:w="5"/><text x="93.9393%" y="847.50"></text></g><g><title>ress::tokenizer::Tokenizer::skip_whitespace (1 samples, 0.24%)</title><rect x="94.6602%" y="821" width="0.2427%" height="15" fill="rgb(251,43,5)" fg:x="390" fg:w="1"/><text x="94.9102%" y="831.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (1 samples, 0.24%)</title><rect x="94.9029%" y="885" width="0.2427%" height="15" fill="rgb(250,128,24)" fg:x="391" fg:w="1"/><text x="95.1529%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="94.9029%" y="869" width="0.2427%" height="15" fill="rgb(217,117,27)" fg:x="391" fg:w="1"/><text x="95.1529%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.24%)</title><rect x="95.1456%" y="885" width="0.2427%" height="15" fill="rgb(245,147,4)" fg:x="392" fg:w="1"/><text x="95.3956%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_args (16 samples, 3.88%)</title><rect x="91.7476%" y="917" width="3.8835%" height="15" fill="rgb(242,201,35)" fg:x="378" fg:w="16"/><text x="91.9976%" y="927.50">ress..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (3 samples, 0.73%)</title><rect x="94.9029%" y="901" width="0.7282%" height="15" fill="rgb(218,181,1)" fg:x="391" fg:w="3"/><text x="95.1529%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1 samples, 0.24%)</title><rect x="95.3883%" y="885" width="0.2427%" height="15" fill="rgb(222,6,29)" fg:x="393" fg:w="1"/><text x="95.6383%" y="895.50"></text></g><g><title>core::mem::replace (1 samples, 0.24%)</title><rect x="95.3883%" y="869" width="0.2427%" height="15" fill="rgb(208,186,3)" fg:x="393" fg:w="1"/><text x="95.6383%" y="879.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="95.3883%" y="853" width="0.2427%" height="15" fill="rgb(216,36,26)" fg:x="393" fg:w="1"/><text x="95.6383%" y="863.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_unary_expression (35 samples, 8.50%)</title><rect x="87.8641%" y="997" width="8.4951%" height="15" fill="rgb(248,201,23)" fg:x="362" fg:w="35"/><text x="88.1141%" y="1007.50">ressa::spann..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_update_expr (35 samples, 8.50%)</title><rect x="87.8641%" y="981" width="8.4951%" height="15" fill="rgb(251,170,31)" fg:x="362" fg:w="35"/><text x="88.1141%" y="991.50">ressa::spann..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::inherit_cover_grammar (35 samples, 8.50%)</title><rect x="87.8641%" y="965" width="8.4951%" height="15" fill="rgb(207,110,25)" fg:x="362" fg:w="35"/><text x="88.1141%" y="975.50">ressa::spann..</text></g><g><title>core::ops::function::Fn::call (35 samples, 8.50%)</title><rect x="87.8641%" y="949" width="8.4951%" height="15" fill="rgb(250,54,15)" fg:x="362" fg:w="35"/><text x="88.1141%" y="959.50">core::ops::f..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_left_hand_side_expr_allow_call (35 samples, 8.50%)</title><rect x="87.8641%" y="933" width="8.4951%" height="15" fill="rgb(227,68,33)" fg:x="362" fg:w="35"/><text x="88.1141%" y="943.50">ressa::spann..</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_ident_name (3 samples, 0.73%)</title><rect x="95.6311%" y="917" width="0.7282%" height="15" fill="rgb(238,34,41)" fg:x="394" fg:w="3"/><text x="95.8811%" y="927.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="95.6311%" y="901" width="0.7282%" height="15" fill="rgb(220,11,15)" fg:x="394" fg:w="3"/><text x="95.8811%" y="911.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.73%)</title><rect x="95.6311%" y="885" width="0.7282%" height="15" fill="rgb(246,111,35)" fg:x="394" fg:w="3"/><text x="95.8811%" y="895.50"></text></g><g><title>ress::Scanner::get_next_token (3 samples, 0.73%)</title><rect x="95.6311%" y="869" width="0.7282%" height="15" fill="rgb(209,88,53)" fg:x="394" fg:w="3"/><text x="95.8811%" y="879.50"></text></g><g><title>ress::manual_scanner::ManualScanner::next_token (3 samples, 0.73%)</title><rect x="95.6311%" y="853" width="0.7282%" height="15" fill="rgb(231,185,47)" fg:x="394" fg:w="3"/><text x="95.8811%" y="863.50"></text></g><g><title>ress::tokenizer::Tokenizer::next (2 samples, 0.49%)</title><rect x="95.8738%" y="837" width="0.4854%" height="15" fill="rgb(233,154,1)" fg:x="395" fg:w="2"/><text x="96.1238%" y="847.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.24%)</title><rect x="96.3592%" y="965" width="0.2427%" height="15" fill="rgb(225,15,46)" fg:x="397" fg:w="1"/><text x="96.6092%" y="975.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="96.3592%" y="949" width="0.2427%" height="15" fill="rgb(211,135,41)" fg:x="397" fg:w="1"/><text x="96.6092%" y="959.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.24%)</title><rect x="96.3592%" y="933" width="0.2427%" height="15" fill="rgb(208,54,0)" fg:x="397" fg:w="1"/><text x="96.6092%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.24%)</title><rect x="96.3592%" y="917" width="0.2427%" height="15" fill="rgb(244,136,14)" fg:x="397" fg:w="1"/><text x="96.6092%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.24%)</title><rect x="96.3592%" y="901" width="0.2427%" height="15" fill="rgb(241,56,14)" fg:x="397" fg:w="1"/><text x="96.6092%" y="911.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.24%)</title><rect x="96.3592%" y="885" width="0.2427%" height="15" fill="rgb(205,80,24)" fg:x="397" fg:w="1"/><text x="96.6092%" y="895.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_decl (4 samples, 0.97%)</title><rect x="96.3592%" y="997" width="0.9709%" height="15" fill="rgb(220,57,4)" fg:x="397" fg:w="4"/><text x="96.6092%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_pattern (4 samples, 0.97%)</title><rect x="96.3592%" y="981" width="0.9709%" height="15" fill="rgb(226,193,50)" fg:x="397" fg:w="4"/><text x="96.6092%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_ident (3 samples, 0.73%)</title><rect x="96.6019%" y="965" width="0.7282%" height="15" fill="rgb(231,168,22)" fg:x="398" fg:w="3"/><text x="96.8519%" y="975.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::next_item (3 samples, 0.73%)</title><rect x="96.6019%" y="949" width="0.7282%" height="15" fill="rgb(254,215,14)" fg:x="398" fg:w="3"/><text x="96.8519%" y="959.50"></text></g><g><title>&lt;ress::Scanner as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.49%)</title><rect x="96.8447%" y="933" width="0.4854%" height="15" fill="rgb(211,115,16)" fg:x="399" fg:w="2"/><text x="97.0947%" y="943.50"></text></g><g><title>ress::Scanner::get_next_token (2 samples, 0.49%)</title><rect x="96.8447%" y="917" width="0.4854%" height="15" fill="rgb(236,210,16)" fg:x="399" fg:w="2"/><text x="97.0947%" y="927.50"></text></g><g><title>[unknown] (401 samples, 97.33%)</title><rect x="0.2427%" y="1013" width="97.3301%" height="15" fill="rgb(221,94,12)" fg:x="1" fg:w="401"/><text x="0.4927%" y="1023.50">[unknown]</text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_decl_list (1 samples, 0.24%)</title><rect x="97.3301%" y="997" width="0.2427%" height="15" fill="rgb(235,218,49)" fg:x="401" fg:w="1"/><text x="97.5801%" y="1007.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::parse_var_decl (1 samples, 0.24%)</title><rect x="97.3301%" y="981" width="0.2427%" height="15" fill="rgb(217,114,14)" fg:x="401" fg:w="1"/><text x="97.5801%" y="991.50"></text></g><g><title>ressa::spanned::Parser&lt;CH&gt;::isolate_cover_grammar (1 samples, 0.24%)</title><rect x="97.3301%" y="965" width="0.2427%" height="15" fill="rgb(216,145,22)" fg:x="401" fg:w="1"/><text x="97.5801%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1 samples, 0.24%)</title><rect x="97.3301%" y="949" width="0.2427%" height="15" fill="rgb(217,112,39)" fg:x="401" fg:w="1"/><text x="97.5801%" y="959.50"></text></g><g><title>core::mem::replace (1 samples, 0.24%)</title><rect x="97.3301%" y="933" width="0.2427%" height="15" fill="rgb(225,85,32)" fg:x="401" fg:w="1"/><text x="97.5801%" y="943.50"></text></g><g><title>core::ptr::read (1 samples, 0.24%)</title><rect x="97.3301%" y="917" width="0.2427%" height="15" fill="rgb(245,209,47)" fg:x="401" fg:w="1"/><text x="97.5801%" y="927.50"></text></g><g><title>__GI___clone (1 samples, 0.24%)</title><rect x="97.5728%" y="1013" width="0.2427%" height="15" fill="rgb(218,220,15)" fg:x="402" fg:w="1"/><text x="97.8228%" y="1023.50"></text></g><g><title>[unknown] (2 samples, 0.49%)</title><rect x="97.8155%" y="997" width="0.4854%" height="15" fill="rgb(222,202,31)" fg:x="403" fg:w="2"/><text x="98.0655%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="98.0583%" y="981" width="0.2427%" height="15" fill="rgb(243,203,4)" fg:x="404" fg:w="1"/><text x="98.3083%" y="991.50"></text></g><g><title>major_libs::angular1 (1 samples, 0.24%)</title><rect x="98.3010%" y="741" width="0.2427%" height="15" fill="rgb(237,92,17)" fg:x="405" fg:w="1"/><text x="98.5510%" y="751.50"></text></g><g><title>&lt;major_libs::NG as core::ops::deref::Deref&gt;::deref (1 samples, 0.24%)</title><rect x="98.3010%" y="725" width="0.2427%" height="15" fill="rgb(231,119,7)" fg:x="405" fg:w="1"/><text x="98.5510%" y="735.50"></text></g><g><title>&lt;major_libs::NG as core::ops::deref::Deref&gt;::deref::__stability (1 samples, 0.24%)</title><rect x="98.3010%" y="709" width="0.2427%" height="15" fill="rgb(237,82,41)" fg:x="405" fg:w="1"/><text x="98.5510%" y="719.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get (1 samples, 0.24%)</title><rect x="98.3010%" y="693" width="0.2427%" height="15" fill="rgb(226,81,48)" fg:x="405" fg:w="1"/><text x="98.5510%" y="703.50"></text></g><g><title>std::sync::once::Once::call_once (1 samples, 0.24%)</title><rect x="98.3010%" y="677" width="0.2427%" height="15" fill="rgb(234,70,51)" fg:x="405" fg:w="1"/><text x="98.5510%" y="687.50"></text></g><g><title>std::sync::once::Once::call_inner (1 samples, 0.24%)</title><rect x="98.3010%" y="661" width="0.2427%" height="15" fill="rgb(251,86,4)" fg:x="405" fg:w="1"/><text x="98.5510%" y="671.50"></text></g><g><title>std::sync::once::Once::call_once::{{closure}} (1 samples, 0.24%)</title><rect x="98.3010%" y="645" width="0.2427%" height="15" fill="rgb(244,144,28)" fg:x="405" fg:w="1"/><text x="98.5510%" y="655.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get::{{closure}} (1 samples, 0.24%)</title><rect x="98.3010%" y="629" width="0.2427%" height="15" fill="rgb(232,161,39)" fg:x="405" fg:w="1"/><text x="98.5510%" y="639.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.24%)</title><rect x="98.3010%" y="613" width="0.2427%" height="15" fill="rgb(247,34,51)" fg:x="405" fg:w="1"/><text x="98.5510%" y="623.50"></text></g><g><title>&lt;major_libs::NG as core::ops::deref::Deref&gt;::deref::__static_ref_initialize (1 samples, 0.24%)</title><rect x="98.3010%" y="597" width="0.2427%" height="15" fill="rgb(225,132,2)" fg:x="405" fg:w="1"/><text x="98.5510%" y="607.50"></text></g><g><title>major_libs::get_js (1 samples, 0.24%)</title><rect x="98.3010%" y="581" width="0.2427%" height="15" fill="rgb(209,159,44)" fg:x="405" fg:w="1"/><text x="98.5510%" y="591.50"></text></g><g><title>std::fs::read_to_string (1 samples, 0.24%)</title><rect x="98.3010%" y="565" width="0.2427%" height="15" fill="rgb(251,214,1)" fg:x="405" fg:w="1"/><text x="98.5510%" y="575.50"></text></g><g><title>std::fs::read_to_string::inner (1 samples, 0.24%)</title><rect x="98.3010%" y="549" width="0.2427%" height="15" fill="rgb(247,84,47)" fg:x="405" fg:w="1"/><text x="98.5510%" y="559.50"></text></g><g><title>&lt;std::fs::File as std::io::Read&gt;::read_to_string (1 samples, 0.24%)</title><rect x="98.3010%" y="533" width="0.2427%" height="15" fill="rgb(240,111,43)" fg:x="405" fg:w="1"/><text x="98.5510%" y="543.50"></text></g><g><title>std::io::default_read_to_string (1 samples, 0.24%)</title><rect x="98.3010%" y="517" width="0.2427%" height="15" fill="rgb(215,214,35)" fg:x="405" fg:w="1"/><text x="98.5510%" y="527.50"></text></g><g><title>std::io::append_to_string (1 samples, 0.24%)</title><rect x="98.3010%" y="501" width="0.2427%" height="15" fill="rgb(248,207,23)" fg:x="405" fg:w="1"/><text x="98.5510%" y="511.50"></text></g><g><title>core::str::converts::from_utf8 (1 samples, 0.24%)</title><rect x="98.3010%" y="485" width="0.2427%" height="15" fill="rgb(214,186,4)" fg:x="405" fg:w="1"/><text x="98.5510%" y="495.50"></text></g><g><title>core::str::validations::run_utf8_validation (1 samples, 0.24%)</title><rect x="98.3010%" y="469" width="0.2427%" height="15" fill="rgb(220,133,22)" fg:x="405" fg:w="1"/><text x="98.5510%" y="479.50"></text></g><g><title>major_libs::angular1_min (1 samples, 0.24%)</title><rect x="98.5437%" y="741" width="0.2427%" height="15" fill="rgb(239,134,19)" fg:x="406" fg:w="1"/><text x="98.7937%" y="751.50"></text></g><g><title>major_libs::bench (1 samples, 0.24%)</title><rect x="98.5437%" y="725" width="0.2427%" height="15" fill="rgb(250,140,9)" fg:x="406" fg:w="1"/><text x="98.7937%" y="735.50"></text></g><g><title>criterion::Criterion&lt;M&gt;::bench_function (1 samples, 0.24%)</title><rect x="98.5437%" y="709" width="0.2427%" height="15" fill="rgb(225,59,14)" fg:x="406" fg:w="1"/><text x="98.7937%" y="719.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (1 samples, 0.24%)</title><rect x="98.5437%" y="693" width="0.2427%" height="15" fill="rgb(214,152,51)" fg:x="406" fg:w="1"/><text x="98.7937%" y="703.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::run_bench (1 samples, 0.24%)</title><rect x="98.5437%" y="677" width="0.2427%" height="15" fill="rgb(251,227,43)" fg:x="406" fg:w="1"/><text x="98.7937%" y="687.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (1 samples, 0.24%)</title><rect x="98.5437%" y="661" width="0.2427%" height="15" fill="rgb(241,96,17)" fg:x="406" fg:w="1"/><text x="98.7937%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (1 samples, 0.24%)</title><rect x="98.5437%" y="645" width="0.2427%" height="15" fill="rgb(234,198,43)" fg:x="406" fg:w="1"/><text x="98.7937%" y="655.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (1 samples, 0.24%)</title><rect x="98.5437%" y="629" width="0.2427%" height="15" fill="rgb(220,108,29)" fg:x="406" fg:w="1"/><text x="98.7937%" y="639.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.24%)</title><rect x="98.5437%" y="613" width="0.2427%" height="15" fill="rgb(226,163,33)" fg:x="406" fg:w="1"/><text x="98.7937%" y="623.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.24%)</title><rect x="98.5437%" y="597" width="0.2427%" height="15" fill="rgb(205,194,45)" fg:x="406" fg:w="1"/><text x="98.7937%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.24%)</title><rect x="98.5437%" y="581" width="0.2427%" height="15" fill="rgb(206,143,44)" fg:x="406" fg:w="1"/><text x="98.7937%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="98.5437%" y="565" width="0.2427%" height="15" fill="rgb(236,136,36)" fg:x="406" fg:w="1"/><text x="98.7937%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.24%)</title><rect x="98.5437%" y="549" width="0.2427%" height="15" fill="rgb(249,172,42)" fg:x="406" fg:w="1"/><text x="98.7937%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.24%)</title><rect x="98.5437%" y="533" width="0.2427%" height="15" fill="rgb(216,139,23)" fg:x="406" fg:w="1"/><text x="98.7937%" y="543.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.24%)</title><rect x="98.5437%" y="517" width="0.2427%" height="15" fill="rgb(207,166,20)" fg:x="406" fg:w="1"/><text x="98.7937%" y="527.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.24%)</title><rect x="98.5437%" y="501" width="0.2427%" height="15" fill="rgb(210,209,22)" fg:x="406" fg:w="1"/><text x="98.7937%" y="511.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.24%)</title><rect x="98.5437%" y="485" width="0.2427%" height="15" fill="rgb(232,118,20)" fg:x="406" fg:w="1"/><text x="98.7937%" y="495.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.24%)</title><rect x="98.5437%" y="469" width="0.2427%" height="15" fill="rgb(238,113,42)" fg:x="406" fg:w="1"/><text x="98.7937%" y="479.50"></text></g><g><title>_int_malloc (1 samples, 0.24%)</title><rect x="98.5437%" y="453" width="0.2427%" height="15" fill="rgb(231,42,5)" fg:x="406" fg:w="1"/><text x="98.7937%" y="463.50"></text></g><g><title>__libc_start_main (3 samples, 0.73%)</title><rect x="98.3010%" y="997" width="0.7282%" height="15" fill="rgb(243,166,24)" fg:x="405" fg:w="3"/><text x="98.5510%" y="1007.50"></text></g><g><title>main (3 samples, 0.73%)</title><rect x="98.3010%" y="981" width="0.7282%" height="15" fill="rgb(237,226,12)" fg:x="405" fg:w="3"/><text x="98.5510%" y="991.50"></text></g><g><title>std::rt::lang_start_internal (3 samples, 0.73%)</title><rect x="98.3010%" y="965" width="0.7282%" height="15" fill="rgb(229,133,24)" fg:x="405" fg:w="3"/><text x="98.5510%" y="975.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.73%)</title><rect x="98.3010%" y="949" width="0.7282%" height="15" fill="rgb(238,33,43)" fg:x="405" fg:w="3"/><text x="98.5510%" y="959.50"></text></g><g><title>std::panicking::try (3 samples, 0.73%)</title><rect x="98.3010%" y="933" width="0.7282%" height="15" fill="rgb(227,59,38)" fg:x="405" fg:w="3"/><text x="98.5510%" y="943.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.73%)</title><rect x="98.3010%" y="917" width="0.7282%" height="15" fill="rgb(230,97,0)" fg:x="405" fg:w="3"/><text x="98.5510%" y="927.50"></text></g><g><title>std::rt::lang_start_internal::{{closure}} (3 samples, 0.73%)</title><rect x="98.3010%" y="901" width="0.7282%" height="15" fill="rgb(250,173,50)" fg:x="405" fg:w="3"/><text x="98.5510%" y="911.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.73%)</title><rect x="98.3010%" y="885" width="0.7282%" height="15" fill="rgb(240,15,50)" fg:x="405" fg:w="3"/><text x="98.5510%" y="895.50"></text></g><g><title>std::panicking::try (3 samples, 0.73%)</title><rect x="98.3010%" y="869" width="0.7282%" height="15" fill="rgb(221,93,22)" fg:x="405" fg:w="3"/><text x="98.5510%" y="879.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.73%)</title><rect x="98.3010%" y="853" width="0.7282%" height="15" fill="rgb(245,180,53)" fg:x="405" fg:w="3"/><text x="98.5510%" y="863.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (3 samples, 0.73%)</title><rect x="98.3010%" y="837" width="0.7282%" height="15" fill="rgb(231,88,51)" fg:x="405" fg:w="3"/><text x="98.5510%" y="847.50"></text></g><g><title>std::rt::lang_start::{{closure}} (3 samples, 0.73%)</title><rect x="98.3010%" y="821" width="0.7282%" height="15" fill="rgb(240,58,21)" fg:x="405" fg:w="3"/><text x="98.5510%" y="831.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (3 samples, 0.73%)</title><rect x="98.3010%" y="805" width="0.7282%" height="15" fill="rgb(237,21,10)" fg:x="405" fg:w="3"/><text x="98.5510%" y="815.50"></text></g><g><title>core::ops::function::FnOnce::call_once (3 samples, 0.73%)</title><rect x="98.3010%" y="789" width="0.7282%" height="15" fill="rgb(218,43,11)" fg:x="405" fg:w="3"/><text x="98.5510%" y="799.50"></text></g><g><title>major_libs::main (3 samples, 0.73%)</title><rect x="98.3010%" y="773" width="0.7282%" height="15" fill="rgb(218,221,29)" fg:x="405" fg:w="3"/><text x="98.5510%" y="783.50"></text></g><g><title>major_libs::benches (3 samples, 0.73%)</title><rect x="98.3010%" y="757" width="0.7282%" height="15" fill="rgb(214,118,42)" fg:x="405" fg:w="3"/><text x="98.5510%" y="767.50"></text></g><g><title>major_libs::jquery (1 samples, 0.24%)</title><rect x="98.7864%" y="741" width="0.2427%" height="15" fill="rgb(251,200,26)" fg:x="407" fg:w="1"/><text x="99.0364%" y="751.50"></text></g><g><title>major_libs::bench (1 samples, 0.24%)</title><rect x="98.7864%" y="725" width="0.2427%" height="15" fill="rgb(237,101,39)" fg:x="407" fg:w="1"/><text x="99.0364%" y="735.50"></text></g><g><title>criterion::Criterion&lt;M&gt;::bench_function (1 samples, 0.24%)</title><rect x="98.7864%" y="709" width="0.2427%" height="15" fill="rgb(251,117,11)" fg:x="407" fg:w="1"/><text x="99.0364%" y="719.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (1 samples, 0.24%)</title><rect x="98.7864%" y="693" width="0.2427%" height="15" fill="rgb(216,223,23)" fg:x="407" fg:w="1"/><text x="99.0364%" y="703.50"></text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::run_bench (1 samples, 0.24%)</title><rect x="98.7864%" y="677" width="0.2427%" height="15" fill="rgb(251,54,12)" fg:x="407" fg:w="1"/><text x="99.0364%" y="687.50"></text></g><g><title>std::collections::hash::set::HashSet&lt;T,S&gt;::insert (1 samples, 0.24%)</title><rect x="98.7864%" y="661" width="0.2427%" height="15" fill="rgb(254,176,54)" fg:x="407" fg:w="1"/><text x="99.0364%" y="671.50"></text></g><g><title>hashbrown::set::HashSet&lt;T,S,A&gt;::insert (1 samples, 0.24%)</title><rect x="98.7864%" y="645" width="0.2427%" height="15" fill="rgb(210,32,8)" fg:x="407" fg:w="1"/><text x="99.0364%" y="655.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.24%)</title><rect x="98.7864%" y="629" width="0.2427%" height="15" fill="rgb(235,52,38)" fg:x="407" fg:w="1"/><text x="99.0364%" y="639.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="99.5146%" y="981" width="0.2427%" height="15" fill="rgb(231,4,44)" fg:x="410" fg:w="1"/><text x="99.7646%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="99.5146%" y="965" width="0.2427%" height="15" fill="rgb(249,2,32)" fg:x="410" fg:w="1"/><text x="99.7646%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="99.5146%" y="949" width="0.2427%" height="15" fill="rgb(224,65,26)" fg:x="410" fg:w="1"/><text x="99.7646%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.24%)</title><rect x="99.5146%" y="933" width="0.2427%" height="15" fill="rgb(250,73,40)" fg:x="410" fg:w="1"/><text x="99.7646%" y="943.50"></text></g><g><title>all (412 samples, 100%)</title><rect x="0.0000%" y="1045" width="100.0000%" height="15" fill="rgb(253,177,16)" fg:x="0" fg:w="412"/><text x="0.2500%" y="1055.50"></text></g><g><title>major_libs-8752 (412 samples, 100.00%)</title><rect x="0.0000%" y="1029" width="100.0000%" height="15" fill="rgb(217,32,34)" fg:x="0" fg:w="412"/><text x="0.2500%" y="1039.50">major_libs-8752</text></g><g><title>_start (9 samples, 2.18%)</title><rect x="97.8155%" y="1013" width="2.1845%" height="15" fill="rgb(212,7,10)" fg:x="403" fg:w="9"/><text x="98.0655%" y="1023.50">_..</text></g><g><title>_dl_start (4 samples, 0.97%)</title><rect x="99.0291%" y="997" width="0.9709%" height="15" fill="rgb(245,89,8)" fg:x="408" fg:w="4"/><text x="99.2791%" y="1007.50"></text></g><g><title>_dl_sysdep_start (1 samples, 0.24%)</title><rect x="99.7573%" y="981" width="0.2427%" height="15" fill="rgb(237,16,53)" fg:x="411" fg:w="1"/><text x="100.0073%" y="991.50"></text></g><g><title>__GI___tunables_init (1 samples, 0.24%)</title><rect x="99.7573%" y="965" width="0.2427%" height="15" fill="rgb(250,204,30)" fg:x="411" fg:w="1"/><text x="100.0073%" y="975.50"></text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment