wxbox/crates/ar2/flamegraph.svg
core 1c836c6ecf
Some checks are pending
Verify Latest Dependencies / Verify Latest Dependencies (push) Waiting to run
build and test / wxbox - latest (push) Waiting to run
benchmarking
2025-05-19 10:11:41 -04:00

491 lines
No EOL
566 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2294" onload="init(evt)" viewBox="0 0 1200 2294" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="2294" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="2277.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="2277.00"> </text><svg id="frames" x="10" width="1180" total_samples="4204234770"><g><title>BZ2_decompress (3,602,294 samples, 0.09%)</title><rect x="0.0000%" y="2213" width="0.0857%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="3602294"/><text x="0.2500%" y="2223.50"></text></g><g><title>[unknown] (3,602,294 samples, 0.09%)</title><rect x="0.0000%" y="2197" width="0.0857%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="3602294"/><text x="0.2500%" y="2207.50"></text></g><g><title>std::io::Read::read_buf (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1525" width="1.6548%" height="15" fill="rgb(221,193,54)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1535.50"></text></g><g><title>std::io::default_read_buf (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1509" width="1.6548%" height="15" fill="rgb(248,212,6)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1519.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1493" width="1.6548%" height="15" fill="rgb(208,68,35)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1503.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1477" width="1.6548%" height="15" fill="rgb(232,128,0)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1487.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1461" width="1.6548%" height="15" fill="rgb(207,160,47)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1471.50"></text></g><g><title>bzip2::mem::Decompress::decompress (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1445" width="1.6548%" height="15" fill="rgb(228,23,34)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1455.50"></text></g><g><title>BZ2_bzDecompress (69,569,729 samples, 1.65%)</title><rect x="0.0982%" y="1429" width="1.6548%" height="15" fill="rgb(218,30,26)" fg:x="4127229" fg:w="69569729"/><text x="0.3482%" y="1439.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (196,512,695 samples, 4.67%)</title><rect x="0.0982%" y="1573" width="4.6742%" height="15" fill="rgb(220,122,19)" fg:x="4127229" fg:w="196512695"/><text x="0.3482%" y="1583.50">nexra..</text></g><g><title>std::io::Read::read_to_end (196,512,695 samples, 4.67%)</title><rect x="0.0982%" y="1557" width="4.6742%" height="15" fill="rgb(250,228,42)" fg:x="4127229" fg:w="196512695"/><text x="0.3482%" y="1567.50">std::..</text></g><g><title>std::io::default_read_to_end (196,512,695 samples, 4.67%)</title><rect x="0.0982%" y="1541" width="4.6742%" height="15" fill="rgb(240,193,28)" fg:x="4127229" fg:w="196512695"/><text x="0.3482%" y="1551.50">std::..</text></g><g><title>std::io::default_read_to_end::small_probe_read (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1525" width="3.0194%" height="15" fill="rgb(216,20,37)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1535.50">std..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1509" width="3.0194%" height="15" fill="rgb(206,188,39)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1519.50">&lt;bz..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1493" width="3.0194%" height="15" fill="rgb(217,207,13)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1503.50">&lt;bz..</text></g><g><title>bzip2::mem::Decompress::decompress (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1477" width="3.0194%" height="15" fill="rgb(231,73,38)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1487.50">bzi..</text></g><g><title>BZ2_bzDecompress (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1461" width="3.0194%" height="15" fill="rgb(225,20,46)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1471.50">BZ2..</text></g><g><title>BZ2_decompress (126,942,966 samples, 3.02%)</title><rect x="1.7529%" y="1445" width="3.0194%" height="15" fill="rgb(210,31,41)" fg:x="73696958" fg:w="126942966"/><text x="2.0029%" y="1455.50">BZ2..</text></g><g><title>[libc.so.6] (3,515,647 samples, 0.08%)</title><rect x="4.6887%" y="1429" width="0.0836%" height="15" fill="rgb(221,200,47)" fg:x="197124277" fg:w="3515647"/><text x="4.9387%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1701" width="4.6829%" height="15" fill="rgb(226,26,5)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1711.50">rayon..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1685" width="4.6829%" height="15" fill="rgb(249,33,26)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1695.50">&lt;rayo..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1669" width="4.6829%" height="15" fill="rgb(235,183,28)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1679.50">rayon..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1653" width="4.6829%" height="15" fill="rgb(221,5,38)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1663.50">&lt;core..</text></g><g><title>core::option::Option&lt;T&gt;::map (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1637" width="4.6829%" height="15" fill="rgb(247,18,42)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1647.50">core:..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1621" width="4.6829%" height="15" fill="rgb(241,131,45)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1631.50">core:..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1605" width="4.6829%" height="15" fill="rgb(249,31,29)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1615.50">core:..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (196,878,955 samples, 4.68%)</title><rect x="0.0899%" y="1589" width="4.6829%" height="15" fill="rgb(225,111,53)" fg:x="3777875" fg:w="196878955"/><text x="0.3399%" y="1599.50">wxbox..</text></g><g><title>core::io::borrowed_buf::BorrowedCursor::ensure_init (3,832,171 samples, 0.09%)</title><rect x="4.7728%" y="1269" width="0.0912%" height="15" fill="rgb(238,160,17)" fg:x="200659665" fg:w="3832171"/><text x="5.0228%" y="1279.50"></text></g><g><title>core::intrinsics::write_bytes (3,832,171 samples, 0.09%)</title><rect x="4.7728%" y="1253" width="0.0912%" height="15" fill="rgb(214,148,48)" fg:x="200659665" fg:w="3832171"/><text x="5.0228%" y="1263.50"></text></g><g><title>[libc.so.6] (3,832,171 samples, 0.09%)</title><rect x="4.7728%" y="1237" width="0.0912%" height="15" fill="rgb(232,36,49)" fg:x="200659665" fg:w="3832171"/><text x="5.0228%" y="1247.50"></text></g><g><title>std::io::Read::read_buf (57,909,334 samples, 1.38%)</title><rect x="4.7728%" y="1301" width="1.3774%" height="15" fill="rgb(209,103,24)" fg:x="200659665" fg:w="57909334"/><text x="5.0228%" y="1311.50"></text></g><g><title>std::io::default_read_buf (57,909,334 samples, 1.38%)</title><rect x="4.7728%" y="1285" width="1.3774%" height="15" fill="rgb(229,88,8)" fg:x="200659665" fg:w="57909334"/><text x="5.0228%" y="1295.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (54,077,163 samples, 1.29%)</title><rect x="4.8639%" y="1269" width="1.2863%" height="15" fill="rgb(213,181,19)" fg:x="204491836" fg:w="54077163"/><text x="5.1139%" y="1279.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (54,077,163 samples, 1.29%)</title><rect x="4.8639%" y="1253" width="1.2863%" height="15" fill="rgb(254,191,54)" fg:x="204491836" fg:w="54077163"/><text x="5.1139%" y="1263.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (54,077,163 samples, 1.29%)</title><rect x="4.8639%" y="1237" width="1.2863%" height="15" fill="rgb(241,83,37)" fg:x="204491836" fg:w="54077163"/><text x="5.1139%" y="1247.50"></text></g><g><title>bzip2::mem::Decompress::decompress (54,077,163 samples, 1.29%)</title><rect x="4.8639%" y="1221" width="1.2863%" height="15" fill="rgb(233,36,39)" fg:x="204491836" fg:w="54077163"/><text x="5.1139%" y="1231.50"></text></g><g><title>BZ2_bzDecompress (54,077,163 samples, 1.29%)</title><rect x="4.8639%" y="1205" width="1.2863%" height="15" fill="rgb(226,3,54)" fg:x="204491836" fg:w="54077163"/><text x="5.1139%" y="1215.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (161,035,774 samples, 3.83%)</title><rect x="4.7728%" y="1349" width="3.8303%" height="15" fill="rgb(245,192,40)" fg:x="200659665" fg:w="161035774"/><text x="5.0228%" y="1359.50">nexr..</text></g><g><title>std::io::Read::read_to_end (161,035,774 samples, 3.83%)</title><rect x="4.7728%" y="1333" width="3.8303%" height="15" fill="rgb(238,167,29)" fg:x="200659665" fg:w="161035774"/><text x="5.0228%" y="1343.50">std:..</text></g><g><title>std::io::default_read_to_end (161,035,774 samples, 3.83%)</title><rect x="4.7728%" y="1317" width="3.8303%" height="15" fill="rgb(232,182,51)" fg:x="200659665" fg:w="161035774"/><text x="5.0228%" y="1327.50">std:..</text></g><g><title>std::io::default_read_to_end::small_probe_read (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1301" width="2.4529%" height="15" fill="rgb(231,60,39)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1311.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1285" width="2.4529%" height="15" fill="rgb(208,69,12)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1295.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1269" width="2.4529%" height="15" fill="rgb(235,93,37)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1279.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1253" width="2.4529%" height="15" fill="rgb(213,116,39)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1263.50">bz..</text></g><g><title>BZ2_bzDecompress (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1237" width="2.4529%" height="15" fill="rgb(222,207,29)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1247.50">BZ..</text></g><g><title>BZ2_decompress (103,126,440 samples, 2.45%)</title><rect x="6.1502%" y="1221" width="2.4529%" height="15" fill="rgb(206,96,30)" fg:x="258568999" fg:w="103126440"/><text x="6.4002%" y="1231.50">BZ..</text></g><g><title>[libc.so.6] (3,603,693 samples, 0.09%)</title><rect x="8.5174%" y="1205" width="0.0857%" height="15" fill="rgb(218,138,4)" fg:x="358091746" fg:w="3603693"/><text x="8.7674%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1477" width="3.9261%" height="15" fill="rgb(250,191,14)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1487.50">rayo..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1461" width="3.9261%" height="15" fill="rgb(239,60,40)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1471.50">&lt;ray..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1445" width="3.9261%" height="15" fill="rgb(206,27,48)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1455.50">rayo..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1429" width="3.9261%" height="15" fill="rgb(225,35,8)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1439.50">&lt;cor..</text></g><g><title>core::option::Option&lt;T&gt;::map (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1413" width="3.9261%" height="15" fill="rgb(250,213,24)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1423.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1397" width="3.9261%" height="15" fill="rgb(247,123,22)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1407.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1381" width="3.9261%" height="15" fill="rgb(231,138,38)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1391.50">core..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (165,062,113 samples, 3.93%)</title><rect x="4.7728%" y="1365" width="3.9261%" height="15" fill="rgb(231,145,46)" fg:x="200659665" fg:w="165062113"/><text x="5.0228%" y="1375.50">wxbo..</text></g><g><title>nexrad_data::volume::record::Record::messages (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1349" width="0.0958%" height="15" fill="rgb(251,118,11)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1359.50"></text></g><g><title>nexrad_decode::messages::decode_messages (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1333" width="0.0958%" height="15" fill="rgb(217,147,25)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1343.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1317" width="0.0958%" height="15" fill="rgb(247,81,37)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1327.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1301" width="0.0958%" height="15" fill="rgb(209,12,38)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1311.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock::new (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1285" width="0.0958%" height="15" fill="rgb(227,1,9)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1295.50"></text></g><g><title>alloc::vec::from_elem (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1269" width="0.0958%" height="15" fill="rgb(248,47,43)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1279.50"></text></g><g><title>&lt;u8 as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1253" width="0.0958%" height="15" fill="rgb(221,10,30)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1263.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1237" width="0.0958%" height="15" fill="rgb(210,229,1)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1247.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_zeroed_in (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1221" width="0.0958%" height="15" fill="rgb(222,148,37)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1231.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1205" width="0.0958%" height="15" fill="rgb(234,67,33)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1215.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1189" width="0.0958%" height="15" fill="rgb(247,98,35)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1199.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1173" width="0.0958%" height="15" fill="rgb(247,138,52)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1183.50"></text></g><g><title>alloc::alloc::alloc_zeroed (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1157" width="0.0958%" height="15" fill="rgb(213,79,30)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1167.50"></text></g><g><title>__rdl_alloc_zeroed (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1141" width="0.0958%" height="15" fill="rgb(246,177,23)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1151.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1125" width="0.0958%" height="15" fill="rgb(230,62,27)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1135.50"></text></g><g><title>__libc_calloc (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1109" width="0.0958%" height="15" fill="rgb(216,154,8)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1119.50"></text></g><g><title>[libc.so.6] (4,026,339 samples, 0.10%)</title><rect x="8.6031%" y="1093" width="0.0958%" height="15" fill="rgb(244,35,45)" fg:x="361695439" fg:w="4026339"/><text x="8.8531%" y="1103.50"></text></g><g><title>std::io::Read::read_buf (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1189" width="0.2597%" height="15" fill="rgb(251,115,12)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1199.50"></text></g><g><title>std::io::default_read_buf (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1173" width="0.2597%" height="15" fill="rgb(240,54,50)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1183.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1157" width="0.2597%" height="15" fill="rgb(233,84,52)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1167.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1141" width="0.2597%" height="15" fill="rgb(207,117,47)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1151.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1125" width="0.2597%" height="15" fill="rgb(249,43,39)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1135.50"></text></g><g><title>bzip2::mem::Decompress::decompress (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1109" width="0.2597%" height="15" fill="rgb(209,38,44)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1119.50"></text></g><g><title>BZ2_bzDecompress (10,919,821 samples, 0.26%)</title><rect x="8.6989%" y="1093" width="0.2597%" height="15" fill="rgb(236,212,23)" fg:x="365721778" fg:w="10919821"/><text x="8.9489%" y="1103.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1429" width="0.7558%" height="15" fill="rgb(242,79,21)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1413" width="0.7558%" height="15" fill="rgb(211,96,35)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1397" width="0.7558%" height="15" fill="rgb(253,215,40)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1381" width="0.7558%" height="15" fill="rgb(211,81,21)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1365" width="0.7558%" height="15" fill="rgb(208,190,38)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1375.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1349" width="0.7558%" height="15" fill="rgb(235,213,38)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1333" width="0.7558%" height="15" fill="rgb(237,122,38)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1343.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1317" width="0.7558%" height="15" fill="rgb(244,218,35)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1301" width="0.7558%" height="15" fill="rgb(240,68,47)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1311.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1285" width="0.7558%" height="15" fill="rgb(210,16,53)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1295.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1269" width="0.7558%" height="15" fill="rgb(235,124,12)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1279.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1253" width="0.7558%" height="15" fill="rgb(224,169,11)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1263.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1237" width="0.7558%" height="15" fill="rgb(250,166,2)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1247.50"></text></g><g><title>std::io::Read::read_to_end (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1221" width="0.7558%" height="15" fill="rgb(242,216,29)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1231.50"></text></g><g><title>std::io::default_read_to_end (31,773,610 samples, 0.76%)</title><rect x="8.6989%" y="1205" width="0.7558%" height="15" fill="rgb(230,116,27)" fg:x="365721778" fg:w="31773610"/><text x="8.9489%" y="1215.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1189" width="0.4960%" height="15" fill="rgb(228,99,48)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1199.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1173" width="0.4960%" height="15" fill="rgb(253,11,6)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1183.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1157" width="0.4960%" height="15" fill="rgb(247,143,39)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1167.50"></text></g><g><title>bzip2::mem::Decompress::decompress (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1141" width="0.4960%" height="15" fill="rgb(236,97,10)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1151.50"></text></g><g><title>BZ2_bzDecompress (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1125" width="0.4960%" height="15" fill="rgb(233,208,19)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1135.50"></text></g><g><title>BZ2_decompress (20,853,789 samples, 0.50%)</title><rect x="8.9586%" y="1109" width="0.4960%" height="15" fill="rgb(216,164,2)" fg:x="376641599" fg:w="20853789"/><text x="9.2086%" y="1119.50"></text></g><g><title>[libc.so.6] (3,392,988 samples, 0.08%)</title><rect x="9.3739%" y="1093" width="0.0807%" height="15" fill="rgb(220,129,5)" fg:x="394102400" fg:w="3392988"/><text x="9.6239%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1189" width="0.0935%" height="15" fill="rgb(242,17,10)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1199.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1173" width="0.0935%" height="15" fill="rgb(242,107,0)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1157" width="0.0935%" height="15" fill="rgb(251,28,31)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1167.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1141" width="0.0935%" height="15" fill="rgb(233,223,10)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1151.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1125" width="0.0935%" height="15" fill="rgb(215,21,27)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1135.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1109" width="0.0935%" height="15" fill="rgb(232,23,21)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1119.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1093" width="0.0935%" height="15" fill="rgb(244,5,23)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1103.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1077" width="0.0935%" height="15" fill="rgb(226,81,46)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1087.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1061" width="0.0935%" height="15" fill="rgb(247,70,30)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1071.50"></text></g><g><title>std::io::Read::read_to_end (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1045" width="0.0935%" height="15" fill="rgb(212,68,19)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1055.50"></text></g><g><title>std::io::default_read_to_end (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1029" width="0.0935%" height="15" fill="rgb(240,187,13)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1039.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="1013" width="0.0935%" height="15" fill="rgb(223,113,26)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1023.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="997" width="0.0935%" height="15" fill="rgb(206,192,2)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="1007.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="981" width="0.0935%" height="15" fill="rgb(241,108,4)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="991.50"></text></g><g><title>bzip2::mem::Decompress::decompress (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="965" width="0.0935%" height="15" fill="rgb(247,173,49)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="975.50"></text></g><g><title>BZ2_bzDecompress (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="949" width="0.0935%" height="15" fill="rgb(224,114,35)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="959.50"></text></g><g><title>BZ2_decompress (3,929,723 samples, 0.09%)</title><rect x="9.4546%" y="933" width="0.0935%" height="15" fill="rgb(245,159,27)" fg:x="397495388" fg:w="3929723"/><text x="9.7046%" y="943.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="885" width="0.0942%" height="15" fill="rgb(245,172,44)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="895.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="869" width="0.0942%" height="15" fill="rgb(236,23,11)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="879.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="853" width="0.0942%" height="15" fill="rgb(205,117,38)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="863.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::message::Message as core::clone::Clone&gt;::clone (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="837" width="0.0942%" height="15" fill="rgb(237,72,25)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="847.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="821" width="0.0942%" height="15" fill="rgb(244,70,9)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="831.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock as core::clone::Clone&gt;::clone (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="805" width="0.0942%" height="15" fill="rgb(217,125,39)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="815.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="789" width="0.0942%" height="15" fill="rgb(235,36,10)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="799.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="773" width="0.0942%" height="15" fill="rgb(251,123,47)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="783.50"></text></g><g><title>alloc::slice::hack::to_vec (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="757" width="0.0942%" height="15" fill="rgb(221,13,13)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="767.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="741" width="0.0942%" height="15" fill="rgb(238,131,9)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="751.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="725" width="0.0942%" height="15" fill="rgb(211,50,8)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="709" width="0.0942%" height="15" fill="rgb(245,182,24)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="719.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="693" width="0.0942%" height="15" fill="rgb(242,14,37)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="703.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="677" width="0.0942%" height="15" fill="rgb(246,228,12)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="687.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="661" width="0.0942%" height="15" fill="rgb(213,55,15)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="671.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="645" width="0.0942%" height="15" fill="rgb(209,9,3)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="655.50"></text></g><g><title>alloc::alloc::alloc (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="629" width="0.0942%" height="15" fill="rgb(230,59,30)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="639.50"></text></g><g><title>__rdl_alloc (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="613" width="0.0942%" height="15" fill="rgb(209,121,21)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="623.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="597" width="0.0942%" height="15" fill="rgb(220,109,13)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="607.50"></text></g><g><title>malloc (3,958,709 samples, 0.09%)</title><rect x="9.5481%" y="581" width="0.0942%" height="15" fill="rgb(232,18,1)" fg:x="401425111" fg:w="3958709"/><text x="9.7981%" y="591.50"></text></g><g><title>std::io::Read::read_buf (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="837" width="0.5799%" height="15" fill="rgb(215,41,42)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="847.50"></text></g><g><title>std::io::default_read_buf (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="821" width="0.5799%" height="15" fill="rgb(224,123,36)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="831.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="805" width="0.5799%" height="15" fill="rgb(240,125,3)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="815.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="789" width="0.5799%" height="15" fill="rgb(205,98,50)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="799.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="773" width="0.5799%" height="15" fill="rgb(205,185,37)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="783.50"></text></g><g><title>bzip2::mem::Decompress::decompress (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="757" width="0.5799%" height="15" fill="rgb(238,207,15)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="767.50"></text></g><g><title>BZ2_bzDecompress (24,382,333 samples, 0.58%)</title><rect x="9.6423%" y="741" width="0.5799%" height="15" fill="rgb(213,199,42)" fg:x="405383820" fg:w="24382333"/><text x="9.8923%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1429" width="1.6554%" height="15" fill="rgb(235,201,11)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1413" width="1.6554%" height="15" fill="rgb(207,46,11)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1397" width="1.6554%" height="15" fill="rgb(241,35,35)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1407.50"></text></g><g><title>rayon_core::job::JobRef::execute (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1381" width="1.6554%" height="15" fill="rgb(243,32,47)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1391.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1365" width="1.6554%" height="15" fill="rgb(247,202,23)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1375.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1349" width="1.6554%" height="15" fill="rgb(219,102,11)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1333" width="1.6554%" height="15" fill="rgb(243,110,44)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1343.50"></text></g><g><title>std::panic::catch_unwind (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1317" width="1.6554%" height="15" fill="rgb(222,74,54)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1327.50"></text></g><g><title>std::panicking::try (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1301" width="1.6554%" height="15" fill="rgb(216,99,12)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1311.50"></text></g><g><title>std::panicking::try::do_call (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1285" width="1.6554%" height="15" fill="rgb(226,22,26)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1295.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1269" width="1.6554%" height="15" fill="rgb(217,163,10)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1279.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1253" width="1.6554%" height="15" fill="rgb(213,25,53)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1237" width="1.6554%" height="15" fill="rgb(252,105,26)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1221" width="1.6554%" height="15" fill="rgb(220,39,43)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69,596,485 samples, 1.66%)</title><rect x="9.4546%" y="1205" width="1.6554%" height="15" fill="rgb(229,68,48)" fg:x="397495388" fg:w="69596485"/><text x="9.7046%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1189" width="1.5619%" height="15" fill="rgb(252,8,32)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1173" width="1.5619%" height="15" fill="rgb(223,20,43)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1157" width="1.5619%" height="15" fill="rgb(229,81,49)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1141" width="1.5619%" height="15" fill="rgb(236,28,36)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1125" width="1.5619%" height="15" fill="rgb(249,185,26)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1135.50"></text></g><g><title>std::panicking::try (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1109" width="1.5619%" height="15" fill="rgb(249,174,33)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1093" width="1.5619%" height="15" fill="rgb(233,201,37)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1103.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1077" width="1.5619%" height="15" fill="rgb(221,78,26)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1061" width="1.5619%" height="15" fill="rgb(250,127,30)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1045" width="1.5619%" height="15" fill="rgb(230,49,44)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1029" width="1.5619%" height="15" fill="rgb(229,67,23)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="1013" width="1.5619%" height="15" fill="rgb(249,83,47)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1023.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="997" width="1.5619%" height="15" fill="rgb(215,43,3)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="981" width="1.5619%" height="15" fill="rgb(238,154,13)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="991.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="965" width="1.5619%" height="15" fill="rgb(219,56,2)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="949" width="1.5619%" height="15" fill="rgb(233,0,4)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="959.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="933" width="1.5619%" height="15" fill="rgb(235,30,7)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="943.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="917" width="1.5619%" height="15" fill="rgb(250,79,13)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="927.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (65,666,762 samples, 1.56%)</title><rect x="9.5481%" y="901" width="1.5619%" height="15" fill="rgb(211,146,34)" fg:x="401425111" fg:w="65666762"/><text x="9.7981%" y="911.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (61,708,053 samples, 1.47%)</title><rect x="9.6423%" y="885" width="1.4678%" height="15" fill="rgb(228,22,38)" fg:x="405383820" fg:w="61708053"/><text x="9.8923%" y="895.50"></text></g><g><title>std::io::Read::read_to_end (61,708,053 samples, 1.47%)</title><rect x="9.6423%" y="869" width="1.4678%" height="15" fill="rgb(235,168,5)" fg:x="405383820" fg:w="61708053"/><text x="9.8923%" y="879.50"></text></g><g><title>std::io::default_read_to_end (61,708,053 samples, 1.47%)</title><rect x="9.6423%" y="853" width="1.4678%" height="15" fill="rgb(221,155,16)" fg:x="405383820" fg:w="61708053"/><text x="9.8923%" y="863.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="837" width="0.8878%" height="15" fill="rgb(215,215,53)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="847.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="821" width="0.8878%" height="15" fill="rgb(223,4,10)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="831.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="805" width="0.8878%" height="15" fill="rgb(234,103,6)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="815.50"></text></g><g><title>bzip2::mem::Decompress::decompress (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="789" width="0.8878%" height="15" fill="rgb(227,97,0)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="799.50"></text></g><g><title>BZ2_bzDecompress (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="773" width="0.8878%" height="15" fill="rgb(234,150,53)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="783.50"></text></g><g><title>BZ2_decompress (37,325,720 samples, 0.89%)</title><rect x="10.2222%" y="757" width="0.8878%" height="15" fill="rgb(228,201,54)" fg:x="429766153" fg:w="37325720"/><text x="10.4722%" y="767.50"></text></g><g><title>std::io::Read::read_buf (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1125" width="0.8152%" height="15" fill="rgb(222,22,37)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1135.50"></text></g><g><title>std::io::default_read_buf (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1109" width="0.8152%" height="15" fill="rgb(237,53,32)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1119.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1093" width="0.8152%" height="15" fill="rgb(233,25,53)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1103.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1077" width="0.8152%" height="15" fill="rgb(210,40,34)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1087.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1061" width="0.8152%" height="15" fill="rgb(241,220,44)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1071.50"></text></g><g><title>bzip2::mem::Decompress::decompress (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1045" width="0.8152%" height="15" fill="rgb(235,28,35)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1055.50"></text></g><g><title>BZ2_bzDecompress (34,273,058 samples, 0.82%)</title><rect x="11.1100%" y="1029" width="0.8152%" height="15" fill="rgb(210,56,17)" fg:x="467091873" fg:w="34273058"/><text x="11.3600%" y="1039.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (93,161,064 samples, 2.22%)</title><rect x="11.1100%" y="1173" width="2.2159%" height="15" fill="rgb(224,130,29)" fg:x="467091873" fg:w="93161064"/><text x="11.3600%" y="1183.50">n..</text></g><g><title>std::io::Read::read_to_end (93,161,064 samples, 2.22%)</title><rect x="11.1100%" y="1157" width="2.2159%" height="15" fill="rgb(235,212,8)" fg:x="467091873" fg:w="93161064"/><text x="11.3600%" y="1167.50">s..</text></g><g><title>std::io::default_read_to_end (93,161,064 samples, 2.22%)</title><rect x="11.1100%" y="1141" width="2.2159%" height="15" fill="rgb(223,33,50)" fg:x="467091873" fg:w="93161064"/><text x="11.3600%" y="1151.50">s..</text></g><g><title>std::io::default_read_to_end::small_probe_read (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1125" width="1.4007%" height="15" fill="rgb(219,149,13)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1135.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1109" width="1.4007%" height="15" fill="rgb(250,156,29)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1119.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1093" width="1.4007%" height="15" fill="rgb(216,193,19)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1103.50"></text></g><g><title>bzip2::mem::Decompress::decompress (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1077" width="1.4007%" height="15" fill="rgb(216,135,14)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1087.50"></text></g><g><title>BZ2_bzDecompress (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1061" width="1.4007%" height="15" fill="rgb(241,47,5)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1071.50"></text></g><g><title>BZ2_decompress (58,888,006 samples, 1.40%)</title><rect x="11.9252%" y="1045" width="1.4007%" height="15" fill="rgb(233,42,35)" fg:x="501364931" fg:w="58888006"/><text x="12.1752%" y="1055.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1141" width="0.0864%" height="15" fill="rgb(231,13,6)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1151.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1125" width="0.0864%" height="15" fill="rgb(207,181,40)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1135.50"></text></g><g><title>nexrad_decode::util::deserialize (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1109" width="0.0864%" height="15" fill="rgb(254,173,49)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1119.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1093" width="0.0864%" height="15" fill="rgb(221,1,38)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1103.50"></text></g><g><title>bincode::internal::deserialize_from (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1077" width="0.0864%" height="15" fill="rgb(206,124,46)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1087.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1061" width="0.0864%" height="15" fill="rgb(249,21,11)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1071.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1045" width="0.0864%" height="15" fill="rgb(222,201,40)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1055.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1029" width="0.0864%" height="15" fill="rgb(235,61,29)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1039.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId&gt;::deserialize (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="1013" width="0.0864%" height="15" fill="rgb(219,207,3)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1023.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="997" width="0.0864%" height="15" fill="rgb(222,56,46)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="1007.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="981" width="0.0864%" height="15" fill="rgb(239,76,54)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="991.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::data_block_id::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,633,494 samples, 0.09%)</title><rect x="13.3259%" y="965" width="0.0864%" height="15" fill="rgb(231,124,27)" fg:x="560252937" fg:w="3633494"/><text x="13.5759%" y="975.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (367,234,880 samples, 8.73%)</title><rect x="4.7728%" y="1541" width="8.7349%" height="15" fill="rgb(249,195,6)" fg:x="200659665" fg:w="367234880"/><text x="5.0228%" y="1551.50">rayon_core::..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (367,234,880 samples, 8.73%)</title><rect x="4.7728%" y="1525" width="8.7349%" height="15" fill="rgb(237,174,47)" fg:x="200659665" fg:w="367234880"/><text x="5.0228%" y="1535.50">rayon_core::..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (367,234,880 samples, 8.73%)</title><rect x="4.7728%" y="1509" width="8.7349%" height="15" fill="rgb(206,201,31)" fg:x="200659665" fg:w="367234880"/><text x="5.0228%" y="1519.50">rayon::iter:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (367,234,880 samples, 8.73%)</title><rect x="4.7728%" y="1493" width="8.7349%" height="15" fill="rgb(231,57,52)" fg:x="200659665" fg:w="367234880"/><text x="5.0228%" y="1503.50">rayon::iter:..</text></g><g><title>rayon_core::join::join_context (202,172,767 samples, 4.81%)</title><rect x="8.6989%" y="1477" width="4.8088%" height="15" fill="rgb(248,177,22)" fg:x="365721778" fg:w="202172767"/><text x="8.9489%" y="1487.50">rayon_..</text></g><g><title>rayon_core::registry::in_worker (202,172,767 samples, 4.81%)</title><rect x="8.6989%" y="1461" width="4.8088%" height="15" fill="rgb(215,211,37)" fg:x="365721778" fg:w="202172767"/><text x="8.9489%" y="1471.50">rayon_..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (202,172,767 samples, 4.81%)</title><rect x="8.6989%" y="1445" width="4.8088%" height="15" fill="rgb(241,128,51)" fg:x="365721778" fg:w="202172767"/><text x="8.9489%" y="1455.50">rayon_..</text></g><g><title>rayon_core::unwind::halt_unwinding (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1429" width="2.3976%" height="15" fill="rgb(227,165,31)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1439.50">ra..</text></g><g><title>std::panic::catch_unwind (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1413" width="2.3976%" height="15" fill="rgb(228,167,24)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1423.50">st..</text></g><g><title>std::panicking::try (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1397" width="2.3976%" height="15" fill="rgb(228,143,12)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1407.50">st..</text></g><g><title>std::panicking::try::do_call (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1381" width="2.3976%" height="15" fill="rgb(249,149,8)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1391.50">st..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1365" width="2.3976%" height="15" fill="rgb(243,35,44)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1375.50">&lt;c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1349" width="2.3976%" height="15" fill="rgb(246,89,9)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1359.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1333" width="2.3976%" height="15" fill="rgb(233,213,13)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1343.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1317" width="2.3976%" height="15" fill="rgb(233,141,41)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1327.50">ra..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1301" width="2.3976%" height="15" fill="rgb(239,167,4)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1311.50">ra..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1285" width="2.3976%" height="15" fill="rgb(209,217,16)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1295.50">&lt;r..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1269" width="2.3976%" height="15" fill="rgb(219,88,35)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1279.50">ra..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1253" width="2.3976%" height="15" fill="rgb(220,193,23)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1263.50">&lt;c..</text></g><g><title>core::option::Option&lt;T&gt;::map (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1237" width="2.3976%" height="15" fill="rgb(230,90,52)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1247.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1221" width="2.3976%" height="15" fill="rgb(252,106,19)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1231.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1205" width="2.3976%" height="15" fill="rgb(206,74,20)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1215.50">co..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (100,802,672 samples, 2.40%)</title><rect x="11.1100%" y="1189" width="2.3976%" height="15" fill="rgb(230,138,44)" fg:x="467091873" fg:w="100802672"/><text x="11.3600%" y="1199.50">wx..</text></g><g><title>nexrad_data::volume::record::Record::messages (7,641,608 samples, 0.18%)</title><rect x="13.3259%" y="1173" width="0.1818%" height="15" fill="rgb(235,182,43)" fg:x="560252937" fg:w="7641608"/><text x="13.5759%" y="1183.50"></text></g><g><title>nexrad_decode::messages::decode_messages (7,641,608 samples, 0.18%)</title><rect x="13.3259%" y="1157" width="0.1818%" height="15" fill="rgb(242,16,51)" fg:x="560252937" fg:w="7641608"/><text x="13.5759%" y="1167.50"></text></g><g><title>nexrad_decode::messages::decode_message_header (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1141" width="0.0953%" height="15" fill="rgb(248,9,4)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1151.50"></text></g><g><title>nexrad_decode::util::deserialize (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1125" width="0.0953%" height="15" fill="rgb(210,31,22)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1135.50"></text></g><g><title>bincode::config::Options::deserialize_from (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1109" width="0.0953%" height="15" fill="rgb(239,54,39)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1119.50"></text></g><g><title>bincode::internal::deserialize_from (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1093" width="0.0953%" height="15" fill="rgb(230,99,41)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1103.50"></text></g><g><title>bincode::internal::deserialize_from_seed (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1077" width="0.0953%" height="15" fill="rgb(253,106,12)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1087.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1061" width="0.0953%" height="15" fill="rgb(213,46,41)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1071.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1045" width="0.0953%" height="15" fill="rgb(215,133,35)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1055.50"></text></g><g><title>nexrad_decode::messages::message_header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::message_header::MessageHeader&gt;::deserialize (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1029" width="0.0953%" height="15" fill="rgb(213,28,5)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1039.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="1013" width="0.0953%" height="15" fill="rgb(215,77,49)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1023.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="997" width="0.0953%" height="15" fill="rgb(248,100,22)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="1007.50"></text></g><g><title>&lt;nexrad_decode::messages::message_header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::message_header::MessageHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (4,008,114 samples, 0.10%)</title><rect x="13.4123%" y="981" width="0.0953%" height="15" fill="rgb(208,67,9)" fg:x="563886431" fg:w="4008114"/><text x="13.6623%" y="991.50"></text></g><g><title>std::io::Read::read_buf (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="661" width="1.0151%" height="15" fill="rgb(219,133,21)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="671.50"></text></g><g><title>std::io::default_read_buf (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="645" width="1.0151%" height="15" fill="rgb(246,46,29)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="655.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="629" width="1.0151%" height="15" fill="rgb(246,185,52)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="639.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="613" width="1.0151%" height="15" fill="rgb(252,136,11)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="623.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="597" width="1.0151%" height="15" fill="rgb(219,138,53)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="607.50"></text></g><g><title>bzip2::mem::Decompress::decompress (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="581" width="1.0151%" height="15" fill="rgb(211,51,23)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="591.50"></text></g><g><title>BZ2_bzDecompress (42,677,761 samples, 1.02%)</title><rect x="13.5077%" y="565" width="1.0151%" height="15" fill="rgb(247,221,28)" fg:x="567894545" fg:w="42677761"/><text x="13.7577%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="1077" width="2.2453%" height="15" fill="rgb(251,222,45)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1087.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="1061" width="2.2453%" height="15" fill="rgb(217,162,53)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1071.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="1045" width="2.2453%" height="15" fill="rgb(229,93,14)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1055.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="1029" width="2.2453%" height="15" fill="rgb(209,67,49)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1039.50">r..</text></g><g><title>rayon_core::join::join_context (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="1013" width="2.2453%" height="15" fill="rgb(213,87,29)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1023.50">r..</text></g><g><title>rayon_core::registry::in_worker (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="997" width="2.2453%" height="15" fill="rgb(205,151,52)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="1007.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="981" width="2.2453%" height="15" fill="rgb(253,215,39)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="991.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="965" width="2.2453%" height="15" fill="rgb(221,220,41)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="975.50">r..</text></g><g><title>std::panic::catch_unwind (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="949" width="2.2453%" height="15" fill="rgb(218,133,21)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="959.50">s..</text></g><g><title>std::panicking::try (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="933" width="2.2453%" height="15" fill="rgb(221,193,43)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="943.50">s..</text></g><g><title>std::panicking::try::do_call (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="917" width="2.2453%" height="15" fill="rgb(240,128,52)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="927.50">s..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="901" width="2.2453%" height="15" fill="rgb(253,114,12)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="911.50">&lt;..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="885" width="2.2453%" height="15" fill="rgb(215,223,47)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="895.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="869" width="2.2453%" height="15" fill="rgb(248,225,23)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="879.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="853" width="2.2453%" height="15" fill="rgb(250,108,0)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="863.50">r..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="837" width="2.2453%" height="15" fill="rgb(228,208,7)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="847.50">r..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="821" width="2.2453%" height="15" fill="rgb(244,45,10)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="831.50">&lt;..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="805" width="2.2453%" height="15" fill="rgb(207,125,25)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="815.50">r..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="789" width="2.2453%" height="15" fill="rgb(210,195,18)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="799.50">&lt;..</text></g><g><title>core::option::Option&lt;T&gt;::map (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="773" width="2.2453%" height="15" fill="rgb(249,80,12)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="783.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="757" width="2.2453%" height="15" fill="rgb(221,65,9)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="767.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="741" width="2.2453%" height="15" fill="rgb(235,49,36)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="751.50">c..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="725" width="2.2453%" height="15" fill="rgb(225,32,20)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="735.50">w..</text></g><g><title>nexrad_data::volume::record::Record::decompress (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="709" width="2.2453%" height="15" fill="rgb(215,141,46)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="719.50">n..</text></g><g><title>std::io::Read::read_to_end (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="693" width="2.2453%" height="15" fill="rgb(250,160,47)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="703.50">s..</text></g><g><title>std::io::default_read_to_end (94,399,595 samples, 2.25%)</title><rect x="13.5077%" y="677" width="2.2453%" height="15" fill="rgb(216,222,40)" fg:x="567894545" fg:w="94399595"/><text x="13.7577%" y="687.50">s..</text></g><g><title>std::io::default_read_to_end::small_probe_read (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="661" width="1.2302%" height="15" fill="rgb(234,217,39)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="671.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="645" width="1.2302%" height="15" fill="rgb(207,178,40)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="655.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="629" width="1.2302%" height="15" fill="rgb(221,136,13)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="639.50"></text></g><g><title>bzip2::mem::Decompress::decompress (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="613" width="1.2302%" height="15" fill="rgb(249,199,10)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="623.50"></text></g><g><title>BZ2_bzDecompress (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="597" width="1.2302%" height="15" fill="rgb(249,222,13)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="607.50"></text></g><g><title>BZ2_decompress (51,721,834 samples, 1.23%)</title><rect x="14.5228%" y="581" width="1.2302%" height="15" fill="rgb(244,185,38)" fg:x="610572306" fg:w="51721834"/><text x="14.7728%" y="591.50"></text></g><g><title>[unknown] (3,816,284 samples, 0.09%)</title><rect x="15.6623%" y="565" width="0.0908%" height="15" fill="rgb(236,202,9)" fg:x="658477856" fg:w="3816284"/><text x="15.9123%" y="575.50"></text></g><g><title>std::io::Read::read_buf (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="773" width="0.3535%" height="15" fill="rgb(250,229,37)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="783.50"></text></g><g><title>std::io::default_read_buf (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="757" width="0.3535%" height="15" fill="rgb(206,174,23)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="767.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="741" width="0.3535%" height="15" fill="rgb(211,33,43)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="751.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="725" width="0.3535%" height="15" fill="rgb(245,58,50)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="735.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="709" width="0.3535%" height="15" fill="rgb(244,68,36)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="719.50"></text></g><g><title>bzip2::mem::Decompress::decompress (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="693" width="0.3535%" height="15" fill="rgb(232,229,15)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="703.50"></text></g><g><title>BZ2_bzDecompress (14,861,140 samples, 0.35%)</title><rect x="15.7530%" y="677" width="0.3535%" height="15" fill="rgb(254,30,23)" fg:x="662294140" fg:w="14861140"/><text x="16.0030%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1541" width="3.3429%" height="15" fill="rgb(235,160,14)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1551.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1525" width="3.3429%" height="15" fill="rgb(212,155,44)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1535.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::execute (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1509" width="3.3429%" height="15" fill="rgb(226,2,50)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1519.50">ray..</text></g><g><title>rayon_core::job::JobRef::execute (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1493" width="3.3429%" height="15" fill="rgb(234,177,6)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1503.50">ray..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1477" width="3.3429%" height="15" fill="rgb(217,24,9)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1487.50">&lt;ra..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1461" width="3.3429%" height="15" fill="rgb(220,13,46)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1471.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1445" width="3.3429%" height="15" fill="rgb(239,221,27)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1455.50">ray..</text></g><g><title>std::panic::catch_unwind (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1429" width="3.3429%" height="15" fill="rgb(222,198,25)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1439.50">std..</text></g><g><title>std::panicking::try (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1413" width="3.3429%" height="15" fill="rgb(211,99,13)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1423.50">std..</text></g><g><title>std::panicking::try::do_call (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1397" width="3.3429%" height="15" fill="rgb(232,111,31)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1407.50">std..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1381" width="3.3429%" height="15" fill="rgb(245,82,37)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1391.50">&lt;co..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1365" width="3.3429%" height="15" fill="rgb(227,149,46)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1375.50">ray..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1349" width="3.3429%" height="15" fill="rgb(218,36,50)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1359.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1333" width="3.3429%" height="15" fill="rgb(226,80,48)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1343.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1317" width="3.3429%" height="15" fill="rgb(238,224,15)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1327.50">ray..</text></g><g><title>rayon_core::join::join_context (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1301" width="3.3429%" height="15" fill="rgb(241,136,10)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1311.50">ray..</text></g><g><title>rayon_core::registry::in_worker (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1285" width="3.3429%" height="15" fill="rgb(208,32,45)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1295.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1269" width="3.3429%" height="15" fill="rgb(207,135,9)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1279.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1253" width="3.3429%" height="15" fill="rgb(206,86,44)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1263.50">ray..</text></g><g><title>std::panic::catch_unwind (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1237" width="3.3429%" height="15" fill="rgb(245,177,15)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1247.50">std..</text></g><g><title>std::panicking::try (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1221" width="3.3429%" height="15" fill="rgb(206,64,50)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1231.50">std..</text></g><g><title>std::panicking::try::do_call (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1205" width="3.3429%" height="15" fill="rgb(234,36,40)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1215.50">std..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1189" width="3.3429%" height="15" fill="rgb(213,64,8)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1199.50">&lt;co..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1173" width="3.3429%" height="15" fill="rgb(210,75,36)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1183.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1157" width="3.3429%" height="15" fill="rgb(229,88,21)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1167.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1141" width="3.3429%" height="15" fill="rgb(252,204,47)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1151.50">ray..</text></g><g><title>rayon_core::join::join_context (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1125" width="3.3429%" height="15" fill="rgb(208,77,27)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1135.50">ray..</text></g><g><title>rayon_core::registry::in_worker (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1109" width="3.3429%" height="15" fill="rgb(221,76,26)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1119.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (140,545,087 samples, 3.34%)</title><rect x="13.5077%" y="1093" width="3.3429%" height="15" fill="rgb(225,139,18)" fg:x="567894545" fg:w="140545087"/><text x="13.7577%" y="1103.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="1077" width="1.0976%" height="15" fill="rgb(230,137,11)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="1061" width="1.0976%" height="15" fill="rgb(212,28,1)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1071.50"></text></g><g><title>std::panicking::try (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="1045" width="1.0976%" height="15" fill="rgb(248,164,17)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="1029" width="1.0976%" height="15" fill="rgb(222,171,42)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1039.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="1013" width="1.0976%" height="15" fill="rgb(243,84,45)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="997" width="1.0976%" height="15" fill="rgb(252,49,23)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="981" width="1.0976%" height="15" fill="rgb(215,19,7)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="965" width="1.0976%" height="15" fill="rgb(238,81,41)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="975.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="949" width="1.0976%" height="15" fill="rgb(210,199,37)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="959.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="933" width="1.0976%" height="15" fill="rgb(244,192,49)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="943.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="917" width="1.0976%" height="15" fill="rgb(226,211,11)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="901" width="1.0976%" height="15" fill="rgb(236,162,54)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="885" width="1.0976%" height="15" fill="rgb(220,229,9)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="895.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="869" width="1.0976%" height="15" fill="rgb(250,87,22)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="879.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="853" width="1.0976%" height="15" fill="rgb(239,43,17)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="863.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="837" width="1.0976%" height="15" fill="rgb(231,177,25)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="847.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="821" width="1.0976%" height="15" fill="rgb(219,179,1)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="831.50"></text></g><g><title>std::io::Read::read_to_end (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="805" width="1.0976%" height="15" fill="rgb(238,219,53)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="815.50"></text></g><g><title>std::io::default_read_to_end (46,145,492 samples, 1.10%)</title><rect x="15.7530%" y="789" width="1.0976%" height="15" fill="rgb(232,167,36)" fg:x="662294140" fg:w="46145492"/><text x="16.0030%" y="799.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="773" width="0.7441%" height="15" fill="rgb(244,19,51)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="783.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="757" width="0.7441%" height="15" fill="rgb(224,6,22)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="767.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="741" width="0.7441%" height="15" fill="rgb(224,145,5)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="751.50"></text></g><g><title>bzip2::mem::Decompress::decompress (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="725" width="0.7441%" height="15" fill="rgb(234,130,49)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="735.50"></text></g><g><title>BZ2_bzDecompress (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="709" width="0.7441%" height="15" fill="rgb(254,6,2)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="719.50"></text></g><g><title>BZ2_decompress (31,284,352 samples, 0.74%)</title><rect x="16.1065%" y="693" width="0.7441%" height="15" fill="rgb(208,96,46)" fg:x="677155280" fg:w="31284352"/><text x="16.3565%" y="703.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1285" width="0.0921%" height="15" fill="rgb(239,3,39)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1295.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1269" width="0.0921%" height="15" fill="rgb(233,210,1)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1279.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1253" width="0.0921%" height="15" fill="rgb(244,137,37)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1263.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::message::Message as core::clone::Clone&gt;::clone (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1237" width="0.0921%" height="15" fill="rgb(240,136,2)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1247.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1221" width="0.0921%" height="15" fill="rgb(239,18,37)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1231.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock as core::clone::Clone&gt;::clone (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1205" width="0.0921%" height="15" fill="rgb(218,185,22)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1215.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1189" width="0.0921%" height="15" fill="rgb(225,218,4)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1199.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1173" width="0.0921%" height="15" fill="rgb(230,182,32)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1183.50"></text></g><g><title>alloc::slice::hack::to_vec (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1157" width="0.0921%" height="15" fill="rgb(242,56,43)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1167.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1141" width="0.0921%" height="15" fill="rgb(233,99,24)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1151.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1125" width="0.0921%" height="15" fill="rgb(234,209,42)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1135.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1109" width="0.0921%" height="15" fill="rgb(227,7,12)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1119.50"></text></g><g><title>[libc.so.6] (3,870,338 samples, 0.09%)</title><rect x="16.8506%" y="1093" width="0.0921%" height="15" fill="rgb(245,203,43)" fg:x="708439632" fg:w="3870338"/><text x="17.1006%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::Message&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1285" width="0.0868%" height="15" fill="rgb(238,205,33)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::MessageContents&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1269" width="0.0868%" height="15" fill="rgb(231,56,7)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;nexrad_decode::messages::digital_radar_data::message::Message&gt;&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1253" width="0.0868%" height="15" fill="rgb(244,186,29)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::digital_radar_data::message::Message&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1237" width="0.0868%" height="15" fill="rgb(234,111,31)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock&gt;&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1221" width="0.0868%" height="15" fill="rgb(241,149,10)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1205" width="0.0868%" height="15" fill="rgb(249,206,44)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1189" width="0.0868%" height="15" fill="rgb(251,153,30)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1199.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1173" width="0.0868%" height="15" fill="rgb(239,152,38)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1183.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1157" width="0.0868%" height="15" fill="rgb(249,139,47)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1167.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1141" width="0.0868%" height="15" fill="rgb(244,64,35)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1151.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1125" width="0.0868%" height="15" fill="rgb(216,46,15)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1135.50"></text></g><g><title>alloc::alloc::dealloc (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1109" width="0.0868%" height="15" fill="rgb(250,74,19)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1119.50"></text></g><g><title>__rdl_dealloc (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1093" width="0.0868%" height="15" fill="rgb(249,42,33)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1103.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1077" width="0.0868%" height="15" fill="rgb(242,149,17)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1087.50"></text></g><g><title>cfree (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1061" width="0.0868%" height="15" fill="rgb(244,29,21)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1071.50"></text></g><g><title>[libc.so.6] (3,650,069 samples, 0.09%)</title><rect x="16.9427%" y="1045" width="0.0868%" height="15" fill="rgb(220,130,37)" fg:x="712309970" fg:w="3650069"/><text x="17.1927%" y="1055.50"></text></g><g><title>std::io::Read::read_buf (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1237" width="2.9479%" height="15" fill="rgb(211,67,2)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1247.50">st..</text></g><g><title>std::io::default_read_buf (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1221" width="2.9479%" height="15" fill="rgb(235,68,52)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1231.50">st..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1205" width="2.9479%" height="15" fill="rgb(246,142,3)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1215.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1189" width="2.9479%" height="15" fill="rgb(241,25,7)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1199.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1173" width="2.9479%" height="15" fill="rgb(242,119,39)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1183.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1157" width="2.9479%" height="15" fill="rgb(241,98,45)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1167.50">bz..</text></g><g><title>BZ2_bzDecompress (123,935,720 samples, 2.95%)</title><rect x="17.0295%" y="1141" width="2.9479%" height="15" fill="rgb(254,28,30)" fg:x="715960039" fg:w="123935720"/><text x="17.2795%" y="1151.50">BZ..</text></g><g><title>nexrad_data::volume::record::Record::decompress (326,826,094 samples, 7.77%)</title><rect x="17.0295%" y="1285" width="7.7737%" height="15" fill="rgb(241,142,54)" fg:x="715960039" fg:w="326826094"/><text x="17.2795%" y="1295.50">nexrad_data..</text></g><g><title>std::io::Read::read_to_end (326,826,094 samples, 7.77%)</title><rect x="17.0295%" y="1269" width="7.7737%" height="15" fill="rgb(222,85,15)" fg:x="715960039" fg:w="326826094"/><text x="17.2795%" y="1279.50">std::io::Re..</text></g><g><title>std::io::default_read_to_end (326,826,094 samples, 7.77%)</title><rect x="17.0295%" y="1253" width="7.7737%" height="15" fill="rgb(210,85,47)" fg:x="715960039" fg:w="326826094"/><text x="17.2795%" y="1263.50">std::io::de..</text></g><g><title>std::io::default_read_to_end::small_probe_read (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1237" width="4.8259%" height="15" fill="rgb(224,206,25)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1247.50">std::i..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1221" width="4.8259%" height="15" fill="rgb(243,201,19)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1231.50">&lt;bzip2..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1205" width="4.8259%" height="15" fill="rgb(236,59,4)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1215.50">&lt;bzip2..</text></g><g><title>bzip2::mem::Decompress::decompress (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1189" width="4.8259%" height="15" fill="rgb(254,179,45)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1199.50">bzip2:..</text></g><g><title>BZ2_bzDecompress (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1173" width="4.8259%" height="15" fill="rgb(226,14,10)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1183.50">BZ2_bz..</text></g><g><title>BZ2_decompress (202,890,374 samples, 4.83%)</title><rect x="19.9774%" y="1157" width="4.8259%" height="15" fill="rgb(244,27,41)" fg:x="839895759" fg:w="202890374"/><text x="20.2274%" y="1167.50">BZ2_de..</text></g><g><title>[unknown] (3,872,198 samples, 0.09%)</title><rect x="24.7111%" y="1141" width="0.0921%" height="15" fill="rgb(235,35,32)" fg:x="1038913935" fg:w="3872198"/><text x="24.9611%" y="1151.50"></text></g><g><title>[unknown] (3,872,198 samples, 0.09%)</title><rect x="24.7111%" y="1125" width="0.0921%" height="15" fill="rgb(218,68,31)" fg:x="1038913935" fg:w="3872198"/><text x="24.9611%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1413" width="8.0433%" height="15" fill="rgb(207,120,37)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1423.50">rayon::iter..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1397" width="8.0433%" height="15" fill="rgb(227,98,0)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1407.50">&lt;rayon::ite..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1381" width="8.0433%" height="15" fill="rgb(207,7,3)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1391.50">rayon::iter..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1365" width="8.0433%" height="15" fill="rgb(206,98,19)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1375.50">&lt;core::iter..</text></g><g><title>core::option::Option&lt;T&gt;::map (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1349" width="8.0433%" height="15" fill="rgb(217,5,26)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1359.50">core::optio..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1333" width="8.0433%" height="15" fill="rgb(235,190,38)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1343.50">core::ops::..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1317" width="8.0433%" height="15" fill="rgb(247,86,24)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1327.50">core::ops::..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (338,158,467 samples, 8.04%)</title><rect x="16.8506%" y="1301" width="8.0433%" height="15" fill="rgb(205,101,16)" fg:x="708439632" fg:w="338158467"/><text x="17.1006%" y="1311.50">wxbox_ar2::..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1285" width="0.0907%" height="15" fill="rgb(246,168,33)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1295.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1269" width="0.0907%" height="15" fill="rgb(231,114,1)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1279.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1253" width="0.0907%" height="15" fill="rgb(207,184,53)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1263.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1237" width="0.0907%" height="15" fill="rgb(224,95,51)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1247.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1221" width="0.0907%" height="15" fill="rgb(212,188,45)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1231.50"></text></g><g><title>alloc::string::String::from_utf8_lossy (3,811,966 samples, 0.09%)</title><rect x="24.8032%" y="1205" width="0.0907%" height="15" fill="rgb(223,154,38)" fg:x="1042786133" fg:w="3811966"/><text x="25.0532%" y="1215.50"></text></g><g><title>std::io::Read::read_buf (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="1013" width="0.1855%" height="15" fill="rgb(251,22,52)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="1023.50"></text></g><g><title>std::io::default_read_buf (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="997" width="0.1855%" height="15" fill="rgb(229,209,22)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="1007.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="981" width="0.1855%" height="15" fill="rgb(234,138,34)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="991.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="965" width="0.1855%" height="15" fill="rgb(212,95,11)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="975.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="949" width="0.1855%" height="15" fill="rgb(240,179,47)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="959.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="933" width="0.1855%" height="15" fill="rgb(240,163,11)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="943.50"></text></g><g><title>BZ2_bzDecompress (7,797,159 samples, 0.19%)</title><rect x="24.8939%" y="917" width="0.1855%" height="15" fill="rgb(236,37,12)" fg:x="1046598099" fg:w="7797159"/><text x="25.1439%" y="927.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (26,283,523 samples, 0.63%)</title><rect x="24.8939%" y="1061" width="0.6252%" height="15" fill="rgb(232,164,16)" fg:x="1046598099" fg:w="26283523"/><text x="25.1439%" y="1071.50"></text></g><g><title>std::io::Read::read_to_end (26,283,523 samples, 0.63%)</title><rect x="24.8939%" y="1045" width="0.6252%" height="15" fill="rgb(244,205,15)" fg:x="1046598099" fg:w="26283523"/><text x="25.1439%" y="1055.50"></text></g><g><title>std::io::default_read_to_end (26,283,523 samples, 0.63%)</title><rect x="24.8939%" y="1029" width="0.6252%" height="15" fill="rgb(223,117,47)" fg:x="1046598099" fg:w="26283523"/><text x="25.1439%" y="1039.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="1013" width="0.4397%" height="15" fill="rgb(244,107,35)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="1023.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="997" width="0.4397%" height="15" fill="rgb(205,140,8)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="1007.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="981" width="0.4397%" height="15" fill="rgb(228,84,46)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="991.50"></text></g><g><title>bzip2::mem::Decompress::decompress (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="965" width="0.4397%" height="15" fill="rgb(254,188,9)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="975.50"></text></g><g><title>BZ2_bzDecompress (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="949" width="0.4397%" height="15" fill="rgb(206,112,54)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="959.50"></text></g><g><title>BZ2_decompress (18,486,364 samples, 0.44%)</title><rect x="25.0794%" y="933" width="0.4397%" height="15" fill="rgb(216,84,49)" fg:x="1054395258" fg:w="18486364"/><text x="25.3294%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1253" width="0.7172%" height="15" fill="rgb(214,194,35)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1237" width="0.7172%" height="15" fill="rgb(249,28,3)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1221" width="0.7172%" height="15" fill="rgb(222,56,52)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1205" width="0.7172%" height="15" fill="rgb(245,217,50)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1189" width="0.7172%" height="15" fill="rgb(213,201,24)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1199.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1173" width="0.7172%" height="15" fill="rgb(248,116,28)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1157" width="0.7172%" height="15" fill="rgb(219,72,43)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1167.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1141" width="0.7172%" height="15" fill="rgb(209,138,14)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1151.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1125" width="0.7172%" height="15" fill="rgb(222,18,33)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1135.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1109" width="0.7172%" height="15" fill="rgb(213,199,7)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1119.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1093" width="0.7172%" height="15" fill="rgb(250,110,10)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1103.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (30,151,703 samples, 0.72%)</title><rect x="24.8939%" y="1077" width="0.7172%" height="15" fill="rgb(248,123,6)" fg:x="1046598099" fg:w="30151703"/><text x="25.1439%" y="1087.50"></text></g><g><title>nexrad_data::volume::record::Record::messages (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="1061" width="0.0920%" height="15" fill="rgb(206,91,31)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="1071.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="1045" width="0.0920%" height="15" fill="rgb(211,154,13)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="1055.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="1029" width="0.0920%" height="15" fill="rgb(225,148,7)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="1039.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="1013" width="0.0920%" height="15" fill="rgb(220,160,43)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="1023.50"></text></g><g><title>nexrad_decode::util::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="997" width="0.0920%" height="15" fill="rgb(213,52,39)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="1007.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="981" width="0.0920%" height="15" fill="rgb(243,137,7)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="991.50"></text></g><g><title>bincode::internal::deserialize_from (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="965" width="0.0920%" height="15" fill="rgb(230,79,13)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="975.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="949" width="0.0920%" height="15" fill="rgb(247,105,23)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="959.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="933" width="0.0920%" height="15" fill="rgb(223,179,41)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="943.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="917" width="0.0920%" height="15" fill="rgb(218,9,34)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="927.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="901" width="0.0920%" height="15" fill="rgb(222,106,8)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="911.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="885" width="0.0920%" height="15" fill="rgb(211,220,0)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="895.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="869" width="0.0920%" height="15" fill="rgb(229,52,16)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="879.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="853" width="0.0920%" height="15" fill="rgb(212,155,18)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="863.50"></text></g><g><title>serde::de::SeqAccess::next_element (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="837" width="0.0920%" height="15" fill="rgb(242,21,14)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="847.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="821" width="0.0920%" height="15" fill="rgb(222,19,48)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="831.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="805" width="0.0920%" height="15" fill="rgb(232,45,27)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="815.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="789" width="0.0920%" height="15" fill="rgb(249,103,42)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="799.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="773" width="0.0920%" height="15" fill="rgb(246,81,33)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="783.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="757" width="0.0920%" height="15" fill="rgb(252,33,42)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="767.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::data_block_id::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="741" width="0.0920%" height="15" fill="rgb(209,212,41)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="751.50"></text></g><g><title>serde::de::SeqAccess::next_element (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="725" width="0.0920%" height="15" fill="rgb(207,154,6)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="735.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="709" width="0.0920%" height="15" fill="rgb(223,64,47)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="719.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="693" width="0.0920%" height="15" fill="rgb(211,161,38)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="703.50"></text></g><g><title>serde::de::impls::&lt;impl serde::de::Deserialize for u8&gt;::deserialize (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="677" width="0.0920%" height="15" fill="rgb(219,138,40)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="687.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_u8 (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="661" width="0.0920%" height="15" fill="rgb(241,228,46)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="671.50"></text></g><g><title>bincode::de::Deserializer&lt;R,O&gt;::deserialize_byte (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="645" width="0.0920%" height="15" fill="rgb(223,209,38)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="655.50"></text></g><g><title>bincode::byteorder::ReadBytesExt::read_u8 (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="629" width="0.0920%" height="15" fill="rgb(236,164,45)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="639.50"></text></g><g><title>&lt;bincode::de::read::IoReader&lt;R&gt; as std::io::Read&gt;::read_exact (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="613" width="0.0920%" height="15" fill="rgb(231,15,5)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="623.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;mut R&gt;::read_exact (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="597" width="0.0920%" height="15" fill="rgb(252,35,15)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="607.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="581" width="0.0920%" height="15" fill="rgb(248,181,18)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="591.50"></text></g><g><title>std::io::cursor::Cursor&lt;T&gt;::split (3,868,180 samples, 0.09%)</title><rect x="25.5191%" y="565" width="0.0920%" height="15" fill="rgb(233,39,42)" fg:x="1072881622" fg:w="3868180"/><text x="25.7691%" y="575.50"></text></g><g><title>std::io::Read::read_buf (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="949" width="0.1772%" height="15" fill="rgb(238,110,33)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="959.50"></text></g><g><title>std::io::default_read_buf (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="933" width="0.1772%" height="15" fill="rgb(233,195,10)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="943.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="917" width="0.1772%" height="15" fill="rgb(254,105,3)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="927.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="901" width="0.1772%" height="15" fill="rgb(221,225,9)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="911.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="885" width="0.1772%" height="15" fill="rgb(224,227,45)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="895.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="869" width="0.1772%" height="15" fill="rgb(229,198,43)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="879.50"></text></g><g><title>BZ2_bzDecompress (7,450,810 samples, 0.18%)</title><rect x="25.6111%" y="853" width="0.1772%" height="15" fill="rgb(206,209,35)" fg:x="1076749802" fg:w="7450810"/><text x="25.8611%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1365" width="1.1490%" height="15" fill="rgb(245,195,53)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1349" width="1.1490%" height="15" fill="rgb(240,92,26)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1333" width="1.1490%" height="15" fill="rgb(207,40,23)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1317" width="1.1490%" height="15" fill="rgb(223,111,35)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1301" width="1.1490%" height="15" fill="rgb(229,147,28)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1285" width="1.1490%" height="15" fill="rgb(211,29,28)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48,307,067 samples, 1.15%)</title><rect x="24.8939%" y="1269" width="1.1490%" height="15" fill="rgb(228,72,33)" fg:x="1046598099" fg:w="48307067"/><text x="25.1439%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1253" width="0.4318%" height="15" fill="rgb(205,214,31)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1237" width="0.4318%" height="15" fill="rgb(224,111,15)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1247.50"></text></g><g><title>std::panicking::try (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1221" width="0.4318%" height="15" fill="rgb(253,21,26)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1205" width="0.4318%" height="15" fill="rgb(245,139,43)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1215.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1189" width="0.4318%" height="15" fill="rgb(252,170,7)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1173" width="0.4318%" height="15" fill="rgb(231,118,14)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1157" width="0.4318%" height="15" fill="rgb(238,83,0)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1141" width="0.4318%" height="15" fill="rgb(221,39,39)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1125" width="0.4318%" height="15" fill="rgb(222,119,46)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1135.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1109" width="0.4318%" height="15" fill="rgb(222,165,49)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1093" width="0.4318%" height="15" fill="rgb(219,113,52)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1103.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1077" width="0.4318%" height="15" fill="rgb(214,7,15)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1087.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1061" width="0.4318%" height="15" fill="rgb(235,32,4)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1071.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1045" width="0.4318%" height="15" fill="rgb(238,90,54)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1055.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1029" width="0.4318%" height="15" fill="rgb(213,208,19)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1039.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="1013" width="0.4318%" height="15" fill="rgb(233,156,4)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1023.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="997" width="0.4318%" height="15" fill="rgb(207,194,5)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="1007.50"></text></g><g><title>std::io::Read::read_to_end (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="981" width="0.4318%" height="15" fill="rgb(206,111,30)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="991.50"></text></g><g><title>std::io::default_read_to_end (18,155,364 samples, 0.43%)</title><rect x="25.6111%" y="965" width="0.4318%" height="15" fill="rgb(243,70,54)" fg:x="1076749802" fg:w="18155364"/><text x="25.8611%" y="975.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="949" width="0.2546%" height="15" fill="rgb(242,28,8)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="959.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="933" width="0.2546%" height="15" fill="rgb(219,106,18)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="943.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="917" width="0.2546%" height="15" fill="rgb(244,222,10)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="927.50"></text></g><g><title>bzip2::mem::Decompress::decompress (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="901" width="0.2546%" height="15" fill="rgb(236,179,52)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="911.50"></text></g><g><title>BZ2_bzDecompress (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="885" width="0.2546%" height="15" fill="rgb(213,23,39)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="895.50"></text></g><g><title>BZ2_decompress (10,704,554 samples, 0.25%)</title><rect x="25.7883%" y="869" width="0.2546%" height="15" fill="rgb(238,48,10)" fg:x="1084200612" fg:w="10704554"/><text x="26.0383%" y="879.50"></text></g><g><title>std::io::Read::read_buf (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="949" width="0.1781%" height="15" fill="rgb(251,196,23)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="959.50"></text></g><g><title>std::io::default_read_buf (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="933" width="0.1781%" height="15" fill="rgb(250,152,24)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="943.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="917" width="0.1781%" height="15" fill="rgb(209,150,17)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="927.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="901" width="0.1781%" height="15" fill="rgb(234,202,34)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="911.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="885" width="0.1781%" height="15" fill="rgb(253,148,53)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="895.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="869" width="0.1781%" height="15" fill="rgb(218,129,16)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="879.50"></text></g><g><title>BZ2_bzDecompress (7,489,209 samples, 0.18%)</title><rect x="26.0429%" y="853" width="0.1781%" height="15" fill="rgb(216,85,19)" fg:x="1094905166" fg:w="7489209"/><text x="26.2929%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1365" width="0.6935%" height="15" fill="rgb(235,228,7)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1349" width="0.6935%" height="15" fill="rgb(245,175,0)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1333" width="0.6935%" height="15" fill="rgb(208,168,36)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1343.50"></text></g><g><title>rayon_core::job::JobRef::execute (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1317" width="0.6935%" height="15" fill="rgb(246,171,24)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1327.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1301" width="0.6935%" height="15" fill="rgb(215,142,24)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1311.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1285" width="0.6935%" height="15" fill="rgb(250,187,7)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1295.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1269" width="0.6935%" height="15" fill="rgb(228,66,33)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1279.50"></text></g><g><title>std::panic::catch_unwind (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1253" width="0.6935%" height="15" fill="rgb(234,215,21)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1263.50"></text></g><g><title>std::panicking::try (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1237" width="0.6935%" height="15" fill="rgb(222,191,20)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1247.50"></text></g><g><title>std::panicking::try::do_call (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1221" width="0.6935%" height="15" fill="rgb(245,79,54)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1231.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1205" width="0.6935%" height="15" fill="rgb(240,10,37)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1215.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1189" width="0.6935%" height="15" fill="rgb(214,192,32)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1173" width="0.6935%" height="15" fill="rgb(209,36,54)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1157" width="0.6935%" height="15" fill="rgb(220,10,11)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1141" width="0.6935%" height="15" fill="rgb(221,106,17)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1125" width="0.6935%" height="15" fill="rgb(251,142,44)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1135.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1109" width="0.6935%" height="15" fill="rgb(238,13,15)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1093" width="0.6935%" height="15" fill="rgb(208,107,27)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1103.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1077" width="0.6935%" height="15" fill="rgb(205,136,37)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1087.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1061" width="0.6935%" height="15" fill="rgb(250,205,27)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1071.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1045" width="0.6935%" height="15" fill="rgb(210,80,43)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1055.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1029" width="0.6935%" height="15" fill="rgb(247,160,36)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1039.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="1013" width="0.6935%" height="15" fill="rgb(234,13,49)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1023.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="997" width="0.6935%" height="15" fill="rgb(234,122,0)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="1007.50"></text></g><g><title>std::io::Read::read_to_end (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="981" width="0.6935%" height="15" fill="rgb(207,146,38)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="991.50"></text></g><g><title>std::io::default_read_to_end (29,155,457 samples, 0.69%)</title><rect x="26.0429%" y="965" width="0.6935%" height="15" fill="rgb(207,177,25)" fg:x="1094905166" fg:w="29155457"/><text x="26.2929%" y="975.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="949" width="0.5153%" height="15" fill="rgb(211,178,42)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="959.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="933" width="0.5153%" height="15" fill="rgb(230,69,54)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="943.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="917" width="0.5153%" height="15" fill="rgb(214,135,41)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="927.50"></text></g><g><title>bzip2::mem::Decompress::decompress (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="901" width="0.5153%" height="15" fill="rgb(237,67,25)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="911.50"></text></g><g><title>BZ2_bzDecompress (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="885" width="0.5153%" height="15" fill="rgb(222,189,50)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="895.50"></text></g><g><title>BZ2_decompress (21,666,248 samples, 0.52%)</title><rect x="26.2210%" y="869" width="0.5153%" height="15" fill="rgb(245,148,34)" fg:x="1102394375" fg:w="21666248"/><text x="26.4710%" y="879.50"></text></g><g><title>[libc.so.6] (3,471,128 samples, 0.08%)</title><rect x="26.6538%" y="853" width="0.0826%" height="15" fill="rgb(222,29,6)" fg:x="1120589495" fg:w="3471128"/><text x="26.9038%" y="863.50"></text></g><g><title>std::io::Read::read_buf (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="1061" width="0.5329%" height="15" fill="rgb(221,189,43)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="1071.50"></text></g><g><title>std::io::default_read_buf (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="1045" width="0.5329%" height="15" fill="rgb(207,36,27)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="1055.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="1029" width="0.5329%" height="15" fill="rgb(217,90,24)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="1039.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="1013" width="0.5329%" height="15" fill="rgb(224,66,35)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="1023.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="997" width="0.5329%" height="15" fill="rgb(221,13,50)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="1007.50"></text></g><g><title>bzip2::mem::Decompress::decompress (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="981" width="0.5329%" height="15" fill="rgb(236,68,49)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="991.50"></text></g><g><title>BZ2_bzDecompress (22,405,576 samples, 0.53%)</title><rect x="26.7364%" y="965" width="0.5329%" height="15" fill="rgb(229,146,28)" fg:x="1124060623" fg:w="22405576"/><text x="26.9864%" y="975.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1653" width="23.4542%" height="15" fill="rgb(225,31,38)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1663.50">rayon_core::job::StackJob&lt;L,F,R&gt;::run..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1637" width="23.4542%" height="15" fill="rgb(250,208,3)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1647.50">rayon_core::join::join_context::call_..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1621" width="23.4542%" height="15" fill="rgb(246,54,23)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1631.50">rayon::iter::plumbing::bridge_produce..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1605" width="23.4542%" height="15" fill="rgb(243,76,11)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1615.50">rayon::iter::plumbing::bridge_produce..</text></g><g><title>rayon_core::join::join_context (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1589" width="23.4542%" height="15" fill="rgb(245,21,50)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1599.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1573" width="23.4542%" height="15" fill="rgb(228,9,43)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1583.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (986,068,678 samples, 23.45%)</title><rect x="4.7728%" y="1557" width="23.4542%" height="15" fill="rgb(208,100,47)" fg:x="200659665" fg:w="986068678"/><text x="5.0228%" y="1567.50">rayon_core::join::join_context::_{{cl..</text></g><g><title>rayon_core::unwind::halt_unwinding (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1541" width="11.3764%" height="15" fill="rgb(232,26,8)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1551.50">rayon_core::unwin..</text></g><g><title>std::panic::catch_unwind (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1525" width="11.3764%" height="15" fill="rgb(216,166,38)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1535.50">std::panic::catch..</text></g><g><title>std::panicking::try (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1509" width="11.3764%" height="15" fill="rgb(251,202,51)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1519.50">std::panicking::t..</text></g><g><title>std::panicking::try::do_call (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1493" width="11.3764%" height="15" fill="rgb(254,216,34)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1503.50">std::panicking::t..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1477" width="11.3764%" height="15" fill="rgb(251,32,27)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1487.50">&lt;core::panic::unw..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1461" width="11.3764%" height="15" fill="rgb(208,127,28)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1471.50">rayon_core::join:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1445" width="11.3764%" height="15" fill="rgb(224,137,22)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1455.50">rayon::iter::plum..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (478,288,711 samples, 11.38%)</title><rect x="16.8506%" y="1429" width="11.3764%" height="15" fill="rgb(254,70,32)" fg:x="708439632" fg:w="478288711"/><text x="17.1006%" y="1439.50">rayon::iter::plum..</text></g><g><title>rayon_core::join::join_context (140,130,244 samples, 3.33%)</title><rect x="24.8939%" y="1413" width="3.3331%" height="15" fill="rgb(229,75,37)" fg:x="1046598099" fg:w="140130244"/><text x="25.1439%" y="1423.50">ray..</text></g><g><title>rayon_core::registry::in_worker (140,130,244 samples, 3.33%)</title><rect x="24.8939%" y="1397" width="3.3331%" height="15" fill="rgb(252,64,23)" fg:x="1046598099" fg:w="140130244"/><text x="25.1439%" y="1407.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (140,130,244 samples, 3.33%)</title><rect x="24.8939%" y="1381" width="3.3331%" height="15" fill="rgb(232,162,48)" fg:x="1046598099" fg:w="140130244"/><text x="25.1439%" y="1391.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1365" width="1.4906%" height="15" fill="rgb(246,160,12)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1349" width="1.4906%" height="15" fill="rgb(247,166,0)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1359.50"></text></g><g><title>std::panicking::try (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1333" width="1.4906%" height="15" fill="rgb(249,219,21)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1317" width="1.4906%" height="15" fill="rgb(205,209,3)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1327.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1301" width="1.4906%" height="15" fill="rgb(243,44,1)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1285" width="1.4906%" height="15" fill="rgb(206,159,16)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1269" width="1.4906%" height="15" fill="rgb(244,77,30)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1253" width="1.4906%" height="15" fill="rgb(218,69,12)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1237" width="1.4906%" height="15" fill="rgb(212,87,7)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1247.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1221" width="1.4906%" height="15" fill="rgb(245,114,25)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1205" width="1.4906%" height="15" fill="rgb(210,61,42)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1215.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1189" width="1.4906%" height="15" fill="rgb(211,52,33)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1199.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1173" width="1.4906%" height="15" fill="rgb(234,58,33)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1183.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1157" width="1.4906%" height="15" fill="rgb(220,115,36)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1167.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1141" width="1.4906%" height="15" fill="rgb(243,153,54)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1151.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1125" width="1.4906%" height="15" fill="rgb(251,47,18)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1135.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1109" width="1.4906%" height="15" fill="rgb(242,102,42)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1119.50"></text></g><g><title>std::io::Read::read_to_end (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1093" width="1.4906%" height="15" fill="rgb(234,31,38)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1103.50"></text></g><g><title>std::io::default_read_to_end (62,667,720 samples, 1.49%)</title><rect x="26.7364%" y="1077" width="1.4906%" height="15" fill="rgb(221,117,51)" fg:x="1124060623" fg:w="62667720"/><text x="26.9864%" y="1087.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="1061" width="0.9577%" height="15" fill="rgb(212,20,18)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="1071.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="1045" width="0.9577%" height="15" fill="rgb(245,133,36)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="1055.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="1029" width="0.9577%" height="15" fill="rgb(212,6,19)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="1039.50"></text></g><g><title>bzip2::mem::Decompress::decompress (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="1013" width="0.9577%" height="15" fill="rgb(218,1,36)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="1023.50"></text></g><g><title>BZ2_bzDecompress (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="997" width="0.9577%" height="15" fill="rgb(246,84,54)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="1007.50"></text></g><g><title>BZ2_decompress (40,262,144 samples, 0.96%)</title><rect x="27.2693%" y="981" width="0.9577%" height="15" fill="rgb(242,110,6)" fg:x="1146466199" fg:w="40262144"/><text x="27.5193%" y="991.50"></text></g><g><title>[libc.so.6] (7,298,197 samples, 0.17%)</title><rect x="28.0534%" y="965" width="0.1736%" height="15" fill="rgb(214,47,5)" fg:x="1179430146" fg:w="7298197"/><text x="28.3034%" y="975.50"></text></g><g><title>std::io::Read::read_buf (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1237" width="0.4663%" height="15" fill="rgb(218,159,25)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1247.50"></text></g><g><title>std::io::default_read_buf (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1221" width="0.4663%" height="15" fill="rgb(215,211,28)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1231.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1205" width="0.4663%" height="15" fill="rgb(238,59,32)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1215.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1189" width="0.4663%" height="15" fill="rgb(226,82,3)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1199.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1173" width="0.4663%" height="15" fill="rgb(240,164,32)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1183.50"></text></g><g><title>bzip2::mem::Decompress::decompress (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1157" width="0.4663%" height="15" fill="rgb(232,46,7)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1167.50"></text></g><g><title>BZ2_bzDecompress (19,604,744 samples, 0.47%)</title><rect x="28.2270%" y="1141" width="0.4663%" height="15" fill="rgb(229,129,53)" fg:x="1186728344" fg:w="19604744"/><text x="28.4770%" y="1151.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (53,359,053 samples, 1.27%)</title><rect x="28.2270%" y="1285" width="1.2692%" height="15" fill="rgb(234,188,29)" fg:x="1186728344" fg:w="53359053"/><text x="28.4770%" y="1295.50"></text></g><g><title>std::io::Read::read_to_end (53,359,053 samples, 1.27%)</title><rect x="28.2270%" y="1269" width="1.2692%" height="15" fill="rgb(246,141,4)" fg:x="1186728344" fg:w="53359053"/><text x="28.4770%" y="1279.50"></text></g><g><title>std::io::default_read_to_end (53,359,053 samples, 1.27%)</title><rect x="28.2270%" y="1253" width="1.2692%" height="15" fill="rgb(229,23,39)" fg:x="1186728344" fg:w="53359053"/><text x="28.4770%" y="1263.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1237" width="0.8029%" height="15" fill="rgb(206,12,3)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1247.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1221" width="0.8029%" height="15" fill="rgb(252,226,20)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1231.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1205" width="0.8029%" height="15" fill="rgb(216,123,35)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1215.50"></text></g><g><title>bzip2::mem::Decompress::decompress (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1189" width="0.8029%" height="15" fill="rgb(212,68,40)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1199.50"></text></g><g><title>BZ2_bzDecompress (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1173" width="0.8029%" height="15" fill="rgb(254,125,32)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1183.50"></text></g><g><title>BZ2_decompress (33,754,309 samples, 0.80%)</title><rect x="28.6933%" y="1157" width="0.8029%" height="15" fill="rgb(253,97,22)" fg:x="1206333088" fg:w="33754309"/><text x="28.9433%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1413" width="1.3618%" height="15" fill="rgb(241,101,14)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1423.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1397" width="1.3618%" height="15" fill="rgb(238,103,29)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1381" width="1.3618%" height="15" fill="rgb(233,195,47)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1391.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1365" width="1.3618%" height="15" fill="rgb(246,218,30)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1375.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1349" width="1.3618%" height="15" fill="rgb(219,145,47)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1359.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1333" width="1.3618%" height="15" fill="rgb(243,12,26)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1343.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1317" width="1.3618%" height="15" fill="rgb(214,87,16)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1327.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (57,253,242 samples, 1.36%)</title><rect x="28.2270%" y="1301" width="1.3618%" height="15" fill="rgb(208,99,42)" fg:x="1186728344" fg:w="57253242"/><text x="28.4770%" y="1311.50"></text></g><g><title>nexrad_data::volume::record::Record::messages (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1285" width="0.0926%" height="15" fill="rgb(253,99,2)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1295.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1269" width="0.0926%" height="15" fill="rgb(220,168,23)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1279.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1253" width="0.0926%" height="15" fill="rgb(242,38,24)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1263.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1237" width="0.0926%" height="15" fill="rgb(225,182,9)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1247.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1221" width="0.0926%" height="15" fill="rgb(243,178,37)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1231.50"></text></g><g><title>alloc::string::String::from_utf8_lossy (3,894,189 samples, 0.09%)</title><rect x="29.4962%" y="1205" width="0.0926%" height="15" fill="rgb(232,139,19)" fg:x="1240087397" fg:w="3894189"/><text x="29.7462%" y="1215.50"></text></g><g><title>std::io::Read::read_buf (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="1061" width="0.0889%" height="15" fill="rgb(225,201,24)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="1071.50"></text></g><g><title>std::io::default_read_buf (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="1045" width="0.0889%" height="15" fill="rgb(221,47,46)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="1055.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="1029" width="0.0889%" height="15" fill="rgb(249,23,13)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="1039.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="1013" width="0.0889%" height="15" fill="rgb(219,9,5)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="1023.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="997" width="0.0889%" height="15" fill="rgb(254,171,16)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="1007.50"></text></g><g><title>bzip2::mem::Decompress::decompress (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="981" width="0.0889%" height="15" fill="rgb(230,171,20)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="991.50"></text></g><g><title>BZ2_bzDecompress (3,739,468 samples, 0.09%)</title><rect x="29.5888%" y="965" width="0.0889%" height="15" fill="rgb(210,71,41)" fg:x="1243981586" fg:w="3739468"/><text x="29.8388%" y="975.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (16,569,475 samples, 0.39%)</title><rect x="29.5888%" y="1109" width="0.3941%" height="15" fill="rgb(206,173,20)" fg:x="1243981586" fg:w="16569475"/><text x="29.8388%" y="1119.50"></text></g><g><title>std::io::Read::read_to_end (16,569,475 samples, 0.39%)</title><rect x="29.5888%" y="1093" width="0.3941%" height="15" fill="rgb(233,88,34)" fg:x="1243981586" fg:w="16569475"/><text x="29.8388%" y="1103.50"></text></g><g><title>std::io::default_read_to_end (16,569,475 samples, 0.39%)</title><rect x="29.5888%" y="1077" width="0.3941%" height="15" fill="rgb(223,209,46)" fg:x="1243981586" fg:w="16569475"/><text x="29.8388%" y="1087.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="1061" width="0.3052%" height="15" fill="rgb(250,43,18)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="1071.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="1045" width="0.3052%" height="15" fill="rgb(208,13,10)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="1055.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="1029" width="0.3052%" height="15" fill="rgb(212,200,36)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="1039.50"></text></g><g><title>bzip2::mem::Decompress::decompress (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="1013" width="0.3052%" height="15" fill="rgb(225,90,30)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="1023.50"></text></g><g><title>BZ2_bzDecompress (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="997" width="0.3052%" height="15" fill="rgb(236,182,39)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="1007.50"></text></g><g><title>BZ2_decompress (12,830,007 samples, 0.31%)</title><rect x="29.6777%" y="981" width="0.3052%" height="15" fill="rgb(212,144,35)" fg:x="1247721054" fg:w="12830007"/><text x="29.9277%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1621" width="1.8466%" height="15" fill="rgb(228,63,44)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1631.50">r..</text></g><g><title>rayon_core::job::JobRef::execute (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1605" width="1.8466%" height="15" fill="rgb(228,109,6)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1615.50">r..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1589" width="1.8466%" height="15" fill="rgb(238,117,24)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1599.50">&lt;..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1573" width="1.8466%" height="15" fill="rgb(242,26,26)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1583.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1557" width="1.8466%" height="15" fill="rgb(221,92,48)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1567.50">r..</text></g><g><title>std::panic::catch_unwind (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1541" width="1.8466%" height="15" fill="rgb(209,209,32)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1551.50">s..</text></g><g><title>std::panicking::try (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1525" width="1.8466%" height="15" fill="rgb(221,70,22)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1535.50">s..</text></g><g><title>std::panicking::try::do_call (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1509" width="1.8466%" height="15" fill="rgb(248,145,5)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1519.50">s..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1493" width="1.8466%" height="15" fill="rgb(226,116,26)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1503.50">&lt;..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1477" width="1.8466%" height="15" fill="rgb(244,5,17)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1487.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1461" width="1.8466%" height="15" fill="rgb(252,159,33)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1471.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1445" width="1.8466%" height="15" fill="rgb(206,71,0)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1455.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (77,636,121 samples, 1.85%)</title><rect x="28.2270%" y="1429" width="1.8466%" height="15" fill="rgb(233,118,54)" fg:x="1186728344" fg:w="77636121"/><text x="28.4770%" y="1439.50">r..</text></g><g><title>rayon_core::join::join_context (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1413" width="0.4848%" height="15" fill="rgb(234,83,48)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1397" width="0.4848%" height="15" fill="rgb(228,3,54)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1381" width="0.4848%" height="15" fill="rgb(226,155,13)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1365" width="0.4848%" height="15" fill="rgb(241,28,37)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1349" width="0.4848%" height="15" fill="rgb(233,93,10)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1359.50"></text></g><g><title>std::panicking::try (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1333" width="0.4848%" height="15" fill="rgb(225,113,19)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1317" width="0.4848%" height="15" fill="rgb(241,2,18)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1327.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1301" width="0.4848%" height="15" fill="rgb(228,207,21)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1285" width="0.4848%" height="15" fill="rgb(213,211,35)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1269" width="0.4848%" height="15" fill="rgb(209,83,10)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1253" width="0.4848%" height="15" fill="rgb(209,164,1)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1237" width="0.4848%" height="15" fill="rgb(213,184,43)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1247.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1221" width="0.4848%" height="15" fill="rgb(231,61,34)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1205" width="0.4848%" height="15" fill="rgb(235,75,3)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1215.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1189" width="0.4848%" height="15" fill="rgb(220,106,47)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1199.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1173" width="0.4848%" height="15" fill="rgb(210,196,33)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1183.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1157" width="0.4848%" height="15" fill="rgb(229,154,42)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1167.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1141" width="0.4848%" height="15" fill="rgb(228,114,26)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1151.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (20,382,879 samples, 0.48%)</title><rect x="29.5888%" y="1125" width="0.4848%" height="15" fill="rgb(208,144,1)" fg:x="1243981586" fg:w="20382879"/><text x="29.8388%" y="1135.50"></text></g><g><title>nexrad_data::volume::record::Record::messages (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1109" width="0.0907%" height="15" fill="rgb(239,112,37)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1119.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1093" width="0.0907%" height="15" fill="rgb(210,96,50)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1103.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1077" width="0.0907%" height="15" fill="rgb(222,178,2)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1087.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1061" width="0.0907%" height="15" fill="rgb(226,74,18)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1071.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1045" width="0.0907%" height="15" fill="rgb(225,67,54)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1055.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1029" width="0.0907%" height="15" fill="rgb(251,92,32)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1039.50"></text></g><g><title>&lt;alloc::borrow::Cow&lt;str&gt; as alloc::string::SpecToString&gt;::spec_to_string (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="1013" width="0.0907%" height="15" fill="rgb(228,149,22)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1023.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="997" width="0.0907%" height="15" fill="rgb(243,54,13)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="1007.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="981" width="0.0907%" height="15" fill="rgb(243,180,28)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="991.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="965" width="0.0907%" height="15" fill="rgb(208,167,24)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="975.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="949" width="0.0907%" height="15" fill="rgb(245,73,45)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="959.50"></text></g><g><title>alloc::slice::hack::to_vec (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="933" width="0.0907%" height="15" fill="rgb(237,203,48)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="943.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="917" width="0.0907%" height="15" fill="rgb(211,197,16)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="927.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="901" width="0.0907%" height="15" fill="rgb(243,99,51)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="911.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="885" width="0.0907%" height="15" fill="rgb(215,123,29)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="869" width="0.0907%" height="15" fill="rgb(239,186,37)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="853" width="0.0907%" height="15" fill="rgb(252,136,39)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="863.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="837" width="0.0907%" height="15" fill="rgb(223,213,32)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="847.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="821" width="0.0907%" height="15" fill="rgb(233,115,5)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="831.50"></text></g><g><title>alloc::alloc::alloc (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="805" width="0.0907%" height="15" fill="rgb(207,226,44)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="815.50"></text></g><g><title>__rdl_alloc (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="789" width="0.0907%" height="15" fill="rgb(208,126,0)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="799.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="773" width="0.0907%" height="15" fill="rgb(244,66,21)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="783.50"></text></g><g><title>malloc (3,813,404 samples, 0.09%)</title><rect x="29.9829%" y="757" width="0.0907%" height="15" fill="rgb(222,97,12)" fg:x="1260551061" fg:w="3813404"/><text x="30.2329%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (77,636,624 samples, 1.85%)</title><rect x="28.2270%" y="1653" width="1.8466%" height="15" fill="rgb(219,213,19)" fg:x="1186728343" fg:w="77636624"/><text x="28.4770%" y="1663.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (77,636,624 samples, 1.85%)</title><rect x="28.2270%" y="1637" width="1.8466%" height="15" fill="rgb(252,169,30)" fg:x="1186728343" fg:w="77636624"/><text x="28.4770%" y="1647.50">r..</text></g><g><title>core::io::borrowed_buf::BorrowedCursor::ensure_init (3,556,060 samples, 0.08%)</title><rect x="30.0736%" y="1317" width="0.0846%" height="15" fill="rgb(206,32,51)" fg:x="1264364967" fg:w="3556060"/><text x="30.3236%" y="1327.50"></text></g><g><title>core::intrinsics::write_bytes (3,556,060 samples, 0.08%)</title><rect x="30.0736%" y="1301" width="0.0846%" height="15" fill="rgb(250,172,42)" fg:x="1264364967" fg:w="3556060"/><text x="30.3236%" y="1311.50"></text></g><g><title>[libc.so.6] (3,556,060 samples, 0.08%)</title><rect x="30.0736%" y="1285" width="0.0846%" height="15" fill="rgb(209,34,43)" fg:x="1264364967" fg:w="3556060"/><text x="30.3236%" y="1295.50"></text></g><g><title>[unknown] (3,556,060 samples, 0.08%)</title><rect x="30.0736%" y="1269" width="0.0846%" height="15" fill="rgb(223,11,35)" fg:x="1264364967" fg:w="3556060"/><text x="30.3236%" y="1279.50"></text></g><g><title>std::io::Read::read_buf (76,253,568 samples, 1.81%)</title><rect x="30.0736%" y="1349" width="1.8137%" height="15" fill="rgb(251,219,26)" fg:x="1264364967" fg:w="76253568"/><text x="30.3236%" y="1359.50">s..</text></g><g><title>std::io::default_read_buf (76,253,568 samples, 1.81%)</title><rect x="30.0736%" y="1333" width="1.8137%" height="15" fill="rgb(231,119,3)" fg:x="1264364967" fg:w="76253568"/><text x="30.3236%" y="1343.50">s..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (72,697,508 samples, 1.73%)</title><rect x="30.1582%" y="1317" width="1.7291%" height="15" fill="rgb(216,97,11)" fg:x="1267921027" fg:w="72697508"/><text x="30.4082%" y="1327.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (72,697,508 samples, 1.73%)</title><rect x="30.1582%" y="1301" width="1.7291%" height="15" fill="rgb(223,59,9)" fg:x="1267921027" fg:w="72697508"/><text x="30.4082%" y="1311.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (72,697,508 samples, 1.73%)</title><rect x="30.1582%" y="1285" width="1.7291%" height="15" fill="rgb(233,93,31)" fg:x="1267921027" fg:w="72697508"/><text x="30.4082%" y="1295.50"></text></g><g><title>bzip2::mem::Decompress::decompress (72,697,508 samples, 1.73%)</title><rect x="30.1582%" y="1269" width="1.7291%" height="15" fill="rgb(239,81,33)" fg:x="1267921027" fg:w="72697508"/><text x="30.4082%" y="1279.50"></text></g><g><title>BZ2_bzDecompress (72,697,508 samples, 1.73%)</title><rect x="30.1582%" y="1253" width="1.7291%" height="15" fill="rgb(213,120,34)" fg:x="1267921027" fg:w="72697508"/><text x="30.4082%" y="1263.50"></text></g><g><title>BZ2_hbCreateDecodeTables (688,307 samples, 0.02%)</title><rect x="34.4297%" y="1253" width="0.0164%" height="15" fill="rgb(243,49,53)" fg:x="1447504924" fg:w="688307"/><text x="34.6797%" y="1263.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (183,828,499 samples, 4.37%)</title><rect x="30.0736%" y="1397" width="4.3725%" height="15" fill="rgb(247,216,33)" fg:x="1264364967" fg:w="183828499"/><text x="30.3236%" y="1407.50">nexra..</text></g><g><title>std::io::Read::read_to_end (183,828,499 samples, 4.37%)</title><rect x="30.0736%" y="1381" width="4.3725%" height="15" fill="rgb(226,26,14)" fg:x="1264364967" fg:w="183828499"/><text x="30.3236%" y="1391.50">std::..</text></g><g><title>std::io::default_read_to_end (183,828,499 samples, 4.37%)</title><rect x="30.0736%" y="1365" width="4.3725%" height="15" fill="rgb(215,49,53)" fg:x="1264364967" fg:w="183828499"/><text x="30.3236%" y="1375.50">std::..</text></g><g><title>std::io::default_read_to_end::small_probe_read (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1349" width="2.5587%" height="15" fill="rgb(245,162,40)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1359.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1333" width="2.5587%" height="15" fill="rgb(229,68,17)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1343.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1317" width="2.5587%" height="15" fill="rgb(213,182,10)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1327.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1301" width="2.5587%" height="15" fill="rgb(245,125,30)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1311.50">bz..</text></g><g><title>BZ2_bzDecompress (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1285" width="2.5587%" height="15" fill="rgb(232,202,2)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1295.50">BZ..</text></g><g><title>BZ2_decompress (107,574,931 samples, 2.56%)</title><rect x="31.8873%" y="1269" width="2.5587%" height="15" fill="rgb(237,140,51)" fg:x="1340618535" fg:w="107574931"/><text x="32.1373%" y="1279.50">BZ..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1525" width="4.4466%" height="15" fill="rgb(236,157,25)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1535.50">rayon..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1509" width="4.4466%" height="15" fill="rgb(219,209,0)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1519.50">&lt;rayo..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1493" width="4.4466%" height="15" fill="rgb(240,116,54)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1503.50">rayon..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1477" width="4.4466%" height="15" fill="rgb(216,10,36)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1487.50">&lt;core..</text></g><g><title>core::option::Option&lt;T&gt;::map (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1461" width="4.4466%" height="15" fill="rgb(222,72,44)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1471.50">core:..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1445" width="4.4466%" height="15" fill="rgb(232,159,9)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1455.50">core:..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1429" width="4.4466%" height="15" fill="rgb(210,39,32)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1439.50">core:..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (186,946,057 samples, 4.45%)</title><rect x="30.0736%" y="1413" width="4.4466%" height="15" fill="rgb(216,194,45)" fg:x="1264364967" fg:w="186946057"/><text x="30.3236%" y="1423.50">wxbox..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,117,558 samples, 0.07%)</title><rect x="34.4461%" y="1397" width="0.0742%" height="15" fill="rgb(218,18,35)" fg:x="1448193466" fg:w="3117558"/><text x="34.6961%" y="1407.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,117,558 samples, 0.07%)</title><rect x="34.4461%" y="1381" width="0.0742%" height="15" fill="rgb(207,83,51)" fg:x="1448193466" fg:w="3117558"/><text x="34.6961%" y="1391.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,117,558 samples, 0.07%)</title><rect x="34.4461%" y="1365" width="0.0742%" height="15" fill="rgb(225,63,43)" fg:x="1448193466" fg:w="3117558"/><text x="34.6961%" y="1375.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,117,558 samples, 0.07%)</title><rect x="34.4461%" y="1349" width="0.0742%" height="15" fill="rgb(207,57,36)" fg:x="1448193466" fg:w="3117558"/><text x="34.6961%" y="1359.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,117,558 samples, 0.07%)</title><rect x="34.4461%" y="1333" width="0.0742%" height="15" fill="rgb(216,99,33)" fg:x="1448193466" fg:w="3117558"/><text x="34.6961%" y="1343.50"></text></g><g><title>std::io::Read::read_buf (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1125" width="0.6343%" height="15" fill="rgb(225,42,16)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1135.50"></text></g><g><title>std::io::default_read_buf (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1109" width="0.6343%" height="15" fill="rgb(220,201,45)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1119.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1093" width="0.6343%" height="15" fill="rgb(225,33,4)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1103.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1077" width="0.6343%" height="15" fill="rgb(224,33,50)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1087.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1061" width="0.6343%" height="15" fill="rgb(246,198,51)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1071.50"></text></g><g><title>bzip2::mem::Decompress::decompress (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1045" width="0.6343%" height="15" fill="rgb(205,22,4)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1055.50"></text></g><g><title>BZ2_bzDecompress (26,666,391 samples, 0.63%)</title><rect x="34.5202%" y="1029" width="0.6343%" height="15" fill="rgb(206,3,8)" fg:x="1451311024" fg:w="26666391"/><text x="34.7702%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1301" width="1.8847%" height="15" fill="rgb(251,23,15)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1311.50">r..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1285" width="1.8847%" height="15" fill="rgb(252,88,28)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1295.50">&lt;..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1269" width="1.8847%" height="15" fill="rgb(212,127,14)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1279.50">r..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1253" width="1.8847%" height="15" fill="rgb(247,145,37)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1263.50">&lt;..</text></g><g><title>core::option::Option&lt;T&gt;::map (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1237" width="1.8847%" height="15" fill="rgb(209,117,53)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1247.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1221" width="1.8847%" height="15" fill="rgb(212,90,42)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1231.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1205" width="1.8847%" height="15" fill="rgb(218,164,37)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1215.50">c..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1189" width="1.8847%" height="15" fill="rgb(246,65,34)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1199.50">w..</text></g><g><title>nexrad_data::volume::record::Record::decompress (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1173" width="1.8847%" height="15" fill="rgb(231,100,33)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1183.50">n..</text></g><g><title>std::io::Read::read_to_end (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1157" width="1.8847%" height="15" fill="rgb(228,126,14)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1167.50">s..</text></g><g><title>std::io::default_read_to_end (79,235,809 samples, 1.88%)</title><rect x="34.5202%" y="1141" width="1.8847%" height="15" fill="rgb(215,173,21)" fg:x="1451311024" fg:w="79235809"/><text x="34.7702%" y="1151.50">s..</text></g><g><title>std::io::default_read_to_end::small_probe_read (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1125" width="1.2504%" height="15" fill="rgb(210,6,40)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1135.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1109" width="1.2504%" height="15" fill="rgb(212,48,18)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1119.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1093" width="1.2504%" height="15" fill="rgb(230,214,11)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1103.50"></text></g><g><title>bzip2::mem::Decompress::decompress (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1077" width="1.2504%" height="15" fill="rgb(254,105,39)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1087.50"></text></g><g><title>BZ2_bzDecompress (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1061" width="1.2504%" height="15" fill="rgb(245,158,5)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1071.50"></text></g><g><title>BZ2_decompress (52,569,418 samples, 1.25%)</title><rect x="35.1545%" y="1045" width="1.2504%" height="15" fill="rgb(249,208,11)" fg:x="1477977415" fg:w="52569418"/><text x="35.4045%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::Message&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="1061" width="0.0877%" height="15" fill="rgb(210,39,28)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="1071.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::MessageContents&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="1045" width="0.0877%" height="15" fill="rgb(211,56,53)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;nexrad_decode::messages::digital_radar_data::message::Message&gt;&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="1029" width="0.0877%" height="15" fill="rgb(226,201,30)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::digital_radar_data::message::Message&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="1013" width="0.0877%" height="15" fill="rgb(239,101,34)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock&gt;&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="997" width="0.0877%" height="15" fill="rgb(226,209,5)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="1007.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="981" width="0.0877%" height="15" fill="rgb(250,105,47)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="965" width="0.0877%" height="15" fill="rgb(230,72,3)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="949" width="0.0877%" height="15" fill="rgb(232,218,39)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="959.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="933" width="0.0877%" height="15" fill="rgb(248,166,6)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="943.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="917" width="0.0877%" height="15" fill="rgb(247,89,20)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="927.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="901" width="0.0877%" height="15" fill="rgb(248,130,54)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="911.50"></text></g><g><title>alloc::alloc::dealloc (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="885" width="0.0877%" height="15" fill="rgb(234,196,4)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="895.50"></text></g><g><title>__rdl_dealloc (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="869" width="0.0877%" height="15" fill="rgb(250,143,31)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="879.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="853" width="0.0877%" height="15" fill="rgb(211,110,34)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="863.50"></text></g><g><title>cfree (3,687,391 samples, 0.09%)</title><rect x="36.4049%" y="837" width="0.0877%" height="15" fill="rgb(215,124,48)" fg:x="1530546833" fg:w="3687391"/><text x="36.6549%" y="847.50"></text></g><g><title>std::io::Read::read_buf (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="1013" width="1.0893%" height="15" fill="rgb(216,46,13)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="1023.50"></text></g><g><title>std::io::default_read_buf (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="997" width="1.0893%" height="15" fill="rgb(205,184,25)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="1007.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="981" width="1.0893%" height="15" fill="rgb(228,1,10)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="991.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="965" width="1.0893%" height="15" fill="rgb(213,116,27)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="975.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="949" width="1.0893%" height="15" fill="rgb(241,95,50)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="959.50"></text></g><g><title>bzip2::mem::Decompress::decompress (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="933" width="1.0893%" height="15" fill="rgb(238,48,32)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="943.50"></text></g><g><title>BZ2_bzDecompress (45,798,045 samples, 1.09%)</title><rect x="36.4926%" y="917" width="1.0893%" height="15" fill="rgb(235,113,49)" fg:x="1534234224" fg:w="45798045"/><text x="36.7426%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1253" width="3.2233%" height="15" fill="rgb(205,127,43)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1263.50">ray..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1237" width="3.2233%" height="15" fill="rgb(250,162,2)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1247.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1221" width="3.2233%" height="15" fill="rgb(220,13,41)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1231.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1205" width="3.2233%" height="15" fill="rgb(249,221,25)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1215.50">ray..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1189" width="3.2233%" height="15" fill="rgb(215,208,19)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1199.50">ray..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1173" width="3.2233%" height="15" fill="rgb(236,175,2)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1183.50">&lt;ra..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1157" width="3.2233%" height="15" fill="rgb(241,52,2)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1167.50">ray..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1141" width="3.2233%" height="15" fill="rgb(248,140,14)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1151.50">&lt;co..</text></g><g><title>core::option::Option&lt;T&gt;::map (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1125" width="3.2233%" height="15" fill="rgb(253,22,42)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1135.50">cor..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1109" width="3.2233%" height="15" fill="rgb(234,61,47)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1119.50">cor..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1093" width="3.2233%" height="15" fill="rgb(208,226,15)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1103.50">cor..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (135,516,983 samples, 3.22%)</title><rect x="36.4049%" y="1077" width="3.2233%" height="15" fill="rgb(217,221,4)" fg:x="1530546833" fg:w="135516983"/><text x="36.6549%" y="1087.50">wxb..</text></g><g><title>nexrad_data::volume::record::Record::decompress (131,829,592 samples, 3.14%)</title><rect x="36.4926%" y="1061" width="3.1356%" height="15" fill="rgb(212,174,34)" fg:x="1534234224" fg:w="131829592"/><text x="36.7426%" y="1071.50">nex..</text></g><g><title>std::io::Read::read_to_end (131,829,592 samples, 3.14%)</title><rect x="36.4926%" y="1045" width="3.1356%" height="15" fill="rgb(253,83,4)" fg:x="1534234224" fg:w="131829592"/><text x="36.7426%" y="1055.50">std..</text></g><g><title>std::io::default_read_to_end (131,829,592 samples, 3.14%)</title><rect x="36.4926%" y="1029" width="3.1356%" height="15" fill="rgb(250,195,49)" fg:x="1534234224" fg:w="131829592"/><text x="36.7426%" y="1039.50">std..</text></g><g><title>std::io::default_read_to_end::small_probe_read (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="1013" width="2.0463%" height="15" fill="rgb(241,192,25)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="1023.50">s..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="997" width="2.0463%" height="15" fill="rgb(208,124,10)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="1007.50">&lt;..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="981" width="2.0463%" height="15" fill="rgb(222,33,0)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="991.50">&lt;..</text></g><g><title>bzip2::mem::Decompress::decompress (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="965" width="2.0463%" height="15" fill="rgb(234,209,28)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="975.50">b..</text></g><g><title>BZ2_bzDecompress (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="949" width="2.0463%" height="15" fill="rgb(224,11,23)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="959.50">B..</text></g><g><title>BZ2_decompress (86,031,547 samples, 2.05%)</title><rect x="37.5819%" y="933" width="2.0463%" height="15" fill="rgb(232,99,1)" fg:x="1580032269" fg:w="86031547"/><text x="37.8319%" y="943.50">B..</text></g><g><title>std::io::Read::read_buf (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="949" width="1.3770%" height="15" fill="rgb(237,95,45)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="959.50"></text></g><g><title>std::io::default_read_buf (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="933" width="1.3770%" height="15" fill="rgb(208,109,11)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="943.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="917" width="1.3770%" height="15" fill="rgb(216,190,48)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="927.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="901" width="1.3770%" height="15" fill="rgb(251,171,36)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="911.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="885" width="1.3770%" height="15" fill="rgb(230,62,22)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="895.50"></text></g><g><title>bzip2::mem::Decompress::decompress (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="869" width="1.3770%" height="15" fill="rgb(225,114,35)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="879.50"></text></g><g><title>BZ2_bzDecompress (57,891,891 samples, 1.38%)</title><rect x="39.6282%" y="853" width="1.3770%" height="15" fill="rgb(215,118,42)" fg:x="1666063816" fg:w="57891891"/><text x="39.8782%" y="863.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (148,300,562 samples, 3.53%)</title><rect x="39.6282%" y="997" width="3.5274%" height="15" fill="rgb(243,119,21)" fg:x="1666063816" fg:w="148300562"/><text x="39.8782%" y="1007.50">nex..</text></g><g><title>std::io::Read::read_to_end (148,300,562 samples, 3.53%)</title><rect x="39.6282%" y="981" width="3.5274%" height="15" fill="rgb(252,177,53)" fg:x="1666063816" fg:w="148300562"/><text x="39.8782%" y="991.50">std..</text></g><g><title>std::io::default_read_to_end (148,300,562 samples, 3.53%)</title><rect x="39.6282%" y="965" width="3.5274%" height="15" fill="rgb(237,209,29)" fg:x="1666063816" fg:w="148300562"/><text x="39.8782%" y="975.50">std..</text></g><g><title>std::io::default_read_to_end::small_probe_read (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="949" width="2.1504%" height="15" fill="rgb(212,65,23)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="959.50">s..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="933" width="2.1504%" height="15" fill="rgb(230,222,46)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="943.50">&lt;..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="917" width="2.1504%" height="15" fill="rgb(215,135,32)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="927.50">&lt;..</text></g><g><title>bzip2::mem::Decompress::decompress (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="901" width="2.1504%" height="15" fill="rgb(246,101,22)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="911.50">b..</text></g><g><title>BZ2_bzDecompress (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="885" width="2.1504%" height="15" fill="rgb(206,107,13)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="895.50">B..</text></g><g><title>BZ2_decompress (90,408,671 samples, 2.15%)</title><rect x="41.0052%" y="869" width="2.1504%" height="15" fill="rgb(250,100,44)" fg:x="1723955707" fg:w="90408671"/><text x="41.2552%" y="879.50">B..</text></g><g><title>[libc.so.6] (3,692,081 samples, 0.09%)</title><rect x="43.0678%" y="853" width="0.0878%" height="15" fill="rgb(231,147,38)" fg:x="1810672297" fg:w="3692081"/><text x="43.3178%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (367,167,114 samples, 8.73%)</title><rect x="34.5202%" y="1365" width="8.7333%" height="15" fill="rgb(229,8,40)" fg:x="1451311024" fg:w="367167114"/><text x="34.7702%" y="1375.50">rayon_core::..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (367,167,114 samples, 8.73%)</title><rect x="34.5202%" y="1349" width="8.7333%" height="15" fill="rgb(221,135,30)" fg:x="1451311024" fg:w="367167114"/><text x="34.7702%" y="1359.50">rayon_core::..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (367,167,114 samples, 8.73%)</title><rect x="34.5202%" y="1333" width="8.7333%" height="15" fill="rgb(249,193,18)" fg:x="1451311024" fg:w="367167114"/><text x="34.7702%" y="1343.50">rayon::iter:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (367,167,114 samples, 8.73%)</title><rect x="34.5202%" y="1317" width="8.7333%" height="15" fill="rgb(209,133,39)" fg:x="1451311024" fg:w="367167114"/><text x="34.7702%" y="1327.50">rayon::iter:..</text></g><g><title>rayon_core::join::join_context (287,931,305 samples, 6.85%)</title><rect x="36.4049%" y="1301" width="6.8486%" height="15" fill="rgb(232,100,14)" fg:x="1530546833" fg:w="287931305"/><text x="36.6549%" y="1311.50">rayon_cor..</text></g><g><title>rayon_core::registry::in_worker (287,931,305 samples, 6.85%)</title><rect x="36.4049%" y="1285" width="6.8486%" height="15" fill="rgb(224,185,1)" fg:x="1530546833" fg:w="287931305"/><text x="36.6549%" y="1295.50">rayon_cor..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (287,931,305 samples, 6.85%)</title><rect x="36.4049%" y="1269" width="6.8486%" height="15" fill="rgb(223,139,8)" fg:x="1530546833" fg:w="287931305"/><text x="36.6549%" y="1279.50">rayon_cor..</text></g><g><title>rayon_core::unwind::halt_unwinding (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1253" width="3.6253%" height="15" fill="rgb(232,213,38)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1263.50">rayo..</text></g><g><title>std::panic::catch_unwind (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1237" width="3.6253%" height="15" fill="rgb(207,94,22)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1247.50">std:..</text></g><g><title>std::panicking::try (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1221" width="3.6253%" height="15" fill="rgb(219,183,54)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1231.50">std:..</text></g><g><title>std::panicking::try::do_call (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1205" width="3.6253%" height="15" fill="rgb(216,185,54)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1215.50">std:..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1189" width="3.6253%" height="15" fill="rgb(254,217,39)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1199.50">&lt;cor..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1173" width="3.6253%" height="15" fill="rgb(240,178,23)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1183.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1157" width="3.6253%" height="15" fill="rgb(218,11,47)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1167.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1141" width="3.6253%" height="15" fill="rgb(218,51,51)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1151.50">rayo..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1125" width="3.6253%" height="15" fill="rgb(238,126,27)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1135.50">rayo..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1109" width="3.6253%" height="15" fill="rgb(249,202,22)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1119.50">&lt;ray..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1093" width="3.6253%" height="15" fill="rgb(254,195,49)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1103.50">rayo..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1077" width="3.6253%" height="15" fill="rgb(208,123,14)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1087.50">&lt;cor..</text></g><g><title>core::option::Option&lt;T&gt;::map (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1061" width="3.6253%" height="15" fill="rgb(224,200,8)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1071.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1045" width="3.6253%" height="15" fill="rgb(217,61,36)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1055.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1029" width="3.6253%" height="15" fill="rgb(206,35,45)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1039.50">core..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (152,414,322 samples, 3.63%)</title><rect x="39.6282%" y="1013" width="3.6253%" height="15" fill="rgb(217,65,33)" fg:x="1666063816" fg:w="152414322"/><text x="39.8782%" y="1023.50">wxbo..</text></g><g><title>nexrad_data::volume::record::Record::messages (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="997" width="0.0978%" height="15" fill="rgb(222,158,48)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="1007.50"></text></g><g><title>nexrad_decode::messages::decode_messages (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="981" width="0.0978%" height="15" fill="rgb(254,2,54)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="991.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="965" width="0.0978%" height="15" fill="rgb(250,143,38)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="975.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="949" width="0.0978%" height="15" fill="rgb(248,25,0)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="959.50"></text></g><g><title>nexrad_decode::util::deserialize (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="933" width="0.0978%" height="15" fill="rgb(206,152,27)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="943.50"></text></g><g><title>bincode::config::Options::deserialize_from (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="917" width="0.0978%" height="15" fill="rgb(240,77,30)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="927.50"></text></g><g><title>bincode::internal::deserialize_from (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="901" width="0.0978%" height="15" fill="rgb(231,5,3)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="911.50"></text></g><g><title>bincode::internal::deserialize_from_seed (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="885" width="0.0978%" height="15" fill="rgb(207,226,32)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="895.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="869" width="0.0978%" height="15" fill="rgb(222,207,47)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="879.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="853" width="0.0978%" height="15" fill="rgb(229,115,45)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="863.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::header::Header&gt;::deserialize (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="837" width="0.0978%" height="15" fill="rgb(224,191,6)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="847.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="821" width="0.0978%" height="15" fill="rgb(230,227,24)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="831.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="805" width="0.0978%" height="15" fill="rgb(228,80,19)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="815.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::header::Header&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="789" width="0.0978%" height="15" fill="rgb(247,229,0)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="799.50"></text></g><g><title>serde::de::SeqAccess::next_element (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="773" width="0.0978%" height="15" fill="rgb(237,194,15)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="783.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="757" width="0.0978%" height="15" fill="rgb(219,203,20)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="767.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="741" width="0.0978%" height="15" fill="rgb(234,128,8)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="751.50"></text></g><g><title>serde::de::impls::&lt;impl serde::de::Deserialize for u8&gt;::deserialize (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="725" width="0.0978%" height="15" fill="rgb(248,202,8)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="735.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_u8 (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="709" width="0.0978%" height="15" fill="rgb(206,104,37)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="719.50"></text></g><g><title>bincode::de::Deserializer&lt;R,O&gt;::deserialize_byte (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="693" width="0.0978%" height="15" fill="rgb(223,8,27)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="703.50"></text></g><g><title>bincode::byteorder::ReadBytesExt::read_u8 (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="677" width="0.0978%" height="15" fill="rgb(216,217,28)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="687.50"></text></g><g><title>&lt;bincode::de::read::IoReader&lt;R&gt; as std::io::Read&gt;::read_exact (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="661" width="0.0978%" height="15" fill="rgb(249,199,1)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="671.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;mut R&gt;::read_exact (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="645" width="0.0978%" height="15" fill="rgb(240,85,17)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="655.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="629" width="0.0978%" height="15" fill="rgb(206,108,45)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="639.50"></text></g><g><title>std::io::cursor::Cursor&lt;T&gt;::split (4,113,760 samples, 0.10%)</title><rect x="43.1556%" y="613" width="0.0978%" height="15" fill="rgb(245,210,41)" fg:x="1814364378" fg:w="4113760"/><text x="43.4056%" y="623.50"></text></g><g><title>std::io::Read::read_buf (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="1061" width="2.4562%" height="15" fill="rgb(206,13,37)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="1071.50">st..</text></g><g><title>std::io::default_read_buf (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="1045" width="2.4562%" height="15" fill="rgb(250,61,18)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="1055.50">st..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="1029" width="2.4562%" height="15" fill="rgb(235,172,48)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="1039.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="1013" width="2.4562%" height="15" fill="rgb(249,201,17)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="1023.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="997" width="2.4562%" height="15" fill="rgb(219,208,6)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="1007.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="981" width="2.4562%" height="15" fill="rgb(248,31,23)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="991.50">bz..</text></g><g><title>BZ2_bzDecompress (103,263,286 samples, 2.46%)</title><rect x="43.2535%" y="965" width="2.4562%" height="15" fill="rgb(245,15,42)" fg:x="1818478138" fg:w="103263286"/><text x="43.5035%" y="975.50">BZ..</text></g><g><title>nexrad_data::volume::record::Record::decompress (288,186,829 samples, 6.85%)</title><rect x="43.2535%" y="1109" width="6.8547%" height="15" fill="rgb(222,217,39)" fg:x="1818478138" fg:w="288186829"/><text x="43.5035%" y="1119.50">nexrad_da..</text></g><g><title>std::io::Read::read_to_end (288,186,829 samples, 6.85%)</title><rect x="43.2535%" y="1093" width="6.8547%" height="15" fill="rgb(210,219,27)" fg:x="1818478138" fg:w="288186829"/><text x="43.5035%" y="1103.50">std::io::..</text></g><g><title>std::io::default_read_to_end (288,186,829 samples, 6.85%)</title><rect x="43.2535%" y="1077" width="6.8547%" height="15" fill="rgb(252,166,36)" fg:x="1818478138" fg:w="288186829"/><text x="43.5035%" y="1087.50">std::io::..</text></g><g><title>std::io::default_read_to_end::small_probe_read (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="1061" width="4.3985%" height="15" fill="rgb(245,132,34)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="1071.50">std::..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="1045" width="4.3985%" height="15" fill="rgb(236,54,3)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="1055.50">&lt;bzip..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="1029" width="4.3985%" height="15" fill="rgb(241,173,43)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="1039.50">&lt;bzip..</text></g><g><title>bzip2::mem::Decompress::decompress (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="1013" width="4.3985%" height="15" fill="rgb(215,190,9)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="1023.50">bzip2..</text></g><g><title>BZ2_bzDecompress (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="997" width="4.3985%" height="15" fill="rgb(242,101,16)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="1007.50">BZ2_b..</text></g><g><title>BZ2_decompress (184,923,543 samples, 4.40%)</title><rect x="45.7097%" y="981" width="4.3985%" height="15" fill="rgb(223,190,21)" fg:x="1921741424" fg:w="184923543"/><text x="45.9597%" y="991.50">BZ2_d..</text></g><g><title>[libc.so.6] (3,766,595 samples, 0.09%)</title><rect x="50.0186%" y="965" width="0.0896%" height="15" fill="rgb(215,228,25)" fg:x="2102898372" fg:w="3766595"/><text x="50.2686%" y="975.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,843,308 samples, 0.09%)</title><rect x="50.1082%" y="1045" width="0.0914%" height="15" fill="rgb(225,36,22)" fg:x="2106664967" fg:w="3843308"/><text x="50.3582%" y="1055.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;[u8]&gt;::read_exact (3,843,308 samples, 0.09%)</title><rect x="50.1082%" y="1029" width="0.0914%" height="15" fill="rgb(251,106,46)" fg:x="2106664967" fg:w="3843308"/><text x="50.3582%" y="1039.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::copy_from_slice (3,843,308 samples, 0.09%)</title><rect x="50.1082%" y="1013" width="0.0914%" height="15" fill="rgb(208,90,1)" fg:x="2106664967" fg:w="3843308"/><text x="50.3582%" y="1023.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,843,308 samples, 0.09%)</title><rect x="50.1082%" y="997" width="0.0914%" height="15" fill="rgb(243,10,4)" fg:x="2106664967" fg:w="3843308"/><text x="50.3582%" y="1007.50"></text></g><g><title>[libc.so.6] (3,843,308 samples, 0.09%)</title><rect x="50.1082%" y="981" width="0.0914%" height="15" fill="rgb(212,137,27)" fg:x="2106664967" fg:w="3843308"/><text x="50.3582%" y="991.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (7,575,217 samples, 0.18%)</title><rect x="50.1082%" y="1077" width="0.1802%" height="15" fill="rgb(231,220,49)" fg:x="2106664967" fg:w="7575217"/><text x="50.3582%" y="1087.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (7,575,217 samples, 0.18%)</title><rect x="50.1082%" y="1061" width="0.1802%" height="15" fill="rgb(237,96,20)" fg:x="2106664967" fg:w="7575217"/><text x="50.3582%" y="1071.50"></text></g><g><title>nexrad_decode::util::deserialize (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="1045" width="0.0888%" height="15" fill="rgb(239,229,30)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="1055.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="1029" width="0.0888%" height="15" fill="rgb(219,65,33)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="1039.50"></text></g><g><title>bincode::internal::deserialize_from (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="1013" width="0.0888%" height="15" fill="rgb(243,134,7)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="1023.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="997" width="0.0888%" height="15" fill="rgb(216,177,54)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="1007.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="981" width="0.0888%" height="15" fill="rgb(211,160,20)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="991.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="965" width="0.0888%" height="15" fill="rgb(239,85,39)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="975.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="949" width="0.0888%" height="15" fill="rgb(232,125,22)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="959.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="933" width="0.0888%" height="15" fill="rgb(244,57,34)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="943.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="917" width="0.0888%" height="15" fill="rgb(214,203,32)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="927.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,731,909 samples, 0.09%)</title><rect x="50.1996%" y="901" width="0.0888%" height="15" fill="rgb(207,58,43)" fg:x="2110508275" fg:w="3731909"/><text x="50.4496%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1477" width="15.8564%" height="15" fill="rgb(215,193,15)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1487.50">rayon_core::job::StackJo..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1461" width="15.8564%" height="15" fill="rgb(232,15,44)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1471.50">rayon_core::join::join_c..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1445" width="15.8564%" height="15" fill="rgb(212,3,48)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1455.50">rayon::iter::plumbing::b..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1429" width="15.8564%" height="15" fill="rgb(218,128,7)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1439.50">rayon::iter::plumbing::b..</text></g><g><title>rayon_core::join::join_context (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1413" width="15.8564%" height="15" fill="rgb(226,216,39)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1423.50">rayon_core::join::join_c..</text></g><g><title>rayon_core::registry::in_worker (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1397" width="15.8564%" height="15" fill="rgb(243,47,51)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1407.50">rayon_core::registry::in..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (666,640,729 samples, 15.86%)</title><rect x="34.5202%" y="1381" width="15.8564%" height="15" fill="rgb(241,183,40)" fg:x="1451311024" fg:w="666640729"/><text x="34.7702%" y="1391.50">rayon_core::join::join_c..</text></g><g><title>rayon_core::unwind::halt_unwinding (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1365" width="7.1231%" height="15" fill="rgb(231,217,32)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1375.50">rayon_core..</text></g><g><title>std::panic::catch_unwind (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1349" width="7.1231%" height="15" fill="rgb(229,61,38)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1359.50">std::panic..</text></g><g><title>std::panicking::try (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1333" width="7.1231%" height="15" fill="rgb(225,210,5)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1343.50">std::panic..</text></g><g><title>std::panicking::try::do_call (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1317" width="7.1231%" height="15" fill="rgb(231,79,45)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1327.50">std::panic..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1301" width="7.1231%" height="15" fill="rgb(224,100,7)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1311.50">&lt;core::pan..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1285" width="7.1231%" height="15" fill="rgb(241,198,18)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1295.50">rayon_core..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1269" width="7.1231%" height="15" fill="rgb(252,97,53)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1279.50">rayon::ite..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1253" width="7.1231%" height="15" fill="rgb(220,88,7)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1263.50">rayon::ite..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1237" width="7.1231%" height="15" fill="rgb(213,176,14)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1247.50">rayon::ite..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1221" width="7.1231%" height="15" fill="rgb(246,73,7)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1231.50">&lt;rayon::it..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1205" width="7.1231%" height="15" fill="rgb(245,64,36)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1215.50">rayon::ite..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1189" width="7.1231%" height="15" fill="rgb(245,80,10)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1199.50">&lt;core::ite..</text></g><g><title>core::option::Option&lt;T&gt;::map (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1173" width="7.1231%" height="15" fill="rgb(232,107,50)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1183.50">core::opti..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1157" width="7.1231%" height="15" fill="rgb(253,3,0)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1167.50">core::ops:..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1141" width="7.1231%" height="15" fill="rgb(212,99,53)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1151.50">core::ops:..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (299,473,615 samples, 7.12%)</title><rect x="43.2535%" y="1125" width="7.1231%" height="15" fill="rgb(249,111,54)" fg:x="1818478138" fg:w="299473615"/><text x="43.5035%" y="1135.50">wxbox_ar2:..</text></g><g><title>nexrad_data::volume::record::Record::messages (11,286,786 samples, 0.27%)</title><rect x="50.1082%" y="1109" width="0.2685%" height="15" fill="rgb(249,55,30)" fg:x="2106664967" fg:w="11286786"/><text x="50.3582%" y="1119.50"></text></g><g><title>nexrad_decode::messages::decode_messages (11,286,786 samples, 0.27%)</title><rect x="50.1082%" y="1093" width="0.2685%" height="15" fill="rgb(237,47,42)" fg:x="2106664967" fg:w="11286786"/><text x="50.3582%" y="1103.50"></text></g><g><title>nexrad_decode::messages::decode_message_header (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="1077" width="0.0883%" height="15" fill="rgb(211,20,18)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1087.50"></text></g><g><title>nexrad_decode::util::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="1061" width="0.0883%" height="15" fill="rgb(231,203,46)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1071.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="1045" width="0.0883%" height="15" fill="rgb(237,142,3)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1055.50"></text></g><g><title>bincode::internal::deserialize_from (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="1029" width="0.0883%" height="15" fill="rgb(241,107,1)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1039.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="1013" width="0.0883%" height="15" fill="rgb(229,83,13)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1023.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="997" width="0.0883%" height="15" fill="rgb(241,91,40)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="1007.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="981" width="0.0883%" height="15" fill="rgb(225,3,45)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="991.50"></text></g><g><title>nexrad_decode::messages::message_header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::message_header::MessageHeader&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="965" width="0.0883%" height="15" fill="rgb(244,223,14)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="975.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="949" width="0.0883%" height="15" fill="rgb(224,124,37)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="959.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="933" width="0.0883%" height="15" fill="rgb(251,171,30)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="943.50"></text></g><g><title>&lt;nexrad_decode::messages::message_header::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::message_header::MessageHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="917" width="0.0883%" height="15" fill="rgb(236,46,54)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="927.50"></text></g><g><title>serde::de::SeqAccess::next_element (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="901" width="0.0883%" height="15" fill="rgb(245,213,5)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="911.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="885" width="0.0883%" height="15" fill="rgb(230,144,27)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="895.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="869" width="0.0883%" height="15" fill="rgb(220,86,6)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="879.50"></text></g><g><title>serde::de::impls::_&lt;impl serde::de::Deserialize for [T: 12]&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="853" width="0.0883%" height="15" fill="rgb(240,20,13)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="863.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="837" width="0.0883%" height="15" fill="rgb(217,89,34)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="847.50"></text></g><g><title>&lt;serde::de::impls::ArrayVisitor&lt;[T: 12]&gt; as serde::de::Visitor&gt;::visit_seq (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="821" width="0.0883%" height="15" fill="rgb(229,13,5)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="831.50"></text></g><g><title>serde::de::SeqAccess::next_element (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="805" width="0.0883%" height="15" fill="rgb(244,67,35)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="815.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="789" width="0.0883%" height="15" fill="rgb(221,40,2)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="799.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="773" width="0.0883%" height="15" fill="rgb(237,157,21)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="783.50"></text></g><g><title>serde::de::impls::&lt;impl serde::de::Deserialize for u8&gt;::deserialize (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="757" width="0.0883%" height="15" fill="rgb(222,94,11)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="767.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_u8 (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="741" width="0.0883%" height="15" fill="rgb(249,113,6)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="751.50"></text></g><g><title>bincode::de::Deserializer&lt;R,O&gt;::deserialize_byte (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="725" width="0.0883%" height="15" fill="rgb(238,137,36)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="735.50"></text></g><g><title>bincode::byteorder::ReadBytesExt::read_u8 (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="709" width="0.0883%" height="15" fill="rgb(210,102,26)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="719.50"></text></g><g><title>&lt;bincode::de::read::IoReader&lt;R&gt; as std::io::Read&gt;::read_exact (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="693" width="0.0883%" height="15" fill="rgb(218,30,30)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="703.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;mut R&gt;::read_exact (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="677" width="0.0883%" height="15" fill="rgb(214,67,26)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="687.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="661" width="0.0883%" height="15" fill="rgb(251,9,53)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="671.50"></text></g><g><title>std::io::cursor::Cursor&lt;T&gt;::split (3,711,569 samples, 0.09%)</title><rect x="50.2883%" y="645" width="0.0883%" height="15" fill="rgb(228,204,25)" fg:x="2114240184" fg:w="3711569"/><text x="50.5383%" y="655.50"></text></g><g><title>std::io::Read::read_buf (27,442,014 samples, 0.65%)</title><rect x="50.3766%" y="485" width="0.6527%" height="15" fill="rgb(207,153,8)" fg:x="2117951753" fg:w="27442014"/><text x="50.6266%" y="495.50"></text></g><g><title>std::io::default_read_buf (27,442,014 samples, 0.65%)</title><rect x="50.3766%" y="469" width="0.6527%" height="15" fill="rgb(242,9,16)" fg:x="2117951753" fg:w="27442014"/><text x="50.6266%" y="479.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (27,440,253 samples, 0.65%)</title><rect x="50.3767%" y="453" width="0.6527%" height="15" fill="rgb(217,211,10)" fg:x="2117953514" fg:w="27440253"/><text x="50.6267%" y="463.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (27,440,253 samples, 0.65%)</title><rect x="50.3767%" y="437" width="0.6527%" height="15" fill="rgb(219,228,52)" fg:x="2117953514" fg:w="27440253"/><text x="50.6267%" y="447.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (27,440,253 samples, 0.65%)</title><rect x="50.3767%" y="421" width="0.6527%" height="15" fill="rgb(231,92,29)" fg:x="2117953514" fg:w="27440253"/><text x="50.6267%" y="431.50"></text></g><g><title>bzip2::mem::Decompress::decompress (27,440,253 samples, 0.65%)</title><rect x="50.3767%" y="405" width="0.6527%" height="15" fill="rgb(232,8,23)" fg:x="2117953514" fg:w="27440253"/><text x="50.6267%" y="415.50"></text></g><g><title>BZ2_bzDecompress (27,440,253 samples, 0.65%)</title><rect x="50.3767%" y="389" width="0.6527%" height="15" fill="rgb(216,211,34)" fg:x="2117953514" fg:w="27440253"/><text x="50.6267%" y="399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="1077" width="2.0236%" height="15" fill="rgb(236,151,0)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1087.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="1061" width="2.0236%" height="15" fill="rgb(209,168,3)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1071.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::execute (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="1045" width="2.0236%" height="15" fill="rgb(208,129,28)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1055.50">r..</text></g><g><title>rayon_core::job::JobRef::execute (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="1029" width="2.0236%" height="15" fill="rgb(229,78,22)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1039.50">r..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="1013" width="2.0236%" height="15" fill="rgb(228,187,13)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1023.50">&lt;..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="997" width="2.0236%" height="15" fill="rgb(240,119,24)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="1007.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="981" width="2.0236%" height="15" fill="rgb(209,194,42)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="991.50">r..</text></g><g><title>std::panic::catch_unwind (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="965" width="2.0236%" height="15" fill="rgb(247,200,46)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="975.50">s..</text></g><g><title>std::panicking::try (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="949" width="2.0236%" height="15" fill="rgb(218,76,16)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="959.50">s..</text></g><g><title>std::panicking::try::do_call (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="933" width="2.0236%" height="15" fill="rgb(225,21,48)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="943.50">s..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="917" width="2.0236%" height="15" fill="rgb(239,223,50)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="927.50">&lt;..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="901" width="2.0236%" height="15" fill="rgb(244,45,21)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="911.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="885" width="2.0236%" height="15" fill="rgb(232,33,43)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="895.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="869" width="2.0236%" height="15" fill="rgb(209,8,3)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="879.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="853" width="2.0236%" height="15" fill="rgb(214,25,53)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="863.50">r..</text></g><g><title>rayon_core::join::join_context (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="837" width="2.0236%" height="15" fill="rgb(254,186,54)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="847.50">r..</text></g><g><title>rayon_core::registry::in_worker (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="821" width="2.0236%" height="15" fill="rgb(208,174,49)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="831.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="805" width="2.0236%" height="15" fill="rgb(233,191,51)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="815.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="789" width="2.0236%" height="15" fill="rgb(222,134,10)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="799.50">r..</text></g><g><title>std::panic::catch_unwind (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="773" width="2.0236%" height="15" fill="rgb(230,226,20)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="783.50">s..</text></g><g><title>std::panicking::try (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="757" width="2.0236%" height="15" fill="rgb(251,111,25)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="767.50">s..</text></g><g><title>std::panicking::try::do_call (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="741" width="2.0236%" height="15" fill="rgb(224,40,46)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="751.50">s..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="725" width="2.0236%" height="15" fill="rgb(236,108,47)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="735.50">&lt;..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="709" width="2.0236%" height="15" fill="rgb(234,93,0)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="719.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="693" width="2.0236%" height="15" fill="rgb(224,213,32)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="703.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="677" width="2.0236%" height="15" fill="rgb(251,11,48)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="687.50">r..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="661" width="2.0236%" height="15" fill="rgb(236,173,5)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="671.50">r..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="645" width="2.0236%" height="15" fill="rgb(230,95,12)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="655.50">&lt;..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="629" width="2.0236%" height="15" fill="rgb(232,209,1)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="639.50">r..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="613" width="2.0236%" height="15" fill="rgb(232,6,1)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="623.50">&lt;..</text></g><g><title>core::option::Option&lt;T&gt;::map (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="597" width="2.0236%" height="15" fill="rgb(210,224,50)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="607.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="581" width="2.0236%" height="15" fill="rgb(228,127,35)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="591.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="565" width="2.0236%" height="15" fill="rgb(245,102,45)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="575.50">c..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="549" width="2.0236%" height="15" fill="rgb(214,1,49)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="559.50">w..</text></g><g><title>nexrad_data::volume::record::Record::decompress (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="533" width="2.0236%" height="15" fill="rgb(226,163,40)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="543.50">n..</text></g><g><title>std::io::Read::read_to_end (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="517" width="2.0236%" height="15" fill="rgb(239,212,28)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="527.50">s..</text></g><g><title>std::io::default_read_to_end (85,075,707 samples, 2.02%)</title><rect x="50.3766%" y="501" width="2.0236%" height="15" fill="rgb(220,20,13)" fg:x="2117951753" fg:w="85075707"/><text x="50.6266%" y="511.50">s..</text></g><g><title>std::io::default_read_to_end::small_probe_read (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="485" width="1.3708%" height="15" fill="rgb(210,164,35)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="495.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="469" width="1.3708%" height="15" fill="rgb(248,109,41)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="479.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="453" width="1.3708%" height="15" fill="rgb(238,23,50)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="463.50"></text></g><g><title>bzip2::mem::Decompress::decompress (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="437" width="1.3708%" height="15" fill="rgb(211,48,49)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="447.50"></text></g><g><title>BZ2_bzDecompress (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="421" width="1.3708%" height="15" fill="rgb(223,36,21)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="431.50"></text></g><g><title>BZ2_decompress (57,633,693 samples, 1.37%)</title><rect x="51.0294%" y="405" width="1.3708%" height="15" fill="rgb(207,123,46)" fg:x="2145393767" fg:w="57633693"/><text x="51.2794%" y="415.50"></text></g><g><title>std::io::Read::read_buf (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="773" width="0.0941%" height="15" fill="rgb(240,218,32)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="783.50"></text></g><g><title>std::io::default_read_buf (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="757" width="0.0941%" height="15" fill="rgb(252,5,43)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="767.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="741" width="0.0941%" height="15" fill="rgb(252,84,19)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="751.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="725" width="0.0941%" height="15" fill="rgb(243,152,39)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="735.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="709" width="0.0941%" height="15" fill="rgb(234,160,15)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="719.50"></text></g><g><title>bzip2::mem::Decompress::decompress (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="693" width="0.0941%" height="15" fill="rgb(237,34,20)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="703.50"></text></g><g><title>BZ2_bzDecompress (3,956,457 samples, 0.09%)</title><rect x="52.4002%" y="677" width="0.0941%" height="15" fill="rgb(229,97,13)" fg:x="2203027460" fg:w="3956457"/><text x="52.6502%" y="687.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (15,509,674 samples, 0.37%)</title><rect x="52.4002%" y="821" width="0.3689%" height="15" fill="rgb(234,71,50)" fg:x="2203027460" fg:w="15509674"/><text x="52.6502%" y="831.50"></text></g><g><title>std::io::Read::read_to_end (15,509,674 samples, 0.37%)</title><rect x="52.4002%" y="805" width="0.3689%" height="15" fill="rgb(253,155,4)" fg:x="2203027460" fg:w="15509674"/><text x="52.6502%" y="815.50"></text></g><g><title>std::io::default_read_to_end (15,509,674 samples, 0.37%)</title><rect x="52.4002%" y="789" width="0.3689%" height="15" fill="rgb(222,185,37)" fg:x="2203027460" fg:w="15509674"/><text x="52.6502%" y="799.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="773" width="0.2748%" height="15" fill="rgb(251,177,13)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="783.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="757" width="0.2748%" height="15" fill="rgb(250,179,40)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="767.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="741" width="0.2748%" height="15" fill="rgb(242,44,2)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="751.50"></text></g><g><title>bzip2::mem::Decompress::decompress (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="725" width="0.2748%" height="15" fill="rgb(216,177,13)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="735.50"></text></g><g><title>BZ2_bzDecompress (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="709" width="0.2748%" height="15" fill="rgb(216,106,43)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="719.50"></text></g><g><title>BZ2_decompress (11,553,217 samples, 0.27%)</title><rect x="52.4943%" y="693" width="0.2748%" height="15" fill="rgb(216,183,2)" fg:x="2206983917" fg:w="11553217"/><text x="52.7443%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1189" width="2.4873%" height="15" fill="rgb(249,75,3)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1199.50">ra..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1173" width="2.4873%" height="15" fill="rgb(219,67,39)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1183.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1157" width="2.4873%" height="15" fill="rgb(253,228,2)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1167.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1141" width="2.4873%" height="15" fill="rgb(235,138,27)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1151.50">ra..</text></g><g><title>rayon_core::join::join_context (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1125" width="2.4873%" height="15" fill="rgb(236,97,51)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1135.50">ra..</text></g><g><title>rayon_core::registry::in_worker (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1109" width="2.4873%" height="15" fill="rgb(240,80,30)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1119.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (104,571,551 samples, 2.49%)</title><rect x="50.3766%" y="1093" width="2.4873%" height="15" fill="rgb(230,178,19)" fg:x="2117951753" fg:w="104571551"/><text x="50.6266%" y="1103.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="1077" width="0.4637%" height="15" fill="rgb(210,190,27)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="1061" width="0.4637%" height="15" fill="rgb(222,107,31)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1071.50"></text></g><g><title>std::panicking::try (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="1045" width="0.4637%" height="15" fill="rgb(216,127,34)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="1029" width="0.4637%" height="15" fill="rgb(234,116,52)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1039.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="1013" width="0.4637%" height="15" fill="rgb(222,124,15)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="997" width="0.4637%" height="15" fill="rgb(231,179,28)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="981" width="0.4637%" height="15" fill="rgb(226,93,45)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="965" width="0.4637%" height="15" fill="rgb(215,8,51)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="975.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="949" width="0.4637%" height="15" fill="rgb(223,106,5)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="959.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="933" width="0.4637%" height="15" fill="rgb(250,191,5)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="943.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="917" width="0.4637%" height="15" fill="rgb(242,132,44)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="901" width="0.4637%" height="15" fill="rgb(251,152,29)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="885" width="0.4637%" height="15" fill="rgb(218,179,5)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="895.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="869" width="0.4637%" height="15" fill="rgb(227,67,19)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="879.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="853" width="0.4637%" height="15" fill="rgb(233,119,31)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="863.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (19,495,844 samples, 0.46%)</title><rect x="52.4002%" y="837" width="0.4637%" height="15" fill="rgb(241,120,22)" fg:x="2203027460" fg:w="19495844"/><text x="52.6502%" y="847.50"></text></g><g><title>nexrad_data::volume::record::Record::messages (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="821" width="0.0948%" height="15" fill="rgb(224,102,30)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="831.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="805" width="0.0948%" height="15" fill="rgb(210,164,37)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="815.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="789" width="0.0948%" height="15" fill="rgb(226,191,16)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="799.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="773" width="0.0948%" height="15" fill="rgb(214,40,45)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="783.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock::new (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="757" width="0.0948%" height="15" fill="rgb(244,29,26)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="767.50"></text></g><g><title>alloc::vec::from_elem (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="741" width="0.0948%" height="15" fill="rgb(216,16,5)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="751.50"></text></g><g><title>&lt;u8 as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="725" width="0.0948%" height="15" fill="rgb(249,76,35)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="709" width="0.0948%" height="15" fill="rgb(207,11,44)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="719.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_zeroed_in (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="693" width="0.0948%" height="15" fill="rgb(228,190,49)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="703.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="677" width="0.0948%" height="15" fill="rgb(214,173,12)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="687.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="661" width="0.0948%" height="15" fill="rgb(218,26,35)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="671.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="645" width="0.0948%" height="15" fill="rgb(220,200,19)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="655.50"></text></g><g><title>alloc::alloc::alloc_zeroed (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="629" width="0.0948%" height="15" fill="rgb(239,95,49)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="639.50"></text></g><g><title>__rdl_alloc_zeroed (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="613" width="0.0948%" height="15" fill="rgb(235,85,53)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="623.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="597" width="0.0948%" height="15" fill="rgb(233,133,31)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="607.50"></text></g><g><title>[libc.so.6] (3,986,170 samples, 0.09%)</title><rect x="52.7691%" y="581" width="0.0948%" height="15" fill="rgb(218,25,20)" fg:x="2218537134" fg:w="3986170"/><text x="53.0191%" y="591.50"></text></g><g><title>std::io::Read::read_buf (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="885" width="0.1735%" height="15" fill="rgb(252,210,38)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="895.50"></text></g><g><title>std::io::default_read_buf (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="869" width="0.1735%" height="15" fill="rgb(242,134,21)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="879.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="853" width="0.1735%" height="15" fill="rgb(213,28,48)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="863.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="837" width="0.1735%" height="15" fill="rgb(250,196,2)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="847.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="821" width="0.1735%" height="15" fill="rgb(227,5,17)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="831.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="805" width="0.1735%" height="15" fill="rgb(221,226,24)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="815.50"></text></g><g><title>BZ2_bzDecompress (7,292,548 samples, 0.17%)</title><rect x="52.8639%" y="789" width="0.1735%" height="15" fill="rgb(211,5,48)" fg:x="2222523304" fg:w="7292548"/><text x="53.1139%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="1061" width="0.4258%" height="15" fill="rgb(219,150,6)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="1071.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="1045" width="0.4258%" height="15" fill="rgb(251,46,16)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="1029" width="0.4258%" height="15" fill="rgb(220,204,40)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="1039.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="1013" width="0.4258%" height="15" fill="rgb(211,85,2)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="1023.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="997" width="0.4258%" height="15" fill="rgb(229,17,7)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="1007.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="981" width="0.4258%" height="15" fill="rgb(239,72,28)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="991.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="965" width="0.4258%" height="15" fill="rgb(230,47,54)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="975.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="949" width="0.4258%" height="15" fill="rgb(214,50,8)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="959.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="933" width="0.4258%" height="15" fill="rgb(216,198,43)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="943.50"></text></g><g><title>std::io::Read::read_to_end (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="917" width="0.4258%" height="15" fill="rgb(234,20,35)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="927.50"></text></g><g><title>std::io::default_read_to_end (17,900,069 samples, 0.43%)</title><rect x="52.8639%" y="901" width="0.4258%" height="15" fill="rgb(254,45,19)" fg:x="2222523304" fg:w="17900069"/><text x="53.1139%" y="911.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="885" width="0.2523%" height="15" fill="rgb(219,14,44)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="895.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="869" width="0.2523%" height="15" fill="rgb(217,220,26)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="879.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="853" width="0.2523%" height="15" fill="rgb(213,158,28)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="863.50"></text></g><g><title>bzip2::mem::Decompress::decompress (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="837" width="0.2523%" height="15" fill="rgb(252,51,52)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="847.50"></text></g><g><title>BZ2_bzDecompress (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="821" width="0.2523%" height="15" fill="rgb(246,89,16)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="831.50"></text></g><g><title>BZ2_decompress (10,607,521 samples, 0.25%)</title><rect x="53.0374%" y="805" width="0.2523%" height="15" fill="rgb(216,158,49)" fg:x="2229815852" fg:w="10607521"/><text x="53.2874%" y="815.50"></text></g><g><title>std::io::Read::read_buf (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="597" width="0.5547%" height="15" fill="rgb(236,107,19)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="607.50"></text></g><g><title>std::io::default_read_buf (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="581" width="0.5547%" height="15" fill="rgb(228,185,30)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="591.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="565" width="0.5547%" height="15" fill="rgb(246,134,8)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="575.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="549" width="0.5547%" height="15" fill="rgb(214,143,50)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="559.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="533" width="0.5547%" height="15" fill="rgb(228,75,8)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="543.50"></text></g><g><title>bzip2::mem::Decompress::decompress (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="517" width="0.5547%" height="15" fill="rgb(207,175,4)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="527.50"></text></g><g><title>BZ2_bzDecompress (23,322,660 samples, 0.55%)</title><rect x="53.2897%" y="501" width="0.5547%" height="15" fill="rgb(205,108,24)" fg:x="2240423373" fg:w="23322660"/><text x="53.5397%" y="511.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (63,871,222 samples, 1.52%)</title><rect x="53.2897%" y="645" width="1.5192%" height="15" fill="rgb(244,120,49)" fg:x="2240423373" fg:w="63871222"/><text x="53.5397%" y="655.50"></text></g><g><title>std::io::Read::read_to_end (63,871,222 samples, 1.52%)</title><rect x="53.2897%" y="629" width="1.5192%" height="15" fill="rgb(223,47,38)" fg:x="2240423373" fg:w="63871222"/><text x="53.5397%" y="639.50"></text></g><g><title>std::io::default_read_to_end (63,871,222 samples, 1.52%)</title><rect x="53.2897%" y="613" width="1.5192%" height="15" fill="rgb(229,179,11)" fg:x="2240423373" fg:w="63871222"/><text x="53.5397%" y="623.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="597" width="0.9645%" height="15" fill="rgb(231,122,1)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="607.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="581" width="0.9645%" height="15" fill="rgb(245,119,9)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="591.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="565" width="0.9645%" height="15" fill="rgb(241,163,25)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="575.50"></text></g><g><title>bzip2::mem::Decompress::decompress (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="549" width="0.9645%" height="15" fill="rgb(217,214,3)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="559.50"></text></g><g><title>BZ2_bzDecompress (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="533" width="0.9645%" height="15" fill="rgb(240,86,28)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="543.50"></text></g><g><title>BZ2_decompress (40,548,562 samples, 0.96%)</title><rect x="53.8444%" y="517" width="0.9645%" height="15" fill="rgb(215,47,9)" fg:x="2263746033" fg:w="40548562"/><text x="54.0944%" y="527.50"></text></g><g><title>[libc.so.6] (3,529,652 samples, 0.08%)</title><rect x="54.7249%" y="501" width="0.0840%" height="15" fill="rgb(252,25,45)" fg:x="2300764943" fg:w="3529652"/><text x="54.9749%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="1013" width="1.6054%" height="15" fill="rgb(251,164,9)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="997" width="1.6054%" height="15" fill="rgb(233,194,0)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="981" width="1.6054%" height="15" fill="rgb(249,111,24)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="965" width="1.6054%" height="15" fill="rgb(250,223,3)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="975.50"></text></g><g><title>rayon_core::join::join_context (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="949" width="1.6054%" height="15" fill="rgb(236,178,37)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="933" width="1.6054%" height="15" fill="rgb(241,158,50)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="917" width="1.6054%" height="15" fill="rgb(213,121,41)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="901" width="1.6054%" height="15" fill="rgb(240,92,3)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="911.50"></text></g><g><title>std::panic::catch_unwind (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="885" width="1.6054%" height="15" fill="rgb(205,123,3)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="895.50"></text></g><g><title>std::panicking::try (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="869" width="1.6054%" height="15" fill="rgb(205,97,47)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="879.50"></text></g><g><title>std::panicking::try::do_call (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="853" width="1.6054%" height="15" fill="rgb(247,152,14)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="863.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="837" width="1.6054%" height="15" fill="rgb(248,195,53)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="821" width="1.6054%" height="15" fill="rgb(226,201,16)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="805" width="1.6054%" height="15" fill="rgb(205,98,0)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="789" width="1.6054%" height="15" fill="rgb(214,191,48)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="773" width="1.6054%" height="15" fill="rgb(237,112,39)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="783.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="757" width="1.6054%" height="15" fill="rgb(247,203,27)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="741" width="1.6054%" height="15" fill="rgb(235,124,28)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="725" width="1.6054%" height="15" fill="rgb(208,207,46)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="735.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="709" width="1.6054%" height="15" fill="rgb(234,176,4)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="693" width="1.6054%" height="15" fill="rgb(230,133,28)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="677" width="1.6054%" height="15" fill="rgb(211,137,40)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="687.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (67,494,334 samples, 1.61%)</title><rect x="53.2897%" y="661" width="1.6054%" height="15" fill="rgb(254,35,13)" fg:x="2240423373" fg:w="67494334"/><text x="53.5397%" y="671.50"></text></g><g><title>nexrad_data::volume::record::Record::messages (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="645" width="0.0862%" height="15" fill="rgb(225,49,51)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="655.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="629" width="0.0862%" height="15" fill="rgb(251,10,15)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="639.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="613" width="0.0862%" height="15" fill="rgb(228,207,15)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="623.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="597" width="0.0862%" height="15" fill="rgb(241,99,19)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="607.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="581" width="0.0862%" height="15" fill="rgb(207,104,49)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="591.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;[u8]&gt;::read_exact (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="565" width="0.0862%" height="15" fill="rgb(234,99,18)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="575.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::copy_from_slice (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="549" width="0.0862%" height="15" fill="rgb(213,191,49)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="559.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="533" width="0.0862%" height="15" fill="rgb(210,226,19)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="543.50"></text></g><g><title>[libc.so.6] (3,623,112 samples, 0.09%)</title><rect x="54.8089%" y="517" width="0.0862%" height="15" fill="rgb(229,97,18)" fg:x="2304294595" fg:w="3623112"/><text x="55.0589%" y="527.50"></text></g><g><title>std::io::Read::read_buf (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="709" width="1.0888%" height="15" fill="rgb(211,167,15)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="719.50"></text></g><g><title>std::io::default_read_buf (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="693" width="1.0888%" height="15" fill="rgb(210,169,34)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="703.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="677" width="1.0888%" height="15" fill="rgb(241,121,31)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="687.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="661" width="1.0888%" height="15" fill="rgb(232,40,11)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="671.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="645" width="1.0888%" height="15" fill="rgb(205,86,26)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="655.50"></text></g><g><title>bzip2::mem::Decompress::decompress (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="629" width="1.0888%" height="15" fill="rgb(231,126,28)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="639.50"></text></g><g><title>BZ2_bzDecompress (45,773,873 samples, 1.09%)</title><rect x="54.8951%" y="613" width="1.0888%" height="15" fill="rgb(219,221,18)" fg:x="2307917707" fg:w="45773873"/><text x="55.1451%" y="623.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (106,340,800 samples, 2.53%)</title><rect x="54.8951%" y="757" width="2.5294%" height="15" fill="rgb(211,40,0)" fg:x="2307917707" fg:w="106340800"/><text x="55.1451%" y="767.50">ne..</text></g><g><title>std::io::Read::read_to_end (106,340,800 samples, 2.53%)</title><rect x="54.8951%" y="741" width="2.5294%" height="15" fill="rgb(239,85,43)" fg:x="2307917707" fg:w="106340800"/><text x="55.1451%" y="751.50">st..</text></g><g><title>std::io::default_read_to_end (106,340,800 samples, 2.53%)</title><rect x="54.8951%" y="725" width="2.5294%" height="15" fill="rgb(231,55,21)" fg:x="2307917707" fg:w="106340800"/><text x="55.1451%" y="735.50">st..</text></g><g><title>std::io::default_read_to_end::small_probe_read (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="709" width="1.4406%" height="15" fill="rgb(225,184,43)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="719.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="693" width="1.4406%" height="15" fill="rgb(251,158,41)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="703.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="677" width="1.4406%" height="15" fill="rgb(234,159,37)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="687.50"></text></g><g><title>bzip2::mem::Decompress::decompress (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="661" width="1.4406%" height="15" fill="rgb(216,204,22)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="671.50"></text></g><g><title>BZ2_bzDecompress (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="645" width="1.4406%" height="15" fill="rgb(214,17,3)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="655.50"></text></g><g><title>BZ2_decompress (60,566,927 samples, 1.44%)</title><rect x="55.9838%" y="629" width="1.4406%" height="15" fill="rgb(212,111,17)" fg:x="2353691580" fg:w="60566927"/><text x="56.2338%" y="639.50"></text></g><g><title>[libc.so.6] (3,949,871 samples, 0.09%)</title><rect x="57.3305%" y="613" width="0.0939%" height="15" fill="rgb(221,157,24)" fg:x="2410308636" fg:w="3949871"/><text x="57.5805%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1477" width="7.1379%" height="15" fill="rgb(252,16,13)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1487.50">rayon_core..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1461" width="7.1379%" height="15" fill="rgb(221,62,2)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1471.50">rayon_core..</text></g><g><title>rayon_core::registry::WorkerThread::execute (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1445" width="7.1379%" height="15" fill="rgb(247,87,22)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1455.50">rayon_core..</text></g><g><title>rayon_core::job::JobRef::execute (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1429" width="7.1379%" height="15" fill="rgb(215,73,9)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1439.50">rayon_core..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1413" width="7.1379%" height="15" fill="rgb(207,175,33)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1423.50">&lt;rayon_cor..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1397" width="7.1379%" height="15" fill="rgb(243,129,54)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1407.50">rayon_core..</text></g><g><title>rayon_core::unwind::halt_unwinding (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1381" width="7.1379%" height="15" fill="rgb(227,119,45)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1391.50">rayon_core..</text></g><g><title>std::panic::catch_unwind (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1365" width="7.1379%" height="15" fill="rgb(205,109,36)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1375.50">std::panic..</text></g><g><title>std::panicking::try (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1349" width="7.1379%" height="15" fill="rgb(205,6,39)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1359.50">std::panic..</text></g><g><title>std::panicking::try::do_call (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1333" width="7.1379%" height="15" fill="rgb(221,32,16)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1343.50">std::panic..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1317" width="7.1379%" height="15" fill="rgb(228,144,50)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1327.50">&lt;core::pan..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1301" width="7.1379%" height="15" fill="rgb(229,201,53)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1311.50">rayon_core..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1285" width="7.1379%" height="15" fill="rgb(249,153,27)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1295.50">rayon_core..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1269" width="7.1379%" height="15" fill="rgb(227,106,25)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1279.50">rayon::ite..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1253" width="7.1379%" height="15" fill="rgb(230,65,29)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1263.50">rayon::ite..</text></g><g><title>rayon_core::join::join_context (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1237" width="7.1379%" height="15" fill="rgb(221,57,46)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1247.50">rayon_core..</text></g><g><title>rayon_core::registry::in_worker (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1221" width="7.1379%" height="15" fill="rgb(229,161,17)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1231.50">rayon_core..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (300,093,448 samples, 7.14%)</title><rect x="50.3766%" y="1205" width="7.1379%" height="15" fill="rgb(222,213,11)" fg:x="2117951753" fg:w="300093448"/><text x="50.6266%" y="1215.50">rayon_core..</text></g><g><title>rayon_core::unwind::halt_unwinding (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1189" width="4.6506%" height="15" fill="rgb(235,35,13)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1199.50">rayon..</text></g><g><title>std::panic::catch_unwind (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1173" width="4.6506%" height="15" fill="rgb(233,158,34)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1183.50">std::..</text></g><g><title>std::panicking::try (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1157" width="4.6506%" height="15" fill="rgb(215,151,48)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1167.50">std::..</text></g><g><title>std::panicking::try::do_call (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1141" width="4.6506%" height="15" fill="rgb(229,84,14)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1151.50">std::..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1125" width="4.6506%" height="15" fill="rgb(229,68,14)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1135.50">&lt;core..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1109" width="4.6506%" height="15" fill="rgb(243,106,26)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1119.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1093" width="4.6506%" height="15" fill="rgb(206,45,38)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1103.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (195,521,897 samples, 4.65%)</title><rect x="52.8639%" y="1077" width="4.6506%" height="15" fill="rgb(226,6,15)" fg:x="2222523304" fg:w="195521897"/><text x="53.1139%" y="1087.50">rayon..</text></g><g><title>rayon_core::join::join_context (177,621,828 samples, 4.22%)</title><rect x="53.2897%" y="1061" width="4.2248%" height="15" fill="rgb(232,22,54)" fg:x="2240423373" fg:w="177621828"/><text x="53.5397%" y="1071.50">rayon..</text></g><g><title>rayon_core::registry::in_worker (177,621,828 samples, 4.22%)</title><rect x="53.2897%" y="1045" width="4.2248%" height="15" fill="rgb(229,222,32)" fg:x="2240423373" fg:w="177621828"/><text x="53.5397%" y="1055.50">rayon..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (177,621,828 samples, 4.22%)</title><rect x="53.2897%" y="1029" width="4.2248%" height="15" fill="rgb(228,62,29)" fg:x="2240423373" fg:w="177621828"/><text x="53.5397%" y="1039.50">rayon..</text></g><g><title>rayon_core::unwind::halt_unwinding (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="1013" width="2.6194%" height="15" fill="rgb(251,103,34)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="1023.50">ra..</text></g><g><title>std::panic::catch_unwind (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="997" width="2.6194%" height="15" fill="rgb(233,12,30)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="1007.50">st..</text></g><g><title>std::panicking::try (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="981" width="2.6194%" height="15" fill="rgb(238,52,0)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="991.50">st..</text></g><g><title>std::panicking::try::do_call (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="965" width="2.6194%" height="15" fill="rgb(223,98,5)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="975.50">st..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="949" width="2.6194%" height="15" fill="rgb(228,75,37)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="959.50">&lt;c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="933" width="2.6194%" height="15" fill="rgb(205,115,49)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="943.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="917" width="2.6194%" height="15" fill="rgb(250,154,43)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="927.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="901" width="2.6194%" height="15" fill="rgb(226,43,29)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="911.50">ra..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="885" width="2.6194%" height="15" fill="rgb(249,228,39)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="895.50">ra..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="869" width="2.6194%" height="15" fill="rgb(216,79,43)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="879.50">&lt;r..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="853" width="2.6194%" height="15" fill="rgb(228,95,12)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="863.50">ra..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="837" width="2.6194%" height="15" fill="rgb(249,221,15)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="847.50">&lt;c..</text></g><g><title>core::option::Option&lt;T&gt;::map (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="821" width="2.6194%" height="15" fill="rgb(233,34,13)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="831.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="805" width="2.6194%" height="15" fill="rgb(214,103,39)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="815.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="789" width="2.6194%" height="15" fill="rgb(251,126,39)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="799.50">co..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (110,127,494 samples, 2.62%)</title><rect x="54.8951%" y="773" width="2.6194%" height="15" fill="rgb(214,216,36)" fg:x="2307917707" fg:w="110127494"/><text x="55.1451%" y="783.50">wx..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="757" width="0.0901%" height="15" fill="rgb(220,221,8)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="767.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="741" width="0.0901%" height="15" fill="rgb(240,216,3)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="751.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="725" width="0.0901%" height="15" fill="rgb(232,218,17)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="735.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="709" width="0.0901%" height="15" fill="rgb(229,163,45)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="719.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="693" width="0.0901%" height="15" fill="rgb(231,110,42)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="703.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;[u8]&gt;::read_exact (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="677" width="0.0901%" height="15" fill="rgb(208,170,48)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="687.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::copy_from_slice (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="661" width="0.0901%" height="15" fill="rgb(239,116,25)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="671.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="645" width="0.0901%" height="15" fill="rgb(219,200,50)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="655.50"></text></g><g><title>[libc.so.6] (3,786,694 samples, 0.09%)</title><rect x="57.4244%" y="629" width="0.0901%" height="15" fill="rgb(245,200,0)" fg:x="2414258507" fg:w="3786694"/><text x="57.6744%" y="639.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1221" width="0.0865%" height="15" fill="rgb(245,119,33)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1231.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1205" width="0.0865%" height="15" fill="rgb(231,125,12)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1215.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1189" width="0.0865%" height="15" fill="rgb(216,96,41)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1199.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::message::Message as core::clone::Clone&gt;::clone (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1173" width="0.0865%" height="15" fill="rgb(248,43,45)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1183.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1157" width="0.0865%" height="15" fill="rgb(217,222,7)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1167.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock as core::clone::Clone&gt;::clone (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1141" width="0.0865%" height="15" fill="rgb(233,28,6)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1125" width="0.0865%" height="15" fill="rgb(231,218,15)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1135.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1109" width="0.0865%" height="15" fill="rgb(226,171,48)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1119.50"></text></g><g><title>alloc::slice::hack::to_vec (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1093" width="0.0865%" height="15" fill="rgb(235,201,9)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1103.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1077" width="0.0865%" height="15" fill="rgb(217,80,15)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1061" width="0.0865%" height="15" fill="rgb(219,152,8)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1045" width="0.0865%" height="15" fill="rgb(243,107,38)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1029" width="0.0865%" height="15" fill="rgb(231,17,5)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="1013" width="0.0865%" height="15" fill="rgb(209,25,54)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1023.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="997" width="0.0865%" height="15" fill="rgb(219,0,2)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="1007.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="981" width="0.0865%" height="15" fill="rgb(246,9,5)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="991.50"></text></g><g><title>alloc::alloc::alloc (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="965" width="0.0865%" height="15" fill="rgb(226,159,4)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="975.50"></text></g><g><title>__rdl_alloc (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="949" width="0.0865%" height="15" fill="rgb(219,175,34)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="959.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="933" width="0.0865%" height="15" fill="rgb(236,10,46)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="943.50"></text></g><g><title>malloc (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="917" width="0.0865%" height="15" fill="rgb(240,211,16)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="927.50"></text></g><g><title>[libc.so.6] (3,637,549 samples, 0.09%)</title><rect x="57.5145%" y="901" width="0.0865%" height="15" fill="rgb(205,3,43)" fg:x="2418045201" fg:w="3637549"/><text x="57.7645%" y="911.50"></text></g><g><title>std::io::Read::read_buf (40,949,426 samples, 0.97%)</title><rect x="57.6010%" y="1173" width="0.9740%" height="15" fill="rgb(245,7,22)" fg:x="2421682750" fg:w="40949426"/><text x="57.8510%" y="1183.50"></text></g><g><title>std::io::default_read_buf (40,949,426 samples, 0.97%)</title><rect x="57.6010%" y="1157" width="0.9740%" height="15" fill="rgb(239,132,32)" fg:x="2421682750" fg:w="40949426"/><text x="57.8510%" y="1167.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (40,939,853 samples, 0.97%)</title><rect x="57.6013%" y="1141" width="0.9738%" height="15" fill="rgb(228,202,34)" fg:x="2421692323" fg:w="40939853"/><text x="57.8513%" y="1151.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,939,853 samples, 0.97%)</title><rect x="57.6013%" y="1125" width="0.9738%" height="15" fill="rgb(254,200,22)" fg:x="2421692323" fg:w="40939853"/><text x="57.8513%" y="1135.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,939,853 samples, 0.97%)</title><rect x="57.6013%" y="1109" width="0.9738%" height="15" fill="rgb(219,10,39)" fg:x="2421692323" fg:w="40939853"/><text x="57.8513%" y="1119.50"></text></g><g><title>bzip2::mem::Decompress::decompress (40,939,853 samples, 0.97%)</title><rect x="57.6013%" y="1093" width="0.9738%" height="15" fill="rgb(226,210,39)" fg:x="2421692323" fg:w="40939853"/><text x="57.8513%" y="1103.50"></text></g><g><title>BZ2_bzDecompress (40,939,853 samples, 0.97%)</title><rect x="57.6013%" y="1077" width="0.9738%" height="15" fill="rgb(208,219,16)" fg:x="2421692323" fg:w="40939853"/><text x="57.8513%" y="1087.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (110,219,129 samples, 2.62%)</title><rect x="57.6010%" y="1221" width="2.6216%" height="15" fill="rgb(216,158,51)" fg:x="2421682750" fg:w="110219129"/><text x="57.8510%" y="1231.50">ne..</text></g><g><title>std::io::Read::read_to_end (110,219,129 samples, 2.62%)</title><rect x="57.6010%" y="1205" width="2.6216%" height="15" fill="rgb(233,14,44)" fg:x="2421682750" fg:w="110219129"/><text x="57.8510%" y="1215.50">st..</text></g><g><title>std::io::default_read_to_end (110,219,129 samples, 2.62%)</title><rect x="57.6010%" y="1189" width="2.6216%" height="15" fill="rgb(237,97,39)" fg:x="2421682750" fg:w="110219129"/><text x="57.8510%" y="1199.50">st..</text></g><g><title>std::io::default_read_to_end::small_probe_read (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1173" width="1.6476%" height="15" fill="rgb(218,198,43)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1183.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1157" width="1.6476%" height="15" fill="rgb(231,104,20)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1167.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1141" width="1.6476%" height="15" fill="rgb(254,36,13)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1151.50"></text></g><g><title>bzip2::mem::Decompress::decompress (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1125" width="1.6476%" height="15" fill="rgb(248,14,50)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1135.50"></text></g><g><title>BZ2_bzDecompress (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1109" width="1.6476%" height="15" fill="rgb(217,107,29)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1119.50"></text></g><g><title>BZ2_decompress (69,269,703 samples, 1.65%)</title><rect x="58.5750%" y="1093" width="1.6476%" height="15" fill="rgb(251,169,33)" fg:x="2462632176" fg:w="69269703"/><text x="58.8250%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1349" width="2.7924%" height="15" fill="rgb(217,108,32)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1359.50">ra..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1333" width="2.7924%" height="15" fill="rgb(219,66,42)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1343.50">&lt;r..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1317" width="2.7924%" height="15" fill="rgb(206,180,7)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1327.50">ra..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1301" width="2.7924%" height="15" fill="rgb(208,226,31)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1311.50">&lt;c..</text></g><g><title>core::option::Option&lt;T&gt;::map (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1285" width="2.7924%" height="15" fill="rgb(218,26,49)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1295.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1269" width="2.7924%" height="15" fill="rgb(233,197,48)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1279.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1253" width="2.7924%" height="15" fill="rgb(252,181,51)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1263.50">co..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (117,399,516 samples, 2.79%)</title><rect x="57.5145%" y="1237" width="2.7924%" height="15" fill="rgb(253,90,19)" fg:x="2418045201" fg:w="117399516"/><text x="57.7645%" y="1247.50">wx..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1221" width="0.0843%" height="15" fill="rgb(215,171,30)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1231.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1205" width="0.0843%" height="15" fill="rgb(214,222,9)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1215.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1189" width="0.0843%" height="15" fill="rgb(223,3,22)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1199.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1173" width="0.0843%" height="15" fill="rgb(225,196,46)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1183.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1157" width="0.0843%" height="15" fill="rgb(209,110,37)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1167.50"></text></g><g><title>alloc::string::String::from_utf8_lossy (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1141" width="0.0843%" height="15" fill="rgb(249,89,12)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1151.50"></text></g><g><title>&lt;core::str::lossy::Utf8Chunks as core::iter::traits::iterator::Iterator&gt;::next (3,542,838 samples, 0.08%)</title><rect x="60.2227%" y="1125" width="0.0843%" height="15" fill="rgb(226,27,33)" fg:x="2531901879" fg:w="3542838"/><text x="60.4727%" y="1135.50"></text></g><g><title>core::io::borrowed_buf::BorrowedCursor::ensure_init (3,742,528 samples, 0.09%)</title><rect x="60.3069%" y="917" width="0.0890%" height="15" fill="rgb(213,82,22)" fg:x="2535444717" fg:w="3742528"/><text x="60.5569%" y="927.50"></text></g><g><title>core::intrinsics::write_bytes (3,742,528 samples, 0.09%)</title><rect x="60.3069%" y="901" width="0.0890%" height="15" fill="rgb(248,140,0)" fg:x="2535444717" fg:w="3742528"/><text x="60.5569%" y="911.50"></text></g><g><title>[libc.so.6] (3,742,528 samples, 0.09%)</title><rect x="60.3069%" y="885" width="0.0890%" height="15" fill="rgb(228,106,3)" fg:x="2535444717" fg:w="3742528"/><text x="60.5569%" y="895.50"></text></g><g><title>std::io::Read::read_buf (88,000,753 samples, 2.09%)</title><rect x="60.3069%" y="949" width="2.0931%" height="15" fill="rgb(209,23,37)" fg:x="2535444717" fg:w="88000753"/><text x="60.5569%" y="959.50">s..</text></g><g><title>std::io::default_read_buf (88,000,753 samples, 2.09%)</title><rect x="60.3069%" y="933" width="2.0931%" height="15" fill="rgb(241,93,50)" fg:x="2535444717" fg:w="88000753"/><text x="60.5569%" y="943.50">s..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (84,258,225 samples, 2.00%)</title><rect x="60.3959%" y="917" width="2.0041%" height="15" fill="rgb(253,46,43)" fg:x="2539187245" fg:w="84258225"/><text x="60.6459%" y="927.50">s..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (84,258,225 samples, 2.00%)</title><rect x="60.3959%" y="901" width="2.0041%" height="15" fill="rgb(226,206,43)" fg:x="2539187245" fg:w="84258225"/><text x="60.6459%" y="911.50">&lt;..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (84,258,225 samples, 2.00%)</title><rect x="60.3959%" y="885" width="2.0041%" height="15" fill="rgb(217,54,7)" fg:x="2539187245" fg:w="84258225"/><text x="60.6459%" y="895.50">&lt;..</text></g><g><title>bzip2::mem::Decompress::decompress (84,258,225 samples, 2.00%)</title><rect x="60.3959%" y="869" width="2.0041%" height="15" fill="rgb(223,5,52)" fg:x="2539187245" fg:w="84258225"/><text x="60.6459%" y="879.50">b..</text></g><g><title>BZ2_bzDecompress (84,258,225 samples, 2.00%)</title><rect x="60.3959%" y="853" width="2.0041%" height="15" fill="rgb(206,52,46)" fg:x="2539187245" fg:w="84258225"/><text x="60.6459%" y="863.50">B..</text></g><g><title>BZ2_hbCreateDecodeTables (3,418,164 samples, 0.08%)</title><rect x="65.2231%" y="853" width="0.0813%" height="15" fill="rgb(253,136,11)" fg:x="2742133392" fg:w="3418164"/><text x="65.4731%" y="863.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (213,871,716 samples, 5.09%)</title><rect x="60.3069%" y="997" width="5.0871%" height="15" fill="rgb(208,106,33)" fg:x="2535444717" fg:w="213871716"/><text x="60.5569%" y="1007.50">nexrad..</text></g><g><title>std::io::Read::read_to_end (213,871,716 samples, 5.09%)</title><rect x="60.3069%" y="981" width="5.0871%" height="15" fill="rgb(206,54,4)" fg:x="2535444717" fg:w="213871716"/><text x="60.5569%" y="991.50">std::i..</text></g><g><title>std::io::default_read_to_end (213,871,716 samples, 5.09%)</title><rect x="60.3069%" y="965" width="5.0871%" height="15" fill="rgb(213,3,15)" fg:x="2535444717" fg:w="213871716"/><text x="60.5569%" y="975.50">std::i..</text></g><g><title>std::io::default_read_to_end::small_probe_read (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="949" width="2.9939%" height="15" fill="rgb(252,211,39)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="959.50">std..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="933" width="2.9939%" height="15" fill="rgb(223,6,36)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="943.50">&lt;bz..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="917" width="2.9939%" height="15" fill="rgb(252,169,45)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="927.50">&lt;bz..</text></g><g><title>bzip2::mem::Decompress::decompress (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="901" width="2.9939%" height="15" fill="rgb(212,48,26)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="911.50">bzi..</text></g><g><title>BZ2_bzDecompress (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="885" width="2.9939%" height="15" fill="rgb(251,102,48)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="895.50">BZ2..</text></g><g><title>BZ2_decompress (125,870,963 samples, 2.99%)</title><rect x="62.4001%" y="869" width="2.9939%" height="15" fill="rgb(243,208,16)" fg:x="2623445470" fg:w="125870963"/><text x="62.6501%" y="879.50">BZ2..</text></g><g><title>[libc.so.6] (3,764,877 samples, 0.09%)</title><rect x="65.3044%" y="853" width="0.0895%" height="15" fill="rgb(219,96,24)" fg:x="2745551556" fg:w="3764877"/><text x="65.5544%" y="863.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (8,074,948 samples, 0.19%)</title><rect x="65.3940%" y="933" width="0.1921%" height="15" fill="rgb(219,33,29)" fg:x="2749316433" fg:w="8074948"/><text x="65.6440%" y="943.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;[u8]&gt;::read_exact (8,074,948 samples, 0.19%)</title><rect x="65.3940%" y="917" width="0.1921%" height="15" fill="rgb(223,176,5)" fg:x="2749316433" fg:w="8074948"/><text x="65.6440%" y="927.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::copy_from_slice (8,074,948 samples, 0.19%)</title><rect x="65.3940%" y="901" width="0.1921%" height="15" fill="rgb(228,140,14)" fg:x="2749316433" fg:w="8074948"/><text x="65.6440%" y="911.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (8,074,948 samples, 0.19%)</title><rect x="65.3940%" y="885" width="0.1921%" height="15" fill="rgb(217,179,31)" fg:x="2749316433" fg:w="8074948"/><text x="65.6440%" y="895.50"></text></g><g><title>[libc.so.6] (8,074,948 samples, 0.19%)</title><rect x="65.3940%" y="869" width="0.1921%" height="15" fill="rgb(230,9,30)" fg:x="2749316433" fg:w="8074948"/><text x="65.6440%" y="879.50"></text></g><g><title>core::str::traits::&lt;impl core::cmp::PartialEq for str&gt;::eq (3,775,641 samples, 0.09%)</title><rect x="65.5860%" y="933" width="0.0898%" height="15" fill="rgb(230,136,20)" fg:x="2757391381" fg:w="3775641"/><text x="65.8360%" y="943.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (3,775,641 samples, 0.09%)</title><rect x="65.5860%" y="917" width="0.0898%" height="15" fill="rgb(215,210,22)" fg:x="2757391381" fg:w="3775641"/><text x="65.8360%" y="927.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[U]&gt; for [T]&gt;::eq (3,775,641 samples, 0.09%)</title><rect x="65.5860%" y="901" width="0.0898%" height="15" fill="rgb(218,43,5)" fg:x="2757391381" fg:w="3775641"/><text x="65.8360%" y="911.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (3,775,641 samples, 0.09%)</title><rect x="65.5860%" y="885" width="0.0898%" height="15" fill="rgb(216,11,5)" fg:x="2757391381" fg:w="3775641"/><text x="65.8360%" y="895.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1125" width="5.4623%" height="15" fill="rgb(209,82,29)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1135.50">rayon::..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1109" width="5.4623%" height="15" fill="rgb(244,115,12)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1119.50">&lt;rayon:..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1093" width="5.4623%" height="15" fill="rgb(222,82,18)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1103.50">rayon::..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1077" width="5.4623%" height="15" fill="rgb(249,227,8)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1087.50">&lt;core::..</text></g><g><title>core::option::Option&lt;T&gt;::map (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1061" width="5.4623%" height="15" fill="rgb(253,141,45)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1071.50">core::o..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1045" width="5.4623%" height="15" fill="rgb(234,184,4)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1055.50">core::o..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1029" width="5.4623%" height="15" fill="rgb(218,194,23)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1039.50">core::o..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (229,647,323 samples, 5.46%)</title><rect x="60.3069%" y="1013" width="5.4623%" height="15" fill="rgb(235,66,41)" fg:x="2535444717" fg:w="229647323"/><text x="60.5569%" y="1023.50">wxbox_a..</text></g><g><title>nexrad_data::volume::record::Record::messages (15,775,607 samples, 0.38%)</title><rect x="65.3940%" y="997" width="0.3752%" height="15" fill="rgb(245,217,1)" fg:x="2749316433" fg:w="15775607"/><text x="65.6440%" y="1007.50"></text></g><g><title>nexrad_decode::messages::decode_messages (15,775,607 samples, 0.38%)</title><rect x="65.3940%" y="981" width="0.3752%" height="15" fill="rgb(229,91,1)" fg:x="2749316433" fg:w="15775607"/><text x="65.6440%" y="991.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (15,775,607 samples, 0.38%)</title><rect x="65.3940%" y="965" width="0.3752%" height="15" fill="rgb(207,101,30)" fg:x="2749316433" fg:w="15775607"/><text x="65.6440%" y="975.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (15,775,607 samples, 0.38%)</title><rect x="65.3940%" y="949" width="0.3752%" height="15" fill="rgb(223,82,49)" fg:x="2749316433" fg:w="15775607"/><text x="65.6440%" y="959.50"></text></g><g><title>nexrad_decode::util::deserialize (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="933" width="0.0934%" height="15" fill="rgb(218,167,17)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="943.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="917" width="0.0934%" height="15" fill="rgb(208,103,14)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="927.50"></text></g><g><title>bincode::internal::deserialize_from (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="901" width="0.0934%" height="15" fill="rgb(238,20,8)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="911.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="885" width="0.0934%" height="15" fill="rgb(218,80,54)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="895.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="869" width="0.0934%" height="15" fill="rgb(240,144,17)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="879.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="853" width="0.0934%" height="15" fill="rgb(245,27,50)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="863.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="837" width="0.0934%" height="15" fill="rgb(251,51,7)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="847.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="821" width="0.0934%" height="15" fill="rgb(245,217,29)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="831.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="805" width="0.0934%" height="15" fill="rgb(221,176,29)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="815.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="789" width="0.0934%" height="15" fill="rgb(212,180,24)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="799.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (3,925,018 samples, 0.09%)</title><rect x="65.6759%" y="773" width="0.0934%" height="15" fill="rgb(254,24,2)" fg:x="2761167022" fg:w="3925018"/><text x="65.9259%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::Message&gt; (3,671,917 samples, 0.09%)</title><rect x="65.7692%" y="885" width="0.0873%" height="15" fill="rgb(230,100,2)" fg:x="2765092040" fg:w="3671917"/><text x="66.0192%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;nexrad_decode::messages::message::MessageContents&gt; (3,671,917 samples, 0.09%)</title><rect x="65.7692%" y="869" width="0.0873%" height="15" fill="rgb(219,142,25)" fg:x="2765092040" fg:w="3671917"/><text x="66.0192%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;nexrad_decode::messages::digital_radar_data::message::Message&gt;&gt; (3,671,917 samples, 0.09%)</title><rect x="65.7692%" y="853" width="0.0873%" height="15" fill="rgb(240,73,43)" fg:x="2765092040" fg:w="3671917"/><text x="66.0192%" y="863.50"></text></g><g><title>cfree (3,671,917 samples, 0.09%)</title><rect x="65.7692%" y="837" width="0.0873%" height="15" fill="rgb(214,114,15)" fg:x="2765092040" fg:w="3671917"/><text x="66.0192%" y="847.50"></text></g><g><title>std::io::Read::read_buf (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="837" width="0.3648%" height="15" fill="rgb(207,130,4)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="847.50"></text></g><g><title>std::io::default_read_buf (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="821" width="0.3648%" height="15" fill="rgb(221,25,40)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="831.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="805" width="0.3648%" height="15" fill="rgb(241,184,7)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="815.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="789" width="0.3648%" height="15" fill="rgb(235,159,4)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="799.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="773" width="0.3648%" height="15" fill="rgb(214,87,48)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="783.50"></text></g><g><title>bzip2::mem::Decompress::decompress (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="757" width="0.3648%" height="15" fill="rgb(246,198,24)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="767.50"></text></g><g><title>BZ2_bzDecompress (15,337,621 samples, 0.36%)</title><rect x="65.8565%" y="741" width="0.3648%" height="15" fill="rgb(209,66,40)" fg:x="2768763957" fg:w="15337621"/><text x="66.1065%" y="751.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::BufRead&gt;::fill_buf (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="789" width="0.0943%" height="15" fill="rgb(233,147,39)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="799.50"></text></g><g><title>std::io::buffered::bufreader::buffer::Buffer::fill_buf (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="773" width="0.0943%" height="15" fill="rgb(231,145,52)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="783.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;mut R&gt;::read_buf (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="757" width="0.0943%" height="15" fill="rgb(206,20,26)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="767.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;[u8]&gt;::read_buf (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="741" width="0.0943%" height="15" fill="rgb(238,220,4)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="751.50"></text></g><g><title>core::io::borrowed_buf::BorrowedCursor::append (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="725" width="0.0943%" height="15" fill="rgb(252,195,42)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="735.50"></text></g><g><title>&lt;[core::mem::maybe_uninit::MaybeUninit&lt;T&gt;]&gt;::write_copy_of_slice (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="709" width="0.0943%" height="15" fill="rgb(209,10,6)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="719.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::copy_from_slice (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="693" width="0.0943%" height="15" fill="rgb(229,3,52)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="703.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="677" width="0.0943%" height="15" fill="rgb(253,49,37)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="687.50"></text></g><g><title>[libc.so.6] (3,965,720 samples, 0.09%)</title><rect x="66.2214%" y="661" width="0.0943%" height="15" fill="rgb(240,103,49)" fg:x="2784101578" fg:w="3965720"/><text x="66.4714%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="1077" width="1.1022%" height="15" fill="rgb(250,182,30)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="1061" width="1.1022%" height="15" fill="rgb(248,8,30)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="1045" width="1.1022%" height="15" fill="rgb(237,120,30)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="1029" width="1.1022%" height="15" fill="rgb(221,146,34)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="1013" width="1.1022%" height="15" fill="rgb(242,55,13)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1023.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="997" width="1.1022%" height="15" fill="rgb(242,112,31)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="981" width="1.1022%" height="15" fill="rgb(249,192,27)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="991.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="965" width="1.1022%" height="15" fill="rgb(208,204,44)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="975.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="949" width="1.1022%" height="15" fill="rgb(208,93,54)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="959.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="933" width="1.1022%" height="15" fill="rgb(242,1,31)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="943.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="917" width="1.1022%" height="15" fill="rgb(241,83,25)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="927.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (46,341,119 samples, 1.10%)</title><rect x="65.7692%" y="901" width="1.1022%" height="15" fill="rgb(205,169,50)" fg:x="2765092040" fg:w="46341119"/><text x="66.0192%" y="911.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (42,669,202 samples, 1.01%)</title><rect x="65.8565%" y="885" width="1.0149%" height="15" fill="rgb(239,186,37)" fg:x="2768763957" fg:w="42669202"/><text x="66.1065%" y="895.50"></text></g><g><title>std::io::Read::read_to_end (42,669,202 samples, 1.01%)</title><rect x="65.8565%" y="869" width="1.0149%" height="15" fill="rgb(205,221,10)" fg:x="2768763957" fg:w="42669202"/><text x="66.1065%" y="879.50"></text></g><g><title>std::io::default_read_to_end (42,669,202 samples, 1.01%)</title><rect x="65.8565%" y="853" width="1.0149%" height="15" fill="rgb(218,196,15)" fg:x="2768763957" fg:w="42669202"/><text x="66.1065%" y="863.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (27,331,581 samples, 0.65%)</title><rect x="66.2214%" y="837" width="0.6501%" height="15" fill="rgb(218,196,35)" fg:x="2784101578" fg:w="27331581"/><text x="66.4714%" y="847.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (27,331,581 samples, 0.65%)</title><rect x="66.2214%" y="821" width="0.6501%" height="15" fill="rgb(233,63,24)" fg:x="2784101578" fg:w="27331581"/><text x="66.4714%" y="831.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (27,331,581 samples, 0.65%)</title><rect x="66.2214%" y="805" width="0.6501%" height="15" fill="rgb(225,8,4)" fg:x="2784101578" fg:w="27331581"/><text x="66.4714%" y="815.50"></text></g><g><title>bzip2::mem::Decompress::decompress (23,365,861 samples, 0.56%)</title><rect x="66.3157%" y="789" width="0.5558%" height="15" fill="rgb(234,105,35)" fg:x="2788067298" fg:w="23365861"/><text x="66.5657%" y="799.50"></text></g><g><title>BZ2_bzDecompress (23,365,861 samples, 0.56%)</title><rect x="66.3157%" y="773" width="0.5558%" height="15" fill="rgb(236,21,32)" fg:x="2788067298" fg:w="23365861"/><text x="66.5657%" y="783.50"></text></g><g><title>BZ2_decompress (23,365,861 samples, 0.56%)</title><rect x="66.3157%" y="757" width="0.5558%" height="15" fill="rgb(228,109,6)" fg:x="2788067298" fg:w="23365861"/><text x="66.5657%" y="767.50"></text></g><g><title>[libc.so.6] (3,941,929 samples, 0.09%)</title><rect x="66.7777%" y="741" width="0.0938%" height="15" fill="rgb(229,215,31)" fg:x="2807491230" fg:w="3941929"/><text x="67.0277%" y="751.50"></text></g><g><title>std::io::Read::read_buf (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="773" width="0.5455%" height="15" fill="rgb(221,52,54)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="783.50"></text></g><g><title>std::io::default_read_buf (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="757" width="0.5455%" height="15" fill="rgb(252,129,43)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="767.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="741" width="0.5455%" height="15" fill="rgb(248,183,27)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="751.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="725" width="0.5455%" height="15" fill="rgb(250,0,22)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="735.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="709" width="0.5455%" height="15" fill="rgb(213,166,10)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="719.50"></text></g><g><title>bzip2::mem::Decompress::decompress (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="693" width="0.5455%" height="15" fill="rgb(207,163,36)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="703.50"></text></g><g><title>BZ2_bzDecompress (22,932,350 samples, 0.55%)</title><rect x="66.8715%" y="677" width="0.5455%" height="15" fill="rgb(208,122,22)" fg:x="2811433159" fg:w="22932350"/><text x="67.1215%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (328,017,523 samples, 7.80%)</title><rect x="60.3069%" y="1189" width="7.8021%" height="15" fill="rgb(207,104,49)" fg:x="2535444717" fg:w="328017523"/><text x="60.5569%" y="1199.50">rayon_core:..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (328,017,523 samples, 7.80%)</title><rect x="60.3069%" y="1173" width="7.8021%" height="15" fill="rgb(248,211,50)" fg:x="2535444717" fg:w="328017523"/><text x="60.5569%" y="1183.50">rayon_core:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (328,017,523 samples, 7.80%)</title><rect x="60.3069%" y="1157" width="7.8021%" height="15" fill="rgb(217,13,45)" fg:x="2535444717" fg:w="328017523"/><text x="60.5569%" y="1167.50">rayon::iter..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (328,017,523 samples, 7.80%)</title><rect x="60.3069%" y="1141" width="7.8021%" height="15" fill="rgb(211,216,49)" fg:x="2535444717" fg:w="328017523"/><text x="60.5569%" y="1151.50">rayon::iter..</text></g><g><title>rayon_core::join::join_context (98,370,200 samples, 2.34%)</title><rect x="65.7692%" y="1125" width="2.3398%" height="15" fill="rgb(221,58,53)" fg:x="2765092040" fg:w="98370200"/><text x="66.0192%" y="1135.50">r..</text></g><g><title>rayon_core::registry::in_worker (98,370,200 samples, 2.34%)</title><rect x="65.7692%" y="1109" width="2.3398%" height="15" fill="rgb(220,112,41)" fg:x="2765092040" fg:w="98370200"/><text x="66.0192%" y="1119.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (98,370,200 samples, 2.34%)</title><rect x="65.7692%" y="1093" width="2.3398%" height="15" fill="rgb(236,38,28)" fg:x="2765092040" fg:w="98370200"/><text x="66.0192%" y="1103.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="1077" width="1.2375%" height="15" fill="rgb(227,195,22)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="1061" width="1.2375%" height="15" fill="rgb(214,55,33)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1071.50"></text></g><g><title>std::panicking::try (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="1045" width="1.2375%" height="15" fill="rgb(248,80,13)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="1029" width="1.2375%" height="15" fill="rgb(238,52,6)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1039.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="1013" width="1.2375%" height="15" fill="rgb(224,198,47)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="997" width="1.2375%" height="15" fill="rgb(233,171,20)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="981" width="1.2375%" height="15" fill="rgb(241,30,25)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="965" width="1.2375%" height="15" fill="rgb(207,171,38)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="975.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="949" width="1.2375%" height="15" fill="rgb(234,70,1)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="959.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="933" width="1.2375%" height="15" fill="rgb(232,178,18)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="943.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="917" width="1.2375%" height="15" fill="rgb(241,78,40)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="901" width="1.2375%" height="15" fill="rgb(222,35,25)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="885" width="1.2375%" height="15" fill="rgb(207,92,16)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="895.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="869" width="1.2375%" height="15" fill="rgb(216,59,51)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="879.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="853" width="1.2375%" height="15" fill="rgb(213,80,28)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="863.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="837" width="1.2375%" height="15" fill="rgb(220,93,7)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="847.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="821" width="1.2375%" height="15" fill="rgb(225,24,44)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="831.50"></text></g><g><title>std::io::Read::read_to_end (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="805" width="1.2375%" height="15" fill="rgb(243,74,40)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="815.50"></text></g><g><title>std::io::default_read_to_end (52,029,081 samples, 1.24%)</title><rect x="66.8715%" y="789" width="1.2375%" height="15" fill="rgb(228,39,7)" fg:x="2811433159" fg:w="52029081"/><text x="67.1215%" y="799.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="773" width="0.6921%" height="15" fill="rgb(227,79,8)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="783.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="757" width="0.6921%" height="15" fill="rgb(236,58,11)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="767.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="741" width="0.6921%" height="15" fill="rgb(249,63,35)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="751.50"></text></g><g><title>bzip2::mem::Decompress::decompress (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="725" width="0.6921%" height="15" fill="rgb(252,114,16)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="735.50"></text></g><g><title>BZ2_bzDecompress (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="709" width="0.6921%" height="15" fill="rgb(254,151,24)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="719.50"></text></g><g><title>BZ2_decompress (29,096,731 samples, 0.69%)</title><rect x="67.4169%" y="693" width="0.6921%" height="15" fill="rgb(253,54,39)" fg:x="2834365509" fg:w="29096731"/><text x="67.6669%" y="703.50"></text></g><g><title>std::io::Read::read_buf (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="773" width="0.1803%" height="15" fill="rgb(243,25,45)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="783.50"></text></g><g><title>std::io::default_read_buf (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="757" width="0.1803%" height="15" fill="rgb(234,134,9)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="767.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="741" width="0.1803%" height="15" fill="rgb(227,166,31)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="751.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="725" width="0.1803%" height="15" fill="rgb(245,143,41)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="735.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="709" width="0.1803%" height="15" fill="rgb(238,181,32)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="719.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="693" width="0.1803%" height="15" fill="rgb(224,113,18)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="703.50"></text></g><g><title>BZ2_bzDecompress (7,581,569 samples, 0.18%)</title><rect x="68.1090%" y="677" width="0.1803%" height="15" fill="rgb(240,229,28)" fg:x="2863462240" fg:w="7581569"/><text x="68.3590%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1189" width="0.6367%" height="15" fill="rgb(250,185,3)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1173" width="0.6367%" height="15" fill="rgb(212,59,25)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1157" width="0.6367%" height="15" fill="rgb(221,87,20)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1167.50"></text></g><g><title>rayon_core::job::JobRef::execute (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1141" width="0.6367%" height="15" fill="rgb(213,74,28)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1151.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1125" width="0.6367%" height="15" fill="rgb(224,132,34)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1135.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1109" width="0.6367%" height="15" fill="rgb(222,101,24)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1093" width="0.6367%" height="15" fill="rgb(254,142,4)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1103.50"></text></g><g><title>std::panic::catch_unwind (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1077" width="0.6367%" height="15" fill="rgb(230,229,49)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1087.50"></text></g><g><title>std::panicking::try (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1061" width="0.6367%" height="15" fill="rgb(238,70,47)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1071.50"></text></g><g><title>std::panicking::try::do_call (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1045" width="0.6367%" height="15" fill="rgb(231,160,17)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1055.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1029" width="0.6367%" height="15" fill="rgb(218,68,53)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1039.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="1013" width="0.6367%" height="15" fill="rgb(236,111,10)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="997" width="0.6367%" height="15" fill="rgb(224,34,41)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="981" width="0.6367%" height="15" fill="rgb(241,118,19)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="965" width="0.6367%" height="15" fill="rgb(238,129,25)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="975.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="949" width="0.6367%" height="15" fill="rgb(238,22,31)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="959.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="933" width="0.6367%" height="15" fill="rgb(222,174,48)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="943.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="917" width="0.6367%" height="15" fill="rgb(206,152,40)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="901" width="0.6367%" height="15" fill="rgb(218,99,54)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="911.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="885" width="0.6367%" height="15" fill="rgb(220,174,26)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="895.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="869" width="0.6367%" height="15" fill="rgb(245,116,9)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="879.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="853" width="0.6367%" height="15" fill="rgb(209,72,35)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="863.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="837" width="0.6367%" height="15" fill="rgb(226,126,21)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="847.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="821" width="0.6367%" height="15" fill="rgb(227,192,1)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="831.50"></text></g><g><title>std::io::Read::read_to_end (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="805" width="0.6367%" height="15" fill="rgb(237,180,29)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="815.50"></text></g><g><title>std::io::default_read_to_end (26,769,413 samples, 0.64%)</title><rect x="68.1090%" y="789" width="0.6367%" height="15" fill="rgb(230,197,35)" fg:x="2863462240" fg:w="26769413"/><text x="68.3590%" y="799.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="773" width="0.4564%" height="15" fill="rgb(246,193,31)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="783.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="757" width="0.4564%" height="15" fill="rgb(241,36,4)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="767.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="741" width="0.4564%" height="15" fill="rgb(241,130,17)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="751.50"></text></g><g><title>bzip2::mem::Decompress::decompress (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="725" width="0.4564%" height="15" fill="rgb(206,137,32)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="735.50"></text></g><g><title>BZ2_bzDecompress (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="709" width="0.4564%" height="15" fill="rgb(237,228,51)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="719.50"></text></g><g><title>BZ2_decompress (19,187,844 samples, 0.46%)</title><rect x="68.2893%" y="693" width="0.4564%" height="15" fill="rgb(243,6,42)" fg:x="2871043809" fg:w="19187844"/><text x="68.5393%" y="703.50"></text></g><g><title>std::io::Read::read_buf (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="885" width="1.7996%" height="15" fill="rgb(251,74,28)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="895.50">s..</text></g><g><title>std::io::default_read_buf (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="869" width="1.7996%" height="15" fill="rgb(218,20,49)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="879.50">s..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="853" width="1.7996%" height="15" fill="rgb(238,28,14)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="863.50">s..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="837" width="1.7996%" height="15" fill="rgb(229,40,46)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="847.50">&lt;..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="821" width="1.7996%" height="15" fill="rgb(244,195,20)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="831.50">&lt;..</text></g><g><title>bzip2::mem::Decompress::decompress (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="805" width="1.7996%" height="15" fill="rgb(253,56,35)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="815.50">b..</text></g><g><title>BZ2_bzDecompress (75,657,744 samples, 1.80%)</title><rect x="68.7457%" y="789" width="1.7996%" height="15" fill="rgb(210,149,44)" fg:x="2890231653" fg:w="75657744"/><text x="68.9957%" y="799.50">B..</text></g><g><title>nexrad_data::volume::record::Record::decompress (240,591,687 samples, 5.72%)</title><rect x="68.7457%" y="933" width="5.7226%" height="15" fill="rgb(240,135,12)" fg:x="2890231653" fg:w="240591687"/><text x="68.9957%" y="943.50">nexrad_..</text></g><g><title>std::io::Read::read_to_end (240,591,687 samples, 5.72%)</title><rect x="68.7457%" y="917" width="5.7226%" height="15" fill="rgb(251,24,50)" fg:x="2890231653" fg:w="240591687"/><text x="68.9957%" y="927.50">std::io..</text></g><g><title>std::io::default_read_to_end (240,591,687 samples, 5.72%)</title><rect x="68.7457%" y="901" width="5.7226%" height="15" fill="rgb(243,200,47)" fg:x="2890231653" fg:w="240591687"/><text x="68.9957%" y="911.50">std::io..</text></g><g><title>std::io::default_read_to_end::small_probe_read (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="885" width="3.9230%" height="15" fill="rgb(224,166,26)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="895.50">std:..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="869" width="3.9230%" height="15" fill="rgb(233,0,47)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="879.50">&lt;bzi..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="853" width="3.9230%" height="15" fill="rgb(253,80,5)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="863.50">&lt;bzi..</text></g><g><title>bzip2::mem::Decompress::decompress (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="837" width="3.9230%" height="15" fill="rgb(214,133,25)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="847.50">bzip..</text></g><g><title>BZ2_bzDecompress (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="821" width="3.9230%" height="15" fill="rgb(209,27,14)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="831.50">BZ2_..</text></g><g><title>BZ2_decompress (164,933,943 samples, 3.92%)</title><rect x="70.5453%" y="805" width="3.9230%" height="15" fill="rgb(219,102,51)" fg:x="2965889397" fg:w="164933943"/><text x="70.7953%" y="815.50">BZ2_..</text></g><g><title>[libc.so.6] (3,666,584 samples, 0.09%)</title><rect x="74.3811%" y="789" width="0.0872%" height="15" fill="rgb(237,18,16)" fg:x="3127156756" fg:w="3666584"/><text x="74.6311%" y="799.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (3,589,529 samples, 0.09%)</title><rect x="74.4683%" y="885" width="0.0854%" height="15" fill="rgb(241,85,17)" fg:x="3130823340" fg:w="3589529"/><text x="74.7183%" y="895.50"></text></g><g><title>[libc.so.6] (3,589,529 samples, 0.09%)</title><rect x="74.4683%" y="869" width="0.0854%" height="15" fill="rgb(236,90,42)" fg:x="3130823340" fg:w="3589529"/><text x="74.7183%" y="879.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,682,321 samples, 0.09%)</title><rect x="74.5537%" y="869" width="0.0876%" height="15" fill="rgb(249,57,21)" fg:x="3134412869" fg:w="3682321"/><text x="74.8037%" y="879.50"></text></g><g><title>alloc::string::String::from_utf8_lossy (3,682,321 samples, 0.09%)</title><rect x="74.5537%" y="853" width="0.0876%" height="15" fill="rgb(243,12,36)" fg:x="3134412869" fg:w="3682321"/><text x="74.8037%" y="863.50"></text></g><g><title>&lt;core::str::lossy::Utf8Chunks as core::iter::traits::iterator::Iterator&gt;::next (3,682,321 samples, 0.09%)</title><rect x="74.5537%" y="837" width="0.0876%" height="15" fill="rgb(253,128,47)" fg:x="3134412869" fg:w="3682321"/><text x="74.8037%" y="847.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try_trait::Try&gt;::branch (4,861,296 samples, 0.12%)</title><rect x="74.6413%" y="853" width="0.1156%" height="15" fill="rgb(207,33,20)" fg:x="3138095190" fg:w="4861296"/><text x="74.8913%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1301" width="14.5294%" height="15" fill="rgb(233,215,35)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1311.50">rayon_core::job::Stack..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1285" width="14.5294%" height="15" fill="rgb(249,188,52)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1295.50">rayon_core::join::join..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1269" width="14.5294%" height="15" fill="rgb(225,12,32)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1279.50">rayon::iter::plumbing:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1253" width="14.5294%" height="15" fill="rgb(247,98,14)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1263.50">rayon::iter::plumbing:..</text></g><g><title>rayon_core::join::join_context (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1237" width="14.5294%" height="15" fill="rgb(247,219,48)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1247.50">rayon_core::join::join..</text></g><g><title>rayon_core::registry::in_worker (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1221" width="14.5294%" height="15" fill="rgb(253,60,48)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1231.50">rayon_core::registry::..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (610,852,034 samples, 14.53%)</title><rect x="60.3069%" y="1205" width="14.5294%" height="15" fill="rgb(245,15,52)" fg:x="2535444717" fg:w="610852034"/><text x="60.5569%" y="1215.50">rayon_core::join::join..</text></g><g><title>rayon_core::unwind::halt_unwinding (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1189" width="6.0906%" height="15" fill="rgb(220,133,28)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1199.50">rayon_co..</text></g><g><title>std::panic::catch_unwind (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1173" width="6.0906%" height="15" fill="rgb(217,180,4)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1183.50">std::pan..</text></g><g><title>std::panicking::try (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1157" width="6.0906%" height="15" fill="rgb(251,24,1)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1167.50">std::pan..</text></g><g><title>std::panicking::try::do_call (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1141" width="6.0906%" height="15" fill="rgb(212,185,49)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1151.50">std::pan..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1125" width="6.0906%" height="15" fill="rgb(215,175,22)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1135.50">&lt;core::p..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1109" width="6.0906%" height="15" fill="rgb(250,205,14)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1119.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1093" width="6.0906%" height="15" fill="rgb(225,211,22)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1103.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1077" width="6.0906%" height="15" fill="rgb(251,179,42)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1087.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1061" width="6.0906%" height="15" fill="rgb(208,216,51)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1071.50">rayon::i..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1045" width="6.0906%" height="15" fill="rgb(235,36,11)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1055.50">&lt;rayon::..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1029" width="6.0906%" height="15" fill="rgb(213,189,28)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1039.50">rayon::i..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="1013" width="6.0906%" height="15" fill="rgb(227,203,42)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1023.50">&lt;core::i..</text></g><g><title>core::option::Option&lt;T&gt;::map (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="997" width="6.0906%" height="15" fill="rgb(244,72,36)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="1007.50">core::op..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="981" width="6.0906%" height="15" fill="rgb(213,53,17)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="991.50">core::op..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="965" width="6.0906%" height="15" fill="rgb(207,167,3)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="975.50">core::op..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (256,065,098 samples, 6.09%)</title><rect x="68.7457%" y="949" width="6.0906%" height="15" fill="rgb(216,98,30)" fg:x="2890231653" fg:w="256065098"/><text x="68.9957%" y="959.50">wxbox_ar..</text></g><g><title>nexrad_data::volume::record::Record::messages (15,473,411 samples, 0.37%)</title><rect x="74.4683%" y="933" width="0.3680%" height="15" fill="rgb(236,123,15)" fg:x="3130823340" fg:w="15473411"/><text x="74.7183%" y="943.50"></text></g><g><title>nexrad_decode::messages::decode_messages (15,473,411 samples, 0.37%)</title><rect x="74.4683%" y="917" width="0.3680%" height="15" fill="rgb(248,81,50)" fg:x="3130823340" fg:w="15473411"/><text x="74.7183%" y="927.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (15,473,411 samples, 0.37%)</title><rect x="74.4683%" y="901" width="0.3680%" height="15" fill="rgb(214,120,4)" fg:x="3130823340" fg:w="15473411"/><text x="74.7183%" y="911.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (11,883,882 samples, 0.28%)</title><rect x="74.5537%" y="885" width="0.2827%" height="15" fill="rgb(208,179,34)" fg:x="3134412869" fg:w="11883882"/><text x="74.8037%" y="895.50"></text></g><g><title>nexrad_decode::util::deserialize (8,201,561 samples, 0.20%)</title><rect x="74.6413%" y="869" width="0.1951%" height="15" fill="rgb(227,140,7)" fg:x="3138095190" fg:w="8201561"/><text x="74.8913%" y="879.50"></text></g><g><title>bincode::config::Options::deserialize_from (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="853" width="0.0795%" height="15" fill="rgb(214,22,6)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="863.50"></text></g><g><title>bincode::internal::deserialize_from (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="837" width="0.0795%" height="15" fill="rgb(207,137,27)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="847.50"></text></g><g><title>bincode::internal::deserialize_from_seed (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="821" width="0.0795%" height="15" fill="rgb(210,8,46)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="831.50"></text></g><g><title>bincode::internal::deserialize_from_custom_seed (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="805" width="0.0795%" height="15" fill="rgb(240,16,54)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="815.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="789" width="0.0795%" height="15" fill="rgb(211,209,29)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="799.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="773" width="0.0795%" height="15" fill="rgb(226,228,24)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="783.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_struct (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="757" width="0.0795%" height="15" fill="rgb(222,84,9)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="767.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="741" width="0.0795%" height="15" fill="rgb(234,203,30)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="751.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::_::&lt;impl serde::de::Deserialize for nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlockHeader&gt;::deserialize::__Visitor as serde::de::Visitor&gt;::visit_seq (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="725" width="0.0795%" height="15" fill="rgb(238,109,14)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="735.50"></text></g><g><title>serde::de::SeqAccess::next_element (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="709" width="0.0795%" height="15" fill="rgb(233,206,34)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="719.50"></text></g><g><title>&lt;&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_tuple::Access&lt;R,O&gt; as serde::de::SeqAccess&gt;::next_element_seed (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="693" width="0.0795%" height="15" fill="rgb(220,167,47)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="703.50"></text></g><g><title>&lt;core::marker::PhantomData&lt;T&gt; as serde::de::DeserializeSeed&gt;::deserialize (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="677" width="0.0795%" height="15" fill="rgb(238,105,10)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="687.50"></text></g><g><title>serde::de::impls::&lt;impl serde::de::Deserialize for u8&gt;::deserialize (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="661" width="0.0795%" height="15" fill="rgb(213,227,17)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="671.50"></text></g><g><title>&lt;&amp;mut bincode::de::Deserializer&lt;R,O&gt; as serde::de::Deserializer&gt;::deserialize_u8 (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="645" width="0.0795%" height="15" fill="rgb(217,132,38)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="655.50"></text></g><g><title>bincode::de::Deserializer&lt;R,O&gt;::deserialize_byte (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="629" width="0.0795%" height="15" fill="rgb(242,146,4)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="639.50"></text></g><g><title>bincode::byteorder::ReadBytesExt::read_u8 (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="613" width="0.0795%" height="15" fill="rgb(212,61,9)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="623.50"></text></g><g><title>&lt;bincode::de::read::IoReader&lt;R&gt; as std::io::Read&gt;::read_exact (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="597" width="0.0795%" height="15" fill="rgb(247,126,22)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="607.50"></text></g><g><title>std::io::impls::&lt;impl std::io::Read for &amp;mut R&gt;::read_exact (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="581" width="0.0795%" height="15" fill="rgb(220,196,2)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="591.50"></text></g><g><title>&lt;std::io::cursor::Cursor&lt;T&gt; as std::io::Read&gt;::read_exact (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="565" width="0.0795%" height="15" fill="rgb(208,46,4)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="575.50"></text></g><g><title>std::io::cursor::Cursor&lt;T&gt;::split (3,340,265 samples, 0.08%)</title><rect x="74.7569%" y="549" width="0.0795%" height="15" fill="rgb(252,104,46)" fg:x="3142956486" fg:w="3340265"/><text x="75.0069%" y="559.50"></text></g><g><title>std::io::Read::read_buf (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="661" width="0.0942%" height="15" fill="rgb(237,152,48)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="671.50"></text></g><g><title>std::io::default_read_buf (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="645" width="0.0942%" height="15" fill="rgb(221,59,37)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="655.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="629" width="0.0942%" height="15" fill="rgb(209,202,51)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="639.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="613" width="0.0942%" height="15" fill="rgb(228,81,30)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="623.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="597" width="0.0942%" height="15" fill="rgb(227,42,39)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="607.50"></text></g><g><title>bzip2::mem::Decompress::decompress (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="581" width="0.0942%" height="15" fill="rgb(221,26,2)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="591.50"></text></g><g><title>BZ2_bzDecompress (3,962,420 samples, 0.09%)</title><rect x="74.8364%" y="565" width="0.0942%" height="15" fill="rgb(254,61,31)" fg:x="3146296751" fg:w="3962420"/><text x="75.0864%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="901" width="0.5646%" height="15" fill="rgb(222,173,38)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="885" width="0.5646%" height="15" fill="rgb(218,50,12)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="869" width="0.5646%" height="15" fill="rgb(223,88,40)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="853" width="0.5646%" height="15" fill="rgb(237,54,19)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="863.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="837" width="0.5646%" height="15" fill="rgb(251,129,25)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="847.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="821" width="0.5646%" height="15" fill="rgb(238,97,19)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="805" width="0.5646%" height="15" fill="rgb(240,169,18)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="789" width="0.5646%" height="15" fill="rgb(230,187,49)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="799.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="773" width="0.5646%" height="15" fill="rgb(209,44,26)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="783.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="757" width="0.5646%" height="15" fill="rgb(244,0,6)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="767.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="741" width="0.5646%" height="15" fill="rgb(248,18,21)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="751.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="725" width="0.5646%" height="15" fill="rgb(245,180,19)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="735.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="709" width="0.5646%" height="15" fill="rgb(252,118,36)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="719.50"></text></g><g><title>std::io::Read::read_to_end (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="693" width="0.5646%" height="15" fill="rgb(210,224,19)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="703.50"></text></g><g><title>std::io::default_read_to_end (23,735,871 samples, 0.56%)</title><rect x="74.8364%" y="677" width="0.5646%" height="15" fill="rgb(218,30,24)" fg:x="3146296751" fg:w="23735871"/><text x="75.0864%" y="687.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="661" width="0.4703%" height="15" fill="rgb(219,75,50)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="671.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="645" width="0.4703%" height="15" fill="rgb(234,72,50)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="655.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="629" width="0.4703%" height="15" fill="rgb(219,100,48)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="639.50"></text></g><g><title>bzip2::mem::Decompress::decompress (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="613" width="0.4703%" height="15" fill="rgb(253,5,41)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="623.50"></text></g><g><title>BZ2_bzDecompress (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="597" width="0.4703%" height="15" fill="rgb(247,181,11)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="607.50"></text></g><g><title>BZ2_decompress (19,773,451 samples, 0.47%)</title><rect x="74.9306%" y="581" width="0.4703%" height="15" fill="rgb(222,223,25)" fg:x="3150259171" fg:w="19773451"/><text x="75.1806%" y="591.50"></text></g><g><title>std::io::Read::read_buf (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="597" width="0.1816%" height="15" fill="rgb(214,198,28)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="607.50"></text></g><g><title>std::io::default_read_buf (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="581" width="0.1816%" height="15" fill="rgb(230,46,43)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="591.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="565" width="0.1816%" height="15" fill="rgb(233,65,53)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="575.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="549" width="0.1816%" height="15" fill="rgb(221,121,27)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="559.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="533" width="0.1816%" height="15" fill="rgb(247,70,47)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="543.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="517" width="0.1816%" height="15" fill="rgb(228,85,35)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="527.50"></text></g><g><title>BZ2_bzDecompress (7,635,480 samples, 0.18%)</title><rect x="75.4009%" y="501" width="0.1816%" height="15" fill="rgb(209,50,18)" fg:x="3170032622" fg:w="7635480"/><text x="75.6509%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="1013" width="1.0226%" height="15" fill="rgb(250,19,35)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="997" width="1.0226%" height="15" fill="rgb(253,107,29)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="981" width="1.0226%" height="15" fill="rgb(252,179,29)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="965" width="1.0226%" height="15" fill="rgb(238,194,6)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="975.50"></text></g><g><title>rayon_core::join::join_context (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="949" width="1.0226%" height="15" fill="rgb(238,164,29)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="933" width="1.0226%" height="15" fill="rgb(224,25,9)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42,990,745 samples, 1.02%)</title><rect x="74.8364%" y="917" width="1.0226%" height="15" fill="rgb(244,153,23)" fg:x="3146296751" fg:w="42990745"/><text x="75.0864%" y="927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="901" width="0.4580%" height="15" fill="rgb(212,203,14)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="911.50"></text></g><g><title>std::panic::catch_unwind (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="885" width="0.4580%" height="15" fill="rgb(220,164,20)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="895.50"></text></g><g><title>std::panicking::try (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="869" width="0.4580%" height="15" fill="rgb(222,203,48)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="879.50"></text></g><g><title>std::panicking::try::do_call (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="853" width="0.4580%" height="15" fill="rgb(215,159,22)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="863.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="837" width="0.4580%" height="15" fill="rgb(216,183,47)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="821" width="0.4580%" height="15" fill="rgb(229,195,25)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="805" width="0.4580%" height="15" fill="rgb(224,132,51)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="789" width="0.4580%" height="15" fill="rgb(240,63,7)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="773" width="0.4580%" height="15" fill="rgb(249,182,41)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="783.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="757" width="0.4580%" height="15" fill="rgb(243,47,26)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="741" width="0.4580%" height="15" fill="rgb(233,48,2)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="725" width="0.4580%" height="15" fill="rgb(244,165,34)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="735.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="709" width="0.4580%" height="15" fill="rgb(207,89,7)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="693" width="0.4580%" height="15" fill="rgb(244,117,36)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="677" width="0.4580%" height="15" fill="rgb(226,144,34)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="687.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="661" width="0.4580%" height="15" fill="rgb(213,23,19)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="671.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="645" width="0.4580%" height="15" fill="rgb(217,75,12)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="655.50"></text></g><g><title>std::io::Read::read_to_end (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="629" width="0.4580%" height="15" fill="rgb(224,159,17)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="639.50"></text></g><g><title>std::io::default_read_to_end (19,254,874 samples, 0.46%)</title><rect x="75.4009%" y="613" width="0.4580%" height="15" fill="rgb(217,118,1)" fg:x="3170032622" fg:w="19254874"/><text x="75.6509%" y="623.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="597" width="0.2764%" height="15" fill="rgb(232,180,48)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="607.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="581" width="0.2764%" height="15" fill="rgb(230,27,33)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="591.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="565" width="0.2764%" height="15" fill="rgb(205,31,21)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="575.50"></text></g><g><title>bzip2::mem::Decompress::decompress (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="549" width="0.2764%" height="15" fill="rgb(253,59,4)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="559.50"></text></g><g><title>BZ2_bzDecompress (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="533" width="0.2764%" height="15" fill="rgb(224,201,9)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="543.50"></text></g><g><title>BZ2_decompress (11,619,394 samples, 0.28%)</title><rect x="75.5826%" y="517" width="0.2764%" height="15" fill="rgb(229,206,30)" fg:x="3177668102" fg:w="11619394"/><text x="75.8326%" y="527.50"></text></g><g><title>std::io::Read::read_buf (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="421" width="0.1874%" height="15" fill="rgb(212,67,47)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="431.50"></text></g><g><title>std::io::default_read_buf (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="405" width="0.1874%" height="15" fill="rgb(211,96,50)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="415.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="389" width="0.1874%" height="15" fill="rgb(252,114,18)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="399.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="373" width="0.1874%" height="15" fill="rgb(223,58,37)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="383.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="357" width="0.1874%" height="15" fill="rgb(237,70,4)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="367.50"></text></g><g><title>bzip2::mem::Decompress::decompress (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="341" width="0.1874%" height="15" fill="rgb(244,85,46)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="351.50"></text></g><g><title>BZ2_bzDecompress (7,880,071 samples, 0.19%)</title><rect x="75.8589%" y="325" width="0.1874%" height="15" fill="rgb(223,39,52)" fg:x="3189287496" fg:w="7880071"/><text x="76.1089%" y="335.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="1013" width="0.7316%" height="15" fill="rgb(218,200,14)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="997" width="0.7316%" height="15" fill="rgb(208,171,16)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="981" width="0.7316%" height="15" fill="rgb(234,200,18)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="991.50"></text></g><g><title>rayon_core::job::JobRef::execute (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="965" width="0.7316%" height="15" fill="rgb(228,45,11)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="949" width="0.7316%" height="15" fill="rgb(237,182,11)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="959.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="933" width="0.7316%" height="15" fill="rgb(241,175,49)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="917" width="0.7316%" height="15" fill="rgb(247,38,35)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="927.50"></text></g><g><title>std::panic::catch_unwind (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="901" width="0.7316%" height="15" fill="rgb(228,39,49)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="911.50"></text></g><g><title>std::panicking::try (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="885" width="0.7316%" height="15" fill="rgb(226,101,26)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="895.50"></text></g><g><title>std::panicking::try::do_call (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="869" width="0.7316%" height="15" fill="rgb(206,141,19)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="879.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="853" width="0.7316%" height="15" fill="rgb(211,200,13)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="863.50"></text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="837" width="0.7316%" height="15" fill="rgb(241,121,6)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="821" width="0.7316%" height="15" fill="rgb(234,221,29)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="805" width="0.7316%" height="15" fill="rgb(229,136,5)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="789" width="0.7316%" height="15" fill="rgb(238,36,11)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="799.50"></text></g><g><title>rayon_core::join::join_context (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="773" width="0.7316%" height="15" fill="rgb(251,55,41)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="757" width="0.7316%" height="15" fill="rgb(242,34,40)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="741" width="0.7316%" height="15" fill="rgb(215,42,17)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="725" width="0.7316%" height="15" fill="rgb(207,44,46)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="735.50"></text></g><g><title>std::panic::catch_unwind (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="709" width="0.7316%" height="15" fill="rgb(211,206,28)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="719.50"></text></g><g><title>std::panicking::try (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="693" width="0.7316%" height="15" fill="rgb(237,167,16)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="703.50"></text></g><g><title>std::panicking::try::do_call (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="677" width="0.7316%" height="15" fill="rgb(233,66,6)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="687.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="661" width="0.7316%" height="15" fill="rgb(246,123,29)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="645" width="0.7316%" height="15" fill="rgb(209,62,40)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="629" width="0.7316%" height="15" fill="rgb(218,4,25)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="613" width="0.7316%" height="15" fill="rgb(253,91,49)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="597" width="0.7316%" height="15" fill="rgb(228,155,29)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="607.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="581" width="0.7316%" height="15" fill="rgb(243,57,37)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="565" width="0.7316%" height="15" fill="rgb(244,167,17)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="549" width="0.7316%" height="15" fill="rgb(207,181,38)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="559.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="533" width="0.7316%" height="15" fill="rgb(211,8,23)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="543.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="517" width="0.7316%" height="15" fill="rgb(235,11,44)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="527.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="501" width="0.7316%" height="15" fill="rgb(248,18,52)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="511.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="485" width="0.7316%" height="15" fill="rgb(208,4,7)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="495.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="469" width="0.7316%" height="15" fill="rgb(240,17,39)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="479.50"></text></g><g><title>std::io::Read::read_to_end (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="453" width="0.7316%" height="15" fill="rgb(207,170,3)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="463.50"></text></g><g><title>std::io::default_read_to_end (30,760,123 samples, 0.73%)</title><rect x="75.8589%" y="437" width="0.7316%" height="15" fill="rgb(236,100,52)" fg:x="3189287496" fg:w="30760123"/><text x="76.1089%" y="447.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="421" width="0.5442%" height="15" fill="rgb(246,78,51)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="431.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="405" width="0.5442%" height="15" fill="rgb(211,17,15)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="415.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="389" width="0.5442%" height="15" fill="rgb(209,59,46)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="399.50"></text></g><g><title>bzip2::mem::Decompress::decompress (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="373" width="0.5442%" height="15" fill="rgb(210,92,25)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="383.50"></text></g><g><title>BZ2_bzDecompress (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="357" width="0.5442%" height="15" fill="rgb(238,174,52)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="367.50"></text></g><g><title>BZ2_decompress (22,880,052 samples, 0.54%)</title><rect x="76.0464%" y="341" width="0.5442%" height="15" fill="rgb(230,73,7)" fg:x="3197167567" fg:w="22880052"/><text x="76.2964%" y="351.50"></text></g><g><title>std::io::Read::read_buf (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="709" width="0.3823%" height="15" fill="rgb(243,124,40)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="719.50"></text></g><g><title>std::io::default_read_buf (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="693" width="0.3823%" height="15" fill="rgb(244,170,11)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="703.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="677" width="0.3823%" height="15" fill="rgb(207,114,54)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="687.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="661" width="0.3823%" height="15" fill="rgb(205,42,20)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="671.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="645" width="0.3823%" height="15" fill="rgb(230,30,28)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="655.50"></text></g><g><title>bzip2::mem::Decompress::decompress (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="629" width="0.3823%" height="15" fill="rgb(205,73,54)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="639.50"></text></g><g><title>BZ2_bzDecompress (16,073,877 samples, 0.38%)</title><rect x="76.5906%" y="613" width="0.3823%" height="15" fill="rgb(254,227,23)" fg:x="3220047619" fg:w="16073877"/><text x="76.8406%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1301" width="3.0754%" height="15" fill="rgb(228,202,34)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1311.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1285" width="3.0754%" height="15" fill="rgb(222,225,37)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1295.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::execute (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1269" width="3.0754%" height="15" fill="rgb(221,14,54)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1279.50">ray..</text></g><g><title>rayon_core::job::JobRef::execute (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1253" width="3.0754%" height="15" fill="rgb(254,102,2)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1263.50">ray..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1237" width="3.0754%" height="15" fill="rgb(232,104,17)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1247.50">&lt;ra..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1221" width="3.0754%" height="15" fill="rgb(250,220,14)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1231.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1205" width="3.0754%" height="15" fill="rgb(241,158,9)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1215.50">ray..</text></g><g><title>std::panic::catch_unwind (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1189" width="3.0754%" height="15" fill="rgb(246,9,43)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1199.50">std..</text></g><g><title>std::panicking::try (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1173" width="3.0754%" height="15" fill="rgb(206,73,33)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1183.50">std..</text></g><g><title>std::panicking::try::do_call (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1157" width="3.0754%" height="15" fill="rgb(222,79,8)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1167.50">std..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1141" width="3.0754%" height="15" fill="rgb(234,8,54)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1151.50">&lt;co..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1125" width="3.0754%" height="15" fill="rgb(209,134,38)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1135.50">ray..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1109" width="3.0754%" height="15" fill="rgb(230,127,29)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1119.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1093" width="3.0754%" height="15" fill="rgb(242,44,41)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1103.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1077" width="3.0754%" height="15" fill="rgb(222,56,43)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1087.50">ray..</text></g><g><title>rayon_core::join::join_context (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1061" width="3.0754%" height="15" fill="rgb(238,39,47)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1071.50">ray..</text></g><g><title>rayon_core::registry::in_worker (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1045" width="3.0754%" height="15" fill="rgb(226,79,43)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1055.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (129,296,784 samples, 3.08%)</title><rect x="74.8364%" y="1029" width="3.0754%" height="15" fill="rgb(242,105,53)" fg:x="3146296751" fg:w="129296784"/><text x="75.0864%" y="1039.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="1013" width="1.3212%" height="15" fill="rgb(251,132,46)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="1023.50"></text></g><g><title>std::panic::catch_unwind (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="997" width="1.3212%" height="15" fill="rgb(231,77,14)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="1007.50"></text></g><g><title>std::panicking::try (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="981" width="1.3212%" height="15" fill="rgb(240,135,9)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="991.50"></text></g><g><title>std::panicking::try::do_call (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="965" width="1.3212%" height="15" fill="rgb(248,109,14)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="975.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="949" width="1.3212%" height="15" fill="rgb(227,146,52)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="933" width="1.3212%" height="15" fill="rgb(232,54,3)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="917" width="1.3212%" height="15" fill="rgb(229,201,43)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="901" width="1.3212%" height="15" fill="rgb(252,161,33)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="911.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="885" width="1.3212%" height="15" fill="rgb(226,146,40)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="895.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="869" width="1.3212%" height="15" fill="rgb(219,47,25)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="879.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="853" width="1.3212%" height="15" fill="rgb(250,135,13)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="837" width="1.3212%" height="15" fill="rgb(219,229,18)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="821" width="1.3212%" height="15" fill="rgb(217,152,27)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="831.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="805" width="1.3212%" height="15" fill="rgb(225,71,47)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="815.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="789" width="1.3212%" height="15" fill="rgb(220,139,14)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="799.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="773" width="1.3212%" height="15" fill="rgb(247,54,32)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="783.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="757" width="1.3212%" height="15" fill="rgb(252,131,39)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="767.50"></text></g><g><title>std::io::Read::read_to_end (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="741" width="1.3212%" height="15" fill="rgb(210,108,39)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="751.50"></text></g><g><title>std::io::default_read_to_end (55,545,916 samples, 1.32%)</title><rect x="76.5906%" y="725" width="1.3212%" height="15" fill="rgb(205,23,29)" fg:x="3220047619" fg:w="55545916"/><text x="76.8406%" y="735.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="709" width="0.9389%" height="15" fill="rgb(246,139,46)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="719.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="693" width="0.9389%" height="15" fill="rgb(250,81,26)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="703.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="677" width="0.9389%" height="15" fill="rgb(214,104,7)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="687.50"></text></g><g><title>bzip2::mem::Decompress::decompress (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="661" width="0.9389%" height="15" fill="rgb(233,189,8)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="671.50"></text></g><g><title>BZ2_bzDecompress (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="645" width="0.9389%" height="15" fill="rgb(228,141,17)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="655.50"></text></g><g><title>BZ2_decompress (39,472,039 samples, 0.94%)</title><rect x="76.9729%" y="629" width="0.9389%" height="15" fill="rgb(247,157,1)" fg:x="3236121496" fg:w="39472039"/><text x="77.2229%" y="639.50"></text></g><g><title>[libc.so.6] (3,884,454 samples, 0.09%)</title><rect x="77.8194%" y="613" width="0.0924%" height="15" fill="rgb(249,225,5)" fg:x="3271709081" fg:w="3884454"/><text x="78.0694%" y="623.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="1045" width="0.1089%" height="15" fill="rgb(242,55,13)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="1055.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="1029" width="0.1089%" height="15" fill="rgb(230,49,50)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="1039.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="1013" width="0.1089%" height="15" fill="rgb(241,111,38)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="1023.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::message::Message as core::clone::Clone&gt;::clone (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="997" width="0.1089%" height="15" fill="rgb(252,155,4)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="1007.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="981" width="0.1089%" height="15" fill="rgb(212,69,32)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="991.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock as core::clone::Clone&gt;::clone (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="965" width="0.1089%" height="15" fill="rgb(243,107,47)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="975.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="949" width="0.1089%" height="15" fill="rgb(247,130,12)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="959.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="933" width="0.1089%" height="15" fill="rgb(233,74,16)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="943.50"></text></g><g><title>alloc::slice::hack::to_vec (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="917" width="0.1089%" height="15" fill="rgb(208,58,18)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="927.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="901" width="0.1089%" height="15" fill="rgb(242,225,1)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="885" width="0.1089%" height="15" fill="rgb(249,39,40)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="869" width="0.1089%" height="15" fill="rgb(207,72,44)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="853" width="0.1089%" height="15" fill="rgb(215,193,12)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="837" width="0.1089%" height="15" fill="rgb(248,41,39)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="847.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="821" width="0.1089%" height="15" fill="rgb(253,85,4)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="831.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="805" width="0.1089%" height="15" fill="rgb(243,70,31)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="815.50"></text></g><g><title>alloc::alloc::alloc (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="789" width="0.1089%" height="15" fill="rgb(253,195,26)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="799.50"></text></g><g><title>__rdl_alloc (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="773" width="0.1089%" height="15" fill="rgb(243,42,11)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="783.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="757" width="0.1089%" height="15" fill="rgb(239,66,17)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="767.50"></text></g><g><title>malloc (4,580,409 samples, 0.11%)</title><rect x="77.9118%" y="741" width="0.1089%" height="15" fill="rgb(217,132,21)" fg:x="3275596733" fg:w="4580409"/><text x="78.1618%" y="751.50"></text></g><g><title>std::io::Read::read_buf (40,926,888 samples, 0.97%)</title><rect x="78.0208%" y="997" width="0.9735%" height="15" fill="rgb(252,202,21)" fg:x="3280177544" fg:w="40926888"/><text x="78.2708%" y="1007.50"></text></g><g><title>std::io::default_read_buf (40,926,888 samples, 0.97%)</title><rect x="78.0208%" y="981" width="0.9735%" height="15" fill="rgb(233,98,36)" fg:x="3280177544" fg:w="40926888"/><text x="78.2708%" y="991.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (40,921,884 samples, 0.97%)</title><rect x="78.0209%" y="965" width="0.9733%" height="15" fill="rgb(216,153,54)" fg:x="3280182548" fg:w="40921884"/><text x="78.2709%" y="975.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,921,884 samples, 0.97%)</title><rect x="78.0209%" y="949" width="0.9733%" height="15" fill="rgb(250,99,7)" fg:x="3280182548" fg:w="40921884"/><text x="78.2709%" y="959.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (40,921,884 samples, 0.97%)</title><rect x="78.0209%" y="933" width="0.9733%" height="15" fill="rgb(207,56,50)" fg:x="3280182548" fg:w="40921884"/><text x="78.2709%" y="943.50"></text></g><g><title>bzip2::mem::Decompress::decompress (40,921,884 samples, 0.97%)</title><rect x="78.0209%" y="917" width="0.9733%" height="15" fill="rgb(244,61,34)" fg:x="3280182548" fg:w="40921884"/><text x="78.2709%" y="927.50"></text></g><g><title>BZ2_bzDecompress (40,921,884 samples, 0.97%)</title><rect x="78.0209%" y="901" width="0.9733%" height="15" fill="rgb(241,50,38)" fg:x="3280182548" fg:w="40921884"/><text x="78.2709%" y="911.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (72,960,242 samples, 1.74%)</title><rect x="78.0208%" y="1045" width="1.7354%" height="15" fill="rgb(212,166,30)" fg:x="3280177142" fg:w="72960242"/><text x="78.2708%" y="1055.50"></text></g><g><title>std::io::Read::read_to_end (72,960,242 samples, 1.74%)</title><rect x="78.0208%" y="1029" width="1.7354%" height="15" fill="rgb(249,127,32)" fg:x="3280177142" fg:w="72960242"/><text x="78.2708%" y="1039.50"></text></g><g><title>std::io::default_read_to_end (72,960,242 samples, 1.74%)</title><rect x="78.0208%" y="1013" width="1.7354%" height="15" fill="rgb(209,103,0)" fg:x="3280177142" fg:w="72960242"/><text x="78.2708%" y="1023.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="997" width="0.7619%" height="15" fill="rgb(238,209,51)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="1007.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="981" width="0.7619%" height="15" fill="rgb(237,56,23)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="991.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="965" width="0.7619%" height="15" fill="rgb(215,153,46)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="975.50"></text></g><g><title>bzip2::mem::Decompress::decompress (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="949" width="0.7619%" height="15" fill="rgb(224,49,31)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="959.50"></text></g><g><title>BZ2_bzDecompress (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="933" width="0.7619%" height="15" fill="rgb(250,18,42)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="943.50"></text></g><g><title>BZ2_decompress (32,032,952 samples, 0.76%)</title><rect x="78.9943%" y="917" width="0.7619%" height="15" fill="rgb(215,176,39)" fg:x="3321104432" fg:w="32032952"/><text x="79.2443%" y="927.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1173" width="1.8471%" height="15" fill="rgb(223,77,29)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1183.50">r..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1157" width="1.8471%" height="15" fill="rgb(234,94,52)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1167.50">&lt;..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1141" width="1.8471%" height="15" fill="rgb(220,154,50)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1151.50">r..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1125" width="1.8471%" height="15" fill="rgb(212,11,10)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1135.50">&lt;..</text></g><g><title>core::option::Option&lt;T&gt;::map (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1109" width="1.8471%" height="15" fill="rgb(205,166,19)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1119.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1093" width="1.8471%" height="15" fill="rgb(244,198,16)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1103.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1077" width="1.8471%" height="15" fill="rgb(219,69,12)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1087.50">c..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (77,657,718 samples, 1.85%)</title><rect x="77.9118%" y="1061" width="1.8471%" height="15" fill="rgb(245,30,7)" fg:x="3275596733" fg:w="77657718"/><text x="78.1618%" y="1071.50">w..</text></g><g><title>std::io::Read::read_buf (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="773" width="2.7424%" height="15" fill="rgb(218,221,48)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="783.50">st..</text></g><g><title>std::io::default_read_buf (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="757" width="2.7424%" height="15" fill="rgb(216,66,15)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="767.50">st..</text></g><g><title>std::io::Read::read_buf::_{{closure}} (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="741" width="2.7424%" height="15" fill="rgb(226,122,50)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="751.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="725" width="2.7424%" height="15" fill="rgb(239,156,16)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="735.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="709" width="2.7424%" height="15" fill="rgb(224,27,38)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="719.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="693" width="2.7424%" height="15" fill="rgb(224,39,27)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="703.50">bz..</text></g><g><title>BZ2_bzDecompress (115,295,558 samples, 2.74%)</title><rect x="79.7590%" y="677" width="2.7424%" height="15" fill="rgb(215,92,29)" fg:x="3353254451" fg:w="115295558"/><text x="80.0090%" y="687.50">BZ..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="1013" width="6.4212%" height="15" fill="rgb(207,159,16)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="1023.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="997" width="6.4212%" height="15" fill="rgb(238,163,47)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="1007.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="981" width="6.4212%" height="15" fill="rgb(219,91,49)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="991.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="965" width="6.4212%" height="15" fill="rgb(227,167,31)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="975.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="949" width="6.4212%" height="15" fill="rgb(234,80,54)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="959.50">rayon::i..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="933" width="6.4212%" height="15" fill="rgb(212,114,2)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="943.50">&lt;rayon::..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="917" width="6.4212%" height="15" fill="rgb(234,50,24)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="927.50">rayon::i..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="901" width="6.4212%" height="15" fill="rgb(221,68,8)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="911.50">&lt;core::i..</text></g><g><title>core::option::Option&lt;T&gt;::map (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="885" width="6.4212%" height="15" fill="rgb(254,180,31)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="895.50">core::op..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="869" width="6.4212%" height="15" fill="rgb(247,130,50)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="879.50">core::op..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="853" width="6.4212%" height="15" fill="rgb(211,109,4)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="863.50">core::op..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="837" width="6.4212%" height="15" fill="rgb(238,50,21)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="847.50">wxbox_ar..</text></g><g><title>nexrad_data::volume::record::Record::decompress (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="821" width="6.4212%" height="15" fill="rgb(225,57,45)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="831.50">nexrad_d..</text></g><g><title>std::io::Read::read_to_end (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="805" width="6.4212%" height="15" fill="rgb(209,196,50)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="815.50">std::io:..</text></g><g><title>std::io::default_read_to_end (269,960,769 samples, 6.42%)</title><rect x="79.7590%" y="789" width="6.4212%" height="15" fill="rgb(242,140,13)" fg:x="3353254451" fg:w="269960769"/><text x="80.0090%" y="799.50">std::io:..</text></g><g><title>std::io::default_read_to_end::small_probe_read (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="773" width="3.6788%" height="15" fill="rgb(217,111,7)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="783.50">std:..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="757" width="3.6788%" height="15" fill="rgb(253,193,51)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="767.50">&lt;bzi..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="741" width="3.6788%" height="15" fill="rgb(252,70,29)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="751.50">&lt;bzi..</text></g><g><title>bzip2::mem::Decompress::decompress (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="725" width="3.6788%" height="15" fill="rgb(232,127,12)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="735.50">bzip..</text></g><g><title>BZ2_bzDecompress (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="709" width="3.6788%" height="15" fill="rgb(211,180,21)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="719.50">BZ2_..</text></g><g><title>BZ2_decompress (154,665,211 samples, 3.68%)</title><rect x="82.5013%" y="693" width="3.6788%" height="15" fill="rgb(229,72,13)" fg:x="3468550009" fg:w="154665211"/><text x="82.7513%" y="703.50">BZ2_..</text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,735,369 samples, 0.09%)</title><rect x="86.1801%" y="757" width="0.0888%" height="15" fill="rgb(240,211,49)" fg:x="3623215220" fg:w="3735369"/><text x="86.4301%" y="767.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::read (3,735,369 samples, 0.09%)</title><rect x="86.1801%" y="741" width="0.0888%" height="15" fill="rgb(219,149,40)" fg:x="3623215220" fg:w="3735369"/><text x="86.4301%" y="751.50"></text></g><g><title>core::ptr::read (3,735,369 samples, 0.09%)</title><rect x="86.1801%" y="725" width="0.0888%" height="15" fill="rgb(210,127,46)" fg:x="3623215220" fg:w="3735369"/><text x="86.4301%" y="735.50"></text></g><g><title>std::io::Read::read_buf (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="709" width="1.3399%" height="15" fill="rgb(220,106,7)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="719.50"></text></g><g><title>std::io::default_read_buf (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="693" width="1.3399%" height="15" fill="rgb(249,31,22)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="703.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="677" width="1.3399%" height="15" fill="rgb(253,1,49)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="687.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="661" width="1.3399%" height="15" fill="rgb(227,144,33)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="671.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="645" width="1.3399%" height="15" fill="rgb(249,163,44)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="655.50"></text></g><g><title>bzip2::mem::Decompress::decompress (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="629" width="1.3399%" height="15" fill="rgb(234,15,39)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="639.50"></text></g><g><title>BZ2_bzDecompress (56,333,933 samples, 1.34%)</title><rect x="86.2690%" y="613" width="1.3399%" height="15" fill="rgb(207,66,16)" fg:x="3626950589" fg:w="56333933"/><text x="86.5190%" y="623.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (156,256,263 samples, 3.72%)</title><rect x="86.2690%" y="757" width="3.7166%" height="15" fill="rgb(233,112,24)" fg:x="3626950589" fg:w="156256263"/><text x="86.5190%" y="767.50">nexr..</text></g><g><title>std::io::Read::read_to_end (156,256,263 samples, 3.72%)</title><rect x="86.2690%" y="741" width="3.7166%" height="15" fill="rgb(230,90,22)" fg:x="3626950589" fg:w="156256263"/><text x="86.5190%" y="751.50">std:..</text></g><g><title>std::io::default_read_to_end (156,256,263 samples, 3.72%)</title><rect x="86.2690%" y="725" width="3.7166%" height="15" fill="rgb(229,61,13)" fg:x="3626950589" fg:w="156256263"/><text x="86.5190%" y="735.50">std:..</text></g><g><title>std::io::default_read_to_end::small_probe_read (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="709" width="2.3767%" height="15" fill="rgb(225,57,24)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="719.50">st..</text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="693" width="2.3767%" height="15" fill="rgb(208,169,48)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="703.50">&lt;b..</text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="677" width="2.3767%" height="15" fill="rgb(244,218,51)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="687.50">&lt;b..</text></g><g><title>bzip2::mem::Decompress::decompress (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="661" width="2.3767%" height="15" fill="rgb(214,148,10)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="671.50">bz..</text></g><g><title>BZ2_bzDecompress (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="645" width="2.3767%" height="15" fill="rgb(225,174,27)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="655.50">BZ..</text></g><g><title>BZ2_decompress (99,922,330 samples, 2.38%)</title><rect x="87.6089%" y="629" width="2.3767%" height="15" fill="rgb(230,96,26)" fg:x="3683284522" fg:w="99922330"/><text x="87.8589%" y="639.50">BZ..</text></g><g><title>[libc.so.6] (2,460,562 samples, 0.06%)</title><rect x="89.9271%" y="613" width="0.0585%" height="15" fill="rgb(232,10,30)" fg:x="3780746290" fg:w="2460562"/><text x="90.1771%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1125" width="10.3131%" height="15" fill="rgb(222,8,50)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1135.50">rayon_core::job..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1109" width="10.3131%" height="15" fill="rgb(213,81,27)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1119.50">rayon_core::joi..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1093" width="10.3131%" height="15" fill="rgb(245,50,10)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1103.50">rayon::iter::pl..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1077" width="10.3131%" height="15" fill="rgb(216,100,18)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1087.50">rayon::iter::pl..</text></g><g><title>rayon_core::join::join_context (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1061" width="10.3131%" height="15" fill="rgb(236,147,54)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1071.50">rayon_core::joi..</text></g><g><title>rayon_core::registry::in_worker (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1045" width="10.3131%" height="15" fill="rgb(205,143,26)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1055.50">rayon_core::reg..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (433,587,683 samples, 10.31%)</title><rect x="79.7590%" y="1029" width="10.3131%" height="15" fill="rgb(236,26,9)" fg:x="3353254451" fg:w="433587683"/><text x="80.0090%" y="1039.50">rayon_core::joi..</text></g><g><title>rayon_core::unwind::halt_unwinding (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="1013" width="3.8920%" height="15" fill="rgb(221,165,53)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="1023.50">rayo..</text></g><g><title>std::panic::catch_unwind (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="997" width="3.8920%" height="15" fill="rgb(214,110,17)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="1007.50">std:..</text></g><g><title>std::panicking::try (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="981" width="3.8920%" height="15" fill="rgb(237,197,12)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="991.50">std:..</text></g><g><title>std::panicking::try::do_call (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="965" width="3.8920%" height="15" fill="rgb(205,84,17)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="975.50">std:..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="949" width="3.8920%" height="15" fill="rgb(237,18,45)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="959.50">&lt;cor..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="933" width="3.8920%" height="15" fill="rgb(221,87,14)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="943.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="917" width="3.8920%" height="15" fill="rgb(238,186,15)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="927.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="901" width="3.8920%" height="15" fill="rgb(208,115,11)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="911.50">rayo..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="885" width="3.8920%" height="15" fill="rgb(254,175,0)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="895.50">rayo..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="869" width="3.8920%" height="15" fill="rgb(227,24,42)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="879.50">&lt;ray..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="853" width="3.8920%" height="15" fill="rgb(223,211,37)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="863.50">rayo..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="837" width="3.8920%" height="15" fill="rgb(235,49,27)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="847.50">&lt;cor..</text></g><g><title>core::option::Option&lt;T&gt;::map (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="821" width="3.8920%" height="15" fill="rgb(254,97,51)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="831.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="805" width="3.8920%" height="15" fill="rgb(249,51,40)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="815.50">core..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="789" width="3.8920%" height="15" fill="rgb(210,128,45)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="799.50">core..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (163,626,914 samples, 3.89%)</title><rect x="86.1801%" y="773" width="3.8920%" height="15" fill="rgb(224,137,50)" fg:x="3623215220" fg:w="163626914"/><text x="86.4301%" y="783.50">wxbo..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="757" width="0.0865%" height="15" fill="rgb(242,15,9)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="767.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="741" width="0.0865%" height="15" fill="rgb(233,187,41)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="751.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="725" width="0.0865%" height="15" fill="rgb(227,2,29)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="735.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="709" width="0.0865%" height="15" fill="rgb(222,70,3)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="719.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::data_block_id::DataBlockId::data_block_name (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="693" width="0.0865%" height="15" fill="rgb(213,11,42)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="703.50"></text></g><g><title>alloc::string::String::from_utf8_lossy (3,635,282 samples, 0.09%)</title><rect x="89.9856%" y="677" width="0.0865%" height="15" fill="rgb(225,150,9)" fg:x="3783206852" fg:w="3635282"/><text x="90.2356%" y="687.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="869" width="0.0937%" height="15" fill="rgb(230,162,45)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="879.50"></text></g><g><title>&lt;T as core::clone::CloneToUninit&gt;::clone_to_uninit (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="853" width="0.0937%" height="15" fill="rgb(222,14,52)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="863.50"></text></g><g><title>&lt;T as core::clone::uninit::CopySpec&gt;::clone_one (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="837" width="0.0937%" height="15" fill="rgb(254,198,14)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="847.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::message::Message as core::clone::Clone&gt;::clone (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="821" width="0.0937%" height="15" fill="rgb(220,217,30)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="831.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="805" width="0.0937%" height="15" fill="rgb(215,146,41)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="815.50"></text></g><g><title>&lt;nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock as core::clone::Clone&gt;::clone (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="789" width="0.0937%" height="15" fill="rgb(217,27,36)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="773" width="0.0937%" height="15" fill="rgb(219,218,39)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="783.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="757" width="0.0937%" height="15" fill="rgb(219,4,42)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="767.50"></text></g><g><title>alloc::slice::hack::to_vec (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="741" width="0.0937%" height="15" fill="rgb(249,119,36)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="751.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="725" width="0.0937%" height="15" fill="rgb(209,23,33)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="735.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="709" width="0.0937%" height="15" fill="rgb(211,10,0)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="719.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="693" width="0.0937%" height="15" fill="rgb(208,99,37)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="703.50"></text></g><g><title>[libc.so.6] (3,939,770 samples, 0.09%)</title><rect x="90.0721%" y="677" width="0.0937%" height="15" fill="rgb(213,132,31)" fg:x="3786842134" fg:w="3939770"/><text x="90.3221%" y="687.50"></text></g><g><title>core::io::borrowed_buf::BorrowedCursor::ensure_init (4,245,724 samples, 0.10%)</title><rect x="90.1658%" y="789" width="0.1010%" height="15" fill="rgb(243,129,40)" fg:x="3790781904" fg:w="4245724"/><text x="90.4158%" y="799.50"></text></g><g><title>core::intrinsics::write_bytes (4,245,724 samples, 0.10%)</title><rect x="90.1658%" y="773" width="0.1010%" height="15" fill="rgb(210,66,33)" fg:x="3790781904" fg:w="4245724"/><text x="90.4158%" y="783.50"></text></g><g><title>[libc.so.6] (4,245,724 samples, 0.10%)</title><rect x="90.1658%" y="757" width="0.1010%" height="15" fill="rgb(209,189,4)" fg:x="3790781904" fg:w="4245724"/><text x="90.4158%" y="767.50"></text></g><g><title>std::io::Read::read_buf (63,526,591 samples, 1.51%)</title><rect x="90.1658%" y="821" width="1.5110%" height="15" fill="rgb(214,107,37)" fg:x="3790781904" fg:w="63526591"/><text x="90.4158%" y="831.50"></text></g><g><title>std::io::default_read_buf (63,526,591 samples, 1.51%)</title><rect x="90.1658%" y="805" width="1.5110%" height="15" fill="rgb(245,88,54)" fg:x="3790781904" fg:w="63526591"/><text x="90.4158%" y="815.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (59,280,867 samples, 1.41%)</title><rect x="90.2668%" y="789" width="1.4100%" height="15" fill="rgb(205,146,20)" fg:x="3795027628" fg:w="59280867"/><text x="90.5168%" y="799.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (59,280,867 samples, 1.41%)</title><rect x="90.2668%" y="773" width="1.4100%" height="15" fill="rgb(220,161,25)" fg:x="3795027628" fg:w="59280867"/><text x="90.5168%" y="783.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (59,280,867 samples, 1.41%)</title><rect x="90.2668%" y="757" width="1.4100%" height="15" fill="rgb(215,152,15)" fg:x="3795027628" fg:w="59280867"/><text x="90.5168%" y="767.50"></text></g><g><title>bzip2::mem::Decompress::decompress (59,280,867 samples, 1.41%)</title><rect x="90.2668%" y="741" width="1.4100%" height="15" fill="rgb(233,192,44)" fg:x="3795027628" fg:w="59280867"/><text x="90.5168%" y="751.50"></text></g><g><title>BZ2_bzDecompress (59,280,867 samples, 1.41%)</title><rect x="90.2668%" y="725" width="1.4100%" height="15" fill="rgb(240,170,46)" fg:x="3795027628" fg:w="59280867"/><text x="90.5168%" y="735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="997" width="2.5092%" height="15" fill="rgb(207,104,33)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="1007.50">ra..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="981" width="2.5092%" height="15" fill="rgb(219,21,39)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="991.50">&lt;r..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="965" width="2.5092%" height="15" fill="rgb(214,133,29)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="975.50">ra..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="949" width="2.5092%" height="15" fill="rgb(226,93,6)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="959.50">&lt;c..</text></g><g><title>core::option::Option&lt;T&gt;::map (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="933" width="2.5092%" height="15" fill="rgb(252,222,34)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="943.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="917" width="2.5092%" height="15" fill="rgb(252,92,48)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="927.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="901" width="2.5092%" height="15" fill="rgb(245,223,24)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="911.50">co..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (105,491,991 samples, 2.51%)</title><rect x="90.0721%" y="885" width="2.5092%" height="15" fill="rgb(205,176,3)" fg:x="3786842134" fg:w="105491991"/><text x="90.3221%" y="895.50">wx..</text></g><g><title>nexrad_data::volume::record::Record::decompress (101,552,221 samples, 2.42%)</title><rect x="90.1658%" y="869" width="2.4155%" height="15" fill="rgb(235,151,15)" fg:x="3790781904" fg:w="101552221"/><text x="90.4158%" y="879.50">ne..</text></g><g><title>std::io::Read::read_to_end (101,552,221 samples, 2.42%)</title><rect x="90.1658%" y="853" width="2.4155%" height="15" fill="rgb(237,209,11)" fg:x="3790781904" fg:w="101552221"/><text x="90.4158%" y="863.50">st..</text></g><g><title>std::io::default_read_to_end (101,552,221 samples, 2.42%)</title><rect x="90.1658%" y="837" width="2.4155%" height="15" fill="rgb(243,227,24)" fg:x="3790781904" fg:w="101552221"/><text x="90.4158%" y="847.50">st..</text></g><g><title>std::io::default_read_to_end::small_probe_read (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="821" width="0.9045%" height="15" fill="rgb(239,193,16)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="831.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="805" width="0.9045%" height="15" fill="rgb(231,27,9)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="815.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="789" width="0.9045%" height="15" fill="rgb(219,169,10)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="799.50"></text></g><g><title>bzip2::mem::Decompress::decompress (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="773" width="0.9045%" height="15" fill="rgb(244,229,43)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="783.50"></text></g><g><title>BZ2_bzDecompress (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="757" width="0.9045%" height="15" fill="rgb(254,38,20)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="767.50"></text></g><g><title>BZ2_decompress (38,025,630 samples, 0.90%)</title><rect x="91.6768%" y="741" width="0.9045%" height="15" fill="rgb(250,47,30)" fg:x="3854308495" fg:w="38025630"/><text x="91.9268%" y="751.50"></text></g><g><title>std::io::Read::read_buf (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="709" width="0.1996%" height="15" fill="rgb(224,124,36)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="719.50"></text></g><g><title>std::io::default_read_buf (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="693" width="0.1996%" height="15" fill="rgb(246,68,51)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="703.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="677" width="0.1996%" height="15" fill="rgb(253,43,49)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="687.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="661" width="0.1996%" height="15" fill="rgb(219,54,36)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="671.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="645" width="0.1996%" height="15" fill="rgb(227,133,34)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="655.50"></text></g><g><title>bzip2::mem::Decompress::decompress (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="629" width="0.1996%" height="15" fill="rgb(247,227,15)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="639.50"></text></g><g><title>BZ2_bzDecompress (8,391,213 samples, 0.20%)</title><rect x="92.5813%" y="613" width="0.1996%" height="15" fill="rgb(229,96,14)" fg:x="3892334125" fg:w="8391213"/><text x="92.8313%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="949" width="0.8945%" height="15" fill="rgb(220,79,17)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="933" width="0.8945%" height="15" fill="rgb(205,131,53)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="917" width="0.8945%" height="15" fill="rgb(209,50,29)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="901" width="0.8945%" height="15" fill="rgb(245,86,46)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="911.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="885" width="0.8945%" height="15" fill="rgb(235,66,46)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="895.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="869" width="0.8945%" height="15" fill="rgb(232,148,31)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="879.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="853" width="0.8945%" height="15" fill="rgb(217,149,8)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="837" width="0.8945%" height="15" fill="rgb(209,183,11)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="821" width="0.8945%" height="15" fill="rgb(208,55,20)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="831.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="805" width="0.8945%" height="15" fill="rgb(218,39,14)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="815.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="789" width="0.8945%" height="15" fill="rgb(216,169,33)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="799.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="773" width="0.8945%" height="15" fill="rgb(233,80,24)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="783.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="757" width="0.8945%" height="15" fill="rgb(213,179,31)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="767.50"></text></g><g><title>std::io::Read::read_to_end (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="741" width="0.8945%" height="15" fill="rgb(209,19,5)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="751.50"></text></g><g><title>std::io::default_read_to_end (37,605,235 samples, 0.89%)</title><rect x="92.5813%" y="725" width="0.8945%" height="15" fill="rgb(219,18,35)" fg:x="3892334125" fg:w="37605235"/><text x="92.8313%" y="735.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="709" width="0.6949%" height="15" fill="rgb(209,169,16)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="719.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="693" width="0.6949%" height="15" fill="rgb(245,90,51)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="703.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="677" width="0.6949%" height="15" fill="rgb(220,99,45)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="687.50"></text></g><g><title>bzip2::mem::Decompress::decompress (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="661" width="0.6949%" height="15" fill="rgb(249,89,25)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="671.50"></text></g><g><title>BZ2_bzDecompress (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="645" width="0.6949%" height="15" fill="rgb(239,193,0)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="655.50"></text></g><g><title>BZ2_decompress (29,214,022 samples, 0.69%)</title><rect x="92.7809%" y="629" width="0.6949%" height="15" fill="rgb(231,126,1)" fg:x="3900725338" fg:w="29214022"/><text x="93.0309%" y="639.50"></text></g><g><title>std::io::Read::read_buf (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="645" width="0.2067%" height="15" fill="rgb(243,166,3)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="655.50"></text></g><g><title>std::io::default_read_buf (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="629" width="0.2067%" height="15" fill="rgb(223,22,34)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="639.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="613" width="0.2067%" height="15" fill="rgb(251,52,51)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="623.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="597" width="0.2067%" height="15" fill="rgb(221,165,28)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="607.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="581" width="0.2067%" height="15" fill="rgb(218,121,47)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="591.50"></text></g><g><title>bzip2::mem::Decompress::decompress (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="565" width="0.2067%" height="15" fill="rgb(209,120,9)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="575.50"></text></g><g><title>BZ2_bzDecompress (8,691,540 samples, 0.21%)</title><rect x="93.4757%" y="549" width="0.2067%" height="15" fill="rgb(236,68,12)" fg:x="3929939360" fg:w="8691540"/><text x="93.7257%" y="559.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3,936,717,791 samples, 93.64%)</title><rect x="0.0899%" y="1749" width="93.6370%" height="15" fill="rgb(225,194,26)" fg:x="3777875" fg:w="3936717791"/><text x="0.3399%" y="1759.50">rayon_core::join::join_context::call_b::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3,936,717,791 samples, 93.64%)</title><rect x="0.0899%" y="1733" width="93.6370%" height="15" fill="rgb(231,84,39)" fg:x="3777875" fg:w="3936717791"/><text x="0.3399%" y="1743.50">rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3,936,717,791 samples, 93.64%)</title><rect x="0.0899%" y="1717" width="93.6370%" height="15" fill="rgb(210,11,45)" fg:x="3777875" fg:w="3936717791"/><text x="0.3399%" y="1727.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context (3,739,838,836 samples, 88.95%)</title><rect x="4.7727%" y="1701" width="88.9541%" height="15" fill="rgb(224,54,52)" fg:x="200656830" fg:w="3739838836"/><text x="5.0227%" y="1711.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (3,739,838,836 samples, 88.95%)</title><rect x="4.7727%" y="1685" width="88.9541%" height="15" fill="rgb(238,102,14)" fg:x="200656830" fg:w="3739838836"/><text x="5.0227%" y="1695.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (3,739,838,836 samples, 88.95%)</title><rect x="4.7727%" y="1669" width="88.9541%" height="15" fill="rgb(243,160,52)" fg:x="200656830" fg:w="3739838836"/><text x="5.0227%" y="1679.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::unwind::halt_unwinding (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1653" width="63.6532%" height="15" fill="rgb(216,114,19)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1663.50">rayon_core::unwind::halt_unwinding</text></g><g><title>std::panic::catch_unwind (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1637" width="63.6532%" height="15" fill="rgb(244,166,37)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1647.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1621" width="63.6532%" height="15" fill="rgb(246,29,44)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1631.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1605" width="63.6532%" height="15" fill="rgb(215,56,53)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1615.50">std::panicking::try::do_call</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1589" width="63.6532%" height="15" fill="rgb(217,60,2)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1599.50">&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1573" width="63.6532%" height="15" fill="rgb(207,26,24)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1583.50">rayon_core::join::join_context::call_a::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1557" width="63.6532%" height="15" fill="rgb(252,210,15)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1567.50">rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (2,676,130,699 samples, 63.65%)</title><rect x="30.0736%" y="1541" width="63.6532%" height="15" fill="rgb(253,209,26)" fg:x="1264364967" fg:w="2676130699"/><text x="30.3236%" y="1551.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context (2,489,184,642 samples, 59.21%)</title><rect x="34.5202%" y="1525" width="59.2066%" height="15" fill="rgb(238,170,14)" fg:x="1451311024" fg:w="2489184642"/><text x="34.7702%" y="1535.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (2,489,184,642 samples, 59.21%)</title><rect x="34.5202%" y="1509" width="59.2066%" height="15" fill="rgb(216,178,15)" fg:x="1451311024" fg:w="2489184642"/><text x="34.7702%" y="1519.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (2,489,184,642 samples, 59.21%)</title><rect x="34.5202%" y="1493" width="59.2066%" height="15" fill="rgb(250,197,2)" fg:x="1451311024" fg:w="2489184642"/><text x="34.7702%" y="1503.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::unwind::halt_unwinding (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1477" width="36.2123%" height="15" fill="rgb(212,70,42)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1487.50">rayon_core::unwind::halt_unwinding</text></g><g><title>std::panic::catch_unwind (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1461" width="36.2123%" height="15" fill="rgb(227,213,9)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1471.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1445" width="36.2123%" height="15" fill="rgb(245,99,25)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1455.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1429" width="36.2123%" height="15" fill="rgb(250,82,29)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1439.50">std::panicking::try::do_call</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1413" width="36.2123%" height="15" fill="rgb(241,226,54)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1423.50">&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1397" width="36.2123%" height="15" fill="rgb(221,99,41)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1407.50">rayon_core::join::join_context::call_a::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1381" width="36.2123%" height="15" fill="rgb(213,90,21)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1391.50">rayon::iter::plumbing::bridge_producer_consumer::helper::_{..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,522,450,465 samples, 36.21%)</title><rect x="57.5145%" y="1365" width="36.2123%" height="15" fill="rgb(205,208,24)" fg:x="2418045201" fg:w="1522450465"/><text x="57.7645%" y="1375.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context (1,405,050,949 samples, 33.42%)</title><rect x="60.3069%" y="1349" width="33.4199%" height="15" fill="rgb(246,31,12)" fg:x="2535444717" fg:w="1405050949"/><text x="60.5569%" y="1359.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (1,405,050,949 samples, 33.42%)</title><rect x="60.3069%" y="1333" width="33.4199%" height="15" fill="rgb(213,154,6)" fg:x="2535444717" fg:w="1405050949"/><text x="60.5569%" y="1343.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,405,050,949 samples, 33.42%)</title><rect x="60.3069%" y="1317" width="33.4199%" height="15" fill="rgb(222,163,29)" fg:x="2535444717" fg:w="1405050949"/><text x="60.5569%" y="1327.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::unwind::halt_unwinding (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1301" width="15.8151%" height="15" fill="rgb(227,201,8)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1311.50">rayon_core::unwind::halt..</text></g><g><title>std::panic::catch_unwind (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1285" width="15.8151%" height="15" fill="rgb(233,9,32)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1295.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1269" width="15.8151%" height="15" fill="rgb(217,54,24)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1279.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1253" width="15.8151%" height="15" fill="rgb(235,192,0)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1263.50">std::panicking::try::do_..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1237" width="15.8151%" height="15" fill="rgb(235,45,9)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1247.50">&lt;core::panic::unwind_saf..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1221" width="15.8151%" height="15" fill="rgb(246,42,40)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1231.50">rayon_core::join::join_c..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1205" width="15.8151%" height="15" fill="rgb(248,111,24)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1215.50">rayon::iter::plumbing::b..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (664,902,131 samples, 15.82%)</title><rect x="77.9118%" y="1189" width="15.8151%" height="15" fill="rgb(249,65,22)" fg:x="3275593535" fg:w="664902131"/><text x="78.1618%" y="1199.50">rayon::iter::plumbing::b..</text></g><g><title>rayon_core::join::join_context (587,241,215 samples, 13.97%)</title><rect x="79.7590%" y="1173" width="13.9679%" height="15" fill="rgb(238,111,51)" fg:x="3353254451" fg:w="587241215"/><text x="80.0090%" y="1183.50">rayon_core::join::joi..</text></g><g><title>rayon_core::registry::in_worker (587,241,215 samples, 13.97%)</title><rect x="79.7590%" y="1157" width="13.9679%" height="15" fill="rgb(250,118,22)" fg:x="3353254451" fg:w="587241215"/><text x="80.0090%" y="1167.50">rayon_core::registry:..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (587,241,215 samples, 13.97%)</title><rect x="79.7590%" y="1141" width="13.9679%" height="15" fill="rgb(234,84,26)" fg:x="3353254451" fg:w="587241215"/><text x="80.0090%" y="1151.50">rayon_core::join::joi..</text></g><g><title>rayon_core::unwind::halt_unwinding (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1125" width="3.6547%" height="15" fill="rgb(243,172,12)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1135.50">rayo..</text></g><g><title>std::panic::catch_unwind (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1109" width="3.6547%" height="15" fill="rgb(236,150,49)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1119.50">std:..</text></g><g><title>std::panicking::try (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1093" width="3.6547%" height="15" fill="rgb(225,197,26)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1103.50">std:..</text></g><g><title>std::panicking::try::do_call (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1077" width="3.6547%" height="15" fill="rgb(214,17,42)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1087.50">std:..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1061" width="3.6547%" height="15" fill="rgb(224,165,40)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1071.50">&lt;cor..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1045" width="3.6547%" height="15" fill="rgb(246,100,4)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1055.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1029" width="3.6547%" height="15" fill="rgb(222,103,0)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1039.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153,653,532 samples, 3.65%)</title><rect x="90.0721%" y="1013" width="3.6547%" height="15" fill="rgb(227,189,26)" fg:x="3786842134" fg:w="153653532"/><text x="90.3221%" y="1023.50">rayo..</text></g><g><title>rayon_core::join::join_context (48,161,541 samples, 1.15%)</title><rect x="92.5813%" y="997" width="1.1455%" height="15" fill="rgb(214,202,17)" fg:x="3892334125" fg:w="48161541"/><text x="92.8313%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (48,161,541 samples, 1.15%)</title><rect x="92.5813%" y="981" width="1.1455%" height="15" fill="rgb(229,111,3)" fg:x="3892334125" fg:w="48161541"/><text x="92.8313%" y="991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48,161,541 samples, 1.15%)</title><rect x="92.5813%" y="965" width="1.1455%" height="15" fill="rgb(229,172,15)" fg:x="3892334125" fg:w="48161541"/><text x="92.8313%" y="975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="949" width="0.2511%" height="15" fill="rgb(230,224,35)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="959.50"></text></g><g><title>std::panic::catch_unwind (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="933" width="0.2511%" height="15" fill="rgb(251,141,6)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="943.50"></text></g><g><title>std::panicking::try (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="917" width="0.2511%" height="15" fill="rgb(225,208,6)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="927.50"></text></g><g><title>std::panicking::try::do_call (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="901" width="0.2511%" height="15" fill="rgb(246,181,16)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="911.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="885" width="0.2511%" height="15" fill="rgb(227,129,36)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="869" width="0.2511%" height="15" fill="rgb(248,117,24)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="853" width="0.2511%" height="15" fill="rgb(214,185,35)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="837" width="0.2511%" height="15" fill="rgb(236,150,34)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="847.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="821" width="0.2511%" height="15" fill="rgb(243,228,27)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="831.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="805" width="0.2511%" height="15" fill="rgb(245,77,44)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="789" width="0.2511%" height="15" fill="rgb(235,214,42)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="773" width="0.2511%" height="15" fill="rgb(221,74,3)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="783.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="757" width="0.2511%" height="15" fill="rgb(206,121,29)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="767.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="741" width="0.2511%" height="15" fill="rgb(249,131,53)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="751.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="725" width="0.2511%" height="15" fill="rgb(236,170,29)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="735.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="709" width="0.2511%" height="15" fill="rgb(247,96,15)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="719.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="693" width="0.2511%" height="15" fill="rgb(211,210,7)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="703.50"></text></g><g><title>std::io::Read::read_to_end (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="677" width="0.2511%" height="15" fill="rgb(240,88,50)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="687.50"></text></g><g><title>std::io::default_read_to_end (10,556,306 samples, 0.25%)</title><rect x="93.4757%" y="661" width="0.2511%" height="15" fill="rgb(209,229,26)" fg:x="3929939360" fg:w="10556306"/><text x="93.7257%" y="671.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="645" width="0.0444%" height="15" fill="rgb(210,68,23)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="655.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="629" width="0.0444%" height="15" fill="rgb(229,180,13)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="639.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="613" width="0.0444%" height="15" fill="rgb(236,53,44)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="623.50"></text></g><g><title>bzip2::mem::Decompress::decompress (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="597" width="0.0444%" height="15" fill="rgb(244,214,29)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="607.50"></text></g><g><title>BZ2_bzDecompress (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="581" width="0.0444%" height="15" fill="rgb(220,75,29)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="591.50"></text></g><g><title>BZ2_decompress (1,864,766 samples, 0.04%)</title><rect x="93.6825%" y="565" width="0.0444%" height="15" fill="rgb(214,183,37)" fg:x="3938630900" fg:w="1864766"/><text x="93.9325%" y="575.50"></text></g><g><title>std::io::Read::read_buf (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="133" width="1.2515%" height="15" fill="rgb(239,117,29)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="143.50"></text></g><g><title>std::io::default_read_buf (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="117" width="1.2515%" height="15" fill="rgb(237,171,35)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="127.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="101" width="1.2515%" height="15" fill="rgb(229,178,53)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="111.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="85" width="1.2515%" height="15" fill="rgb(210,102,19)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="95.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="69" width="1.2515%" height="15" fill="rgb(235,127,22)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="79.50"></text></g><g><title>bzip2::mem::Decompress::decompress (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="53" width="1.2515%" height="15" fill="rgb(244,31,31)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="63.50"></text></g><g><title>BZ2_bzDecompress (52,615,672 samples, 1.25%)</title><rect x="93.7268%" y="37" width="1.2515%" height="15" fill="rgb(231,43,21)" fg:x="3940495666" fg:w="52615672"/><text x="93.9768%" y="47.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="549" width="2.1136%" height="15" fill="rgb(217,131,35)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="559.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="533" width="2.1136%" height="15" fill="rgb(221,149,4)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="543.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="517" width="2.1136%" height="15" fill="rgb(232,170,28)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="527.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="501" width="2.1136%" height="15" fill="rgb(238,56,10)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="511.50">r..</text></g><g><title>rayon_core::join::join_context (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="485" width="2.1136%" height="15" fill="rgb(235,196,14)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="495.50">r..</text></g><g><title>rayon_core::registry::in_worker (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="469" width="2.1136%" height="15" fill="rgb(216,45,48)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="479.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="453" width="2.1136%" height="15" fill="rgb(238,213,17)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="463.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="437" width="2.1136%" height="15" fill="rgb(212,13,2)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="447.50">r..</text></g><g><title>std::panic::catch_unwind (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="421" width="2.1136%" height="15" fill="rgb(240,114,20)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="431.50">s..</text></g><g><title>std::panicking::try (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="405" width="2.1136%" height="15" fill="rgb(228,41,40)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="415.50">s..</text></g><g><title>std::panicking::try::do_call (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="389" width="2.1136%" height="15" fill="rgb(244,132,35)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="399.50">s..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="373" width="2.1136%" height="15" fill="rgb(253,189,4)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="383.50">&lt;..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="357" width="2.1136%" height="15" fill="rgb(224,37,19)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="367.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="341" width="2.1136%" height="15" fill="rgb(235,223,18)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="351.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="325" width="2.1136%" height="15" fill="rgb(235,163,25)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="335.50">r..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="309" width="2.1136%" height="15" fill="rgb(217,145,28)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="319.50">r..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="293" width="2.1136%" height="15" fill="rgb(223,223,32)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="303.50">&lt;..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="277" width="2.1136%" height="15" fill="rgb(227,189,39)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="287.50">r..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="261" width="2.1136%" height="15" fill="rgb(248,10,22)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="271.50">&lt;..</text></g><g><title>core::option::Option&lt;T&gt;::map (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="245" width="2.1136%" height="15" fill="rgb(248,46,39)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="255.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="229" width="2.1136%" height="15" fill="rgb(248,113,48)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="239.50">c..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="213" width="2.1136%" height="15" fill="rgb(245,16,25)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="223.50">c..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="197" width="2.1136%" height="15" fill="rgb(249,152,16)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="207.50">w..</text></g><g><title>nexrad_data::volume::record::Record::decompress (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="181" width="2.1136%" height="15" fill="rgb(250,16,1)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="191.50">n..</text></g><g><title>std::io::Read::read_to_end (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="165" width="2.1136%" height="15" fill="rgb(249,138,3)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="175.50">s..</text></g><g><title>std::io::default_read_to_end (88,860,075 samples, 2.11%)</title><rect x="93.7268%" y="149" width="2.1136%" height="15" fill="rgb(227,71,41)" fg:x="3940495666" fg:w="88860075"/><text x="93.9768%" y="159.50">s..</text></g><g><title>std::io::default_read_to_end::small_probe_read (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="133" width="0.8621%" height="15" fill="rgb(209,184,23)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="143.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="117" width="0.8621%" height="15" fill="rgb(223,215,31)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="127.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="101" width="0.8621%" height="15" fill="rgb(210,146,28)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="111.50"></text></g><g><title>bzip2::mem::Decompress::decompress (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="85" width="0.8621%" height="15" fill="rgb(209,183,41)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="95.50"></text></g><g><title>BZ2_bzDecompress (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="69" width="0.8621%" height="15" fill="rgb(209,224,45)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="79.50"></text></g><g><title>BZ2_decompress (36,244,403 samples, 0.86%)</title><rect x="94.9783%" y="53" width="0.8621%" height="15" fill="rgb(224,209,51)" fg:x="3993111338" fg:w="36244403"/><text x="95.2283%" y="63.50"></text></g><g><title>std::io::Read::read_buf (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="245" width="0.4529%" height="15" fill="rgb(223,17,39)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="255.50"></text></g><g><title>std::io::default_read_buf (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="229" width="0.4529%" height="15" fill="rgb(234,204,37)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="239.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="213" width="0.4529%" height="15" fill="rgb(236,120,5)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="223.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="197" width="0.4529%" height="15" fill="rgb(248,97,27)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="207.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="181" width="0.4529%" height="15" fill="rgb(240,66,17)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="191.50"></text></g><g><title>bzip2::mem::Decompress::decompress (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="165" width="0.4529%" height="15" fill="rgb(210,79,3)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="175.50"></text></g><g><title>BZ2_bzDecompress (19,041,579 samples, 0.45%)</title><rect x="95.8404%" y="149" width="0.4529%" height="15" fill="rgb(214,176,27)" fg:x="4029355741" fg:w="19041579"/><text x="96.0904%" y="159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="1013" width="3.1270%" height="15" fill="rgb(235,185,3)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="1023.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="997" width="3.1270%" height="15" fill="rgb(227,24,12)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="1007.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::execute (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="981" width="3.1270%" height="15" fill="rgb(252,169,48)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="991.50">ray..</text></g><g><title>rayon_core::job::JobRef::execute (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="965" width="3.1270%" height="15" fill="rgb(212,65,1)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="975.50">ray..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="949" width="3.1270%" height="15" fill="rgb(242,39,24)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="959.50">&lt;ra..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="933" width="3.1270%" height="15" fill="rgb(249,32,23)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="943.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="917" width="3.1270%" height="15" fill="rgb(251,195,23)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="927.50">ray..</text></g><g><title>std::panic::catch_unwind (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="901" width="3.1270%" height="15" fill="rgb(236,174,8)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="911.50">std..</text></g><g><title>std::panicking::try (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="885" width="3.1270%" height="15" fill="rgb(220,197,8)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="895.50">std..</text></g><g><title>std::panicking::try::do_call (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="869" width="3.1270%" height="15" fill="rgb(240,108,37)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="879.50">std..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="853" width="3.1270%" height="15" fill="rgb(232,176,24)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="863.50">&lt;co..</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="837" width="3.1270%" height="15" fill="rgb(243,35,29)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="847.50">ray..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="821" width="3.1270%" height="15" fill="rgb(210,37,18)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="831.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="805" width="3.1270%" height="15" fill="rgb(224,184,40)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="815.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="789" width="3.1270%" height="15" fill="rgb(236,39,29)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="799.50">ray..</text></g><g><title>rayon_core::join::join_context (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="773" width="3.1270%" height="15" fill="rgb(232,48,39)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="783.50">ray..</text></g><g><title>rayon_core::registry::in_worker (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="757" width="3.1270%" height="15" fill="rgb(236,34,42)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="767.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="741" width="3.1270%" height="15" fill="rgb(243,106,37)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="751.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="725" width="3.1270%" height="15" fill="rgb(218,96,6)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="735.50">ray..</text></g><g><title>std::panic::catch_unwind (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="709" width="3.1270%" height="15" fill="rgb(235,130,12)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="719.50">std..</text></g><g><title>std::panicking::try (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="693" width="3.1270%" height="15" fill="rgb(231,95,0)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="703.50">std..</text></g><g><title>std::panicking::try::do_call (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="677" width="3.1270%" height="15" fill="rgb(228,12,23)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="687.50">std..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="661" width="3.1270%" height="15" fill="rgb(216,12,1)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="671.50">&lt;co..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="645" width="3.1270%" height="15" fill="rgb(219,59,3)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="655.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="629" width="3.1270%" height="15" fill="rgb(215,208,46)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="639.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="613" width="3.1270%" height="15" fill="rgb(254,224,29)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="623.50">ray..</text></g><g><title>rayon_core::join::join_context (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="597" width="3.1270%" height="15" fill="rgb(232,14,29)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="607.50">ray..</text></g><g><title>rayon_core::registry::in_worker (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="581" width="3.1270%" height="15" fill="rgb(208,45,52)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="591.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (131,466,598 samples, 3.13%)</title><rect x="93.7268%" y="565" width="3.1270%" height="15" fill="rgb(234,191,28)" fg:x="3940495666" fg:w="131466598"/><text x="93.9768%" y="575.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="549" width="1.0134%" height="15" fill="rgb(244,67,43)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="559.50"></text></g><g><title>std::panic::catch_unwind (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="533" width="1.0134%" height="15" fill="rgb(236,189,24)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="543.50"></text></g><g><title>std::panicking::try (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="517" width="1.0134%" height="15" fill="rgb(239,214,33)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="527.50"></text></g><g><title>std::panicking::try::do_call (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="501" width="1.0134%" height="15" fill="rgb(226,176,41)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="511.50"></text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="485" width="1.0134%" height="15" fill="rgb(248,47,8)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="495.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="469" width="1.0134%" height="15" fill="rgb(218,81,44)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="453" width="1.0134%" height="15" fill="rgb(213,98,6)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="437" width="1.0134%" height="15" fill="rgb(222,85,22)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="421" width="1.0134%" height="15" fill="rgb(239,46,39)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="431.50"></text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="405" width="1.0134%" height="15" fill="rgb(237,12,29)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="415.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="389" width="1.0134%" height="15" fill="rgb(214,77,8)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="373" width="1.0134%" height="15" fill="rgb(217,168,37)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="383.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="357" width="1.0134%" height="15" fill="rgb(221,217,23)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="367.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="341" width="1.0134%" height="15" fill="rgb(243,229,36)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="351.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="325" width="1.0134%" height="15" fill="rgb(251,163,40)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="335.50"></text></g><g><title>wxbox_ar2::parse::_{{closure}} (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="309" width="1.0134%" height="15" fill="rgb(237,222,12)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="319.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="293" width="1.0134%" height="15" fill="rgb(248,132,6)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="303.50"></text></g><g><title>std::io::Read::read_to_end (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="277" width="1.0134%" height="15" fill="rgb(227,167,50)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="287.50"></text></g><g><title>std::io::default_read_to_end (42,606,523 samples, 1.01%)</title><rect x="95.8404%" y="261" width="1.0134%" height="15" fill="rgb(242,84,37)" fg:x="4029355741" fg:w="42606523"/><text x="96.0904%" y="271.50"></text></g><g><title>std::io::default_read_to_end::small_probe_read (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="245" width="0.5605%" height="15" fill="rgb(212,4,50)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="255.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="229" width="0.5605%" height="15" fill="rgb(230,228,32)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="239.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="213" width="0.5605%" height="15" fill="rgb(248,217,23)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="223.50"></text></g><g><title>bzip2::mem::Decompress::decompress (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="197" width="0.5605%" height="15" fill="rgb(238,197,32)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="207.50"></text></g><g><title>BZ2_bzDecompress (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="181" width="0.5605%" height="15" fill="rgb(236,106,1)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="191.50"></text></g><g><title>BZ2_decompress (23,564,944 samples, 0.56%)</title><rect x="96.2933%" y="165" width="0.5605%" height="15" fill="rgb(219,228,13)" fg:x="4048397320" fg:w="23564944"/><text x="96.5433%" y="175.50"></text></g><g><title>std::io::Read::read_buf (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="597" width="1.3349%" height="15" fill="rgb(238,30,35)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="607.50"></text></g><g><title>std::io::default_read_buf (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="581" width="1.3349%" height="15" fill="rgb(236,70,23)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="591.50"></text></g><g><title>std::io::Read::read_buf::_{{closure}} (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="565" width="1.3349%" height="15" fill="rgb(249,104,48)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="575.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="549" width="1.3349%" height="15" fill="rgb(254,117,50)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="559.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="533" width="1.3349%" height="15" fill="rgb(223,152,4)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="543.50"></text></g><g><title>bzip2::mem::Decompress::decompress (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="517" width="1.3349%" height="15" fill="rgb(245,6,2)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="527.50"></text></g><g><title>BZ2_bzDecompress (56,121,531 samples, 1.33%)</title><rect x="96.8538%" y="501" width="1.3349%" height="15" fill="rgb(249,150,24)" fg:x="4071962264" fg:w="56121531"/><text x="97.1038%" y="511.50"></text></g><g><title>nexrad_data::volume::record::Record::decompress (114,555,159 samples, 2.72%)</title><rect x="96.8538%" y="645" width="2.7248%" height="15" fill="rgb(228,185,42)" fg:x="4071962264" fg:w="114555159"/><text x="97.1038%" y="655.50">ne..</text></g><g><title>std::io::Read::read_to_end (114,555,159 samples, 2.72%)</title><rect x="96.8538%" y="629" width="2.7248%" height="15" fill="rgb(226,39,33)" fg:x="4071962264" fg:w="114555159"/><text x="97.1038%" y="639.50">st..</text></g><g><title>std::io::default_read_to_end (114,555,159 samples, 2.72%)</title><rect x="96.8538%" y="613" width="2.7248%" height="15" fill="rgb(221,166,19)" fg:x="4071962264" fg:w="114555159"/><text x="97.1038%" y="623.50">st..</text></g><g><title>std::io::default_read_to_end::small_probe_read (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="597" width="1.3899%" height="15" fill="rgb(209,109,2)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="607.50"></text></g><g><title>&lt;bzip2::read::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="581" width="1.3899%" height="15" fill="rgb(252,216,26)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="591.50"></text></g><g><title>&lt;bzip2::bufread::BzDecoder&lt;R&gt; as std::io::Read&gt;::read (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="565" width="1.3899%" height="15" fill="rgb(227,173,36)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="575.50"></text></g><g><title>bzip2::mem::Decompress::decompress (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="549" width="1.3899%" height="15" fill="rgb(209,90,7)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="559.50"></text></g><g><title>BZ2_bzDecompress (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="533" width="1.3899%" height="15" fill="rgb(250,194,11)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="543.50"></text></g><g><title>BZ2_decompress (58,433,628 samples, 1.39%)</title><rect x="98.1887%" y="517" width="1.3899%" height="15" fill="rgb(220,72,50)" fg:x="4128083795" fg:w="58433628"/><text x="98.4387%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1909" width="99.5802%" height="15" fill="rgb(222,106,48)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1919.50">rayon_core::registry::WorkerThread::execute</text></g><g><title>rayon_core::job::JobRef::execute (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1893" width="99.5802%" height="15" fill="rgb(216,220,45)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1903.50">rayon_core::job::JobRef::execute</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1877" width="99.5802%" height="15" fill="rgb(234,112,18)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1887.50">&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1861" width="99.5802%" height="15" fill="rgb(206,179,9)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1871.50">rayon_core::job::JobResult&lt;T&gt;::call</text></g><g><title>rayon_core::unwind::halt_unwinding (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1845" width="99.5802%" height="15" fill="rgb(215,115,40)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1855.50">rayon_core::unwind::halt_unwinding</text></g><g><title>std::panic::catch_unwind (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1829" width="99.5802%" height="15" fill="rgb(222,69,34)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1839.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1813" width="99.5802%" height="15" fill="rgb(209,161,10)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1823.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1797" width="99.5802%" height="15" fill="rgb(217,6,38)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1807.50">std::panicking::try::do_call</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1781" width="99.5802%" height="15" fill="rgb(229,229,48)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1791.50">&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once</text></g><g><title>rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}} (4,186,585,252 samples, 99.58%)</title><rect x="0.0899%" y="1765" width="99.5802%" height="15" fill="rgb(225,21,28)" fg:x="3777875" fg:w="4186585252"/><text x="0.3399%" y="1775.50">rayon_core::job::JobResult&lt;T&gt;::call::_{{closure}}</text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1749" width="5.9432%" height="15" fill="rgb(206,33,13)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1759.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1733" width="5.9432%" height="15" fill="rgb(242,178,17)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1743.50">rayon_co..</text></g><g><title>rayon_core::unwind::halt_unwinding (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1717" width="5.9432%" height="15" fill="rgb(220,162,5)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1727.50">rayon_co..</text></g><g><title>std::panic::catch_unwind (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1701" width="5.9432%" height="15" fill="rgb(210,33,43)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1711.50">std::pan..</text></g><g><title>std::panicking::try (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1685" width="5.9432%" height="15" fill="rgb(216,116,54)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1695.50">std::pan..</text></g><g><title>std::panicking::try::do_call (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1669" width="5.9432%" height="15" fill="rgb(249,92,24)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1679.50">std::pan..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1653" width="5.9432%" height="15" fill="rgb(231,189,14)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1663.50">&lt;core::p..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1637" width="5.9432%" height="15" fill="rgb(230,8,41)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1647.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1621" width="5.9432%" height="15" fill="rgb(249,7,27)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1631.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1605" width="5.9432%" height="15" fill="rgb(232,86,5)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1615.50">rayon::i..</text></g><g><title>rayon_core::join::join_context (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1589" width="5.9432%" height="15" fill="rgb(224,175,18)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1599.50">rayon_co..</text></g><g><title>rayon_core::registry::in_worker (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1573" width="5.9432%" height="15" fill="rgb(220,129,12)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1583.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1557" width="5.9432%" height="15" fill="rgb(210,19,36)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1567.50">rayon_co..</text></g><g><title>rayon_core::unwind::halt_unwinding (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1541" width="5.9432%" height="15" fill="rgb(219,96,14)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1551.50">rayon_co..</text></g><g><title>std::panic::catch_unwind (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1525" width="5.9432%" height="15" fill="rgb(249,106,1)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1535.50">std::pan..</text></g><g><title>std::panicking::try (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1509" width="5.9432%" height="15" fill="rgb(249,155,20)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1519.50">std::pan..</text></g><g><title>std::panicking::try::do_call (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1493" width="5.9432%" height="15" fill="rgb(244,168,9)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1503.50">std::pan..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1477" width="5.9432%" height="15" fill="rgb(216,23,50)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1487.50">&lt;core::p..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1461" width="5.9432%" height="15" fill="rgb(224,219,20)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1471.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1445" width="5.9432%" height="15" fill="rgb(222,156,15)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1455.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1429" width="5.9432%" height="15" fill="rgb(231,97,17)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1439.50">rayon::i..</text></g><g><title>rayon_core::join::join_context (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1413" width="5.9432%" height="15" fill="rgb(218,70,48)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1423.50">rayon_co..</text></g><g><title>rayon_core::registry::in_worker (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1397" width="5.9432%" height="15" fill="rgb(212,196,52)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1407.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1381" width="5.9432%" height="15" fill="rgb(243,203,18)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1391.50">rayon_co..</text></g><g><title>rayon_core::unwind::halt_unwinding (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1365" width="5.9432%" height="15" fill="rgb(252,125,41)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1375.50">rayon_co..</text></g><g><title>std::panic::catch_unwind (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1349" width="5.9432%" height="15" fill="rgb(223,180,33)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1359.50">std::pan..</text></g><g><title>std::panicking::try (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1333" width="5.9432%" height="15" fill="rgb(254,159,46)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1343.50">std::pan..</text></g><g><title>std::panicking::try::do_call (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1317" width="5.9432%" height="15" fill="rgb(254,38,10)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1327.50">std::pan..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1301" width="5.9432%" height="15" fill="rgb(208,217,32)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1311.50">&lt;core::p..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1285" width="5.9432%" height="15" fill="rgb(221,120,13)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1295.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1269" width="5.9432%" height="15" fill="rgb(246,54,52)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1279.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1253" width="5.9432%" height="15" fill="rgb(242,34,25)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1263.50">rayon::i..</text></g><g><title>rayon_core::join::join_context (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1237" width="5.9432%" height="15" fill="rgb(247,209,9)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1247.50">rayon_co..</text></g><g><title>rayon_core::registry::in_worker (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1221" width="5.9432%" height="15" fill="rgb(228,71,26)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1231.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1205" width="5.9432%" height="15" fill="rgb(222,145,49)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1215.50">rayon_co..</text></g><g><title>rayon_core::unwind::halt_unwinding (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1189" width="5.9432%" height="15" fill="rgb(218,121,17)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1199.50">rayon_co..</text></g><g><title>std::panic::catch_unwind (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1173" width="5.9432%" height="15" fill="rgb(244,50,7)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1183.50">std::pan..</text></g><g><title>std::panicking::try (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1157" width="5.9432%" height="15" fill="rgb(246,229,37)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1167.50">std::pan..</text></g><g><title>std::panicking::try::do_call (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1141" width="5.9432%" height="15" fill="rgb(225,18,5)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1151.50">std::pan..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1125" width="5.9432%" height="15" fill="rgb(213,204,8)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1135.50">&lt;core::p..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1109" width="5.9432%" height="15" fill="rgb(238,103,6)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1119.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1093" width="5.9432%" height="15" fill="rgb(222,25,35)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1103.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1077" width="5.9432%" height="15" fill="rgb(213,203,35)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1087.50">rayon::i..</text></g><g><title>rayon_core::join::join_context (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1061" width="5.9432%" height="15" fill="rgb(221,79,53)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1071.50">rayon_co..</text></g><g><title>rayon_core::registry::in_worker (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1045" width="5.9432%" height="15" fill="rgb(243,200,35)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1055.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (249,867,461 samples, 5.94%)</title><rect x="93.7268%" y="1029" width="5.9432%" height="15" fill="rgb(248,60,25)" fg:x="3940495666" fg:w="249867461"/><text x="93.9768%" y="1039.50">rayon_co..</text></g><g><title>rayon_core::unwind::halt_unwinding (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="1013" width="2.8162%" height="15" fill="rgb(227,53,46)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="1023.50">ra..</text></g><g><title>std::panic::catch_unwind (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="997" width="2.8162%" height="15" fill="rgb(216,120,32)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="1007.50">st..</text></g><g><title>std::panicking::try (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="981" width="2.8162%" height="15" fill="rgb(220,134,1)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="991.50">st..</text></g><g><title>std::panicking::try::do_call (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="965" width="2.8162%" height="15" fill="rgb(237,168,5)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="975.50">st..</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="949" width="2.8162%" height="15" fill="rgb(231,100,33)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="959.50">&lt;c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="933" width="2.8162%" height="15" fill="rgb(236,177,47)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="943.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="917" width="2.8162%" height="15" fill="rgb(235,7,49)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="927.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="901" width="2.8162%" height="15" fill="rgb(232,119,22)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="911.50">ra..</text></g><g><title>rayon_core::join::join_context (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="885" width="2.8162%" height="15" fill="rgb(254,73,53)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="895.50">ra..</text></g><g><title>rayon_core::registry::in_worker (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="869" width="2.8162%" height="15" fill="rgb(251,35,20)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="879.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="853" width="2.8162%" height="15" fill="rgb(241,119,20)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="863.50">ra..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="837" width="2.8162%" height="15" fill="rgb(207,102,14)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="847.50">ra..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="821" width="2.8162%" height="15" fill="rgb(248,201,50)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="831.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="805" width="2.8162%" height="15" fill="rgb(222,185,44)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="815.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="789" width="2.8162%" height="15" fill="rgb(218,107,18)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="799.50">ra..</text></g><g><title>rayon::iter::plumbing::Producer::fold_with (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="773" width="2.8162%" height="15" fill="rgb(237,177,39)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="783.50">ra..</text></g><g><title>&lt;rayon::iter::map::MapFolder&lt;C,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="757" width="2.8162%" height="15" fill="rgb(246,69,6)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="767.50">&lt;r..</text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="741" width="2.8162%" height="15" fill="rgb(234,208,37)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="751.50">ra..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="725" width="2.8162%" height="15" fill="rgb(225,4,6)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="735.50">&lt;c..</text></g><g><title>core::option::Option&lt;T&gt;::map (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="709" width="2.8162%" height="15" fill="rgb(233,45,0)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="719.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="693" width="2.8162%" height="15" fill="rgb(226,136,5)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="703.50">co..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;F&gt;::call_mut (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="677" width="2.8162%" height="15" fill="rgb(211,91,47)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="687.50">co..</text></g><g><title>wxbox_ar2::parse::_{{closure}} (118,400,863 samples, 2.82%)</title><rect x="96.8538%" y="661" width="2.8162%" height="15" fill="rgb(242,88,51)" fg:x="4071962264" fg:w="118400863"/><text x="97.1038%" y="671.50">wx..</text></g><g><title>nexrad_data::volume::record::Record::messages (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="645" width="0.0915%" height="15" fill="rgb(230,91,28)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="655.50"></text></g><g><title>nexrad_decode::messages::decode_messages (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="629" width="0.0915%" height="15" fill="rgb(254,186,29)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="639.50"></text></g><g><title>nexrad_decode::messages::decode_message_contents (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="613" width="0.0915%" height="15" fill="rgb(238,6,4)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="623.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::decode_digital_radar_data (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="597" width="0.0915%" height="15" fill="rgb(221,151,16)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="607.50"></text></g><g><title>nexrad_decode::messages::digital_radar_data::generic_data_block::GenericDataBlock::new (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="581" width="0.0915%" height="15" fill="rgb(251,143,52)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="591.50"></text></g><g><title>alloc::vec::from_elem (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="565" width="0.0915%" height="15" fill="rgb(206,90,15)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="575.50"></text></g><g><title>&lt;u8 as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="549" width="0.0915%" height="15" fill="rgb(218,35,8)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="533" width="0.0915%" height="15" fill="rgb(239,215,6)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_zeroed_in (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="517" width="0.0915%" height="15" fill="rgb(245,116,39)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="501" width="0.0915%" height="15" fill="rgb(242,65,28)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="485" width="0.0915%" height="15" fill="rgb(252,132,53)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="495.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="469" width="0.0915%" height="15" fill="rgb(224,159,50)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="479.50"></text></g><g><title>alloc::alloc::alloc_zeroed (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="453" width="0.0915%" height="15" fill="rgb(224,93,4)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="463.50"></text></g><g><title>__rdl_alloc_zeroed (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="437" width="0.0915%" height="15" fill="rgb(208,81,34)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="447.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="421" width="0.0915%" height="15" fill="rgb(233,92,54)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="431.50"></text></g><g><title>[libc.so.6] (3,845,704 samples, 0.09%)</title><rect x="99.5786%" y="405" width="0.0915%" height="15" fill="rgb(237,21,14)" fg:x="4186517423" fg:w="3845704"/><text x="99.8286%" y="415.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (4,186,644,966 samples, 99.58%)</title><rect x="0.0892%" y="2165" width="99.5816%" height="15" fill="rgb(249,128,51)" fg:x="3751287" fg:w="4186644966"/><text x="0.3392%" y="2175.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2149" width="99.5815%" height="15" fill="rgb(223,129,24)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2159.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2133" width="99.5815%" height="15" fill="rgb(231,168,25)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2143.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}} (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2117" width="99.5815%" height="15" fill="rgb(224,39,20)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2127.50">std::thread::Builder::spawn_unchecked_::_{{closure}}</text></g><g><title>std::panic::catch_unwind (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2101" width="99.5815%" height="15" fill="rgb(225,152,53)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2111.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2085" width="99.5815%" height="15" fill="rgb(252,17,24)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2095.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2069" width="99.5815%" height="15" fill="rgb(250,114,30)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2079.50">std::panicking::try::do_call</text></g><g><title>&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2053" width="99.5815%" height="15" fill="rgb(229,5,4)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2063.50">&lt;core::panic::unwind_safe::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once</text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2037" width="99.5815%" height="15" fill="rgb(225,176,49)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2047.50">std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}}</text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2021" width="99.5815%" height="15" fill="rgb(224,221,49)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2031.50">std::sys::backtrace::__rust_begin_short_backtrace</text></g><g><title>&lt;rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn&gt;::spawn::_{{closure}} (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="2005" width="99.5815%" height="15" fill="rgb(253,169,27)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="2015.50">&lt;rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn&gt;::spawn::_{{closure}}</text></g><g><title>rayon_core::registry::ThreadBuilder::run (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="1989" width="99.5815%" height="15" fill="rgb(211,206,16)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="1999.50">rayon_core::registry::ThreadBuilder::run</text></g><g><title>rayon_core::registry::main_loop (4,186,638,234 samples, 99.58%)</title><rect x="0.0894%" y="1973" width="99.5815%" height="15" fill="rgb(244,87,35)" fg:x="3758019" fg:w="4186638234"/><text x="0.3394%" y="1983.50">rayon_core::registry::main_loop</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (4,186,618,378 samples, 99.58%)</title><rect x="0.0899%" y="1957" width="99.5810%" height="15" fill="rgb(246,28,10)" fg:x="3777875" fg:w="4186618378"/><text x="0.3399%" y="1967.50">rayon_core::registry::WorkerThread::wait_until_out_of_work</text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4,186,618,378 samples, 99.58%)</title><rect x="0.0899%" y="1941" width="99.5810%" height="15" fill="rgb(229,12,44)" fg:x="3777875" fg:w="4186618378"/><text x="0.3399%" y="1951.50">rayon_core::registry::WorkerThread::wait_until</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4,186,618,378 samples, 99.58%)</title><rect x="0.0899%" y="1925" width="99.5810%" height="15" fill="rgb(210,145,37)" fg:x="3777875" fg:w="4186618378"/><text x="0.3399%" y="1935.50">rayon_core::registry::WorkerThread::wait_until_cold</text></g><g><title>[libc.so.6] (4,186,670,699 samples, 99.58%)</title><rect x="0.0891%" y="2213" width="99.5822%" height="15" fill="rgb(227,112,52)" fg:x="3746256" fg:w="4186670699"/><text x="0.3391%" y="2223.50">[libc.so.6]</text></g><g><title>[libc.so.6] (4,186,670,699 samples, 99.58%)</title><rect x="0.0891%" y="2197" width="99.5822%" height="15" fill="rgb(238,155,34)" fg:x="3746256" fg:w="4186670699"/><text x="0.3391%" y="2207.50">[libc.so.6]</text></g><g><title>std::sys::pal::unix::thread::Thread::new::thread_start (4,186,665,668 samples, 99.58%)</title><rect x="0.0892%" y="2181" width="99.5821%" height="15" fill="rgb(239,226,36)" fg:x="3751287" fg:w="4186665668"/><text x="0.3392%" y="2191.50">std::sys::pal::unix::thread::Thread::new::thread_start</text></g><g><title>core::ptr::drop_in_place&lt;core::result::Result&lt;wxbox_ar2::Scan,nexrad_data::result::Error&gt;&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2101" width="0.2701%" height="15" fill="rgb(230,16,23)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2111.50"></text></g><g><title>core::ptr::drop_in_place&lt;wxbox_ar2::Scan&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2085" width="0.2701%" height="15" fill="rgb(236,171,36)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2095.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;wxbox_ar2::Sweep&gt;&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2069" width="0.2701%" height="15" fill="rgb(221,22,14)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2079.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2053" width="0.2701%" height="15" fill="rgb(242,43,11)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2063.50"></text></g><g><title>core::ptr::drop_in_place&lt;[wxbox_ar2::Sweep]&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2037" width="0.2701%" height="15" fill="rgb(232,69,23)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2047.50"></text></g><g><title>core::ptr::drop_in_place&lt;wxbox_ar2::Sweep&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2021" width="0.2701%" height="15" fill="rgb(216,180,54)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2031.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;wxbox_ar2::Radial&gt;&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="2005" width="0.2701%" height="15" fill="rgb(216,5,24)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="2015.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="1989" width="0.2701%" height="15" fill="rgb(225,89,9)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="1999.50"></text></g><g><title>core::ptr::drop_in_place&lt;[wxbox_ar2::Radial]&gt; (11,356,332 samples, 0.27%)</title><rect x="99.6714%" y="1973" width="0.2701%" height="15" fill="rgb(243,75,33)" fg:x="4190417876" fg:w="11356332"/><text x="99.9214%" y="1983.50"></text></g><g><title>core::ptr::drop_in_place&lt;wxbox_ar2::Radial&gt; (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1957" width="0.2701%" height="15" fill="rgb(247,141,45)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1967.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;wxbox_ar2::MomentData&gt;&gt; (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1941" width="0.2701%" height="15" fill="rgb(232,177,36)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1951.50"></text></g><g><title>core::ptr::drop_in_place&lt;wxbox_ar2::MomentData&gt; (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1925" width="0.2701%" height="15" fill="rgb(219,125,36)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1935.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1909" width="0.2701%" height="15" fill="rgb(227,94,9)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1919.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1893" width="0.2701%" height="15" fill="rgb(240,34,52)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1903.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1877" width="0.2701%" height="15" fill="rgb(216,45,12)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1887.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1861" width="0.2701%" height="15" fill="rgb(246,21,19)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1871.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1845" width="0.2701%" height="15" fill="rgb(213,98,42)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1855.50"></text></g><g><title>alloc::alloc::dealloc (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1829" width="0.2701%" height="15" fill="rgb(250,136,47)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1839.50"></text></g><g><title>__rdl_dealloc (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1813" width="0.2701%" height="15" fill="rgb(251,124,27)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1823.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1797" width="0.2701%" height="15" fill="rgb(229,180,14)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1807.50"></text></g><g><title>cfree (11,356,024 samples, 0.27%)</title><rect x="99.6714%" y="1781" width="0.2701%" height="15" fill="rgb(245,216,25)" fg:x="4190418184" fg:w="11356024"/><text x="99.9214%" y="1791.50"></text></g><g><title>[libc.so.6] (9,118,227 samples, 0.22%)</title><rect x="99.7246%" y="1765" width="0.2169%" height="15" fill="rgb(251,43,5)" fg:x="4192655981" fg:w="9118227"/><text x="99.9746%" y="1775.50"></text></g><g><title>all (4,204,234,770 samples, 100%)</title><rect x="0.0000%" y="2245" width="100.0000%" height="15" fill="rgb(250,128,24)" fg:x="0" fg:w="4204234770"/><text x="0.2500%" y="2255.50"></text></g><g><title>wxbox-ar2 (4,204,234,770 samples, 100.00%)</title><rect x="0.0000%" y="2229" width="100.0000%" height="15" fill="rgb(217,117,27)" fg:x="0" fg:w="4204234770"/><text x="0.2500%" y="2239.50">wxbox-ar2</text></g><g><title>_start (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2213" width="0.3286%" height="15" fill="rgb(245,147,4)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2223.50"></text></g><g><title>__libc_start_main (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2197" width="0.3286%" height="15" fill="rgb(242,201,35)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2207.50"></text></g><g><title>[libc.so.6] (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2181" width="0.3286%" height="15" fill="rgb(218,181,1)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2191.50"></text></g><g><title>main (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2165" width="0.3286%" height="15" fill="rgb(222,6,29)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2175.50"></text></g><g><title>std::sys::backtrace::__rust_begin_short_backtrace (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2149" width="0.3286%" height="15" fill="rgb(208,186,3)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2159.50"></text></g><g><title>core::ops::function::FnOnce::call_once (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2133" width="0.3286%" height="15" fill="rgb(216,36,26)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2143.50"></text></g><g><title>wxbox_ar2::main (13,816,894 samples, 0.33%)</title><rect x="99.6714%" y="2117" width="0.3286%" height="15" fill="rgb(248,201,23)" fg:x="4190417876" fg:w="13816894"/><text x="99.9214%" y="2127.50"></text></g><g><title>wxbox_ar2::parse (2,460,562 samples, 0.06%)</title><rect x="99.9415%" y="2101" width="0.0585%" height="15" fill="rgb(251,170,31)" fg:x="4201774208" fg:w="2460562"/><text x="100.1915%" y="2111.50"></text></g><g><title>wxbox_ar2::Sweep::from_radials (2,460,562 samples, 0.06%)</title><rect x="99.9415%" y="2085" width="0.0585%" height="15" fill="rgb(207,110,25)" fg:x="4201774208" fg:w="2460562"/><text x="100.1915%" y="2095.50"></text></g><g><title>[libc.so.6] (2,460,562 samples, 0.06%)</title><rect x="99.9415%" y="2069" width="0.0585%" height="15" fill="rgb(250,54,15)" fg:x="4201774208" fg:w="2460562"/><text x="100.1915%" y="2079.50"></text></g></svg></svg>