Skip to content

Instantly share code, notes, and snippets.

@icristescu
Created May 21, 2020 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icristescu/ab797bfd638c33cebc94d15c6aa4a195 to your computer and use it in GitHub Desktop.
Save icristescu/ab797bfd638c33cebc94d15c6aa4a195 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1750" onload="init(evt)" viewBox="0 0 1200 1750" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#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[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
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];
searching = 0;
}
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);
}
else if (e.target.id == "unzoom") unzoom();
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 = "Function: " + 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 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["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
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 = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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 = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
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 = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// 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;
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
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 + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1750.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1733" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="1733" > </text>
<g id="frames">
<g >
<title>caml_major_collection_slice (475 samples, 0.02%)</title><rect x="241.2" y="1365" width="0.3" height="15.0" fill="rgb(226,34,6)" rx="2" ry="2" />
<text x="244.21" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (560 samples, 0.02%)</title><rect x="701.3" y="997" width="0.3" height="15.0" fill="rgb(253,148,16)" rx="2" ry="2" />
<text x="704.35" y="1007.5" ></text>
</g>
<g >
<title>muladd (476 samples, 0.02%)</title><rect x="1153.7" y="133" width="0.2" height="15.0" fill="rgb(223,31,44)" rx="2" ry="2" />
<text x="1156.65" y="143.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (26,504 samples, 1.15%)</title><rect x="654.6" y="261" width="13.5" height="15.0" fill="rgb(240,29,41)" rx="2" ry="2" />
<text x="657.59" y="271.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (241 samples, 0.01%)</title><rect x="1064.1" y="1077" width="0.1" height="15.0" fill="rgb(243,43,18)" rx="2" ry="2" />
<text x="1067.11" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (405 samples, 0.02%)</title><rect x="586.7" y="1221" width="0.3" height="15.0" fill="rgb(234,175,30)" rx="2" ry="2" />
<text x="589.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (337 samples, 0.01%)</title><rect x="537.0" y="1093" width="0.1" height="15.0" fill="rgb(249,113,16)" rx="2" ry="2" />
<text x="539.96" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3818 (10,369 samples, 0.45%)</title><rect x="764.1" y="1141" width="5.3" height="15.0" fill="rgb(239,129,27)" rx="2" ry="2" />
<text x="767.08" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (4,660 samples, 0.20%)</title><rect x="1019.9" y="1365" width="2.4" height="15.0" fill="rgb(215,149,49)" rx="2" ry="2" />
<text x="1022.91" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (1,495 samples, 0.06%)</title><rect x="216.0" y="1349" width="0.8" height="15.0" fill="rgb(211,129,37)" rx="2" ry="2" />
<text x="218.99" y="1359.5" ></text>
</g>
<g >
<title>uECC_verify (1,379 samples, 0.06%)</title><rect x="1162.7" y="645" width="0.7" height="15.0" fill="rgb(208,21,26)" rx="2" ry="2" />
<text x="1165.73" y="655.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (762 samples, 0.03%)</title><rect x="1077.4" y="1125" width="0.4" height="15.0" fill="rgb(249,214,18)" rx="2" ry="2" />
<text x="1080.39" y="1135.5" ></text>
</g>
<g >
<title>caml_modify (300 samples, 0.01%)</title><rect x="523.5" y="1285" width="0.2" height="15.0" fill="rgb(246,5,15)" rx="2" ry="2" />
<text x="526.54" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_1611 (994 samples, 0.04%)</title><rect x="577.2" y="725" width="0.5" height="15.0" fill="rgb(213,167,44)" rx="2" ry="2" />
<text x="580.19" y="735.5" ></text>
</g>
<g >
<title>caml_garbage_collection (388 samples, 0.02%)</title><rect x="490.9" y="1205" width="0.2" height="15.0" fill="rgb(244,84,53)" rx="2" ry="2" />
<text x="493.87" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (3,965 samples, 0.17%)</title><rect x="385.8" y="1413" width="2.1" height="15.0" fill="rgb(221,199,2)" rx="2" ry="2" />
<text x="388.85" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_all_4629 (606 samples, 0.03%)</title><rect x="1162.3" y="613" width="0.3" height="15.0" fill="rgb(240,170,35)" rx="2" ry="2" />
<text x="1165.27" y="623.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_4088 (436 samples, 0.02%)</title><rect x="836.4" y="565" width="0.2" height="15.0" fill="rgb(237,9,46)" rx="2" ry="2" />
<text x="839.37" y="575.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (2,798 samples, 0.12%)</title><rect x="1050.1" y="1253" width="1.4" height="15.0" fill="rgb(252,166,33)" rx="2" ry="2" />
<text x="1053.05" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (294 samples, 0.01%)</title><rect x="796.1" y="1045" width="0.2" height="15.0" fill="rgb(214,41,1)" rx="2" ry="2" />
<text x="799.11" y="1055.5" ></text>
</g>
<g >
<title>caml_apply2 (1,123 samples, 0.05%)</title><rect x="814.8" y="1109" width="0.5" height="15.0" fill="rgb(239,198,26)" rx="2" ry="2" />
<text x="817.75" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2662 (331 samples, 0.01%)</title><rect x="1009.6" y="1365" width="0.1" height="15.0" fill="rgb(216,103,26)" rx="2" ry="2" />
<text x="1012.56" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (218 samples, 0.01%)</title><rect x="870.3" y="869" width="0.1" height="15.0" fill="rgb(205,129,25)" rx="2" ry="2" />
<text x="873.32" y="879.5" ></text>
</g>
<g >
<title>uECC_verify (26,409 samples, 1.14%)</title><rect x="654.6" y="197" width="13.5" height="15.0" fill="rgb(251,151,38)" rx="2" ry="2" />
<text x="657.64" y="207.5" ></text>
</g>
<g >
<title>caml_garbage_collection (603 samples, 0.03%)</title><rect x="469.2" y="1317" width="0.3" height="15.0" fill="rgb(206,204,19)" rx="2" ry="2" />
<text x="472.22" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (290 samples, 0.01%)</title><rect x="766.2" y="1077" width="0.2" height="15.0" fill="rgb(210,158,26)" rx="2" ry="2" />
<text x="769.23" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3984 (700 samples, 0.03%)</title><rect x="670.2" y="693" width="0.3" height="15.0" fill="rgb(253,169,26)" rx="2" ry="2" />
<text x="673.18" y="703.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (276 samples, 0.01%)</title><rect x="1065.8" y="1173" width="0.1" height="15.0" fill="rgb(230,36,53)" rx="2" ry="2" />
<text x="1068.79" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (466 samples, 0.02%)</title><rect x="590.6" y="1301" width="0.3" height="15.0" fill="rgb(207,150,40)" rx="2" ry="2" />
<text x="593.64" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (232 samples, 0.01%)</title><rect x="783.5" y="1061" width="0.2" height="15.0" fill="rgb(218,57,13)" rx="2" ry="2" />
<text x="786.55" y="1071.5" ></text>
</g>
<g >
<title>caml_fl_allocate (13,692 samples, 0.59%)</title><rect x="42.9" y="1589" width="7.0" height="15.0" fill="rgb(217,182,47)" rx="2" ry="2" />
<text x="45.92" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (298 samples, 0.01%)</title><rect x="700.4" y="1013" width="0.2" height="15.0" fill="rgb(213,146,39)" rx="2" ry="2" />
<text x="703.44" y="1023.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (835 samples, 0.04%)</title><rect x="1105.1" y="101" width="0.4" height="15.0" fill="rgb(206,140,52)" rx="2" ry="2" />
<text x="1108.11" y="111.5" ></text>
</g>
<g >
<title>caml_modify (206 samples, 0.01%)</title><rect x="81.1" y="1525" width="0.1" height="15.0" fill="rgb(252,135,51)" rx="2" ry="2" />
<text x="84.06" y="1535.5" ></text>
</g>
<g >
<title>caml_call_gc (2,592 samples, 0.11%)</title><rect x="370.5" y="1317" width="1.3" height="15.0" fill="rgb(216,22,31)" rx="2" ry="2" />
<text x="373.49" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (454 samples, 0.02%)</title><rect x="493.8" y="1189" width="0.2" height="15.0" fill="rgb(215,208,34)" rx="2" ry="2" />
<text x="496.78" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (237 samples, 0.01%)</title><rect x="443.5" y="1333" width="0.2" height="15.0" fill="rgb(206,111,9)" rx="2" ry="2" />
<text x="446.55" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (250 samples, 0.01%)</title><rect x="788.1" y="1093" width="0.1" height="15.0" fill="rgb(212,155,31)" rx="2" ry="2" />
<text x="791.07" y="1103.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (277 samples, 0.01%)</title><rect x="329.5" y="1429" width="0.1" height="15.0" fill="rgb(216,1,20)" rx="2" ry="2" />
<text x="332.51" y="1439.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (208 samples, 0.01%)</title><rect x="1073.0" y="981" width="0.1" height="15.0" fill="rgb(205,5,36)" rx="2" ry="2" />
<text x="1075.97" y="991.5" ></text>
</g>
<g >
<title>caml_call_gc (362 samples, 0.02%)</title><rect x="610.9" y="1189" width="0.2" height="15.0" fill="rgb(241,54,47)" rx="2" ry="2" />
<text x="613.95" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1739 (211 samples, 0.01%)</title><rect x="405.8" y="1413" width="0.1" height="15.0" fill="rgb(222,211,41)" rx="2" ry="2" />
<text x="408.82" y="1423.5" ></text>
</g>
<g >
<title>caml_apply5 (455 samples, 0.02%)</title><rect x="856.3" y="981" width="0.3" height="15.0" fill="rgb(221,79,9)" rx="2" ry="2" />
<text x="859.33" y="991.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (253 samples, 0.01%)</title><rect x="1160.4" y="181" width="0.2" height="15.0" fill="rgb(237,196,33)" rx="2" ry="2" />
<text x="1163.45" y="191.5" ></text>
</g>
<g >
<title>caml_garbage_collection (434 samples, 0.02%)</title><rect x="501.7" y="1301" width="0.2" height="15.0" fill="rgb(242,18,11)" rx="2" ry="2" />
<text x="504.71" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,364 samples, 0.06%)</title><rect x="548.1" y="1317" width="0.7" height="15.0" fill="rgb(234,211,8)" rx="2" ry="2" />
<text x="551.10" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,787 samples, 0.12%)</title><rect x="415.5" y="1365" width="1.4" height="15.0" fill="rgb(233,106,9)" rx="2" ry="2" />
<text x="418.45" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (1,302 samples, 0.06%)</title><rect x="579.8" y="1221" width="0.7" height="15.0" fill="rgb(231,144,51)" rx="2" ry="2" />
<text x="582.85" y="1231.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (891 samples, 0.04%)</title><rect x="182.9" y="1285" width="0.5" height="15.0" fill="rgb(220,130,17)" rx="2" ry="2" />
<text x="185.93" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (378 samples, 0.02%)</title><rect x="92.9" y="1493" width="0.2" height="15.0" fill="rgb(219,83,37)" rx="2" ry="2" />
<text x="95.93" y="1503.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (396 samples, 0.02%)</title><rect x="326.8" y="1349" width="0.2" height="15.0" fill="rgb(237,206,38)" rx="2" ry="2" />
<text x="329.77" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7384 (6,377 samples, 0.28%)</title><rect x="529.5" y="1221" width="3.3" height="15.0" fill="rgb(231,180,8)" rx="2" ry="2" />
<text x="532.54" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (1,082 samples, 0.05%)</title><rect x="918.3" y="1429" width="0.6" height="15.0" fill="rgb(252,180,43)" rx="2" ry="2" />
<text x="921.34" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (462 samples, 0.02%)</title><rect x="562.7" y="1285" width="0.3" height="15.0" fill="rgb(237,7,3)" rx="2" ry="2" />
<text x="565.75" y="1295.5" ></text>
</g>
<g >
<title>uECC_vli_sub (230 samples, 0.01%)</title><rect x="633.3" y="101" width="0.1" height="15.0" fill="rgb(218,164,13)" rx="2" ry="2" />
<text x="636.27" y="111.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (533 samples, 0.02%)</title><rect x="777.7" y="1029" width="0.3" height="15.0" fill="rgb(208,10,15)" rx="2" ry="2" />
<text x="780.73" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (412 samples, 0.02%)</title><rect x="233.9" y="1301" width="0.2" height="15.0" fill="rgb(236,33,51)" rx="2" ry="2" />
<text x="236.94" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (221 samples, 0.01%)</title><rect x="397.4" y="1381" width="0.1" height="15.0" fill="rgb(225,1,50)" rx="2" ry="2" />
<text x="400.37" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (255 samples, 0.01%)</title><rect x="552.5" y="1173" width="0.1" height="15.0" fill="rgb(210,146,16)" rx="2" ry="2" />
<text x="555.46" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (408 samples, 0.02%)</title><rect x="1065.4" y="1157" width="0.3" height="15.0" fill="rgb(251,137,47)" rx="2" ry="2" />
<text x="1068.45" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (5,952 samples, 0.26%)</title><rect x="529.7" y="1205" width="3.0" height="15.0" fill="rgb(248,151,3)" rx="2" ry="2" />
<text x="532.66" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (646 samples, 0.03%)</title><rect x="917.2" y="1413" width="0.4" height="15.0" fill="rgb(207,136,6)" rx="2" ry="2" />
<text x="920.22" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (1,211 samples, 0.05%)</title><rect x="225.6" y="1365" width="0.6" height="15.0" fill="rgb(252,36,53)" rx="2" ry="2" />
<text x="228.61" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (5,636 samples, 0.24%)</title><rect x="996.7" y="1333" width="2.8" height="15.0" fill="rgb(217,218,52)" rx="2" ry="2" />
<text x="999.67" y="1343.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (511 samples, 0.02%)</title><rect x="1079.0" y="1189" width="0.2" height="15.0" fill="rgb(237,112,2)" rx="2" ry="2" />
<text x="1081.97" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (1,580 samples, 0.07%)</title><rect x="557.8" y="1301" width="0.8" height="15.0" fill="rgb(244,127,7)" rx="2" ry="2" />
<text x="560.82" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (2,446 samples, 0.11%)</title><rect x="808.1" y="1061" width="1.2" height="15.0" fill="rgb(246,63,31)" rx="2" ry="2" />
<text x="811.07" y="1071.5" ></text>
</g>
<g >
<title>XYcZ_add (437 samples, 0.02%)</title><rect x="631.3" y="133" width="0.2" height="15.0" fill="rgb(249,106,33)" rx="2" ry="2" />
<text x="634.31" y="143.5" ></text>
</g>
<g >
<title>muladd (428 samples, 0.02%)</title><rect x="824.4" y="197" width="0.2" height="15.0" fill="rgb(220,127,42)" rx="2" ry="2" />
<text x="827.41" y="207.5" ></text>
</g>
<g >
<title>caml_garbage_collection (555 samples, 0.02%)</title><rect x="264.0" y="1381" width="0.3" height="15.0" fill="rgb(241,58,2)" rx="2" ry="2" />
<text x="267.00" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (196 samples, 0.01%)</title><rect x="580.3" y="1189" width="0.1" height="15.0" fill="rgb(207,188,16)" rx="2" ry="2" />
<text x="583.35" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (461 samples, 0.02%)</title><rect x="496.2" y="1205" width="0.3" height="15.0" fill="rgb(243,5,41)" rx="2" ry="2" />
<text x="499.23" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (80,714 samples, 3.50%)</title><rect x="631.2" y="1093" width="41.3" height="15.0" fill="rgb(251,186,13)" rx="2" ry="2" />
<text x="634.21" y="1103.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (1,660 samples, 0.07%)</title><rect x="1085.7" y="1077" width="0.9" height="15.0" fill="rgb(217,104,47)" rx="2" ry="2" />
<text x="1088.72" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (1,443 samples, 0.06%)</title><rect x="581.8" y="1221" width="0.7" height="15.0" fill="rgb(229,18,17)" rx="2" ry="2" />
<text x="584.78" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (165,153 samples, 7.15%)</title><rect x="1082.4" y="1253" width="84.4" height="15.0" fill="rgb(219,28,18)" rx="2" ry="2" />
<text x="1085.39" y="1263.5" >camlLwt__..</text>
</g>
<g >
<title>camlIndex__fun_3276 (354 samples, 0.02%)</title><rect x="1032.1" y="1365" width="0.2" height="15.0" fill="rgb(240,227,18)" rx="2" ry="2" />
<text x="1035.09" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,891 samples, 1.55%)</title><rect x="1094.5" y="613" width="18.4" height="15.0" fill="rgb(222,104,37)" rx="2" ry="2" />
<text x="1097.53" y="623.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (1,485 samples, 0.06%)</title><rect x="668.7" y="261" width="0.7" height="15.0" fill="rgb(208,15,37)" rx="2" ry="2" />
<text x="671.68" y="271.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (959 samples, 0.04%)</title><rect x="1089.3" y="949" width="0.5" height="15.0" fill="rgb(234,174,25)" rx="2" ry="2" />
<text x="1092.33" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_569 (1,117 samples, 0.05%)</title><rect x="681.7" y="1173" width="0.6" height="15.0" fill="rgb(245,207,35)" rx="2" ry="2" />
<text x="684.74" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (245 samples, 0.01%)</title><rect x="796.8" y="1029" width="0.1" height="15.0" fill="rgb(213,157,26)" rx="2" ry="2" />
<text x="799.76" y="1039.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (612 samples, 0.03%)</title><rect x="687.1" y="1061" width="0.3" height="15.0" fill="rgb(205,158,47)" rx="2" ry="2" />
<text x="690.09" y="1071.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (411 samples, 0.02%)</title><rect x="890.6" y="1349" width="0.3" height="15.0" fill="rgb(209,175,20)" rx="2" ry="2" />
<text x="893.65" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (1,492 samples, 0.06%)</title><rect x="1169.9" y="869" width="0.8" height="15.0" fill="rgb(231,102,5)" rx="2" ry="2" />
<text x="1172.91" y="879.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.6 (408 samples, 0.02%)</title><rect x="327.0" y="1365" width="0.2" height="15.0" fill="rgb(236,135,52)" rx="2" ry="2" />
<text x="329.98" y="1375.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,100 samples, 0.05%)</title><rect x="1088.2" y="789" width="0.6" height="15.0" fill="rgb(229,170,9)" rx="2" ry="2" />
<text x="1091.21" y="799.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (41,161 samples, 1.78%)</title><rect x="815.7" y="917" width="21.0" height="15.0" fill="rgb(252,147,38)" rx="2" ry="2" />
<text x="818.70" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,870 samples, 0.43%)</title><rect x="171.7" y="1317" width="5.0" height="15.0" fill="rgb(243,73,9)" rx="2" ry="2" />
<text x="174.68" y="1327.5" ></text>
</g>
<g >
<title>alloc_custom_gen (665 samples, 0.03%)</title><rect x="313.3" y="1397" width="0.3" height="15.0" fill="rgb(248,8,51)" rx="2" ry="2" />
<text x="316.26" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13810 (405 samples, 0.02%)</title><rect x="849.3" y="1349" width="0.2" height="15.0" fill="rgb(207,151,14)" rx="2" ry="2" />
<text x="852.33" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (31,509 samples, 1.37%)</title><rect x="359.1" y="1381" width="16.1" height="15.0" fill="rgb(253,176,12)" rx="2" ry="2" />
<text x="362.13" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (316 samples, 0.01%)</title><rect x="243.3" y="1301" width="0.2" height="15.0" fill="rgb(218,23,4)" rx="2" ry="2" />
<text x="246.34" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (198 samples, 0.01%)</title><rect x="611.0" y="1125" width="0.1" height="15.0" fill="rgb(208,3,29)" rx="2" ry="2" />
<text x="614.00" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (517 samples, 0.02%)</title><rect x="437.9" y="1413" width="0.3" height="15.0" fill="rgb(253,62,32)" rx="2" ry="2" />
<text x="440.93" y="1423.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (309 samples, 0.01%)</title><rect x="1118.9" y="901" width="0.2" height="15.0" fill="rgb(217,153,43)" rx="2" ry="2" />
<text x="1121.92" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (728 samples, 0.03%)</title><rect x="1072.8" y="1045" width="0.4" height="15.0" fill="rgb(240,169,37)" rx="2" ry="2" />
<text x="1075.83" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (215 samples, 0.01%)</title><rect x="707.0" y="981" width="0.1" height="15.0" fill="rgb(253,14,12)" rx="2" ry="2" />
<text x="709.99" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__check_and_copy_to_current_12424 (904 samples, 0.04%)</title><rect x="764.3" y="1125" width="0.5" height="15.0" fill="rgb(230,131,40)" rx="2" ry="2" />
<text x="767.33" y="1135.5" ></text>
</g>
<g >
<title>apply_z (203 samples, 0.01%)</title><rect x="669.6" y="197" width="0.1" height="15.0" fill="rgb(243,13,38)" rx="2" ry="2" />
<text x="672.61" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (324 samples, 0.01%)</title><rect x="533.4" y="1013" width="0.2" height="15.0" fill="rgb(252,50,8)" rx="2" ry="2" />
<text x="536.41" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (2,788 samples, 0.12%)</title><rect x="367.2" y="1349" width="1.5" height="15.0" fill="rgb(213,81,9)" rx="2" ry="2" />
<text x="370.25" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2055 (663 samples, 0.03%)</title><rect x="412.7" y="1413" width="0.4" height="15.0" fill="rgb(220,15,24)" rx="2" ry="2" />
<text x="415.73" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (306 samples, 0.01%)</title><rect x="613.7" y="1125" width="0.2" height="15.0" fill="rgb(227,218,34)" rx="2" ry="2" />
<text x="616.73" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (276 samples, 0.01%)</title><rect x="1054.2" y="1237" width="0.1" height="15.0" fill="rgb(240,40,52)" rx="2" ry="2" />
<text x="1057.17" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (802 samples, 0.03%)</title><rect x="1051.6" y="1269" width="0.4" height="15.0" fill="rgb(229,17,44)" rx="2" ry="2" />
<text x="1054.60" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (620 samples, 0.03%)</title><rect x="491.4" y="1189" width="0.4" height="15.0" fill="rgb(226,68,3)" rx="2" ry="2" />
<text x="494.44" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (1,364 samples, 0.06%)</title><rect x="267.7" y="1413" width="0.7" height="15.0" fill="rgb(224,54,29)" rx="2" ry="2" />
<text x="270.68" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (893 samples, 0.04%)</title><rect x="1134.6" y="965" width="0.4" height="15.0" fill="rgb(225,43,44)" rx="2" ry="2" />
<text x="1137.55" y="975.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (293 samples, 0.01%)</title><rect x="844.4" y="1221" width="0.2" height="15.0" fill="rgb(253,213,39)" rx="2" ry="2" />
<text x="847.41" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (276 samples, 0.01%)</title><rect x="561.3" y="1221" width="0.1" height="15.0" fill="rgb(244,92,18)" rx="2" ry="2" />
<text x="564.28" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (519 samples, 0.02%)</title><rect x="807.8" y="1061" width="0.3" height="15.0" fill="rgb(222,105,24)" rx="2" ry="2" />
<text x="810.81" y="1071.5" ></text>
</g>
<g >
<title>camlEnvironment_V0__apply_operation_31284 (9,462 samples, 0.41%)</title><rect x="1157.1" y="373" width="4.8" height="15.0" fill="rgb(251,216,36)" rx="2" ry="2" />
<text x="1160.07" y="383.5" ></text>
</g>
<g >
<title>mark_slice (317 samples, 0.01%)</title><rect x="793.8" y="933" width="0.2" height="15.0" fill="rgb(242,29,40)" rx="2" ry="2" />
<text x="796.81" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (206 samples, 0.01%)</title><rect x="191.2" y="1141" width="0.1" height="15.0" fill="rgb(245,49,54)" rx="2" ry="2" />
<text x="194.19" y="1151.5" ></text>
</g>
<g >
<title>caml_oldify_local_roots (301 samples, 0.01%)</title><rect x="42.8" y="1653" width="0.1" height="15.0" fill="rgb(233,207,7)" rx="2" ry="2" />
<text x="45.77" y="1663.5" ></text>
</g>
<g >
<title>unix_lseek_64 (3,982 samples, 0.17%)</title><rect x="997.0" y="1285" width="2.1" height="15.0" fill="rgb(240,0,25)" rx="2" ry="2" />
<text x="1000.04" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (443 samples, 0.02%)</title><rect x="612.3" y="1141" width="0.2" height="15.0" fill="rgb(209,97,25)" rx="2" ry="2" />
<text x="615.30" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (317 samples, 0.01%)</title><rect x="754.3" y="1013" width="0.2" height="15.0" fill="rgb(247,183,22)" rx="2" ry="2" />
<text x="757.31" y="1023.5" ></text>
</g>
<g >
<title>camlIndex__find_1611 (333 samples, 0.01%)</title><rect x="717.1" y="1077" width="0.2" height="15.0" fill="rgb(226,88,44)" rx="2" ry="2" />
<text x="720.08" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (941 samples, 0.04%)</title><rect x="701.9" y="997" width="0.5" height="15.0" fill="rgb(224,110,20)" rx="2" ry="2" />
<text x="704.93" y="1007.5" ></text>
</g>
<g >
<title>caml_modify (1,221 samples, 0.05%)</title><rect x="470.3" y="1333" width="0.7" height="15.0" fill="rgb(214,78,46)" rx="2" ry="2" />
<text x="473.34" y="1343.5" ></text>
</g>
<g >
<title>caml_apply3 (855 samples, 0.04%)</title><rect x="421.5" y="1429" width="0.4" height="15.0" fill="rgb(211,184,51)" rx="2" ry="2" />
<text x="424.51" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (596 samples, 0.03%)</title><rect x="1058.8" y="1093" width="0.3" height="15.0" fill="rgb(253,143,23)" rx="2" ry="2" />
<text x="1061.81" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (4,277 samples, 0.19%)</title><rect x="611.3" y="1189" width="2.2" height="15.0" fill="rgb(209,7,7)" rx="2" ry="2" />
<text x="614.34" y="1199.5" ></text>
</g>
<g >
<title>caml_fl_allocate (683 samples, 0.03%)</title><rect x="19.0" y="1589" width="0.4" height="15.0" fill="rgb(217,92,36)" rx="2" ry="2" />
<text x="22.04" y="1599.5" ></text>
</g>
<g >
<title>camlData_encoding__Binary_reader__of_bytes_opt_832 (3,105 samples, 0.13%)</title><rect x="836.8" y="933" width="1.6" height="15.0" fill="rgb(219,151,35)" rx="2" ry="2" />
<text x="839.77" y="943.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (317 samples, 0.01%)</title><rect x="370.5" y="1253" width="0.2" height="15.0" fill="rgb(253,128,1)" rx="2" ry="2" />
<text x="373.52" y="1263.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (218 samples, 0.01%)</title><rect x="274.4" y="1381" width="0.1" height="15.0" fill="rgb(209,195,33)" rx="2" ry="2" />
<text x="277.39" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (214 samples, 0.01%)</title><rect x="869.4" y="805" width="0.1" height="15.0" fill="rgb(209,152,22)" rx="2" ry="2" />
<text x="872.38" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15566 (52,973 samples, 2.29%)</title><rect x="557.0" y="1349" width="27.1" height="15.0" fill="rgb(211,61,8)" rx="2" ry="2" />
<text x="560.00" y="1359.5" >c..</text>
</g>
<g >
<title>caml_blit_bytes (1,403 samples, 0.06%)</title><rect x="254.3" y="1381" width="0.8" height="15.0" fill="rgb(229,2,48)" rx="2" ry="2" />
<text x="257.34" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (275 samples, 0.01%)</title><rect x="851.7" y="1253" width="0.2" height="15.0" fill="rgb(244,52,11)" rx="2" ry="2" />
<text x="854.75" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (791 samples, 0.03%)</title><rect x="542.6" y="1125" width="0.4" height="15.0" fill="rgb(250,161,39)" rx="2" ry="2" />
<text x="545.63" y="1135.5" ></text>
</g>
<g >
<title>mul2add (962 samples, 0.04%)</title><rect x="664.4" y="133" width="0.5" height="15.0" fill="rgb(210,165,45)" rx="2" ry="2" />
<text x="667.36" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12430 (8,994 samples, 0.39%)</title><rect x="1169.4" y="949" width="4.6" height="15.0" fill="rgb(236,110,52)" rx="2" ry="2" />
<text x="1172.37" y="959.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (273 samples, 0.01%)</title><rect x="556.3" y="1285" width="0.2" height="15.0" fill="rgb(248,73,33)" rx="2" ry="2" />
<text x="559.34" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (405 samples, 0.02%)</title><rect x="239.6" y="1317" width="0.2" height="15.0" fill="rgb(250,158,9)" rx="2" ry="2" />
<text x="242.62" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,620 samples, 0.07%)</title><rect x="1176.8" y="981" width="0.8" height="15.0" fill="rgb(223,77,30)" rx="2" ry="2" />
<text x="1179.77" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (674 samples, 0.03%)</title><rect x="582.9" y="1237" width="0.3" height="15.0" fill="rgb(221,221,0)" rx="2" ry="2" />
<text x="585.87" y="1247.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (3,030 samples, 0.13%)</title><rect x="635.5" y="133" width="1.5" height="15.0" fill="rgb(230,106,16)" rx="2" ry="2" />
<text x="638.47" y="143.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (282 samples, 0.01%)</title><rect x="582.4" y="1157" width="0.1" height="15.0" fill="rgb(208,129,31)" rx="2" ry="2" />
<text x="585.36" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Node__find_3011 (197 samples, 0.01%)</title><rect x="871.7" y="917" width="0.1" height="15.0" fill="rgb(240,121,21)" rx="2" ry="2" />
<text x="874.68" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (279 samples, 0.01%)</title><rect x="706.8" y="933" width="0.1" height="15.0" fill="rgb(225,49,38)" rx="2" ry="2" />
<text x="709.79" y="943.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (204 samples, 0.01%)</title><rect x="1112.7" y="101" width="0.1" height="15.0" fill="rgb(235,130,23)" rx="2" ry="2" />
<text x="1115.66" y="111.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (256 samples, 0.01%)</title><rect x="1000.4" y="997" width="0.1" height="15.0" fill="rgb(239,45,3)" rx="2" ry="2" />
<text x="1003.38" y="1007.5" ></text>
</g>
<g >
<title>uECC_vli_sub (209 samples, 0.01%)</title><rect x="657.7" y="133" width="0.1" height="15.0" fill="rgb(235,129,42)" rx="2" ry="2" />
<text x="660.68" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_969 (4,532 samples, 0.20%)</title><rect x="248.6" y="1429" width="2.4" height="15.0" fill="rgb(226,1,3)" rx="2" ry="2" />
<text x="251.65" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (413 samples, 0.02%)</title><rect x="718.5" y="1013" width="0.2" height="15.0" fill="rgb(228,65,37)" rx="2" ry="2" />
<text x="721.46" y="1023.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (2,203 samples, 0.10%)</title><rect x="1169.8" y="917" width="1.2" height="15.0" fill="rgb(212,205,17)" rx="2" ry="2" />
<text x="1172.84" y="927.5" ></text>
</g>
<g >
<title>double_jacobian_default (1,022 samples, 0.04%)</title><rect x="828.2" y="229" width="0.5" height="15.0" fill="rgb(253,208,42)" rx="2" ry="2" />
<text x="831.23" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (299 samples, 0.01%)</title><rect x="1058.6" y="1125" width="0.1" height="15.0" fill="rgb(209,47,34)" rx="2" ry="2" />
<text x="1061.59" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (2,203 samples, 0.10%)</title><rect x="124.5" y="1397" width="1.1" height="15.0" fill="rgb(229,47,27)" rx="2" ry="2" />
<text x="127.51" y="1407.5" ></text>
</g>
<g >
<title>sweep_slice (387 samples, 0.02%)</title><rect x="908.1" y="1349" width="0.2" height="15.0" fill="rgb(216,174,11)" rx="2" ry="2" />
<text x="911.10" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (203 samples, 0.01%)</title><rect x="526.9" y="1253" width="0.1" height="15.0" fill="rgb(212,201,8)" rx="2" ry="2" />
<text x="529.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (47,148 samples, 2.04%)</title><rect x="425.3" y="1477" width="24.1" height="15.0" fill="rgb(243,191,33)" rx="2" ry="2" />
<text x="428.27" y="1487.5" >c..</text>
</g>
<g >
<title>uECC_vli_modMult_fast (2,319 samples, 0.10%)</title><rect x="1098.5" y="85" width="1.2" height="15.0" fill="rgb(211,122,5)" rx="2" ry="2" />
<text x="1101.52" y="95.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_7512 (11,234 samples, 0.49%)</title><rect x="827.6" y="389" width="5.7" height="15.0" fill="rgb(222,3,23)" rx="2" ry="2" />
<text x="830.59" y="399.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (332 samples, 0.01%)</title><rect x="570.3" y="1285" width="0.1" height="15.0" fill="rgb(252,213,2)" rx="2" ry="2" />
<text x="573.26" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (253 samples, 0.01%)</title><rect x="871.4" y="901" width="0.2" height="15.0" fill="rgb(224,78,7)" rx="2" ry="2" />
<text x="874.42" y="911.5" ></text>
</g>
<g >
<title>caml_garbage_collection (253 samples, 0.01%)</title><rect x="616.7" y="1205" width="0.2" height="15.0" fill="rgb(205,163,26)" rx="2" ry="2" />
<text x="619.72" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (605 samples, 0.03%)</title><rect x="747.6" y="1045" width="0.3" height="15.0" fill="rgb(207,212,31)" rx="2" ry="2" />
<text x="750.63" y="1055.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,723 samples, 0.07%)</title><rect x="1109.0" y="85" width="0.9" height="15.0" fill="rgb(205,68,48)" rx="2" ry="2" />
<text x="1112.03" y="95.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__unshallow_29823 (1,887 samples, 0.08%)</title><rect x="835.6" y="789" width="1.0" height="15.0" fill="rgb(236,139,31)" rx="2" ry="2" />
<text x="838.63" y="799.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (711 samples, 0.03%)</title><rect x="784.4" y="1125" width="0.3" height="15.0" fill="rgb(212,33,35)" rx="2" ry="2" />
<text x="787.39" y="1135.5" ></text>
</g>
<g >
<title>caml_alloc_string (2,991 samples, 0.13%)</title><rect x="328.8" y="1445" width="1.5" height="15.0" fill="rgb(244,19,35)" rx="2" ry="2" />
<text x="331.81" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,004 samples, 0.04%)</title><rect x="1041.9" y="1349" width="0.5" height="15.0" fill="rgb(248,159,43)" rx="2" ry="2" />
<text x="1044.92" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (241 samples, 0.01%)</title><rect x="1064.1" y="1045" width="0.1" height="15.0" fill="rgb(222,45,48)" rx="2" ry="2" />
<text x="1067.11" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (240 samples, 0.01%)</title><rect x="552.9" y="1205" width="0.1" height="15.0" fill="rgb(231,132,30)" rx="2" ry="2" />
<text x="555.87" y="1215.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (813 samples, 0.04%)</title><rect x="817.0" y="197" width="0.4" height="15.0" fill="rgb(234,91,52)" rx="2" ry="2" />
<text x="820.03" y="207.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (306 samples, 0.01%)</title><rect x="611.0" y="1157" width="0.1" height="15.0" fill="rgb(213,23,43)" rx="2" ry="2" />
<text x="613.98" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_738 (634 samples, 0.03%)</title><rect x="139.6" y="1413" width="0.3" height="15.0" fill="rgb(253,181,14)" rx="2" ry="2" />
<text x="142.59" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (327 samples, 0.01%)</title><rect x="1119.9" y="885" width="0.2" height="15.0" fill="rgb(227,45,16)" rx="2" ry="2" />
<text x="1122.91" y="895.5" ></text>
</g>
<g >
<title>mark_slice (411 samples, 0.02%)</title><rect x="587.1" y="1237" width="0.2" height="15.0" fill="rgb(252,90,47)" rx="2" ry="2" />
<text x="590.06" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (1,534 samples, 0.07%)</title><rect x="915.1" y="1445" width="0.8" height="15.0" fill="rgb(227,139,47)" rx="2" ry="2" />
<text x="918.10" y="1455.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (327 samples, 0.01%)</title><rect x="193.6" y="1397" width="0.2" height="15.0" fill="rgb(253,96,20)" rx="2" ry="2" />
<text x="196.64" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (233 samples, 0.01%)</title><rect x="1084.7" y="1221" width="0.1" height="15.0" fill="rgb(253,60,25)" rx="2" ry="2" />
<text x="1087.68" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_569 (285 samples, 0.01%)</title><rect x="544.0" y="1269" width="0.1" height="15.0" fill="rgb(224,9,31)" rx="2" ry="2" />
<text x="546.99" y="1279.5" ></text>
</g>
<g >
<title>muladd (987 samples, 0.04%)</title><rect x="1149.5" y="117" width="0.5" height="15.0" fill="rgb(213,154,10)" rx="2" ry="2" />
<text x="1152.48" y="127.5" ></text>
</g>
<g >
<title>caml_garbage_collection (408 samples, 0.02%)</title><rect x="471.5" y="1333" width="0.2" height="15.0" fill="rgb(206,3,51)" rx="2" ry="2" />
<text x="474.46" y="1343.5" ></text>
</g>
<g >
<title>camlEnvironment_V0__apply_operation_31284 (72,316 samples, 3.13%)</title><rect x="631.3" y="357" width="36.9" height="15.0" fill="rgb(247,98,43)" rx="2" ry="2" />
<text x="634.27" y="367.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (196 samples, 0.01%)</title><rect x="192.2" y="997" width="0.1" height="15.0" fill="rgb(218,217,3)" rx="2" ry="2" />
<text x="195.20" y="1007.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (367 samples, 0.02%)</title><rect x="1156.8" y="181" width="0.2" height="15.0" fill="rgb(209,135,38)" rx="2" ry="2" />
<text x="1159.83" y="191.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,931 samples, 0.08%)</title><rect x="656.8" y="165" width="1.0" height="15.0" fill="rgb(222,54,13)" rx="2" ry="2" />
<text x="659.80" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,250 samples, 0.23%)</title><rect x="320.6" y="1317" width="2.7" height="15.0" fill="rgb(251,165,26)" rx="2" ry="2" />
<text x="323.57" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,850 samples, 0.08%)</title><rect x="217.5" y="1333" width="0.9" height="15.0" fill="rgb(236,131,43)" rx="2" ry="2" />
<text x="220.50" y="1343.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (214 samples, 0.01%)</title><rect x="835.9" y="501" width="0.1" height="15.0" fill="rgb(251,169,18)" rx="2" ry="2" />
<text x="838.93" y="511.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (385,458 samples, 16.70%)</title><rect x="984.4" y="1429" width="197.0" height="15.0" fill="rgb(251,140,52)" rx="2" ry="2" />
<text x="987.36" y="1439.5" >camlLwt__callback_1304</text>
</g>
<g >
<title>camlIrmin_pack__Pack__find_5807 (678 samples, 0.03%)</title><rect x="520.7" y="1333" width="0.4" height="15.0" fill="rgb(246,162,29)" rx="2" ry="2" />
<text x="523.71" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (678 samples, 0.03%)</title><rect x="1161.3" y="181" width="0.3" height="15.0" fill="rgb(242,168,21)" rx="2" ry="2" />
<text x="1164.29" y="191.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (425 samples, 0.02%)</title><rect x="1008.8" y="1333" width="0.2" height="15.0" fill="rgb(213,6,14)" rx="2" ry="2" />
<text x="1011.75" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15239 (246 samples, 0.01%)</title><rect x="1084.2" y="1141" width="0.1" height="15.0" fill="rgb(222,10,8)" rx="2" ry="2" />
<text x="1087.19" y="1151.5" ></text>
</g>
<g >
<title>mul2add (205 samples, 0.01%)</title><rect x="1099.9" y="53" width="0.1" height="15.0" fill="rgb(244,99,50)" rx="2" ry="2" />
<text x="1102.93" y="63.5" ></text>
</g>
<g >
<title>XYcZ_add (1,067 samples, 0.05%)</title><rect x="816.1" y="213" width="0.5" height="15.0" fill="rgb(233,77,0)" rx="2" ry="2" />
<text x="819.09" y="223.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (75,991 samples, 3.29%)</title><rect x="631.2" y="597" width="38.9" height="15.0" fill="rgb(223,135,29)" rx="2" ry="2" />
<text x="634.24" y="607.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (362 samples, 0.02%)</title><rect x="523.8" y="1317" width="0.2" height="15.0" fill="rgb(208,192,9)" rx="2" ry="2" />
<text x="526.83" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (227 samples, 0.01%)</title><rect x="766.1" y="1045" width="0.1" height="15.0" fill="rgb(222,148,19)" rx="2" ry="2" />
<text x="769.11" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (297 samples, 0.01%)</title><rect x="788.0" y="1109" width="0.2" height="15.0" fill="rgb(240,140,1)" rx="2" ry="2" />
<text x="791.05" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,073 samples, 0.05%)</title><rect x="235.3" y="1349" width="0.5" height="15.0" fill="rgb(227,213,52)" rx="2" ry="2" />
<text x="238.26" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (209 samples, 0.01%)</title><rect x="767.0" y="1093" width="0.1" height="15.0" fill="rgb(223,171,52)" rx="2" ry="2" />
<text x="769.96" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,456 samples, 0.06%)</title><rect x="577.0" y="1173" width="0.7" height="15.0" fill="rgb(253,142,47)" rx="2" ry="2" />
<text x="579.96" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (369 samples, 0.02%)</title><rect x="822.9" y="229" width="0.2" height="15.0" fill="rgb(241,224,45)" rx="2" ry="2" />
<text x="825.89" y="239.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,169 samples, 0.05%)</title><rect x="656.8" y="149" width="0.6" height="15.0" fill="rgb(217,49,50)" rx="2" ry="2" />
<text x="659.83" y="159.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (501 samples, 0.02%)</title><rect x="894.7" y="1365" width="0.3" height="15.0" fill="rgb(253,142,50)" rx="2" ry="2" />
<text x="897.70" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,566 samples, 0.07%)</title><rect x="277.7" y="1365" width="0.8" height="15.0" fill="rgb(243,225,23)" rx="2" ry="2" />
<text x="280.66" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (587 samples, 0.03%)</title><rect x="717.3" y="1045" width="0.3" height="15.0" fill="rgb(208,207,48)" rx="2" ry="2" />
<text x="720.30" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,481 samples, 0.06%)</title><rect x="685.9" y="1029" width="0.8" height="15.0" fill="rgb(222,11,34)" rx="2" ry="2" />
<text x="688.93" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (582 samples, 0.03%)</title><rect x="1126.7" y="1029" width="0.3" height="15.0" fill="rgb(234,199,27)" rx="2" ry="2" />
<text x="1129.69" y="1039.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (262 samples, 0.01%)</title><rect x="235.8" y="1349" width="0.1" height="15.0" fill="rgb(244,168,45)" rx="2" ry="2" />
<text x="238.81" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_values_11648 (310 samples, 0.01%)</title><rect x="544.0" y="1285" width="0.1" height="15.0" fill="rgb(240,79,37)" rx="2" ry="2" />
<text x="546.97" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (304 samples, 0.01%)</title><rect x="617.3" y="1173" width="0.1" height="15.0" fill="rgb(205,1,36)" rx="2" ry="2" />
<text x="620.26" y="1183.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (489 samples, 0.02%)</title><rect x="372.6" y="1269" width="0.2" height="15.0" fill="rgb(228,165,49)" rx="2" ry="2" />
<text x="375.58" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (378 samples, 0.02%)</title><rect x="1126.1" y="933" width="0.2" height="15.0" fill="rgb(244,159,39)" rx="2" ry="2" />
<text x="1129.14" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (227 samples, 0.01%)</title><rect x="519.6" y="1317" width="0.2" height="15.0" fill="rgb(246,109,19)" rx="2" ry="2" />
<text x="522.64" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (699 samples, 0.03%)</title><rect x="496.2" y="1253" width="0.3" height="15.0" fill="rgb(213,69,19)" rx="2" ry="2" />
<text x="499.16" y="1263.5" ></text>
</g>
<g >
<title>__GI___select (14,898 samples, 0.65%)</title><rect x="85.3" y="1525" width="7.6" height="15.0" fill="rgb(236,59,34)" rx="2" ry="2" />
<text x="88.26" y="1535.5" ></text>
</g>
<g >
<title>camlLwt__enter_resolution_loop_891 (347 samples, 0.02%)</title><rect x="607.9" y="1317" width="0.1" height="15.0" fill="rgb(228,142,21)" rx="2" ry="2" />
<text x="610.86" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (641 samples, 0.03%)</title><rect x="185.2" y="1349" width="0.3" height="15.0" fill="rgb(211,146,2)" rx="2" ry="2" />
<text x="188.21" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (603 samples, 0.03%)</title><rect x="1151.7" y="165" width="0.3" height="15.0" fill="rgb(217,54,54)" rx="2" ry="2" />
<text x="1154.67" y="175.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__of_value_4230 (701 samples, 0.03%)</title><rect x="783.4" y="1157" width="0.4" height="15.0" fill="rgb(215,144,54)" rx="2" ry="2" />
<text x="786.41" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__merge_callbacks_728 (399 samples, 0.02%)</title><rect x="621.7" y="1269" width="0.2" height="15.0" fill="rgb(219,164,16)" rx="2" ry="2" />
<text x="624.74" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (651 samples, 0.03%)</title><rect x="839.1" y="1125" width="0.3" height="15.0" fill="rgb(225,103,25)" rx="2" ry="2" />
<text x="842.11" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (223 samples, 0.01%)</title><rect x="703.1" y="917" width="0.1" height="15.0" fill="rgb(220,36,6)" rx="2" ry="2" />
<text x="706.13" y="927.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (275 samples, 0.01%)</title><rect x="127.4" y="1365" width="0.1" height="15.0" fill="rgb(226,13,39)" rx="2" ry="2" />
<text x="130.36" y="1375.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (269 samples, 0.01%)</title><rect x="578.6" y="1317" width="0.1" height="15.0" fill="rgb(253,155,51)" rx="2" ry="2" />
<text x="581.58" y="1327.5" ></text>
</g>
<g >
<title>caml_oldify_one (226 samples, 0.01%)</title><rect x="890.7" y="1317" width="0.1" height="15.0" fill="rgb(219,129,13)" rx="2" ry="2" />
<text x="893.70" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,371 samples, 0.80%)</title><rect x="961.1" y="1477" width="9.4" height="15.0" fill="rgb(253,225,21)" rx="2" ry="2" />
<text x="964.10" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,163 samples, 0.05%)</title><rect x="532.1" y="1173" width="0.6" height="15.0" fill="rgb(242,111,41)" rx="2" ry="2" />
<text x="535.06" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (236 samples, 0.01%)</title><rect x="215.2" y="1317" width="0.1" height="15.0" fill="rgb(236,166,37)" rx="2" ry="2" />
<text x="218.16" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (645 samples, 0.03%)</title><rect x="534.7" y="1093" width="0.4" height="15.0" fill="rgb(247,123,37)" rx="2" ry="2" />
<text x="537.74" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (981 samples, 0.04%)</title><rect x="187.8" y="1349" width="0.5" height="15.0" fill="rgb(254,4,33)" rx="2" ry="2" />
<text x="190.79" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (858 samples, 0.04%)</title><rect x="183.5" y="1301" width="0.5" height="15.0" fill="rgb(231,224,46)" rx="2" ry="2" />
<text x="186.51" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (247 samples, 0.01%)</title><rect x="836.1" y="341" width="0.1" height="15.0" fill="rgb(251,192,50)" rx="2" ry="2" />
<text x="839.10" y="351.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (715 samples, 0.03%)</title><rect x="1106.7" y="85" width="0.4" height="15.0" fill="rgb(223,20,32)" rx="2" ry="2" />
<text x="1109.69" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (3,422 samples, 0.15%)</title><rect x="1072.2" y="1173" width="1.7" height="15.0" fill="rgb(220,142,12)" rx="2" ry="2" />
<text x="1075.19" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (28,003 samples, 1.21%)</title><rect x="563.6" y="1317" width="14.4" height="15.0" fill="rgb(242,44,44)" rx="2" ry="2" />
<text x="566.65" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,975 samples, 0.09%)</title><rect x="906.1" y="1365" width="1.0" height="15.0" fill="rgb(234,219,45)" rx="2" ry="2" />
<text x="909.06" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (43,913 samples, 1.90%)</title><rect x="1143.9" y="1045" width="22.4" height="15.0" fill="rgb(240,135,35)" rx="2" ry="2" />
<text x="1146.87" y="1055.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (228 samples, 0.01%)</title><rect x="877.2" y="1045" width="0.1" height="15.0" fill="rgb(208,12,19)" rx="2" ry="2" />
<text x="880.23" y="1055.5" ></text>
</g>
<g >
<title>uECC_vli_add (245 samples, 0.01%)</title><rect x="634.8" y="101" width="0.1" height="15.0" fill="rgb(245,152,12)" rx="2" ry="2" />
<text x="637.75" y="111.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (232 samples, 0.01%)</title><rect x="154.3" y="1397" width="0.1" height="15.0" fill="rgb(250,184,7)" rx="2" ry="2" />
<text x="157.31" y="1407.5" ></text>
</g>
<g >
<title>muladd (812 samples, 0.04%)</title><rect x="1154.6" y="133" width="0.4" height="15.0" fill="rgb(210,78,2)" rx="2" ry="2" />
<text x="1157.60" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (947 samples, 0.04%)</title><rect x="489.7" y="1253" width="0.5" height="15.0" fill="rgb(248,137,29)" rx="2" ry="2" />
<text x="492.67" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,150 samples, 0.05%)</title><rect x="874.2" y="1029" width="0.6" height="15.0" fill="rgb(243,137,18)" rx="2" ry="2" />
<text x="877.19" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (352 samples, 0.02%)</title><rect x="1121.4" y="933" width="0.2" height="15.0" fill="rgb(245,227,28)" rx="2" ry="2" />
<text x="1124.37" y="943.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (218 samples, 0.01%)</title><rect x="873.9" y="997" width="0.2" height="15.0" fill="rgb(222,225,41)" rx="2" ry="2" />
<text x="876.95" y="1007.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (414 samples, 0.02%)</title><rect x="411.7" y="1365" width="0.2" height="15.0" fill="rgb(211,29,48)" rx="2" ry="2" />
<text x="414.72" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (230 samples, 0.01%)</title><rect x="723.4" y="1141" width="0.1" height="15.0" fill="rgb(247,224,10)" rx="2" ry="2" />
<text x="726.37" y="1151.5" ></text>
</g>
<g >
<title>sweep_slice (1,261 samples, 0.05%)</title><rect x="278.5" y="1397" width="0.6" height="15.0" fill="rgb(248,176,48)" rx="2" ry="2" />
<text x="281.46" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (392,377 samples, 17.00%)</title><rect x="982.8" y="1477" width="200.6" height="15.0" fill="rgb(226,17,21)" rx="2" ry="2" />
<text x="985.83" y="1487.5" >camlLwt__resolve_916</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (836 samples, 0.04%)</title><rect x="1137.4" y="1029" width="0.4" height="15.0" fill="rgb(229,89,41)" rx="2" ry="2" />
<text x="1140.42" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (283 samples, 0.01%)</title><rect x="574.0" y="1269" width="0.2" height="15.0" fill="rgb(235,72,20)" rx="2" ry="2" />
<text x="577.02" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (809 samples, 0.04%)</title><rect x="832.6" y="245" width="0.4" height="15.0" fill="rgb(254,84,16)" rx="2" ry="2" />
<text x="835.61" y="255.5" ></text>
</g>
<g >
<title>caml_alloc_shr (232 samples, 0.01%)</title><rect x="154.3" y="1413" width="0.1" height="15.0" fill="rgb(223,43,4)" rx="2" ry="2" />
<text x="157.31" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14781 (211 samples, 0.01%)</title><rect x="206.9" y="1381" width="0.1" height="15.0" fill="rgb(250,190,15)" rx="2" ry="2" />
<text x="209.85" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (239 samples, 0.01%)</title><rect x="188.5" y="1381" width="0.1" height="15.0" fill="rgb(247,64,26)" rx="2" ry="2" />
<text x="191.49" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (517 samples, 0.02%)</title><rect x="678.5" y="1221" width="0.3" height="15.0" fill="rgb(249,221,46)" rx="2" ry="2" />
<text x="681.49" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (233 samples, 0.01%)</title><rect x="530.2" y="1125" width="0.1" height="15.0" fill="rgb(225,137,50)" rx="2" ry="2" />
<text x="533.20" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (205 samples, 0.01%)</title><rect x="192.0" y="1045" width="0.1" height="15.0" fill="rgb(224,52,24)" rx="2" ry="2" />
<text x="194.98" y="1055.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,405 samples, 0.06%)</title><rect x="1080.4" y="1189" width="0.7" height="15.0" fill="rgb(230,14,52)" rx="2" ry="2" />
<text x="1083.43" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,005 samples, 0.04%)</title><rect x="185.0" y="1365" width="0.5" height="15.0" fill="rgb(241,83,7)" rx="2" ry="2" />
<text x="188.02" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (465 samples, 0.02%)</title><rect x="706.7" y="965" width="0.3" height="15.0" fill="rgb(248,33,0)" rx="2" ry="2" />
<text x="709.74" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14973 (363 samples, 0.02%)</title><rect x="677.0" y="1237" width="0.2" height="15.0" fill="rgb(229,191,19)" rx="2" ry="2" />
<text x="680.03" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (201 samples, 0.01%)</title><rect x="582.1" y="1077" width="0.1" height="15.0" fill="rgb(252,153,21)" rx="2" ry="2" />
<text x="585.12" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (2,917 samples, 0.13%)</title><rect x="873.8" y="1061" width="1.5" height="15.0" fill="rgb(215,127,10)" rx="2" ry="2" />
<text x="876.85" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (243 samples, 0.01%)</title><rect x="536.0" y="1141" width="0.1" height="15.0" fill="rgb(210,174,15)" rx="2" ry="2" />
<text x="538.97" y="1151.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (577 samples, 0.02%)</title><rect x="378.5" y="1365" width="0.3" height="15.0" fill="rgb(239,40,34)" rx="2" ry="2" />
<text x="381.55" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (5,245 samples, 0.23%)</title><rect x="912.2" y="1445" width="2.7" height="15.0" fill="rgb(205,159,15)" rx="2" ry="2" />
<text x="915.18" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (491 samples, 0.02%)</title><rect x="784.5" y="1077" width="0.2" height="15.0" fill="rgb(237,118,29)" rx="2" ry="2" />
<text x="787.50" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (247 samples, 0.01%)</title><rect x="1057.3" y="1061" width="0.2" height="15.0" fill="rgb(246,226,48)" rx="2" ry="2" />
<text x="1060.34" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_680 (574 samples, 0.02%)</title><rect x="586.7" y="1269" width="0.3" height="15.0" fill="rgb(252,13,0)" rx="2" ry="2" />
<text x="589.66" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (286 samples, 0.01%)</title><rect x="780.8" y="1125" width="0.1" height="15.0" fill="rgb(224,14,17)" rx="2" ry="2" />
<text x="783.76" y="1135.5" ></text>
</g>
<g >
<title>sweep_slice (523 samples, 0.02%)</title><rect x="600.4" y="1269" width="0.3" height="15.0" fill="rgb(216,5,3)" rx="2" ry="2" />
<text x="603.39" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (48,631 samples, 2.11%)</title><rect x="788.0" y="1157" width="24.8" height="15.0" fill="rgb(251,101,53)" rx="2" ry="2" />
<text x="790.95" y="1167.5" >c..</text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (511 samples, 0.02%)</title><rect x="578.8" y="1253" width="0.3" height="15.0" fill="rgb(233,204,53)" rx="2" ry="2" />
<text x="581.82" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (882 samples, 0.04%)</title><rect x="863.9" y="741" width="0.5" height="15.0" fill="rgb(241,54,46)" rx="2" ry="2" />
<text x="866.93" y="751.5" ></text>
</g>
<g >
<title>caml_call_gc (684 samples, 0.03%)</title><rect x="841.1" y="1189" width="0.3" height="15.0" fill="rgb(222,121,50)" rx="2" ry="2" />
<text x="844.05" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (75,978 samples, 3.29%)</title><rect x="631.2" y="581" width="38.9" height="15.0" fill="rgb(251,14,31)" rx="2" ry="2" />
<text x="634.24" y="591.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (256 samples, 0.01%)</title><rect x="1088.1" y="869" width="0.1" height="15.0" fill="rgb(254,50,35)" rx="2" ry="2" />
<text x="1091.05" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (1,216 samples, 0.05%)</title><rect x="551.3" y="1221" width="0.7" height="15.0" fill="rgb(254,123,17)" rx="2" ry="2" />
<text x="554.33" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (303 samples, 0.01%)</title><rect x="706.5" y="981" width="0.2" height="15.0" fill="rgb(215,170,28)" rx="2" ry="2" />
<text x="709.54" y="991.5" ></text>
</g>
<g >
<title>caml_apply3 (306 samples, 0.01%)</title><rect x="330.3" y="1445" width="0.2" height="15.0" fill="rgb(243,208,1)" rx="2" ry="2" />
<text x="333.34" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (203 samples, 0.01%)</title><rect x="612.2" y="1061" width="0.1" height="15.0" fill="rgb(224,51,25)" rx="2" ry="2" />
<text x="615.17" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (313 samples, 0.01%)</title><rect x="98.1" y="1525" width="0.2" height="15.0" fill="rgb(235,41,36)" rx="2" ry="2" />
<text x="101.10" y="1535.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (5,795 samples, 0.25%)</title><rect x="862.0" y="789" width="3.0" height="15.0" fill="rgb(254,177,37)" rx="2" ry="2" />
<text x="865.02" y="799.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,447 samples, 0.06%)</title><rect x="1181.9" y="1397" width="0.8" height="15.0" fill="rgb(225,91,8)" rx="2" ry="2" />
<text x="1184.94" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,076 samples, 0.09%)</title><rect x="247.3" y="1381" width="1.0" height="15.0" fill="rgb(225,127,8)" rx="2" ry="2" />
<text x="250.26" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (241 samples, 0.01%)</title><rect x="690.1" y="981" width="0.1" height="15.0" fill="rgb(226,225,22)" rx="2" ry="2" />
<text x="693.09" y="991.5" ></text>
</g>
<g >
<title>caml_call_gc (504 samples, 0.02%)</title><rect x="797.1" y="1061" width="0.2" height="15.0" fill="rgb(250,107,39)" rx="2" ry="2" />
<text x="800.06" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (227 samples, 0.01%)</title><rect x="1164.4" y="213" width="0.1" height="15.0" fill="rgb(250,62,38)" rx="2" ry="2" />
<text x="1167.37" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (13,274 samples, 0.58%)</title><rect x="685.2" y="1093" width="6.8" height="15.0" fill="rgb(220,134,48)" rx="2" ry="2" />
<text x="688.24" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (364 samples, 0.02%)</title><rect x="872.0" y="933" width="0.2" height="15.0" fill="rgb(227,19,49)" rx="2" ry="2" />
<text x="874.97" y="943.5" ></text>
</g>
<g >
<title>caml_call_gc (297 samples, 0.01%)</title><rect x="771.5" y="1125" width="0.1" height="15.0" fill="rgb(236,23,1)" rx="2" ry="2" />
<text x="774.48" y="1135.5" ></text>
</g>
<g >
<title>sweep_slice (262 samples, 0.01%)</title><rect x="398.1" y="1397" width="0.1" height="15.0" fill="rgb(224,49,36)" rx="2" ry="2" />
<text x="401.05" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (2,800 samples, 0.12%)</title><rect x="1039.8" y="1381" width="1.5" height="15.0" fill="rgb(220,158,16)" rx="2" ry="2" />
<text x="1042.83" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (552 samples, 0.02%)</title><rect x="847.9" y="1269" width="0.3" height="15.0" fill="rgb(207,64,32)" rx="2" ry="2" />
<text x="850.95" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (380 samples, 0.02%)</title><rect x="589.4" y="1269" width="0.2" height="15.0" fill="rgb(239,143,29)" rx="2" ry="2" />
<text x="592.41" y="1279.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (444 samples, 0.02%)</title><rect x="198.8" y="1333" width="0.2" height="15.0" fill="rgb(246,134,23)" rx="2" ry="2" />
<text x="201.79" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (384 samples, 0.02%)</title><rect x="852.4" y="1269" width="0.2" height="15.0" fill="rgb(237,154,40)" rx="2" ry="2" />
<text x="855.41" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_456 (1,059 samples, 0.05%)</title><rect x="166.7" y="1349" width="0.5" height="15.0" fill="rgb(252,27,24)" rx="2" ry="2" />
<text x="169.66" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (437 samples, 0.02%)</title><rect x="840.2" y="1157" width="0.2" height="15.0" fill="rgb(223,179,0)" rx="2" ry="2" />
<text x="843.22" y="1167.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (245 samples, 0.01%)</title><rect x="260.9" y="1349" width="0.1" height="15.0" fill="rgb(243,143,45)" rx="2" ry="2" />
<text x="263.92" y="1359.5" ></text>
</g>
<g >
<title>caml_apply5 (1,769 samples, 0.08%)</title><rect x="878.3" y="1045" width="0.9" height="15.0" fill="rgb(206,130,20)" rx="2" ry="2" />
<text x="881.32" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (72,368 samples, 3.14%)</title><rect x="631.2" y="437" width="37.0" height="15.0" fill="rgb(238,164,17)" rx="2" ry="2" />
<text x="634.25" y="447.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4928 (2,597 samples, 0.11%)</title><rect x="311.1" y="1445" width="1.4" height="15.0" fill="rgb(239,122,38)" rx="2" ry="2" />
<text x="314.14" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (374 samples, 0.02%)</title><rect x="704.5" y="981" width="0.2" height="15.0" fill="rgb(208,8,54)" rx="2" ry="2" />
<text x="707.55" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (2,293 samples, 0.10%)</title><rect x="855.0" y="981" width="1.2" height="15.0" fill="rgb(244,216,21)" rx="2" ry="2" />
<text x="857.98" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (13,473 samples, 0.58%)</title><rect x="132.2" y="1397" width="6.9" height="15.0" fill="rgb(211,194,44)" rx="2" ry="2" />
<text x="135.24" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (663 samples, 0.03%)</title><rect x="989.9" y="1397" width="0.4" height="15.0" fill="rgb(249,42,20)" rx="2" ry="2" />
<text x="992.94" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (307 samples, 0.01%)</title><rect x="770.1" y="1093" width="0.1" height="15.0" fill="rgb(226,50,5)" rx="2" ry="2" />
<text x="773.08" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (1,132 samples, 0.05%)</title><rect x="137.2" y="1333" width="0.6" height="15.0" fill="rgb(218,124,49)" rx="2" ry="2" />
<text x="140.21" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,116 samples, 0.05%)</title><rect x="344.8" y="1365" width="0.5" height="15.0" fill="rgb(254,202,27)" rx="2" ry="2" />
<text x="347.77" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (1,485 samples, 0.06%)</title><rect x="1161.9" y="709" width="0.8" height="15.0" fill="rgb(217,97,29)" rx="2" ry="2" />
<text x="1164.94" y="719.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (209 samples, 0.01%)</title><rect x="1059.7" y="1189" width="0.1" height="15.0" fill="rgb(219,52,32)" rx="2" ry="2" />
<text x="1062.74" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (450 samples, 0.02%)</title><rect x="720.7" y="1013" width="0.2" height="15.0" fill="rgb(244,197,47)" rx="2" ry="2" />
<text x="723.65" y="1023.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (419 samples, 0.02%)</title><rect x="293.1" y="1317" width="0.2" height="15.0" fill="rgb(249,135,40)" rx="2" ry="2" />
<text x="296.12" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (339 samples, 0.01%)</title><rect x="841.5" y="1141" width="0.2" height="15.0" fill="rgb(247,118,5)" rx="2" ry="2" />
<text x="844.51" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (2,301 samples, 0.10%)</title><rect x="858.9" y="981" width="1.2" height="15.0" fill="rgb(215,218,19)" rx="2" ry="2" />
<text x="861.91" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14952 (242 samples, 0.01%)</title><rect x="1084.4" y="1141" width="0.2" height="15.0" fill="rgb(208,160,22)" rx="2" ry="2" />
<text x="1087.45" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (243 samples, 0.01%)</title><rect x="698.4" y="965" width="0.1" height="15.0" fill="rgb(235,185,41)" rx="2" ry="2" />
<text x="701.38" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (400 samples, 0.02%)</title><rect x="302.1" y="1381" width="0.2" height="15.0" fill="rgb(213,190,11)" rx="2" ry="2" />
<text x="305.07" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (1,355 samples, 0.06%)</title><rect x="476.3" y="1413" width="0.7" height="15.0" fill="rgb(213,152,10)" rx="2" ry="2" />
<text x="479.33" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (850 samples, 0.04%)</title><rect x="568.3" y="1237" width="0.5" height="15.0" fill="rgb(230,113,23)" rx="2" ry="2" />
<text x="571.35" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (254 samples, 0.01%)</title><rect x="626.6" y="933" width="0.2" height="15.0" fill="rgb(217,47,22)" rx="2" ry="2" />
<text x="629.65" y="943.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (72,711 samples, 3.15%)</title><rect x="1129.3" y="1157" width="37.1" height="15.0" fill="rgb(205,9,20)" rx="2" ry="2" />
<text x="1132.26" y="1167.5" >cam..</text>
</g>
<g >
<title>camlStdlib__list__map_212 (957 samples, 0.04%)</title><rect x="1000.0" y="1237" width="0.5" height="15.0" fill="rgb(244,123,18)" rx="2" ry="2" />
<text x="1003.02" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (210 samples, 0.01%)</title><rect x="796.6" y="981" width="0.1" height="15.0" fill="rgb(228,119,25)" rx="2" ry="2" />
<text x="799.60" y="991.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (19,709 samples, 0.85%)</title><rect x="1169.0" y="1141" width="10.0" height="15.0" fill="rgb(250,51,43)" rx="2" ry="2" />
<text x="1171.97" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (355 samples, 0.02%)</title><rect x="722.6" y="1045" width="0.2" height="15.0" fill="rgb(247,208,33)" rx="2" ry="2" />
<text x="725.57" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (29,926 samples, 1.30%)</title><rect x="528.6" y="1253" width="15.3" height="15.0" fill="rgb(253,54,4)" rx="2" ry="2" />
<text x="531.65" y="1263.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_1950 (12,021 samples, 0.52%)</title><rect x="975.1" y="1509" width="6.2" height="15.0" fill="rgb(212,189,26)" rx="2" ry="2" />
<text x="978.14" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (2,383 samples, 0.10%)</title><rect x="575.1" y="1221" width="1.2" height="15.0" fill="rgb(206,196,25)" rx="2" ry="2" />
<text x="578.10" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (565 samples, 0.02%)</title><rect x="206.6" y="1333" width="0.3" height="15.0" fill="rgb(236,86,23)" rx="2" ry="2" />
<text x="209.56" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,017 samples, 0.04%)</title><rect x="602.3" y="1253" width="0.6" height="15.0" fill="rgb(224,97,3)" rx="2" ry="2" />
<text x="605.33" y="1263.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (303 samples, 0.01%)</title><rect x="144.3" y="1397" width="0.2" height="15.0" fill="rgb(239,198,52)" rx="2" ry="2" />
<text x="147.32" y="1407.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (219 samples, 0.01%)</title><rect x="1157.5" y="149" width="0.1" height="15.0" fill="rgb(224,181,47)" rx="2" ry="2" />
<text x="1160.49" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15580 (512 samples, 0.02%)</title><rect x="867.5" y="1029" width="0.2" height="15.0" fill="rgb(246,150,33)" rx="2" ry="2" />
<text x="870.47" y="1039.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (988 samples, 0.04%)</title><rect x="1094.6" y="117" width="0.5" height="15.0" fill="rgb(245,202,48)" rx="2" ry="2" />
<text x="1097.56" y="127.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (380 samples, 0.02%)</title><rect x="529.1" y="1189" width="0.1" height="15.0" fill="rgb(209,103,17)" rx="2" ry="2" />
<text x="532.05" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (762 samples, 0.03%)</title><rect x="577.2" y="613" width="0.4" height="15.0" fill="rgb(231,86,14)" rx="2" ry="2" />
<text x="580.19" y="623.5" ></text>
</g>
<g >
<title>caml_garbage_collection (373 samples, 0.02%)</title><rect x="793.1" y="981" width="0.2" height="15.0" fill="rgb(232,3,18)" rx="2" ry="2" />
<text x="796.12" y="991.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (1,493 samples, 0.06%)</title><rect x="618.6" y="1269" width="0.7" height="15.0" fill="rgb(251,106,54)" rx="2" ry="2" />
<text x="621.56" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (319 samples, 0.01%)</title><rect x="816.4" y="197" width="0.2" height="15.0" fill="rgb(215,81,10)" rx="2" ry="2" />
<text x="819.42" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (874 samples, 0.04%)</title><rect x="997.6" y="1205" width="0.5" height="15.0" fill="rgb(235,73,29)" rx="2" ry="2" />
<text x="1000.60" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (704 samples, 0.03%)</title><rect x="670.2" y="709" width="0.3" height="15.0" fill="rgb(207,51,13)" rx="2" ry="2" />
<text x="673.17" y="719.5" ></text>
</g>
<g >
<title>mark_slice (211 samples, 0.01%)</title><rect x="799.5" y="997" width="0.1" height="15.0" fill="rgb(246,87,18)" rx="2" ry="2" />
<text x="802.47" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (556 samples, 0.02%)</title><rect x="841.5" y="1173" width="0.2" height="15.0" fill="rgb(224,63,16)" rx="2" ry="2" />
<text x="844.46" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (374 samples, 0.02%)</title><rect x="703.1" y="965" width="0.2" height="15.0" fill="rgb(222,114,6)" rx="2" ry="2" />
<text x="706.10" y="975.5" ></text>
</g>
<g >
<title>unix_lseek_64 (797 samples, 0.03%)</title><rect x="1124.9" y="981" width="0.4" height="15.0" fill="rgb(254,208,30)" rx="2" ry="2" />
<text x="1127.87" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (348 samples, 0.02%)</title><rect x="1055.6" y="1157" width="0.2" height="15.0" fill="rgb(240,72,20)" rx="2" ry="2" />
<text x="1058.58" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3818 (3,348 samples, 0.15%)</title><rect x="1090.0" y="949" width="1.7" height="15.0" fill="rgb(232,220,43)" rx="2" ry="2" />
<text x="1092.99" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (887 samples, 0.04%)</title><rect x="777.5" y="1077" width="0.5" height="15.0" fill="rgb(234,105,37)" rx="2" ry="2" />
<text x="780.55" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (641 samples, 0.03%)</title><rect x="666.1" y="165" width="0.3" height="15.0" fill="rgb(237,90,51)" rx="2" ry="2" />
<text x="669.12" y="175.5" ></text>
</g>
<g >
<title>caml_call_gc (694 samples, 0.03%)</title><rect x="334.5" y="1413" width="0.3" height="15.0" fill="rgb(221,203,6)" rx="2" ry="2" />
<text x="337.49" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (4,838 samples, 0.21%)</title><rect x="190.1" y="1317" width="2.5" height="15.0" fill="rgb(252,186,19)" rx="2" ry="2" />
<text x="193.11" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__fun_2772 (498 samples, 0.02%)</title><rect x="466.7" y="1413" width="0.2" height="15.0" fill="rgb(254,163,12)" rx="2" ry="2" />
<text x="469.69" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (938 samples, 0.04%)</title><rect x="618.7" y="1253" width="0.4" height="15.0" fill="rgb(252,176,51)" rx="2" ry="2" />
<text x="621.67" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,971 samples, 0.09%)</title><rect x="797.5" y="1077" width="1.0" height="15.0" fill="rgb(210,228,21)" rx="2" ry="2" />
<text x="800.49" y="1087.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (245 samples, 0.01%)</title><rect x="548.1" y="1285" width="0.1" height="15.0" fill="rgb(234,129,39)" rx="2" ry="2" />
<text x="551.10" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (329 samples, 0.01%)</title><rect x="1167.4" y="1237" width="0.2" height="15.0" fill="rgb(206,40,44)" rx="2" ry="2" />
<text x="1170.43" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (1,741 samples, 0.08%)</title><rect x="696.6" y="997" width="0.9" height="15.0" fill="rgb(228,13,48)" rx="2" ry="2" />
<text x="699.57" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (357 samples, 0.02%)</title><rect x="195.5" y="1365" width="0.2" height="15.0" fill="rgb(215,158,50)" rx="2" ry="2" />
<text x="198.54" y="1375.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (749 samples, 0.03%)</title><rect x="894.7" y="1397" width="0.3" height="15.0" fill="rgb(237,160,22)" rx="2" ry="2" />
<text x="897.67" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (944 samples, 0.04%)</title><rect x="255.6" y="1381" width="0.5" height="15.0" fill="rgb(230,224,44)" rx="2" ry="2" />
<text x="258.62" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (625 samples, 0.03%)</title><rect x="233.3" y="1333" width="0.3" height="15.0" fill="rgb(229,1,21)" rx="2" ry="2" />
<text x="236.27" y="1343.5" ></text>
</g>
<g >
<title>caml_string_equal (357 samples, 0.02%)</title><rect x="562.0" y="1253" width="0.2" height="15.0" fill="rgb(251,8,50)" rx="2" ry="2" />
<text x="564.99" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__callback_1425 (603 samples, 0.03%)</title><rect x="1179.3" y="1237" width="0.3" height="15.0" fill="rgb(208,36,9)" rx="2" ry="2" />
<text x="1182.29" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (245 samples, 0.01%)</title><rect x="701.5" y="917" width="0.1" height="15.0" fill="rgb(237,127,47)" rx="2" ry="2" />
<text x="704.48" y="927.5" ></text>
</g>
<g >
<title>caml_garbage_collection (232 samples, 0.01%)</title><rect x="554.9" y="1221" width="0.1" height="15.0" fill="rgb(216,166,36)" rx="2" ry="2" />
<text x="557.93" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,618 samples, 0.16%)</title><rect x="601.4" y="1301" width="1.8" height="15.0" fill="rgb(212,145,40)" rx="2" ry="2" />
<text x="604.39" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_one (413 samples, 0.02%)</title><rect x="601.1" y="1253" width="0.2" height="15.0" fill="rgb(245,23,29)" rx="2" ry="2" />
<text x="604.09" y="1263.5" ></text>
</g>
<g >
<title>uECC_vli_mult (833 samples, 0.04%)</title><rect x="1096.6" y="53" width="0.4" height="15.0" fill="rgb(232,170,12)" rx="2" ry="2" />
<text x="1099.56" y="63.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (568 samples, 0.02%)</title><rect x="822.5" y="229" width="0.3" height="15.0" fill="rgb(243,110,14)" rx="2" ry="2" />
<text x="825.52" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (216 samples, 0.01%)</title><rect x="545.3" y="1253" width="0.1" height="15.0" fill="rgb(241,60,51)" rx="2" ry="2" />
<text x="548.30" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,300 samples, 1.53%)</title><rect x="1143.9" y="693" width="18.0" height="15.0" fill="rgb(220,1,17)" rx="2" ry="2" />
<text x="1146.90" y="703.5" ></text>
</g>
<g >
<title>caml_garbage_collection (395 samples, 0.02%)</title><rect x="806.8" y="1029" width="0.2" height="15.0" fill="rgb(245,219,20)" rx="2" ry="2" />
<text x="809.81" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (375 samples, 0.02%)</title><rect x="529.8" y="1189" width="0.2" height="15.0" fill="rgb(237,83,0)" rx="2" ry="2" />
<text x="532.76" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (19,457 samples, 0.84%)</title><rect x="488.8" y="1317" width="9.9" height="15.0" fill="rgb(230,143,5)" rx="2" ry="2" />
<text x="491.80" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (1,234 samples, 0.05%)</title><rect x="432.1" y="1381" width="0.7" height="15.0" fill="rgb(222,73,3)" rx="2" ry="2" />
<text x="435.15" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (988 samples, 0.04%)</title><rect x="677.7" y="1237" width="0.5" height="15.0" fill="rgb(237,160,42)" rx="2" ry="2" />
<text x="680.74" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__stack__pop_93 (1,315 samples, 0.06%)</title><rect x="789.1" y="1077" width="0.7" height="15.0" fill="rgb(243,178,11)" rx="2" ry="2" />
<text x="792.09" y="1087.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (277 samples, 0.01%)</title><rect x="1040.6" y="1301" width="0.1" height="15.0" fill="rgb(205,99,24)" rx="2" ry="2" />
<text x="1043.60" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_shr (2,242 samples, 0.10%)</title><rect x="35.1" y="1621" width="1.2" height="15.0" fill="rgb(238,228,37)" rx="2" ry="2" />
<text x="38.15" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (577 samples, 0.02%)</title><rect x="754.5" y="1093" width="0.3" height="15.0" fill="rgb(226,111,37)" rx="2" ry="2" />
<text x="757.53" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (255 samples, 0.01%)</title><rect x="552.0" y="1205" width="0.2" height="15.0" fill="rgb(208,118,18)" rx="2" ry="2" />
<text x="555.03" y="1215.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,361 samples, 0.06%)</title><rect x="1050.6" y="1125" width="0.7" height="15.0" fill="rgb(252,164,12)" rx="2" ry="2" />
<text x="1053.57" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,481 samples, 0.06%)</title><rect x="576.9" y="1205" width="0.8" height="15.0" fill="rgb(224,37,6)" rx="2" ry="2" />
<text x="579.95" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,020 samples, 0.09%)</title><rect x="1040.2" y="1365" width="1.0" height="15.0" fill="rgb(205,187,28)" rx="2" ry="2" />
<text x="1043.20" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__state_of_result_571 (2,114 samples, 0.09%)</title><rect x="923.5" y="1541" width="1.1" height="15.0" fill="rgb(221,159,24)" rx="2" ry="2" />
<text x="926.53" y="1551.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (798 samples, 0.03%)</title><rect x="633.0" y="117" width="0.4" height="15.0" fill="rgb(217,168,36)" rx="2" ry="2" />
<text x="635.98" y="127.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (2,229 samples, 0.10%)</title><rect x="786.1" y="1157" width="1.1" height="15.0" fill="rgb(246,20,51)" rx="2" ry="2" />
<text x="789.08" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (572 samples, 0.02%)</title><rect x="1123.5" y="997" width="0.3" height="15.0" fill="rgb(229,213,15)" rx="2" ry="2" />
<text x="1126.49" y="1007.5" ></text>
</g>
<g >
<title>caml_apply2 (428 samples, 0.02%)</title><rect x="561.5" y="1253" width="0.2" height="15.0" fill="rgb(205,56,41)" rx="2" ry="2" />
<text x="564.49" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (333 samples, 0.01%)</title><rect x="499.7" y="1269" width="0.1" height="15.0" fill="rgb(234,158,4)" rx="2" ry="2" />
<text x="502.66" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,217 samples, 0.05%)</title><rect x="1167.1" y="1285" width="0.6" height="15.0" fill="rgb(222,34,14)" rx="2" ry="2" />
<text x="1170.12" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (357 samples, 0.02%)</title><rect x="1017.7" y="1349" width="0.1" height="15.0" fill="rgb(227,176,39)" rx="2" ry="2" />
<text x="1020.66" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (353 samples, 0.02%)</title><rect x="1179.1" y="1221" width="0.2" height="15.0" fill="rgb(231,79,18)" rx="2" ry="2" />
<text x="1182.11" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (447 samples, 0.02%)</title><rect x="856.7" y="933" width="0.3" height="15.0" fill="rgb(221,143,1)" rx="2" ry="2" />
<text x="859.75" y="943.5" ></text>
</g>
<g >
<title>uECC_vli_mmod (251 samples, 0.01%)</title><rect x="639.1" y="133" width="0.1" height="15.0" fill="rgb(207,134,37)" rx="2" ry="2" />
<text x="642.10" y="143.5" ></text>
</g>
<g >
<title>camlLwt__add_regular_callback_list_node_736 (232 samples, 0.01%)</title><rect x="912.1" y="1445" width="0.1" height="15.0" fill="rgb(226,190,39)" rx="2" ry="2" />
<text x="915.06" y="1455.5" ></text>
</g>
<g >
<title>caml_string_compare (256 samples, 0.01%)</title><rect x="544.7" y="1269" width="0.1" height="15.0" fill="rgb(240,153,20)" rx="2" ry="2" />
<text x="547.68" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (432 samples, 0.02%)</title><rect x="992.1" y="1365" width="0.2" height="15.0" fill="rgb(215,2,41)" rx="2" ry="2" />
<text x="995.07" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (284 samples, 0.01%)</title><rect x="612.6" y="1141" width="0.1" height="15.0" fill="rgb(231,171,51)" rx="2" ry="2" />
<text x="615.55" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (205 samples, 0.01%)</title><rect x="985.5" y="1349" width="0.1" height="15.0" fill="rgb(235,142,16)" rx="2" ry="2" />
<text x="988.54" y="1359.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (2,342 samples, 0.10%)</title><rect x="588.0" y="1269" width="1.2" height="15.0" fill="rgb(221,182,35)" rx="2" ry="2" />
<text x="590.96" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (1,663 samples, 0.07%)</title><rect x="1128.2" y="1109" width="0.8" height="15.0" fill="rgb(247,66,23)" rx="2" ry="2" />
<text x="1131.16" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,767 samples, 0.08%)</title><rect x="628.3" y="1013" width="0.9" height="15.0" fill="rgb(234,103,52)" rx="2" ry="2" />
<text x="631.28" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (198 samples, 0.01%)</title><rect x="614.2" y="1141" width="0.1" height="15.0" fill="rgb(251,80,1)" rx="2" ry="2" />
<text x="617.23" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (246 samples, 0.01%)</title><rect x="610.2" y="1157" width="0.1" height="15.0" fill="rgb(252,191,52)" rx="2" ry="2" />
<text x="613.20" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (230 samples, 0.01%)</title><rect x="990.1" y="1317" width="0.1" height="15.0" fill="rgb(206,185,43)" rx="2" ry="2" />
<text x="993.07" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (989 samples, 0.04%)</title><rect x="305.5" y="1445" width="0.5" height="15.0" fill="rgb(209,83,37)" rx="2" ry="2" />
<text x="308.52" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (249 samples, 0.01%)</title><rect x="856.4" y="885" width="0.1" height="15.0" fill="rgb(252,0,7)" rx="2" ry="2" />
<text x="859.42" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (582 samples, 0.03%)</title><rect x="184.1" y="1365" width="0.3" height="15.0" fill="rgb(254,74,41)" rx="2" ry="2" />
<text x="187.06" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (337 samples, 0.01%)</title><rect x="778.9" y="1061" width="0.2" height="15.0" fill="rgb(225,180,45)" rx="2" ry="2" />
<text x="781.94" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (6,923 samples, 0.30%)</title><rect x="227.5" y="1365" width="3.5" height="15.0" fill="rgb(248,164,54)" rx="2" ry="2" />
<text x="230.45" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (361 samples, 0.02%)</title><rect x="221.2" y="1317" width="0.2" height="15.0" fill="rgb(222,183,35)" rx="2" ry="2" />
<text x="224.17" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__apply_operation_5609 (72,274 samples, 3.13%)</title><rect x="631.3" y="325" width="36.9" height="15.0" fill="rgb(254,63,47)" rx="2" ry="2" />
<text x="634.28" y="335.5" >cam..</text>
</g>
<g >
<title>mark_slice (421 samples, 0.02%)</title><rect x="810.5" y="1013" width="0.2" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" />
<text x="813.48" y="1023.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (276 samples, 0.01%)</title><rect x="291.3" y="1317" width="0.1" height="15.0" fill="rgb(218,192,38)" rx="2" ry="2" />
<text x="294.28" y="1327.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (2,114 samples, 0.09%)</title><rect x="651.3" y="133" width="1.1" height="15.0" fill="rgb(216,83,17)" rx="2" ry="2" />
<text x="654.35" y="143.5" ></text>
</g>
<g >
<title>mark_slice (1,053 samples, 0.05%)</title><rect x="397.5" y="1397" width="0.6" height="15.0" fill="rgb(223,85,53)" rx="2" ry="2" />
<text x="400.51" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (426 samples, 0.02%)</title><rect x="222.2" y="1285" width="0.2" height="15.0" fill="rgb(221,203,3)" rx="2" ry="2" />
<text x="225.20" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (220 samples, 0.01%)</title><rect x="685.5" y="1061" width="0.1" height="15.0" fill="rgb(230,143,41)" rx="2" ry="2" />
<text x="688.51" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (254 samples, 0.01%)</title><rect x="793.4" y="949" width="0.1" height="15.0" fill="rgb(245,65,53)" rx="2" ry="2" />
<text x="796.38" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (248 samples, 0.01%)</title><rect x="1125.0" y="901" width="0.1" height="15.0" fill="rgb(207,37,15)" rx="2" ry="2" />
<text x="1128.00" y="911.5" ></text>
</g>
<g >
<title>__read_chk (86,976 samples, 3.77%)</title><rect x="926.0" y="1637" width="44.5" height="15.0" fill="rgb(254,6,7)" rx="2" ry="2" />
<text x="929.02" y="1647.5" >__re..</text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,337 samples, 0.06%)</title><rect x="579.8" y="1237" width="0.7" height="15.0" fill="rgb(227,145,30)" rx="2" ry="2" />
<text x="582.84" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (340 samples, 0.01%)</title><rect x="786.4" y="1077" width="0.2" height="15.0" fill="rgb(227,220,17)" rx="2" ry="2" />
<text x="789.39" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (403 samples, 0.02%)</title><rect x="797.7" y="1045" width="0.2" height="15.0" fill="rgb(224,166,8)" rx="2" ry="2" />
<text x="800.66" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (228 samples, 0.01%)</title><rect x="553.8" y="1221" width="0.1" height="15.0" fill="rgb(220,135,31)" rx="2" ry="2" />
<text x="556.78" y="1231.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (224 samples, 0.01%)</title><rect x="238.4" y="1333" width="0.1" height="15.0" fill="rgb(254,143,54)" rx="2" ry="2" />
<text x="241.38" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,359 samples, 1.58%)</title><rect x="1094.5" y="805" width="18.6" height="15.0" fill="rgb(213,201,17)" rx="2" ry="2" />
<text x="1097.53" y="815.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (380 samples, 0.02%)</title><rect x="667.9" y="165" width="0.2" height="15.0" fill="rgb(218,185,17)" rx="2" ry="2" />
<text x="670.90" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,160 samples, 0.05%)</title><rect x="528.9" y="1221" width="0.6" height="15.0" fill="rgb(206,20,42)" rx="2" ry="2" />
<text x="531.86" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__add_to_dst_4787 (2,100 samples, 0.09%)</title><rect x="1078.5" y="1285" width="1.1" height="15.0" fill="rgb(206,216,31)" rx="2" ry="2" />
<text x="1081.54" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (541 samples, 0.02%)</title><rect x="392.7" y="1413" width="0.3" height="15.0" fill="rgb(218,84,48)" rx="2" ry="2" />
<text x="395.74" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (784 samples, 0.03%)</title><rect x="327.7" y="1365" width="0.4" height="15.0" fill="rgb(221,2,44)" rx="2" ry="2" />
<text x="330.74" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_mult (3,311 samples, 0.14%)</title><rect x="660.6" y="149" width="1.7" height="15.0" fill="rgb(251,109,3)" rx="2" ry="2" />
<text x="663.61" y="159.5" ></text>
</g>
<g >
<title>mark_slice_darken (597 samples, 0.03%)</title><rect x="847.4" y="1237" width="0.3" height="15.0" fill="rgb(216,9,49)" rx="2" ry="2" />
<text x="850.44" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__fun_3276 (242 samples, 0.01%)</title><rect x="989.0" y="1381" width="0.2" height="15.0" fill="rgb(230,228,52)" rx="2" ry="2" />
<text x="992.03" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (469 samples, 0.02%)</title><rect x="514.9" y="1269" width="0.3" height="15.0" fill="rgb(241,94,54)" rx="2" ry="2" />
<text x="517.95" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (5,363 samples, 0.23%)</title><rect x="382.6" y="1381" width="2.7" height="15.0" fill="rgb(229,128,47)" rx="2" ry="2" />
<text x="385.57" y="1391.5" ></text>
</g>
<g >
<title>caml_modify (408 samples, 0.02%)</title><rect x="902.7" y="1429" width="0.2" height="15.0" fill="rgb(248,54,52)" rx="2" ry="2" />
<text x="905.67" y="1439.5" ></text>
</g>
<g >
<title>uECC_vli_mult (2,438 samples, 0.11%)</title><rect x="654.8" y="149" width="1.2" height="15.0" fill="rgb(216,211,23)" rx="2" ry="2" />
<text x="657.76" y="159.5" ></text>
</g>
<g >
<title>caml_thread_yield (442 samples, 0.02%)</title><rect x="328.6" y="1429" width="0.2" height="15.0" fill="rgb(212,117,46)" rx="2" ry="2" />
<text x="331.58" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (529 samples, 0.02%)</title><rect x="207.2" y="1317" width="0.2" height="15.0" fill="rgb(251,33,28)" rx="2" ry="2" />
<text x="210.17" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (963 samples, 0.04%)</title><rect x="910.2" y="1317" width="0.5" height="15.0" fill="rgb(243,159,35)" rx="2" ry="2" />
<text x="913.19" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (1,277 samples, 0.06%)</title><rect x="431.2" y="1397" width="0.7" height="15.0" fill="rgb(252,71,34)" rx="2" ry="2" />
<text x="434.25" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (226 samples, 0.01%)</title><rect x="1184.0" y="1669" width="0.1" height="15.0" fill="rgb(240,58,47)" rx="2" ry="2" />
<text x="1187.00" y="1679.5" ></text>
</g>
<g >
<title>caml_call_gc (343 samples, 0.01%)</title><rect x="774.1" y="1125" width="0.2" height="15.0" fill="rgb(251,206,13)" rx="2" ry="2" />
<text x="777.10" y="1135.5" ></text>
</g>
<g >
<title>uECC_verify (1,232 samples, 0.05%)</title><rect x="669.4" y="213" width="0.7" height="15.0" fill="rgb(209,185,43)" rx="2" ry="2" />
<text x="672.44" y="223.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (456 samples, 0.02%)</title><rect x="1169.5" y="885" width="0.3" height="15.0" fill="rgb(233,76,22)" rx="2" ry="2" />
<text x="1172.52" y="895.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (202 samples, 0.01%)</title><rect x="432.3" y="1333" width="0.1" height="15.0" fill="rgb(205,38,24)" rx="2" ry="2" />
<text x="435.27" y="1343.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (387 samples, 0.02%)</title><rect x="247.3" y="1365" width="0.2" height="15.0" fill="rgb(221,75,16)" rx="2" ry="2" />
<text x="250.26" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (3,193 samples, 0.14%)</title><rect x="880.4" y="981" width="1.6" height="15.0" fill="rgb(232,50,21)" rx="2" ry="2" />
<text x="883.37" y="991.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (248 samples, 0.01%)</title><rect x="1096.3" y="69" width="0.1" height="15.0" fill="rgb(244,106,15)" rx="2" ry="2" />
<text x="1099.32" y="79.5" ></text>
</g>
<g >
<title>double_jacobian_default (472 samples, 0.02%)</title><rect x="1094.8" y="69" width="0.2" height="15.0" fill="rgb(227,224,53)" rx="2" ry="2" />
<text x="1097.77" y="79.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (4,615 samples, 0.20%)</title><rect x="1115.9" y="1029" width="2.3" height="15.0" fill="rgb(205,3,44)" rx="2" ry="2" />
<text x="1118.85" y="1039.5" ></text>
</g>
<g >
<title>__GI___select (1,761 samples, 0.08%)</title><rect x="971.2" y="1637" width="0.9" height="15.0" fill="rgb(246,14,14)" rx="2" ry="2" />
<text x="974.19" y="1647.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,243 samples, 0.10%)</title><rect x="728.6" y="1157" width="1.1" height="15.0" fill="rgb(254,49,11)" rx="2" ry="2" />
<text x="731.55" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5769 (3,958 samples, 0.17%)</title><rect x="715.0" y="1093" width="2.0" height="15.0" fill="rgb(239,22,45)" rx="2" ry="2" />
<text x="717.98" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (430 samples, 0.02%)</title><rect x="793.8" y="965" width="0.2" height="15.0" fill="rgb(250,166,24)" rx="2" ry="2" />
<text x="796.77" y="975.5" ></text>
</g>
<g >
<title>caml_apply2 (1,311 samples, 0.06%)</title><rect x="139.9" y="1413" width="0.7" height="15.0" fill="rgb(212,92,24)" rx="2" ry="2" />
<text x="142.92" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (5,380 samples, 0.23%)</title><rect x="575.0" y="1253" width="2.7" height="15.0" fill="rgb(251,41,16)" rx="2" ry="2" />
<text x="577.97" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (636 samples, 0.03%)</title><rect x="244.4" y="1365" width="0.3" height="15.0" fill="rgb(242,94,50)" rx="2" ry="2" />
<text x="247.38" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (658 samples, 0.03%)</title><rect x="847.9" y="1285" width="0.3" height="15.0" fill="rgb(233,46,38)" rx="2" ry="2" />
<text x="850.89" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (439 samples, 0.02%)</title><rect x="505.0" y="1301" width="0.3" height="15.0" fill="rgb(205,65,16)" rx="2" ry="2" />
<text x="508.04" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (932 samples, 0.04%)</title><rect x="432.8" y="1397" width="0.5" height="15.0" fill="rgb(205,122,27)" rx="2" ry="2" />
<text x="435.83" y="1407.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (387 samples, 0.02%)</title><rect x="907.1" y="1365" width="0.2" height="15.0" fill="rgb(239,51,45)" rx="2" ry="2" />
<text x="910.07" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (19,606 samples, 0.85%)</title><rect x="1169.0" y="1125" width="10.0" height="15.0" fill="rgb(241,212,40)" rx="2" ry="2" />
<text x="1171.99" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (1,882 samples, 0.08%)</title><rect x="536.6" y="1125" width="0.9" height="15.0" fill="rgb(206,34,0)" rx="2" ry="2" />
<text x="539.56" y="1135.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (370 samples, 0.02%)</title><rect x="633.9" y="133" width="0.2" height="15.0" fill="rgb(243,13,37)" rx="2" ry="2" />
<text x="636.94" y="143.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (634 samples, 0.03%)</title><rect x="815.7" y="245" width="0.4" height="15.0" fill="rgb(240,76,42)" rx="2" ry="2" />
<text x="818.75" y="255.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (749 samples, 0.03%)</title><rect x="1144.4" y="133" width="0.4" height="15.0" fill="rgb(252,108,0)" rx="2" ry="2" />
<text x="1147.42" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (243 samples, 0.01%)</title><rect x="836.1" y="325" width="0.1" height="15.0" fill="rgb(234,187,48)" rx="2" ry="2" />
<text x="839.10" y="335.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__to_bin_11732 (412 samples, 0.02%)</title><rect x="866.9" y="997" width="0.2" height="15.0" fill="rgb(238,65,5)" rx="2" ry="2" />
<text x="869.91" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (286 samples, 0.01%)</title><rect x="500.3" y="1269" width="0.2" height="15.0" fill="rgb(210,112,0)" rx="2" ry="2" />
<text x="503.32" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (564 samples, 0.02%)</title><rect x="987.7" y="1285" width="0.3" height="15.0" fill="rgb(212,121,52)" rx="2" ry="2" />
<text x="990.71" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (35,801 samples, 1.55%)</title><rect x="1094.5" y="405" width="18.3" height="15.0" fill="rgb(232,52,22)" rx="2" ry="2" />
<text x="1097.53" y="415.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (1,601 samples, 0.07%)</title><rect x="733.5" y="1125" width="0.8" height="15.0" fill="rgb(240,52,20)" rx="2" ry="2" />
<text x="736.46" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_782 (363 samples, 0.02%)</title><rect x="568.8" y="1237" width="0.2" height="15.0" fill="rgb(226,169,39)" rx="2" ry="2" />
<text x="571.78" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (280 samples, 0.01%)</title><rect x="499.1" y="1221" width="0.1" height="15.0" fill="rgb(225,110,28)" rx="2" ry="2" />
<text x="502.06" y="1231.5" ></text>
</g>
<g >
<title>caml_modify (457 samples, 0.02%)</title><rect x="787.6" y="1125" width="0.2" height="15.0" fill="rgb(249,67,19)" rx="2" ry="2" />
<text x="790.55" y="1135.5" ></text>
</g>
<g >
<title>caml_string_equal (432 samples, 0.02%)</title><rect x="1043.4" y="1365" width="0.3" height="15.0" fill="rgb(239,163,1)" rx="2" ry="2" />
<text x="1046.44" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (9,164 samples, 0.40%)</title><rect x="241.5" y="1413" width="4.7" height="15.0" fill="rgb(221,205,14)" rx="2" ry="2" />
<text x="244.47" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14217 (4,338 samples, 0.19%)</title><rect x="592.3" y="1349" width="2.3" height="15.0" fill="rgb(253,19,27)" rx="2" ry="2" />
<text x="595.35" y="1359.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (488 samples, 0.02%)</title><rect x="451.5" y="1397" width="0.3" height="15.0" fill="rgb(243,46,10)" rx="2" ry="2" />
<text x="454.54" y="1407.5" ></text>
</g>
<g >
<title>do_compaction (1,450 samples, 0.06%)</title><rect x="1002.8" y="1173" width="0.8" height="15.0" fill="rgb(221,129,39)" rx="2" ry="2" />
<text x="1005.83" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (658 samples, 0.03%)</title><rect x="810.1" y="1061" width="0.3" height="15.0" fill="rgb(236,130,10)" rx="2" ry="2" />
<text x="813.10" y="1071.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (209 samples, 0.01%)</title><rect x="836.4" y="453" width="0.1" height="15.0" fill="rgb(220,167,43)" rx="2" ry="2" />
<text x="839.39" y="463.5" ></text>
</g>
<g >
<title>mark_slice_darken (411 samples, 0.02%)</title><rect x="501.4" y="1237" width="0.2" height="15.0" fill="rgb(250,10,25)" rx="2" ry="2" />
<text x="504.41" y="1247.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (197 samples, 0.01%)</title><rect x="267.2" y="1349" width="0.1" height="15.0" fill="rgb(223,70,38)" rx="2" ry="2" />
<text x="270.18" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (199 samples, 0.01%)</title><rect x="495.5" y="1189" width="0.1" height="15.0" fill="rgb(214,192,3)" rx="2" ry="2" />
<text x="498.46" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (19,935 samples, 0.86%)</title><rect x="1168.9" y="1173" width="10.2" height="15.0" fill="rgb(243,77,13)" rx="2" ry="2" />
<text x="1171.87" y="1183.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (357 samples, 0.02%)</title><rect x="830.2" y="213" width="0.2" height="15.0" fill="rgb(239,89,14)" rx="2" ry="2" />
<text x="833.24" y="223.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,325 samples, 0.06%)</title><rect x="213.5" y="1317" width="0.7" height="15.0" fill="rgb(232,150,49)" rx="2" ry="2" />
<text x="216.51" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_later_general_1002 (6,775 samples, 0.29%)</title><rect x="468.5" y="1381" width="3.4" height="15.0" fill="rgb(224,109,10)" rx="2" ry="2" />
<text x="471.46" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (44,594 samples, 1.93%)</title><rect x="815.7" y="1077" width="22.8" height="15.0" fill="rgb(213,1,40)" rx="2" ry="2" />
<text x="818.68" y="1087.5" >c..</text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (34,494 samples, 1.49%)</title><rect x="815.7" y="693" width="17.6" height="15.0" fill="rgb(222,24,42)" rx="2" ry="2" />
<text x="818.72" y="703.5" ></text>
</g>
<g >
<title>caml_call_gc (381 samples, 0.02%)</title><rect x="765.1" y="1093" width="0.2" height="15.0" fill="rgb(229,104,45)" rx="2" ry="2" />
<text x="768.06" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,465 samples, 0.06%)</title><rect x="628.4" y="997" width="0.8" height="15.0" fill="rgb(233,114,3)" rx="2" ry="2" />
<text x="631.43" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (19,876 samples, 0.86%)</title><rect x="699.4" y="1061" width="10.1" height="15.0" fill="rgb(249,17,21)" rx="2" ry="2" />
<text x="702.36" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_894 (766 samples, 0.03%)</title><rect x="843.3" y="1317" width="0.4" height="15.0" fill="rgb(207,223,31)" rx="2" ry="2" />
<text x="846.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (711 samples, 0.03%)</title><rect x="514.6" y="1269" width="0.3" height="15.0" fill="rgb(249,212,51)" rx="2" ry="2" />
<text x="517.57" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__hash_4626 (1,090 samples, 0.05%)</title><rect x="401.7" y="1429" width="0.5" height="15.0" fill="rgb(252,11,52)" rx="2" ry="2" />
<text x="404.69" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (695 samples, 0.03%)</title><rect x="1169.5" y="917" width="0.3" height="15.0" fill="rgb(239,180,1)" rx="2" ry="2" />
<text x="1172.49" y="927.5" ></text>
</g>
<g >
<title>mark_slice (225 samples, 0.01%)</title><rect x="127.4" y="1349" width="0.1" height="15.0" fill="rgb(218,190,12)" rx="2" ry="2" />
<text x="130.36" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (197 samples, 0.01%)</title><rect x="188.8" y="1253" width="0.1" height="15.0" fill="rgb(250,86,48)" rx="2" ry="2" />
<text x="191.85" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (3,582 samples, 0.16%)</title><rect x="668.2" y="293" width="1.9" height="15.0" fill="rgb(230,144,34)" rx="2" ry="2" />
<text x="671.24" y="303.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (4,160 samples, 0.18%)</title><rect x="687.4" y="1045" width="2.2" height="15.0" fill="rgb(223,190,1)" rx="2" ry="2" />
<text x="690.44" y="1055.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (706 samples, 0.03%)</title><rect x="127.1" y="1413" width="0.4" height="15.0" fill="rgb(218,129,33)" rx="2" ry="2" />
<text x="130.14" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__pre_hash_12261 (392 samples, 0.02%)</title><rect x="1163.9" y="469" width="0.2" height="15.0" fill="rgb(215,125,25)" rx="2" ry="2" />
<text x="1166.94" y="479.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (197 samples, 0.01%)</title><rect x="1039.4" y="1365" width="0.1" height="15.0" fill="rgb(217,218,38)" rx="2" ry="2" />
<text x="1042.38" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5216 (1,389 samples, 0.06%)</title><rect x="995.9" y="1317" width="0.7" height="15.0" fill="rgb(252,140,8)" rx="2" ry="2" />
<text x="998.89" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (419 samples, 0.02%)</title><rect x="1180.5" y="1349" width="0.2" height="15.0" fill="rgb(230,99,14)" rx="2" ry="2" />
<text x="1183.52" y="1359.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (717 samples, 0.03%)</title><rect x="523.3" y="1301" width="0.4" height="15.0" fill="rgb(251,50,53)" rx="2" ry="2" />
<text x="526.33" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Storage_functors__get_option_2282 (265 samples, 0.01%)</title><rect x="670.4" y="661" width="0.1" height="15.0" fill="rgb(247,202,18)" rx="2" ry="2" />
<text x="673.35" y="671.5" ></text>
</g>
<g >
<title>caml_call_gc (363 samples, 0.02%)</title><rect x="794.4" y="1029" width="0.2" height="15.0" fill="rgb(237,161,52)" rx="2" ry="2" />
<text x="797.44" y="1039.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (293 samples, 0.01%)</title><rect x="328.0" y="1333" width="0.1" height="15.0" fill="rgb(251,226,14)" rx="2" ry="2" />
<text x="330.99" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (8,831 samples, 0.38%)</title><rect x="774.6" y="1141" width="4.6" height="15.0" fill="rgb(217,127,32)" rx="2" ry="2" />
<text x="777.64" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (211 samples, 0.01%)</title><rect x="190.4" y="1269" width="0.1" height="15.0" fill="rgb(231,156,34)" rx="2" ry="2" />
<text x="193.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11806 (442 samples, 0.02%)</title><rect x="1162.3" y="549" width="0.3" height="15.0" fill="rgb(223,122,13)" rx="2" ry="2" />
<text x="1165.33" y="559.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_tree_4554 (234 samples, 0.01%)</title><rect x="670.4" y="597" width="0.1" height="15.0" fill="rgb(239,33,10)" rx="2" ry="2" />
<text x="673.36" y="607.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (784 samples, 0.03%)</title><rect x="489.8" y="1221" width="0.4" height="15.0" fill="rgb(220,120,15)" rx="2" ry="2" />
<text x="492.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (250 samples, 0.01%)</title><rect x="189.7" y="1349" width="0.1" height="15.0" fill="rgb(228,188,50)" rx="2" ry="2" />
<text x="192.71" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4780 (821 samples, 0.04%)</title><rect x="1084.2" y="1205" width="0.4" height="15.0" fill="rgb(242,180,14)" rx="2" ry="2" />
<text x="1087.19" y="1215.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (238 samples, 0.01%)</title><rect x="1151.5" y="149" width="0.1" height="15.0" fill="rgb(229,1,1)" rx="2" ry="2" />
<text x="1154.50" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (328 samples, 0.01%)</title><rect x="858.7" y="981" width="0.2" height="15.0" fill="rgb(229,168,7)" rx="2" ry="2" />
<text x="861.74" y="991.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (297 samples, 0.01%)</title><rect x="854.8" y="965" width="0.2" height="15.0" fill="rgb(209,58,5)" rx="2" ry="2" />
<text x="857.81" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4379 (1,486 samples, 0.06%)</title><rect x="808.1" y="1045" width="0.8" height="15.0" fill="rgb(207,36,11)" rx="2" ry="2" />
<text x="811.13" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (1,426 samples, 0.06%)</title><rect x="216.8" y="1333" width="0.7" height="15.0" fill="rgb(251,225,53)" rx="2" ry="2" />
<text x="219.77" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (419 samples, 0.02%)</title><rect x="1117.1" y="917" width="0.3" height="15.0" fill="rgb(223,105,42)" rx="2" ry="2" />
<text x="1120.14" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,820 samples, 0.08%)</title><rect x="1101.9" y="69" width="0.9" height="15.0" fill="rgb(217,214,52)" rx="2" ry="2" />
<text x="1104.87" y="79.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (252 samples, 0.01%)</title><rect x="842.6" y="1157" width="0.2" height="15.0" fill="rgb(227,172,37)" rx="2" ry="2" />
<text x="845.64" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,126 samples, 0.09%)</title><rect x="709.9" y="1061" width="1.1" height="15.0" fill="rgb(214,35,33)" rx="2" ry="2" />
<text x="712.92" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (440 samples, 0.02%)</title><rect x="1094.3" y="997" width="0.2" height="15.0" fill="rgb(248,1,44)" rx="2" ry="2" />
<text x="1097.26" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (253 samples, 0.01%)</title><rect x="590.0" y="1317" width="0.1" height="15.0" fill="rgb(214,140,18)" rx="2" ry="2" />
<text x="592.97" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (10,473 samples, 0.45%)</title><rect x="132.9" y="1381" width="5.4" height="15.0" fill="rgb(206,19,51)" rx="2" ry="2" />
<text x="135.91" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (2,241 samples, 0.10%)</title><rect x="683.4" y="1093" width="1.1" height="15.0" fill="rgb(250,90,10)" rx="2" ry="2" />
<text x="686.40" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (269 samples, 0.01%)</title><rect x="689.8" y="965" width="0.2" height="15.0" fill="rgb(210,5,32)" rx="2" ry="2" />
<text x="692.82" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,032 samples, 0.04%)</title><rect x="556.5" y="1301" width="0.5" height="15.0" fill="rgb(236,125,28)" rx="2" ry="2" />
<text x="559.48" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (259 samples, 0.01%)</title><rect x="149.3" y="1381" width="0.1" height="15.0" fill="rgb(213,148,52)" rx="2" ry="2" />
<text x="152.31" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (7,908 samples, 0.34%)</title><rect x="1175.0" y="1061" width="4.0" height="15.0" fill="rgb(215,166,45)" rx="2" ry="2" />
<text x="1177.97" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (2,090 samples, 0.09%)</title><rect x="1082.8" y="1189" width="1.0" height="15.0" fill="rgb(246,30,17)" rx="2" ry="2" />
<text x="1085.76" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13846 (448 samples, 0.02%)</title><rect x="591.9" y="1349" width="0.2" height="15.0" fill="rgb(217,171,52)" rx="2" ry="2" />
<text x="594.90" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (524 samples, 0.02%)</title><rect x="1058.8" y="1077" width="0.3" height="15.0" fill="rgb(208,31,13)" rx="2" ry="2" />
<text x="1061.83" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (665 samples, 0.03%)</title><rect x="841.4" y="1205" width="0.3" height="15.0" fill="rgb(240,117,12)" rx="2" ry="2" />
<text x="844.40" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (353 samples, 0.02%)</title><rect x="1125.9" y="949" width="0.2" height="15.0" fill="rgb(238,82,38)" rx="2" ry="2" />
<text x="1128.90" y="959.5" ></text>
</g>
<g >
<title>uECC_vli_square (475 samples, 0.02%)</title><rect x="672.0" y="725" width="0.2" height="15.0" fill="rgb(249,220,47)" rx="2" ry="2" />
<text x="674.96" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (5,635 samples, 0.24%)</title><rect x="189.7" y="1365" width="2.9" height="15.0" fill="rgb(252,60,35)" rx="2" ry="2" />
<text x="192.71" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_mult (477 samples, 0.02%)</title><rect x="1144.4" y="117" width="0.3" height="15.0" fill="rgb(229,85,41)" rx="2" ry="2" />
<text x="1147.43" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (668 samples, 0.03%)</title><rect x="221.8" y="1317" width="0.3" height="15.0" fill="rgb(245,70,32)" rx="2" ry="2" />
<text x="224.79" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (11,010 samples, 0.48%)</title><rect x="625.0" y="1045" width="5.7" height="15.0" fill="rgb(235,99,27)" rx="2" ry="2" />
<text x="628.05" y="1055.5" ></text>
</g>
<g >
<title>uECC_vli_mult (228 samples, 0.01%)</title><rect x="1156.8" y="165" width="0.1" height="15.0" fill="rgb(232,72,30)" rx="2" ry="2" />
<text x="1159.83" y="175.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (833 samples, 0.04%)</title><rect x="1151.1" y="133" width="0.4" height="15.0" fill="rgb(210,123,13)" rx="2" ry="2" />
<text x="1154.07" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (222 samples, 0.01%)</title><rect x="1031.5" y="1333" width="0.2" height="15.0" fill="rgb(215,192,53)" rx="2" ry="2" />
<text x="1034.55" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,182 samples, 0.05%)</title><rect x="272.8" y="1397" width="0.6" height="15.0" fill="rgb(240,69,34)" rx="2" ry="2" />
<text x="275.83" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (507 samples, 0.02%)</title><rect x="722.5" y="1093" width="0.3" height="15.0" fill="rgb(230,221,4)" rx="2" ry="2" />
<text x="725.53" y="1103.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (780 samples, 0.03%)</title><rect x="366.8" y="1317" width="0.4" height="15.0" fill="rgb(226,136,15)" rx="2" ry="2" />
<text x="369.85" y="1327.5" ></text>
</g>
<g >
<title>uECC_verify_stub (1,379 samples, 0.06%)</title><rect x="1162.7" y="661" width="0.7" height="15.0" fill="rgb(233,209,28)" rx="2" ry="2" />
<text x="1165.73" y="671.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (224 samples, 0.01%)</title><rect x="799.9" y="997" width="0.1" height="15.0" fill="rgb(224,4,39)" rx="2" ry="2" />
<text x="802.89" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4928 (328 samples, 0.01%)</title><rect x="996.8" y="1317" width="0.2" height="15.0" fill="rgb(219,24,32)" rx="2" ry="2" />
<text x="999.80" y="1327.5" ></text>
</g>
<g >
<title>uECC_vli_add (221 samples, 0.01%)</title><rect x="1147.5" y="117" width="0.1" height="15.0" fill="rgb(219,129,1)" rx="2" ry="2" />
<text x="1150.50" y="127.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,894 samples, 0.08%)</title><rect x="249.7" y="1349" width="1.0" height="15.0" fill="rgb(233,42,17)" rx="2" ry="2" />
<text x="252.69" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (1,159 samples, 0.05%)</title><rect x="708.6" y="1045" width="0.6" height="15.0" fill="rgb(252,99,23)" rx="2" ry="2" />
<text x="711.60" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (11,478 samples, 0.50%)</title><rect x="692.9" y="1077" width="5.9" height="15.0" fill="rgb(231,108,10)" rx="2" ry="2" />
<text x="695.89" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,362 samples, 0.06%)</title><rect x="1072.6" y="1077" width="0.7" height="15.0" fill="rgb(254,157,27)" rx="2" ry="2" />
<text x="1075.55" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (2,200 samples, 0.10%)</title><rect x="704.8" y="1013" width="1.1" height="15.0" fill="rgb(209,82,35)" rx="2" ry="2" />
<text x="707.79" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2173 (245 samples, 0.01%)</title><rect x="708.5" y="1045" width="0.1" height="15.0" fill="rgb(228,38,15)" rx="2" ry="2" />
<text x="711.48" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (259 samples, 0.01%)</title><rect x="500.6" y="1301" width="0.1" height="15.0" fill="rgb(248,112,3)" rx="2" ry="2" />
<text x="503.60" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (1,618 samples, 0.07%)</title><rect x="1163.9" y="629" width="0.8" height="15.0" fill="rgb(250,171,31)" rx="2" ry="2" />
<text x="1166.86" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7640 (214 samples, 0.01%)</title><rect x="989.7" y="1413" width="0.1" height="15.0" fill="rgb(247,30,41)" rx="2" ry="2" />
<text x="992.71" y="1423.5" ></text>
</g>
<g >
<title>apply_z (4,083 samples, 0.18%)</title><rect x="658.1" y="181" width="2.1" height="15.0" fill="rgb(253,160,20)" rx="2" ry="2" />
<text x="661.12" y="191.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6835 (575 samples, 0.02%)</title><rect x="671.4" y="565" width="0.3" height="15.0" fill="rgb(217,188,27)" rx="2" ry="2" />
<text x="674.40" y="575.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (5,153 samples, 0.22%)</title><rect x="792.0" y="1045" width="2.6" height="15.0" fill="rgb(252,125,30)" rx="2" ry="2" />
<text x="795.00" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,299 samples, 0.06%)</title><rect x="1115.1" y="1045" width="0.6" height="15.0" fill="rgb(215,13,38)" rx="2" ry="2" />
<text x="1118.05" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (2,914 samples, 0.13%)</title><rect x="1050.0" y="1269" width="1.5" height="15.0" fill="rgb(235,74,21)" rx="2" ry="2" />
<text x="1053.05" y="1279.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (202 samples, 0.01%)</title><rect x="847.2" y="1269" width="0.1" height="15.0" fill="rgb(235,1,26)" rx="2" ry="2" />
<text x="850.23" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_shr (683 samples, 0.03%)</title><rect x="19.0" y="1621" width="0.4" height="15.0" fill="rgb(208,70,46)" rx="2" ry="2" />
<text x="22.04" y="1631.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (309 samples, 0.01%)</title><rect x="619.6" y="1157" width="0.2" height="15.0" fill="rgb(238,76,36)" rx="2" ry="2" />
<text x="622.61" y="1167.5" ></text>
</g>
<g >
<title>uECC_vli_square (501 samples, 0.02%)</title><rect x="817.4" y="181" width="0.3" height="15.0" fill="rgb(241,193,37)" rx="2" ry="2" />
<text x="820.45" y="191.5" ></text>
</g>
<g >
<title>mark_slice_darken (277 samples, 0.01%)</title><rect x="184.2" y="1301" width="0.1" height="15.0" fill="rgb(249,99,52)" rx="2" ry="2" />
<text x="187.17" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (1,321 samples, 0.06%)</title><rect x="623.1" y="1109" width="0.7" height="15.0" fill="rgb(228,205,9)" rx="2" ry="2" />
<text x="626.09" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (3,326 samples, 0.14%)</title><rect x="151.5" y="1461" width="1.7" height="15.0" fill="rgb(229,30,37)" rx="2" ry="2" />
<text x="154.48" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (592 samples, 0.03%)</title><rect x="781.8" y="1061" width="0.3" height="15.0" fill="rgb(235,151,34)" rx="2" ry="2" />
<text x="784.83" y="1071.5" ></text>
</g>
<g >
<title>caml_oldify_one (204 samples, 0.01%)</title><rect x="411.8" y="1317" width="0.1" height="15.0" fill="rgb(241,5,36)" rx="2" ry="2" />
<text x="414.78" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,886 samples, 0.08%)</title><rect x="835.6" y="725" width="1.0" height="15.0" fill="rgb(235,154,10)" rx="2" ry="2" />
<text x="838.63" y="735.5" ></text>
</g>
<g >
<title>caml_garbage_collection (8,163 samples, 0.35%)</title><rect x="462.5" y="1381" width="4.2" height="15.0" fill="rgb(249,48,48)" rx="2" ry="2" />
<text x="465.52" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (341 samples, 0.01%)</title><rect x="218.5" y="1349" width="0.2" height="15.0" fill="rgb(205,28,14)" rx="2" ry="2" />
<text x="221.55" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (287 samples, 0.01%)</title><rect x="501.7" y="1269" width="0.2" height="15.0" fill="rgb(223,54,17)" rx="2" ry="2" />
<text x="504.75" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,669 samples, 0.12%)</title><rect x="185.0" y="1381" width="1.3" height="15.0" fill="rgb(237,72,26)" rx="2" ry="2" />
<text x="187.98" y="1391.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (441 samples, 0.02%)</title><rect x="102.5" y="1525" width="0.2" height="15.0" fill="rgb(231,37,12)" rx="2" ry="2" />
<text x="105.47" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (2,557 samples, 0.11%)</title><rect x="880.4" y="965" width="1.3" height="15.0" fill="rgb(218,130,52)" rx="2" ry="2" />
<text x="883.40" y="975.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (301 samples, 0.01%)</title><rect x="901.1" y="1413" width="0.1" height="15.0" fill="rgb(205,122,48)" rx="2" ry="2" />
<text x="904.09" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (3,212 samples, 0.14%)</title><rect x="1120.9" y="965" width="1.6" height="15.0" fill="rgb(228,67,39)" rx="2" ry="2" />
<text x="1123.88" y="975.5" ></text>
</g>
<g >
<title>caml_curry2 (315 samples, 0.01%)</title><rect x="500.3" y="1301" width="0.2" height="15.0" fill="rgb(214,103,25)" rx="2" ry="2" />
<text x="503.30" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,285 samples, 0.06%)</title><rect x="503.1" y="1285" width="0.6" height="15.0" fill="rgb(213,144,20)" rx="2" ry="2" />
<text x="506.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (346 samples, 0.01%)</title><rect x="1007.8" y="1317" width="0.2" height="15.0" fill="rgb(242,142,35)" rx="2" ry="2" />
<text x="1010.84" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (459 samples, 0.02%)</title><rect x="841.1" y="1141" width="0.2" height="15.0" fill="rgb(217,126,25)" rx="2" ry="2" />
<text x="844.11" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,048 samples, 0.09%)</title><rect x="921.9" y="1429" width="1.0" height="15.0" fill="rgb(240,130,45)" rx="2" ry="2" />
<text x="924.90" y="1439.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,005 samples, 0.04%)</title><rect x="335.2" y="1365" width="0.5" height="15.0" fill="rgb(250,15,1)" rx="2" ry="2" />
<text x="338.20" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,436 samples, 0.06%)</title><rect x="1116.7" y="981" width="0.8" height="15.0" fill="rgb(249,198,32)" rx="2" ry="2" />
<text x="1119.72" y="991.5" ></text>
</g>
<g >
<title>mark_slice (2,857 samples, 0.12%)</title><rect x="423.2" y="1413" width="1.5" height="15.0" fill="rgb(247,147,3)" rx="2" ry="2" />
<text x="426.25" y="1423.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (3,897 samples, 0.17%)</title><rect x="1158.2" y="261" width="2.0" height="15.0" fill="rgb(213,56,4)" rx="2" ry="2" />
<text x="1161.17" y="271.5" ></text>
</g>
<g >
<title>caml_call_gc (526 samples, 0.02%)</title><rect x="689.7" y="1029" width="0.3" height="15.0" fill="rgb(213,10,51)" rx="2" ry="2" />
<text x="692.75" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (501 samples, 0.02%)</title><rect x="264.7" y="1381" width="0.3" height="15.0" fill="rgb(237,29,6)" rx="2" ry="2" />
<text x="267.74" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (916 samples, 0.04%)</title><rect x="697.5" y="965" width="0.5" height="15.0" fill="rgb(235,66,1)" rx="2" ry="2" />
<text x="700.54" y="975.5" ></text>
</g>
<g >
<title>caml_oldify_one (245 samples, 0.01%)</title><rect x="111.9" y="1429" width="0.1" height="15.0" fill="rgb(251,118,9)" rx="2" ry="2" />
<text x="114.88" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (2,066 samples, 0.09%)</title><rect x="141.2" y="1445" width="1.0" height="15.0" fill="rgb(239,89,31)" rx="2" ry="2" />
<text x="144.17" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,213 samples, 0.10%)</title><rect x="367.5" y="1317" width="1.2" height="15.0" fill="rgb(226,16,32)" rx="2" ry="2" />
<text x="370.54" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (537 samples, 0.02%)</title><rect x="1054.9" y="1269" width="0.3" height="15.0" fill="rgb(206,226,49)" rx="2" ry="2" />
<text x="1057.88" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (18,921 samples, 0.82%)</title><rect x="435.7" y="1461" width="9.7" height="15.0" fill="rgb(250,70,36)" rx="2" ry="2" />
<text x="438.69" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (760 samples, 0.03%)</title><rect x="681.9" y="1125" width="0.4" height="15.0" fill="rgb(252,112,23)" rx="2" ry="2" />
<text x="684.92" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (54,643 samples, 2.37%)</title><rect x="1085.5" y="1125" width="27.9" height="15.0" fill="rgb(246,17,13)" rx="2" ry="2" />
<text x="1088.50" y="1135.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (286 samples, 0.01%)</title><rect x="563.1" y="1205" width="0.1" height="15.0" fill="rgb(238,153,26)" rx="2" ry="2" />
<text x="566.06" y="1215.5" ></text>
</g>
<g >
<title>apply_z (1,451 samples, 0.06%)</title><rect x="1153.6" y="181" width="0.7" height="15.0" fill="rgb(230,93,47)" rx="2" ry="2" />
<text x="1156.55" y="191.5" ></text>
</g>
<g >
<title>caml_program (413,475 samples, 17.91%)</title><rect x="972.6" y="1557" width="211.4" height="15.0" fill="rgb(224,151,17)" rx="2" ry="2" />
<text x="975.63" y="1567.5" >caml_program</text>
</g>
<g >
<title>caml_garbage_collection (269 samples, 0.01%)</title><rect x="770.2" y="1093" width="0.2" height="15.0" fill="rgb(214,209,34)" rx="2" ry="2" />
<text x="773.24" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (654 samples, 0.03%)</title><rect x="779.6" y="1109" width="0.3" height="15.0" fill="rgb(252,84,11)" rx="2" ry="2" />
<text x="782.61" y="1119.5" ></text>
</g>
<g >
<title>uECC_vli_add (641 samples, 0.03%)</title><rect x="656.2" y="133" width="0.3" height="15.0" fill="rgb(216,167,28)" rx="2" ry="2" />
<text x="659.19" y="143.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (421 samples, 0.02%)</title><rect x="876.6" y="997" width="0.2" height="15.0" fill="rgb(249,155,33)" rx="2" ry="2" />
<text x="879.58" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (1,270 samples, 0.06%)</title><rect x="440.8" y="1413" width="0.6" height="15.0" fill="rgb(252,72,0)" rx="2" ry="2" />
<text x="443.77" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,235 samples, 1.53%)</title><rect x="1143.9" y="565" width="18.0" height="15.0" fill="rgb(215,99,4)" rx="2" ry="2" />
<text x="1146.90" y="575.5" ></text>
</g>
<g >
<title>mark_slice_darken (293 samples, 0.01%)</title><rect x="469.3" y="1269" width="0.2" height="15.0" fill="rgb(223,180,40)" rx="2" ry="2" />
<text x="472.32" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (2,440 samples, 0.11%)</title><rect x="497.2" y="1301" width="1.3" height="15.0" fill="rgb(243,217,12)" rx="2" ry="2" />
<text x="500.23" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (313 samples, 0.01%)</title><rect x="498.3" y="1253" width="0.2" height="15.0" fill="rgb(251,211,8)" rx="2" ry="2" />
<text x="501.31" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2451 (483 samples, 0.02%)</title><rect x="701.4" y="981" width="0.2" height="15.0" fill="rgb(207,88,7)" rx="2" ry="2" />
<text x="704.39" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_small (662 samples, 0.03%)</title><rect x="313.3" y="1381" width="0.3" height="15.0" fill="rgb(236,61,39)" rx="2" ry="2" />
<text x="316.26" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_add (800 samples, 0.03%)</title><rect x="662.6" y="133" width="0.4" height="15.0" fill="rgb(249,115,52)" rx="2" ry="2" />
<text x="665.59" y="143.5" ></text>
</g>
<g >
<title>__GI___select (594 samples, 0.03%)</title><rect x="13.8" y="1653" width="0.3" height="15.0" fill="rgb(252,203,31)" rx="2" ry="2" />
<text x="16.76" y="1663.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (301 samples, 0.01%)</title><rect x="827.6" y="277" width="0.1" height="15.0" fill="rgb(251,148,28)" rx="2" ry="2" />
<text x="830.60" y="287.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (321,035 samples, 13.91%)</title><rect x="678.8" y="1269" width="164.1" height="15.0" fill="rgb(229,97,15)" rx="2" ry="2" />
<text x="681.75" y="1279.5" >camlLwt__run_in_resol..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (11,696 samples, 0.51%)</title><rect x="557.5" y="1317" width="6.0" height="15.0" fill="rgb(227,18,20)" rx="2" ry="2" />
<text x="560.51" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (973 samples, 0.04%)</title><rect x="553.9" y="1269" width="0.5" height="15.0" fill="rgb(225,119,1)" rx="2" ry="2" />
<text x="556.90" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (275 samples, 0.01%)</title><rect x="1187.0" y="1621" width="0.1" height="15.0" fill="rgb(206,9,3)" rx="2" ry="2" />
<text x="1189.97" y="1631.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (346 samples, 0.01%)</title><rect x="323.3" y="1381" width="0.2" height="15.0" fill="rgb(209,120,26)" rx="2" ry="2" />
<text x="326.29" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (1,850 samples, 0.08%)</title><rect x="563.9" y="1301" width="0.9" height="15.0" fill="rgb(249,57,3)" rx="2" ry="2" />
<text x="566.86" y="1311.5" ></text>
</g>
<g >
<title>caml_tuplify2 (319 samples, 0.01%)</title><rect x="236.6" y="1381" width="0.1" height="15.0" fill="rgb(224,160,21)" rx="2" ry="2" />
<text x="239.56" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (1,117 samples, 0.05%)</title><rect x="1088.2" y="853" width="0.6" height="15.0" fill="rgb(245,101,47)" rx="2" ry="2" />
<text x="1091.21" y="863.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2451 (269 samples, 0.01%)</title><rect x="1005.7" y="1285" width="0.1" height="15.0" fill="rgb(209,215,51)" rx="2" ry="2" />
<text x="1008.70" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (164,285 samples, 7.12%)</title><rect x="731.7" y="1173" width="84.0" height="15.0" fill="rgb(216,78,30)" rx="2" ry="2" />
<text x="734.69" y="1183.5" >camlLwt__..</text>
</g>
<g >
<title>caml_major_collection_slice (408 samples, 0.02%)</title><rect x="494.5" y="1221" width="0.3" height="15.0" fill="rgb(220,178,40)" rx="2" ry="2" />
<text x="497.55" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (11,378 samples, 0.49%)</title><rect x="1169.1" y="1077" width="5.8" height="15.0" fill="rgb(228,21,41)" rx="2" ry="2" />
<text x="1172.11" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221 samples, 0.01%)</title><rect x="534.3" y="1013" width="0.1" height="15.0" fill="rgb(230,119,32)" rx="2" ry="2" />
<text x="537.30" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,825 samples, 0.08%)</title><rect x="676.1" y="1253" width="0.9" height="15.0" fill="rgb(226,195,11)" rx="2" ry="2" />
<text x="679.08" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (246 samples, 0.01%)</title><rect x="190.5" y="1253" width="0.1" height="15.0" fill="rgb(222,220,27)" rx="2" ry="2" />
<text x="193.49" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_569 (798 samples, 0.03%)</title><rect x="723.1" y="1157" width="0.4" height="15.0" fill="rgb(214,54,12)" rx="2" ry="2" />
<text x="726.08" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (216 samples, 0.01%)</title><rect x="764.5" y="1093" width="0.1" height="15.0" fill="rgb(219,157,12)" rx="2" ry="2" />
<text x="767.49" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (579 samples, 0.03%)</title><rect x="630.9" y="1077" width="0.3" height="15.0" fill="rgb(228,177,13)" rx="2" ry="2" />
<text x="633.90" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (612 samples, 0.03%)</title><rect x="449.1" y="1429" width="0.3" height="15.0" fill="rgb(206,12,47)" rx="2" ry="2" />
<text x="452.05" y="1439.5" ></text>
</g>
<g >
<title>__lseek64 (260 samples, 0.01%)</title><rect x="1119.2" y="885" width="0.2" height="15.0" fill="rgb(217,200,15)" rx="2" ry="2" />
<text x="1122.24" y="895.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,072 samples, 0.05%)</title><rect x="270.3" y="1349" width="0.6" height="15.0" fill="rgb(211,199,22)" rx="2" ry="2" />
<text x="273.34" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (598 samples, 0.03%)</title><rect x="252.6" y="1397" width="0.3" height="15.0" fill="rgb(215,46,47)" rx="2" ry="2" />
<text x="255.61" y="1407.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.6 (1,062 samples, 0.05%)</title><rect x="182.9" y="1301" width="0.5" height="15.0" fill="rgb(222,129,54)" rx="2" ry="2" />
<text x="185.86" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (480 samples, 0.02%)</title><rect x="871.6" y="933" width="0.3" height="15.0" fill="rgb(232,106,5)" rx="2" ry="2" />
<text x="874.64" y="943.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (311 samples, 0.01%)</title><rect x="1159.3" y="149" width="0.2" height="15.0" fill="rgb(229,31,44)" rx="2" ry="2" />
<text x="1162.33" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (425 samples, 0.02%)</title><rect x="1006.0" y="1301" width="0.2" height="15.0" fill="rgb(217,217,37)" rx="2" ry="2" />
<text x="1008.99" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__tuple_613 (486 samples, 0.02%)</title><rect x="757.0" y="1077" width="0.3" height="15.0" fill="rgb(252,168,34)" rx="2" ry="2" />
<text x="760.01" y="1087.5" ></text>
</g>
<g >
<title>sweep_slice (293 samples, 0.01%)</title><rect x="239.8" y="1349" width="0.2" height="15.0" fill="rgb(215,155,54)" rx="2" ry="2" />
<text x="242.83" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (10,644 samples, 0.46%)</title><rect x="860.3" y="821" width="5.4" height="15.0" fill="rgb(237,100,47)" rx="2" ry="2" />
<text x="863.28" y="831.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3831 (40,209 samples, 1.74%)</title><rect x="762.8" y="1157" width="20.6" height="15.0" fill="rgb(220,34,52)" rx="2" ry="2" />
<text x="765.85" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,022 samples, 0.04%)</title><rect x="715.6" y="981" width="0.5" height="15.0" fill="rgb(228,130,52)" rx="2" ry="2" />
<text x="718.58" y="991.5" ></text>
</g>
<g >
<title>apply_z (2,218 samples, 0.10%)</title><rect x="634.1" y="149" width="1.2" height="15.0" fill="rgb(249,110,11)" rx="2" ry="2" />
<text x="637.13" y="159.5" ></text>
</g>
<g >
<title>uECC_vli_square (688 samples, 0.03%)</title><rect x="633.4" y="117" width="0.3" height="15.0" fill="rgb(234,204,2)" rx="2" ry="2" />
<text x="636.39" y="127.5" ></text>
</g>
<g >
<title>caml_garbage_collection (431 samples, 0.02%)</title><rect x="794.0" y="981" width="0.2" height="15.0" fill="rgb(205,54,10)" rx="2" ry="2" />
<text x="796.99" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (252 samples, 0.01%)</title><rect x="871.4" y="885" width="0.2" height="15.0" fill="rgb(248,211,2)" rx="2" ry="2" />
<text x="874.42" y="895.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (2,202 samples, 0.10%)</title><rect x="713.2" y="1077" width="1.1" height="15.0" fill="rgb(208,98,31)" rx="2" ry="2" />
<text x="716.17" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (196 samples, 0.01%)</title><rect x="788.1" y="1077" width="0.1" height="15.0" fill="rgb(223,172,7)" rx="2" ry="2" />
<text x="791.07" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (378 samples, 0.02%)</title><rect x="706.7" y="949" width="0.2" height="15.0" fill="rgb(248,209,22)" rx="2" ry="2" />
<text x="709.74" y="959.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (220 samples, 0.01%)</title><rect x="765.6" y="1045" width="0.1" height="15.0" fill="rgb(216,139,21)" rx="2" ry="2" />
<text x="768.59" y="1055.5" ></text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (300 samples, 0.01%)</title><rect x="127.0" y="1413" width="0.1" height="15.0" fill="rgb(235,32,46)" rx="2" ry="2" />
<text x="129.97" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (978 samples, 0.04%)</title><rect x="216.3" y="1333" width="0.5" height="15.0" fill="rgb(218,173,44)" rx="2" ry="2" />
<text x="219.25" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (43,910 samples, 1.90%)</title><rect x="1143.9" y="1029" width="22.4" height="15.0" fill="rgb(228,213,41)" rx="2" ry="2" />
<text x="1146.87" y="1039.5" >c..</text>
</g>
<g >
<title>camlDigestif__unsafe_get_851 (2,738 samples, 0.12%)</title><rect x="587.9" y="1301" width="1.4" height="15.0" fill="rgb(240,53,11)" rx="2" ry="2" />
<text x="590.89" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (15,751 samples, 0.68%)</title><rect x="1001.3" y="1365" width="8.1" height="15.0" fill="rgb(219,29,4)" rx="2" ry="2" />
<text x="1004.33" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (272 samples, 0.01%)</title><rect x="1081.3" y="1253" width="0.2" height="15.0" fill="rgb(211,167,52)" rx="2" ry="2" />
<text x="1084.34" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (215 samples, 0.01%)</title><rect x="870.0" y="853" width="0.1" height="15.0" fill="rgb(239,128,6)" rx="2" ry="2" />
<text x="873.00" y="863.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (74,543 samples, 3.23%)</title><rect x="342.0" y="1413" width="38.1" height="15.0" fill="rgb(229,225,47)" rx="2" ry="2" />
<text x="345.02" y="1423.5" >cam..</text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (20,217 samples, 0.88%)</title><rect x="505.7" y="1317" width="10.3" height="15.0" fill="rgb(213,0,15)" rx="2" ry="2" />
<text x="508.68" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (77,729 samples, 3.37%)</title><rect x="631.2" y="757" width="39.8" height="15.0" fill="rgb(252,200,44)" rx="2" ry="2" />
<text x="634.24" y="767.5" >cam..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (596 samples, 0.03%)</title><rect x="537.5" y="1125" width="0.3" height="15.0" fill="rgb(234,76,48)" rx="2" ry="2" />
<text x="540.52" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (523 samples, 0.02%)</title><rect x="1115.2" y="1013" width="0.3" height="15.0" fill="rgb(249,148,28)" rx="2" ry="2" />
<text x="1118.23" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (351 samples, 0.02%)</title><rect x="237.3" y="1333" width="0.2" height="15.0" fill="rgb(213,83,11)" rx="2" ry="2" />
<text x="240.28" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,838 samples, 0.08%)</title><rect x="821.4" y="213" width="1.0" height="15.0" fill="rgb(222,123,24)" rx="2" ry="2" />
<text x="824.42" y="223.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (223 samples, 0.01%)</title><rect x="911.0" y="1333" width="0.1" height="15.0" fill="rgb(223,201,37)" rx="2" ry="2" />
<text x="914.00" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (788 samples, 0.03%)</title><rect x="434.5" y="1413" width="0.4" height="15.0" fill="rgb(248,56,6)" rx="2" ry="2" />
<text x="437.47" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (823 samples, 0.04%)</title><rect x="625.4" y="981" width="0.4" height="15.0" fill="rgb(236,175,30)" rx="2" ry="2" />
<text x="628.38" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (197 samples, 0.01%)</title><rect x="1005.2" y="1317" width="0.1" height="15.0" fill="rgb(239,184,9)" rx="2" ry="2" />
<text x="1008.17" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4109 (1,886 samples, 0.08%)</title><rect x="835.6" y="741" width="1.0" height="15.0" fill="rgb(235,186,10)" rx="2" ry="2" />
<text x="838.63" y="751.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (838 samples, 0.04%)</title><rect x="924.6" y="1541" width="0.4" height="15.0" fill="rgb(225,173,40)" rx="2" ry="2" />
<text x="927.61" y="1551.5" ></text>
</g>
<g >
<title>caml_fl_merge_block (1,180 samples, 0.05%)</title><rect x="864.4" y="741" width="0.6" height="15.0" fill="rgb(249,186,14)" rx="2" ry="2" />
<text x="867.38" y="751.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (561 samples, 0.02%)</title><rect x="1011.1" y="1365" width="0.3" height="15.0" fill="rgb(224,53,20)" rx="2" ry="2" />
<text x="1014.13" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (602 samples, 0.03%)</title><rect x="1179.3" y="1109" width="0.3" height="15.0" fill="rgb(230,61,44)" rx="2" ry="2" />
<text x="1182.29" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (468 samples, 0.02%)</title><rect x="764.5" y="1109" width="0.2" height="15.0" fill="rgb(246,38,21)" rx="2" ry="2" />
<text x="767.47" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,358 samples, 0.06%)</title><rect x="918.3" y="1445" width="0.7" height="15.0" fill="rgb(251,30,42)" rx="2" ry="2" />
<text x="921.34" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (1,153 samples, 0.05%)</title><rect x="719.9" y="1029" width="0.6" height="15.0" fill="rgb(246,192,17)" rx="2" ry="2" />
<text x="722.92" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (341 samples, 0.01%)</title><rect x="583.3" y="1269" width="0.2" height="15.0" fill="rgb(228,176,13)" rx="2" ry="2" />
<text x="586.29" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_485 (329 samples, 0.01%)</title><rect x="1065.0" y="1157" width="0.1" height="15.0" fill="rgb(207,206,17)" rx="2" ry="2" />
<text x="1067.98" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (198 samples, 0.01%)</title><rect x="1077.4" y="1029" width="0.1" height="15.0" fill="rgb(229,85,35)" rx="2" ry="2" />
<text x="1080.43" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__hash_5068 (292 samples, 0.01%)</title><rect x="284.4" y="1413" width="0.2" height="15.0" fill="rgb(248,173,2)" rx="2" ry="2" />
<text x="287.40" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (306 samples, 0.01%)</title><rect x="988.1" y="1301" width="0.1" height="15.0" fill="rgb(249,89,6)" rx="2" ry="2" />
<text x="991.09" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (7,758 samples, 0.34%)</title><rect x="995.6" y="1349" width="4.0" height="15.0" fill="rgb(213,36,18)" rx="2" ry="2" />
<text x="998.63" y="1359.5" ></text>
</g>
<g >
<title>camlUnix__read_491 (294 samples, 0.01%)</title><rect x="843.1" y="1301" width="0.1" height="15.0" fill="rgb(232,178,33)" rx="2" ry="2" />
<text x="846.08" y="1311.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (713 samples, 0.03%)</title><rect x="821.1" y="197" width="0.3" height="15.0" fill="rgb(213,77,23)" rx="2" ry="2" />
<text x="824.06" y="207.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (629 samples, 0.03%)</title><rect x="445.0" y="1413" width="0.4" height="15.0" fill="rgb(220,203,38)" rx="2" ry="2" />
<text x="448.04" y="1423.5" ></text>
</g>
<g >
<title>uECC_verify_stub (300 samples, 0.01%)</title><rect x="827.6" y="245" width="0.1" height="15.0" fill="rgb(244,37,45)" rx="2" ry="2" />
<text x="830.60" y="255.5" ></text>
</g>
<g >
<title>caml_garbage_collection (598 samples, 0.03%)</title><rect x="749.1" y="1045" width="0.4" height="15.0" fill="rgb(250,45,33)" rx="2" ry="2" />
<text x="752.15" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (1,538 samples, 0.07%)</title><rect x="500.9" y="1317" width="0.8" height="15.0" fill="rgb(218,119,50)" rx="2" ry="2" />
<text x="503.88" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_current_7621 (1,222 samples, 0.05%)</title><rect x="549.8" y="1285" width="0.6" height="15.0" fill="rgb(240,6,4)" rx="2" ry="2" />
<text x="552.81" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (289 samples, 0.01%)</title><rect x="201.1" y="1365" width="0.2" height="15.0" fill="rgb(208,115,16)" rx="2" ry="2" />
<text x="204.13" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__list_4201 (1,621 samples, 0.07%)</title><rect x="1163.9" y="709" width="0.8" height="15.0" fill="rgb(254,140,44)" rx="2" ry="2" />
<text x="1166.86" y="719.5" ></text>
</g>
<g >
<title>caml_garbage_collection (440 samples, 0.02%)</title><rect x="618.9" y="1221" width="0.2" height="15.0" fill="rgb(243,212,50)" rx="2" ry="2" />
<text x="621.92" y="1231.5" ></text>
</g>
<g >
<title>caml_curry3 (250 samples, 0.01%)</title><rect x="555.6" y="1269" width="0.1" height="15.0" fill="rgb(210,113,9)" rx="2" ry="2" />
<text x="558.60" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (328 samples, 0.01%)</title><rect x="538.0" y="1125" width="0.2" height="15.0" fill="rgb(217,114,31)" rx="2" ry="2" />
<text x="541.01" y="1135.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (391 samples, 0.02%)</title><rect x="918.7" y="1397" width="0.2" height="15.0" fill="rgb(236,101,48)" rx="2" ry="2" />
<text x="921.69" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (744 samples, 0.03%)</title><rect x="781.7" y="1093" width="0.4" height="15.0" fill="rgb(245,76,33)" rx="2" ry="2" />
<text x="784.75" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,024 samples, 0.04%)</title><rect x="225.1" y="1301" width="0.5" height="15.0" fill="rgb(250,46,45)" rx="2" ry="2" />
<text x="228.09" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (6,388 samples, 0.28%)</title><rect x="511.9" y="1285" width="3.3" height="15.0" fill="rgb(229,54,15)" rx="2" ry="2" />
<text x="514.92" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (341 samples, 0.01%)</title><rect x="774.1" y="1109" width="0.2" height="15.0" fill="rgb(241,227,36)" rx="2" ry="2" />
<text x="777.10" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (432 samples, 0.02%)</title><rect x="715.9" y="949" width="0.2" height="15.0" fill="rgb(253,156,16)" rx="2" ry="2" />
<text x="718.88" y="959.5" ></text>
</g>
<g >
<title>caml_call_gc (199 samples, 0.01%)</title><rect x="791.2" y="1029" width="0.1" height="15.0" fill="rgb(253,159,4)" rx="2" ry="2" />
<text x="794.22" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (485 samples, 0.02%)</title><rect x="816.6" y="197" width="0.3" height="15.0" fill="rgb(220,2,48)" rx="2" ry="2" />
<text x="819.64" y="207.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (338 samples, 0.01%)</title><rect x="773.5" y="1093" width="0.1" height="15.0" fill="rgb(214,54,22)" rx="2" ry="2" />
<text x="776.46" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (424 samples, 0.02%)</title><rect x="869.3" y="837" width="0.2" height="15.0" fill="rgb(228,157,44)" rx="2" ry="2" />
<text x="872.27" y="847.5" ></text>
</g>
<g >
<title>caml_alloc_string (2,056 samples, 0.09%)</title><rect x="255.1" y="1397" width="1.0" height="15.0" fill="rgb(233,176,44)" rx="2" ry="2" />
<text x="258.05" y="1407.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (351 samples, 0.02%)</title><rect x="829.3" y="229" width="0.2" height="15.0" fill="rgb(208,184,12)" rx="2" ry="2" />
<text x="832.29" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (264 samples, 0.01%)</title><rect x="992.9" y="1381" width="0.1" height="15.0" fill="rgb(233,225,11)" rx="2" ry="2" />
<text x="995.89" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (375 samples, 0.02%)</title><rect x="547.8" y="1237" width="0.2" height="15.0" fill="rgb(249,21,42)" rx="2" ry="2" />
<text x="550.85" y="1247.5" ></text>
</g>
<g >
<title>caml_apply5 (13,090 samples, 0.57%)</title><rect x="860.1" y="981" width="6.7" height="15.0" fill="rgb(214,155,49)" rx="2" ry="2" />
<text x="863.10" y="991.5" ></text>
</g>
<g >
<title>mark_slice (325 samples, 0.01%)</title><rect x="302.1" y="1365" width="0.1" height="15.0" fill="rgb(246,197,37)" rx="2" ry="2" />
<text x="305.07" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (4,991 samples, 0.22%)</title><rect x="725.2" y="1189" width="2.5" height="15.0" fill="rgb(223,182,52)" rx="2" ry="2" />
<text x="728.16" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (916 samples, 0.04%)</title><rect x="235.3" y="1333" width="0.5" height="15.0" fill="rgb(211,194,35)" rx="2" ry="2" />
<text x="238.34" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (233 samples, 0.01%)</title><rect x="709.3" y="997" width="0.1" height="15.0" fill="rgb(205,147,1)" rx="2" ry="2" />
<text x="712.33" y="1007.5" ></text>
</g>
<g >
<title>uECC_vli_rshift1 (328 samples, 0.01%)</title><rect x="653.2" y="149" width="0.1" height="15.0" fill="rgb(246,83,10)" rx="2" ry="2" />
<text x="656.16" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,344 samples, 0.10%)</title><rect x="987.3" y="1333" width="1.2" height="15.0" fill="rgb(218,40,24)" rx="2" ry="2" />
<text x="990.27" y="1343.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (278 samples, 0.01%)</title><rect x="326.5" y="1381" width="0.1" height="15.0" fill="rgb(237,129,33)" rx="2" ry="2" />
<text x="329.49" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (414 samples, 0.02%)</title><rect x="1162.3" y="517" width="0.2" height="15.0" fill="rgb(232,17,47)" rx="2" ry="2" />
<text x="1165.33" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208 samples, 0.01%)</title><rect x="862.5" y="693" width="0.1" height="15.0" fill="rgb(211,50,40)" rx="2" ry="2" />
<text x="865.54" y="703.5" ></text>
</g>
<g >
<title>mark_slice (911 samples, 0.04%)</title><rect x="844.1" y="1253" width="0.5" height="15.0" fill="rgb(233,55,15)" rx="2" ry="2" />
<text x="847.09" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__skip_28345 (398 samples, 0.02%)</title><rect x="769.6" y="1141" width="0.2" height="15.0" fill="rgb(214,219,12)" rx="2" ry="2" />
<text x="772.59" y="1151.5" ></text>
</g>
<g >
<title>uECC_vli_modMult (198 samples, 0.01%)</title><rect x="1152.0" y="165" width="0.1" height="15.0" fill="rgb(218,116,44)" rx="2" ry="2" />
<text x="1154.98" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (240 samples, 0.01%)</title><rect x="191.4" y="1109" width="0.1" height="15.0" fill="rgb(225,55,4)" rx="2" ry="2" />
<text x="194.42" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (2,361 samples, 0.10%)</title><rect x="1072.2" y="1157" width="1.3" height="15.0" fill="rgb(238,201,41)" rx="2" ry="2" />
<text x="1075.24" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,326 samples, 0.06%)</title><rect x="804.6" y="1029" width="0.7" height="15.0" fill="rgb(220,133,4)" rx="2" ry="2" />
<text x="807.58" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (487 samples, 0.02%)</title><rect x="207.6" y="1349" width="0.2" height="15.0" fill="rgb(224,93,37)" rx="2" ry="2" />
<text x="210.56" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (20,100 samples, 0.87%)</title><rect x="1168.8" y="1205" width="10.3" height="15.0" fill="rgb(249,78,5)" rx="2" ry="2" />
<text x="1171.81" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (3,354 samples, 0.15%)</title><rect x="598.9" y="1317" width="1.8" height="15.0" fill="rgb(222,8,24)" rx="2" ry="2" />
<text x="601.94" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (488 samples, 0.02%)</title><rect x="546.8" y="1317" width="0.2" height="15.0" fill="rgb(237,110,14)" rx="2" ry="2" />
<text x="549.78" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__$40_177 (585 samples, 0.03%)</title><rect x="682.3" y="1189" width="0.3" height="15.0" fill="rgb(222,46,21)" rx="2" ry="2" />
<text x="685.31" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (2,962 samples, 0.13%)</title><rect x="1039.8" y="1397" width="1.5" height="15.0" fill="rgb(242,150,19)" rx="2" ry="2" />
<text x="1042.78" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (305 samples, 0.01%)</title><rect x="613.9" y="1125" width="0.2" height="15.0" fill="rgb(247,215,41)" rx="2" ry="2" />
<text x="616.93" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,910 samples, 0.13%)</title><rect x="1020.2" y="1317" width="1.5" height="15.0" fill="rgb(214,99,2)" rx="2" ry="2" />
<text x="1023.23" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (324 samples, 0.01%)</title><rect x="796.6" y="1013" width="0.1" height="15.0" fill="rgb(233,78,33)" rx="2" ry="2" />
<text x="799.57" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (222 samples, 0.01%)</title><rect x="1031.5" y="1317" width="0.2" height="15.0" fill="rgb(252,203,5)" rx="2" ry="2" />
<text x="1034.55" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (451 samples, 0.02%)</title><rect x="848.7" y="1285" width="0.3" height="15.0" fill="rgb(237,124,41)" rx="2" ry="2" />
<text x="851.73" y="1295.5" ></text>
</g>
<g >
<title>caml_send1 (1,635 samples, 0.07%)</title><rect x="925.0" y="1573" width="0.9" height="15.0" fill="rgb(209,227,2)" rx="2" ry="2" />
<text x="928.05" y="1583.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (1,415 samples, 0.06%)</title><rect x="521.2" y="1317" width="0.8" height="15.0" fill="rgb(238,22,54)" rx="2" ry="2" />
<text x="524.25" y="1327.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (199 samples, 0.01%)</title><rect x="330.5" y="1413" width="0.1" height="15.0" fill="rgb(214,213,9)" rx="2" ry="2" />
<text x="333.55" y="1423.5" ></text>
</g>
<g >
<title>double_jacobian_default (648 samples, 0.03%)</title><rect x="1163.0" y="629" width="0.4" height="15.0" fill="rgb(216,167,35)" rx="2" ry="2" />
<text x="1166.02" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (422 samples, 0.02%)</title><rect x="864.2" y="725" width="0.2" height="15.0" fill="rgb(245,55,15)" rx="2" ry="2" />
<text x="867.16" y="735.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (224 samples, 0.01%)</title><rect x="880.5" y="949" width="0.1" height="15.0" fill="rgb(217,91,11)" rx="2" ry="2" />
<text x="883.53" y="959.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (468 samples, 0.02%)</title><rect x="882.3" y="997" width="0.2" height="15.0" fill="rgb(243,120,23)" rx="2" ry="2" />
<text x="885.28" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (202 samples, 0.01%)</title><rect x="852.8" y="1269" width="0.1" height="15.0" fill="rgb(244,100,49)" rx="2" ry="2" />
<text x="855.75" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (301 samples, 0.01%)</title><rect x="201.3" y="1365" width="0.1" height="15.0" fill="rgb(220,166,49)" rx="2" ry="2" />
<text x="204.28" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (274 samples, 0.01%)</title><rect x="546.1" y="1253" width="0.2" height="15.0" fill="rgb(246,143,51)" rx="2" ry="2" />
<text x="549.13" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (2,092 samples, 0.09%)</title><rect x="1172.8" y="885" width="1.1" height="15.0" fill="rgb(232,28,30)" rx="2" ry="2" />
<text x="1175.84" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (890 samples, 0.04%)</title><rect x="1092.0" y="917" width="0.5" height="15.0" fill="rgb(228,229,51)" rx="2" ry="2" />
<text x="1095.04" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_sub (364 samples, 0.02%)</title><rect x="666.3" y="149" width="0.1" height="15.0" fill="rgb(231,134,0)" rx="2" ry="2" />
<text x="669.26" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (425 samples, 0.02%)</title><rect x="698.4" y="981" width="0.2" height="15.0" fill="rgb(208,144,16)" rx="2" ry="2" />
<text x="701.38" y="991.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (9,891 samples, 0.43%)</title><rect x="867.9" y="1029" width="5.1" height="15.0" fill="rgb(246,49,50)" rx="2" ry="2" />
<text x="870.94" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (5,796 samples, 0.25%)</title><rect x="649.5" y="149" width="2.9" height="15.0" fill="rgb(227,84,18)" rx="2" ry="2" />
<text x="652.47" y="159.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,251 samples, 0.10%)</title><rect x="102.5" y="1541" width="1.1" height="15.0" fill="rgb(247,15,22)" rx="2" ry="2" />
<text x="105.47" y="1551.5" ></text>
</g>
<g >
<title>caml_garbage_collection (915 samples, 0.04%)</title><rect x="496.8" y="1269" width="0.4" height="15.0" fill="rgb(236,121,0)" rx="2" ry="2" />
<text x="499.76" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (395 samples, 0.02%)</title><rect x="612.9" y="1141" width="0.2" height="15.0" fill="rgb(205,46,23)" rx="2" ry="2" />
<text x="615.90" y="1151.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (311 samples, 0.01%)</title><rect x="102.5" y="1493" width="0.1" height="15.0" fill="rgb(227,172,28)" rx="2" ry="2" />
<text x="105.49" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4070 (428 samples, 0.02%)</title><rect x="671.5" y="533" width="0.2" height="15.0" fill="rgb(253,148,28)" rx="2" ry="2" />
<text x="674.47" y="543.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (240 samples, 0.01%)</title><rect x="766.7" y="1029" width="0.1" height="15.0" fill="rgb(247,57,47)" rx="2" ry="2" />
<text x="769.70" y="1039.5" ></text>
</g>
<g >
<title>sweep_slice (763 samples, 0.03%)</title><rect x="889.3" y="1317" width="0.3" height="15.0" fill="rgb(205,81,7)" rx="2" ry="2" />
<text x="892.25" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (265,539 samples, 11.50%)</title><rect x="1045.0" y="1381" width="135.7" height="15.0" fill="rgb(207,72,38)" rx="2" ry="2" />
<text x="1047.99" y="1391.5" >camlLwt__iter_cal..</text>
</g>
<g >
<title>uECC_vli_mult (887 samples, 0.04%)</title><rect x="1152.4" y="149" width="0.4" height="15.0" fill="rgb(242,17,49)" rx="2" ry="2" />
<text x="1155.36" y="159.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (993 samples, 0.04%)</title><rect x="577.2" y="645" width="0.5" height="15.0" fill="rgb(228,206,24)" rx="2" ry="2" />
<text x="580.19" y="655.5" ></text>
</g>
<g >
<title>mark_slice (517 samples, 0.02%)</title><rect x="434.5" y="1381" width="0.3" height="15.0" fill="rgb(221,212,1)" rx="2" ry="2" />
<text x="437.54" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (1,874 samples, 0.08%)</title><rect x="533.1" y="1141" width="1.0" height="15.0" fill="rgb(254,73,51)" rx="2" ry="2" />
<text x="536.15" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (751 samples, 0.03%)</title><rect x="217.1" y="1285" width="0.4" height="15.0" fill="rgb(224,205,23)" rx="2" ry="2" />
<text x="220.12" y="1295.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (6,054 samples, 0.26%)</title><rect x="299.8" y="1429" width="3.1" height="15.0" fill="rgb(252,123,4)" rx="2" ry="2" />
<text x="302.84" y="1439.5" ></text>
</g>
<g >
<title>muladd (422 samples, 0.02%)</title><rect x="1095.2" y="37" width="0.2" height="15.0" fill="rgb(248,182,18)" rx="2" ry="2" />
<text x="1098.20" y="47.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (680 samples, 0.03%)</title><rect x="1058.8" y="1125" width="0.3" height="15.0" fill="rgb(253,148,39)" rx="2" ry="2" />
<text x="1061.80" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (440 samples, 0.02%)</title><rect x="810.8" y="1061" width="0.2" height="15.0" fill="rgb(208,106,29)" rx="2" ry="2" />
<text x="813.81" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__map__bal_160 (243 samples, 0.01%)</title><rect x="684.3" y="1077" width="0.1" height="15.0" fill="rgb(233,170,4)" rx="2" ry="2" />
<text x="687.26" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (592 samples, 0.03%)</title><rect x="514.6" y="1237" width="0.3" height="15.0" fill="rgb(230,208,53)" rx="2" ry="2" />
<text x="517.63" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (215 samples, 0.01%)</title><rect x="703.0" y="917" width="0.1" height="15.0" fill="rgb(209,30,33)" rx="2" ry="2" />
<text x="705.99" y="927.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,743 samples, 0.12%)</title><rect x="728.3" y="1173" width="1.4" height="15.0" fill="rgb(240,166,42)" rx="2" ry="2" />
<text x="731.30" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (2,048 samples, 0.09%)</title><rect x="1050.4" y="1221" width="1.0" height="15.0" fill="rgb(213,22,40)" rx="2" ry="2" />
<text x="1053.36" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (9,774 samples, 0.42%)</title><rect x="609.9" y="1221" width="5.0" height="15.0" fill="rgb(212,147,37)" rx="2" ry="2" />
<text x="612.93" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (1,211 samples, 0.05%)</title><rect x="1143.0" y="1045" width="0.6" height="15.0" fill="rgb(227,7,37)" rx="2" ry="2" />
<text x="1146.00" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_853 (376 samples, 0.02%)</title><rect x="1038.3" y="1365" width="0.2" height="15.0" fill="rgb(235,71,22)" rx="2" ry="2" />
<text x="1041.31" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,806 samples, 1.55%)</title><rect x="1094.5" y="485" width="18.3" height="15.0" fill="rgb(242,174,22)" rx="2" ry="2" />
<text x="1097.53" y="495.5" ></text>
</g>
<g >
<title>mark_slice_darken (212 samples, 0.01%)</title><rect x="616.5" y="1141" width="0.2" height="15.0" fill="rgb(238,131,27)" rx="2" ry="2" />
<text x="619.55" y="1151.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (405 samples, 0.02%)</title><rect x="1077.2" y="1061" width="0.2" height="15.0" fill="rgb(222,167,47)" rx="2" ry="2" />
<text x="1080.16" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (751 samples, 0.03%)</title><rect x="563.0" y="1269" width="0.4" height="15.0" fill="rgb(247,51,48)" rx="2" ry="2" />
<text x="566.04" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (287 samples, 0.01%)</title><rect x="703.5" y="933" width="0.1" height="15.0" fill="rgb(211,122,28)" rx="2" ry="2" />
<text x="706.48" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (434 samples, 0.02%)</title><rect x="1049.7" y="1253" width="0.2" height="15.0" fill="rgb(229,155,6)" rx="2" ry="2" />
<text x="1052.67" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,771 samples, 0.08%)</title><rect x="339.0" y="1349" width="1.0" height="15.0" fill="rgb(244,171,44)" rx="2" ry="2" />
<text x="342.05" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (298 samples, 0.01%)</title><rect x="757.1" y="1045" width="0.2" height="15.0" fill="rgb(216,163,1)" rx="2" ry="2" />
<text x="760.11" y="1055.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (437 samples, 0.02%)</title><rect x="1175.2" y="981" width="0.2" height="15.0" fill="rgb(244,69,27)" rx="2" ry="2" />
<text x="1178.19" y="991.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (576 samples, 0.02%)</title><rect x="848.7" y="1301" width="0.3" height="15.0" fill="rgb(247,51,53)" rx="2" ry="2" />
<text x="851.73" y="1311.5" ></text>
</g>
<g >
<title>blake2b_compress (2,231 samples, 0.10%)</title><rect x="303.2" y="1365" width="1.2" height="15.0" fill="rgb(207,179,15)" rx="2" ry="2" />
<text x="306.24" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (324 samples, 0.01%)</title><rect x="236.3" y="1301" width="0.1" height="15.0" fill="rgb(252,65,19)" rx="2" ry="2" />
<text x="239.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2662 (248 samples, 0.01%)</title><rect x="202.3" y="1365" width="0.1" height="15.0" fill="rgb(217,151,53)" rx="2" ry="2" />
<text x="205.32" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (1,632 samples, 0.07%)</title><rect x="397.4" y="1445" width="0.8" height="15.0" fill="rgb(234,100,49)" rx="2" ry="2" />
<text x="400.35" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (889 samples, 0.04%)</title><rect x="620.0" y="1029" width="0.5" height="15.0" fill="rgb(228,229,22)" rx="2" ry="2" />
<text x="623.00" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Main__apply_operation_3177 (25,753 samples, 1.12%)</title><rect x="1143.9" y="341" width="13.2" height="15.0" fill="rgb(209,220,35)" rx="2" ry="2" />
<text x="1146.90" y="351.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (1,209 samples, 0.05%)</title><rect x="135.7" y="1365" width="0.6" height="15.0" fill="rgb(242,141,18)" rx="2" ry="2" />
<text x="138.73" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (876 samples, 0.04%)</title><rect x="245.5" y="1365" width="0.5" height="15.0" fill="rgb(222,189,18)" rx="2" ry="2" />
<text x="248.51" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,817 samples, 1.55%)</title><rect x="1094.5" y="565" width="18.3" height="15.0" fill="rgb(245,205,31)" rx="2" ry="2" />
<text x="1097.53" y="575.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (324 samples, 0.01%)</title><rect x="1093.2" y="933" width="0.1" height="15.0" fill="rgb(213,198,2)" rx="2" ry="2" />
<text x="1096.15" y="943.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (6,947 samples, 0.30%)</title><rect x="868.4" y="949" width="3.5" height="15.0" fill="rgb(220,175,44)" rx="2" ry="2" />
<text x="871.37" y="959.5" ></text>
</g>
<g >
<title>caml_call_gc (701 samples, 0.03%)</title><rect x="784.7" y="1125" width="0.4" height="15.0" fill="rgb(205,7,41)" rx="2" ry="2" />
<text x="787.75" y="1135.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,100 samples, 0.05%)</title><rect x="1088.2" y="805" width="0.6" height="15.0" fill="rgb(230,64,3)" rx="2" ry="2" />
<text x="1091.21" y="815.5" ></text>
</g>
<g >
<title>caml_string_length (334 samples, 0.01%)</title><rect x="366.7" y="1301" width="0.1" height="15.0" fill="rgb(252,147,17)" rx="2" ry="2" />
<text x="369.68" y="1311.5" ></text>
</g>
<g >
<title>caml_darken (197 samples, 0.01%)</title><rect x="789.7" y="1045" width="0.1" height="15.0" fill="rgb(214,80,15)" rx="2" ry="2" />
<text x="792.66" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (1,358 samples, 0.06%)</title><rect x="200.0" y="1397" width="0.7" height="15.0" fill="rgb(211,195,24)" rx="2" ry="2" />
<text x="203.00" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (1,461 samples, 0.06%)</title><rect x="235.8" y="1381" width="0.8" height="15.0" fill="rgb(224,20,42)" rx="2" ry="2" />
<text x="238.81" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,339 samples, 0.06%)</title><rect x="234.1" y="1349" width="0.7" height="15.0" fill="rgb(237,172,41)" rx="2" ry="2" />
<text x="237.15" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_825 (626 samples, 0.03%)</title><rect x="1179.9" y="1317" width="0.3" height="15.0" fill="rgb(235,15,49)" rx="2" ry="2" />
<text x="1182.91" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_general_951 (393,623 samples, 17.05%)</title><rect x="982.4" y="1493" width="201.3" height="15.0" fill="rgb(250,46,6)" rx="2" ry="2" />
<text x="985.44" y="1503.5" >camlLwt__wakeup_general_951</text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,322 samples, 0.06%)</title><rect x="577.0" y="1077" width="0.7" height="15.0" fill="rgb(215,159,7)" rx="2" ry="2" />
<text x="580.03" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,167 samples, 0.05%)</title><rect x="1154.4" y="149" width="0.6" height="15.0" fill="rgb(209,30,6)" rx="2" ry="2" />
<text x="1157.42" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1528 (1,098 samples, 0.05%)</title><rect x="572.7" y="1269" width="0.5" height="15.0" fill="rgb(225,214,34)" rx="2" ry="2" />
<text x="575.65" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__commit_30907 (1,898 samples, 0.08%)</title><rect x="835.6" y="821" width="1.0" height="15.0" fill="rgb(214,32,33)" rx="2" ry="2" />
<text x="838.63" y="831.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (950 samples, 0.04%)</title><rect x="572.7" y="1189" width="0.5" height="15.0" fill="rgb(227,195,41)" rx="2" ry="2" />
<text x="575.70" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4609 (12,144 samples, 0.53%)</title><rect x="1133.1" y="1061" width="6.2" height="15.0" fill="rgb(239,124,11)" rx="2" ry="2" />
<text x="1136.10" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (665 samples, 0.03%)</title><rect x="777.7" y="1045" width="0.3" height="15.0" fill="rgb(229,57,53)" rx="2" ry="2" />
<text x="780.66" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (869 samples, 0.04%)</title><rect x="1008.7" y="1349" width="0.4" height="15.0" fill="rgb(213,75,22)" rx="2" ry="2" />
<text x="1011.67" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__finalize_1515 (256 samples, 0.01%)</title><rect x="551.1" y="1237" width="0.1" height="15.0" fill="rgb(238,132,5)" rx="2" ry="2" />
<text x="554.09" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (645 samples, 0.03%)</title><rect x="497.5" y="1253" width="0.4" height="15.0" fill="rgb(242,59,14)" rx="2" ry="2" />
<text x="500.53" y="1263.5" ></text>
</g>
<g >
<title>uECC_verify_stub (4,789 samples, 0.21%)</title><rect x="1144.4" y="181" width="2.5" height="15.0" fill="rgb(211,124,48)" rx="2" ry="2" />
<text x="1147.41" y="191.5" ></text>
</g>
<g >
<title>uECC_verify_stub (3,371 samples, 0.15%)</title><rect x="1160.2" y="229" width="1.7" height="15.0" fill="rgb(226,123,22)" rx="2" ry="2" />
<text x="1163.17" y="239.5" ></text>
</g>
<g >
<title>mark_slice_darken (295 samples, 0.01%)</title><rect x="700.0" y="933" width="0.2" height="15.0" fill="rgb(239,136,21)" rx="2" ry="2" />
<text x="703.02" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__resize_266 (683 samples, 0.03%)</title><rect x="19.0" y="1653" width="0.4" height="15.0" fill="rgb(234,203,6)" rx="2" ry="2" />
<text x="22.04" y="1663.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (198 samples, 0.01%)</title><rect x="786.6" y="1109" width="0.1" height="15.0" fill="rgb(231,223,2)" rx="2" ry="2" />
<text x="789.60" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__find_5807 (1,074 samples, 0.05%)</title><rect x="595.1" y="1349" width="0.6" height="15.0" fill="rgb(216,180,24)" rx="2" ry="2" />
<text x="598.15" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (244 samples, 0.01%)</title><rect x="236.4" y="1333" width="0.2" height="15.0" fill="rgb(207,155,44)" rx="2" ry="2" />
<text x="239.43" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Node__find_3011 (646 samples, 0.03%)</title><rect x="500.0" y="1301" width="0.3" height="15.0" fill="rgb(233,200,47)" rx="2" ry="2" />
<text x="502.97" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_894 (1,958 samples, 0.08%)</title><rect x="893.0" y="1445" width="1.0" height="15.0" fill="rgb(225,130,27)" rx="2" ry="2" />
<text x="896.00" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (7,327 samples, 0.32%)</title><rect x="1055.5" y="1189" width="3.8" height="15.0" fill="rgb(250,210,21)" rx="2" ry="2" />
<text x="1058.53" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (197 samples, 0.01%)</title><rect x="616.9" y="1205" width="0.1" height="15.0" fill="rgb(218,113,22)" rx="2" ry="2" />
<text x="619.94" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (588 samples, 0.03%)</title><rect x="207.5" y="1381" width="0.3" height="15.0" fill="rgb(238,191,44)" rx="2" ry="2" />
<text x="210.51" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (552 samples, 0.02%)</title><rect x="442.8" y="1317" width="0.2" height="15.0" fill="rgb(219,140,34)" rx="2" ry="2" />
<text x="445.76" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (402 samples, 0.02%)</title><rect x="1074.1" y="1093" width="0.2" height="15.0" fill="rgb(214,59,34)" rx="2" ry="2" />
<text x="1077.07" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (9,235 samples, 0.40%)</title><rect x="868.1" y="981" width="4.7" height="15.0" fill="rgb(214,77,52)" rx="2" ry="2" />
<text x="871.11" y="991.5" ></text>
</g>
<g >
<title>mark_slice_darken (435 samples, 0.02%)</title><rect x="140.3" y="1317" width="0.2" height="15.0" fill="rgb(207,221,53)" rx="2" ry="2" />
<text x="143.30" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (406 samples, 0.02%)</title><rect x="709.6" y="1013" width="0.2" height="15.0" fill="rgb(230,26,1)" rx="2" ry="2" />
<text x="712.60" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (329 samples, 0.01%)</title><rect x="793.3" y="965" width="0.2" height="15.0" fill="rgb(211,72,34)" rx="2" ry="2" />
<text x="796.35" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,599 samples, 0.07%)</title><rect x="151.9" y="1413" width="0.8" height="15.0" fill="rgb(222,95,26)" rx="2" ry="2" />
<text x="154.87" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (78,342 samples, 3.39%)</title><rect x="682.9" y="1141" width="40.1" height="15.0" fill="rgb(237,100,41)" rx="2" ry="2" />
<text x="685.94" y="1151.5" >cam..</text>
</g>
<g >
<title>camlStdlib__map__add_188 (1,573 samples, 0.07%)</title><rect x="619.8" y="1157" width="0.8" height="15.0" fill="rgb(216,171,53)" rx="2" ry="2" />
<text x="622.81" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (10,631 samples, 0.46%)</title><rect x="1146.9" y="229" width="5.4" height="15.0" fill="rgb(207,160,41)" rx="2" ry="2" />
<text x="1149.86" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (352 samples, 0.02%)</title><rect x="744.8" y="1061" width="0.2" height="15.0" fill="rgb(236,0,25)" rx="2" ry="2" />
<text x="747.77" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,242 samples, 0.10%)</title><rect x="913.7" y="1397" width="1.2" height="15.0" fill="rgb(237,137,51)" rx="2" ry="2" />
<text x="916.72" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (12,331 samples, 0.53%)</title><rect x="1133.1" y="1077" width="6.3" height="15.0" fill="rgb(214,125,36)" rx="2" ry="2" />
<text x="1136.08" y="1087.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (893 samples, 0.04%)</title><rect x="178.1" y="1285" width="0.5" height="15.0" fill="rgb(239,185,7)" rx="2" ry="2" />
<text x="181.15" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (297 samples, 0.01%)</title><rect x="788.0" y="1125" width="0.2" height="15.0" fill="rgb(253,143,46)" rx="2" ry="2" />
<text x="791.05" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (567 samples, 0.02%)</title><rect x="687.1" y="1029" width="0.3" height="15.0" fill="rgb(234,16,41)" rx="2" ry="2" />
<text x="690.12" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,328 samples, 0.06%)</title><rect x="1077.1" y="1141" width="0.7" height="15.0" fill="rgb(247,181,53)" rx="2" ry="2" />
<text x="1080.10" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_lower_7615 (7,919 samples, 0.34%)</title><rect x="550.4" y="1285" width="4.1" height="15.0" fill="rgb(229,215,15)" rx="2" ry="2" />
<text x="553.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (1,088 samples, 0.05%)</title><rect x="765.5" y="1093" width="0.5" height="15.0" fill="rgb(248,154,45)" rx="2" ry="2" />
<text x="768.47" y="1103.5" ></text>
</g>
<g >
<title>caml_apply2 (396 samples, 0.02%)</title><rect x="897.8" y="1477" width="0.2" height="15.0" fill="rgb(213,144,15)" rx="2" ry="2" />
<text x="900.76" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (220 samples, 0.01%)</title><rect x="722.2" y="1029" width="0.1" height="15.0" fill="rgb(230,40,51)" rx="2" ry="2" />
<text x="725.19" y="1039.5" ></text>
</g>
<g >
<title>sweep_slice (458 samples, 0.02%)</title><rect x="379.8" y="1349" width="0.3" height="15.0" fill="rgb(231,215,48)" rx="2" ry="2" />
<text x="382.83" y="1359.5" ></text>
</g>
<g >
<title>XYcZ_add (1,668 samples, 0.07%)</title><rect x="1095.1" y="85" width="0.8" height="15.0" fill="rgb(205,209,21)" rx="2" ry="2" />
<text x="1098.09" y="95.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (268 samples, 0.01%)</title><rect x="907.1" y="1333" width="0.1" height="15.0" fill="rgb(223,206,14)" rx="2" ry="2" />
<text x="910.09" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (615 samples, 0.03%)</title><rect x="232.6" y="1333" width="0.4" height="15.0" fill="rgb(245,202,24)" rx="2" ry="2" />
<text x="235.65" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (630 samples, 0.03%)</title><rect x="729.1" y="1109" width="0.4" height="15.0" fill="rgb(224,35,38)" rx="2" ry="2" />
<text x="732.13" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (200 samples, 0.01%)</title><rect x="219.6" y="1333" width="0.1" height="15.0" fill="rgb(228,130,4)" rx="2" ry="2" />
<text x="222.63" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (689 samples, 0.03%)</title><rect x="791.4" y="1029" width="0.3" height="15.0" fill="rgb(233,75,40)" rx="2" ry="2" />
<text x="794.38" y="1039.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (516 samples, 0.02%)</title><rect x="142.6" y="1381" width="0.3" height="15.0" fill="rgb(227,58,36)" rx="2" ry="2" />
<text x="145.59" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (436 samples, 0.02%)</title><rect x="1057.2" y="1077" width="0.3" height="15.0" fill="rgb(239,223,29)" rx="2" ry="2" />
<text x="1060.25" y="1087.5" ></text>
</g>
<g >
<title>uECC_verify (988 samples, 0.04%)</title><rect x="1094.6" y="85" width="0.5" height="15.0" fill="rgb(239,114,31)" rx="2" ry="2" />
<text x="1097.56" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15415 (743 samples, 0.03%)</title><rect x="622.3" y="1221" width="0.4" height="15.0" fill="rgb(228,16,17)" rx="2" ry="2" />
<text x="625.29" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_list_11276 (533 samples, 0.02%)</title><rect x="525.9" y="1317" width="0.3" height="15.0" fill="rgb(249,96,19)" rx="2" ry="2" />
<text x="528.94" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (661 samples, 0.03%)</title><rect x="137.9" y="1333" width="0.4" height="15.0" fill="rgb(252,12,16)" rx="2" ry="2" />
<text x="140.93" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (75,977 samples, 3.29%)</title><rect x="631.2" y="565" width="38.9" height="15.0" fill="rgb(215,121,5)" rx="2" ry="2" />
<text x="634.24" y="575.5" >cam..</text>
</g>
<g >
<title>caml_garbage_collection (198 samples, 0.01%)</title><rect x="691.6" y="981" width="0.1" height="15.0" fill="rgb(234,122,25)" rx="2" ry="2" />
<text x="694.60" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (4,279 samples, 0.19%)</title><rect x="997.0" y="1317" width="2.2" height="15.0" fill="rgb(227,178,28)" rx="2" ry="2" />
<text x="999.96" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (529 samples, 0.02%)</title><rect x="1006.5" y="1301" width="0.3" height="15.0" fill="rgb(208,70,17)" rx="2" ry="2" />
<text x="1009.52" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (646 samples, 0.03%)</title><rect x="856.7" y="965" width="0.4" height="15.0" fill="rgb(236,215,35)" rx="2" ry="2" />
<text x="859.74" y="975.5" ></text>
</g>
<g >
<title>sweep_slice (252 samples, 0.01%)</title><rect x="844.6" y="1253" width="0.1" height="15.0" fill="rgb(208,182,31)" rx="2" ry="2" />
<text x="847.56" y="1263.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (248 samples, 0.01%)</title><rect x="267.7" y="1381" width="0.1" height="15.0" fill="rgb(241,191,29)" rx="2" ry="2" />
<text x="270.68" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (304 samples, 0.01%)</title><rect x="264.8" y="1333" width="0.1" height="15.0" fill="rgb(241,192,44)" rx="2" ry="2" />
<text x="267.79" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (279 samples, 0.01%)</title><rect x="1163.2" y="613" width="0.1" height="15.0" fill="rgb(224,70,34)" rx="2" ry="2" />
<text x="1166.19" y="623.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (656 samples, 0.03%)</title><rect x="152.1" y="1365" width="0.3" height="15.0" fill="rgb(239,185,50)" rx="2" ry="2" />
<text x="155.05" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (210 samples, 0.01%)</title><rect x="1156.3" y="165" width="0.1" height="15.0" fill="rgb(242,28,1)" rx="2" ry="2" />
<text x="1159.31" y="175.5" ></text>
</g>
<g >
<title>caml_call_gc (3,436 samples, 0.15%)</title><rect x="124.2" y="1445" width="1.7" height="15.0" fill="rgb(247,1,14)" rx="2" ry="2" />
<text x="127.18" y="1455.5" ></text>
</g>
<g >
<title>uECC_vli_square (230 samples, 0.01%)</title><rect x="820.1" y="197" width="0.1" height="15.0" fill="rgb(221,10,35)" rx="2" ry="2" />
<text x="823.08" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,508 samples, 0.07%)</title><rect x="734.7" y="1109" width="0.7" height="15.0" fill="rgb(234,45,38)" rx="2" ry="2" />
<text x="737.66" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (851 samples, 0.04%)</title><rect x="212.2" y="1365" width="0.4" height="15.0" fill="rgb(207,184,3)" rx="2" ry="2" />
<text x="215.16" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (228 samples, 0.01%)</title><rect x="1143.3" y="1013" width="0.1" height="15.0" fill="rgb(240,1,13)" rx="2" ry="2" />
<text x="1146.28" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (307 samples, 0.01%)</title><rect x="1180.1" y="1301" width="0.1" height="15.0" fill="rgb(227,23,39)" rx="2" ry="2" />
<text x="1183.07" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (511 samples, 0.02%)</title><rect x="233.9" y="1333" width="0.2" height="15.0" fill="rgb(231,42,12)" rx="2" ry="2" />
<text x="236.89" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (823 samples, 0.04%)</title><rect x="730.3" y="1205" width="0.4" height="15.0" fill="rgb(248,124,30)" rx="2" ry="2" />
<text x="733.33" y="1215.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (339 samples, 0.01%)</title><rect x="912.6" y="1381" width="0.2" height="15.0" fill="rgb(240,227,33)" rx="2" ry="2" />
<text x="915.61" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (266 samples, 0.01%)</title><rect x="470.1" y="1269" width="0.2" height="15.0" fill="rgb(238,132,16)" rx="2" ry="2" />
<text x="473.15" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,715 samples, 0.12%)</title><rect x="1020.3" y="1301" width="1.4" height="15.0" fill="rgb(254,66,40)" rx="2" ry="2" />
<text x="1023.33" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (501 samples, 0.02%)</title><rect x="773.6" y="1093" width="0.3" height="15.0" fill="rgb(209,210,30)" rx="2" ry="2" />
<text x="776.63" y="1103.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (544 samples, 0.02%)</title><rect x="1108.3" y="85" width="0.3" height="15.0" fill="rgb(208,99,4)" rx="2" ry="2" />
<text x="1111.29" y="95.5" ></text>
</g>
<g >
<title>uECC_vli_add (457 samples, 0.02%)</title><rect x="659.3" y="133" width="0.2" height="15.0" fill="rgb(242,51,54)" rx="2" ry="2" />
<text x="662.25" y="143.5" ></text>
</g>
<g >
<title>mark_slice_darken (352 samples, 0.02%)</title><rect x="498.0" y="1205" width="0.2" height="15.0" fill="rgb(205,156,52)" rx="2" ry="2" />
<text x="500.99" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (1,749 samples, 0.08%)</title><rect x="296.4" y="1413" width="0.9" height="15.0" fill="rgb(225,35,47)" rx="2" ry="2" />
<text x="299.42" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (882 samples, 0.04%)</title><rect x="290.5" y="1365" width="0.5" height="15.0" fill="rgb(240,186,39)" rx="2" ry="2" />
<text x="293.53" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_sub (459 samples, 0.02%)</title><rect x="641.8" y="117" width="0.2" height="15.0" fill="rgb(241,27,13)" rx="2" ry="2" />
<text x="644.79" y="127.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (736 samples, 0.03%)</title><rect x="1095.9" y="69" width="0.4" height="15.0" fill="rgb(219,159,29)" rx="2" ry="2" />
<text x="1098.94" y="79.5" ></text>
</g>
<g >
<title>caml_obj_make_forward (892 samples, 0.04%)</title><rect x="299.4" y="1429" width="0.4" height="15.0" fill="rgb(244,154,38)" rx="2" ry="2" />
<text x="302.35" y="1439.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (2,506 samples, 0.11%)</title><rect x="298.5" y="1445" width="1.3" height="15.0" fill="rgb(227,41,30)" rx="2" ry="2" />
<text x="301.53" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (1,108 samples, 0.05%)</title><rect x="534.1" y="1141" width="0.6" height="15.0" fill="rgb(214,205,39)" rx="2" ry="2" />
<text x="537.14" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,532 samples, 0.07%)</title><rect x="915.1" y="1429" width="0.8" height="15.0" fill="rgb(244,117,54)" rx="2" ry="2" />
<text x="918.10" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__case_v_619 (475 samples, 0.02%)</title><rect x="806.8" y="1061" width="0.2" height="15.0" fill="rgb(221,182,23)" rx="2" ry="2" />
<text x="809.77" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (219 samples, 0.01%)</title><rect x="1090.3" y="885" width="0.1" height="15.0" fill="rgb(207,12,36)" rx="2" ry="2" />
<text x="1093.29" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (295 samples, 0.01%)</title><rect x="693.8" y="885" width="0.2" height="15.0" fill="rgb(221,78,28)" rx="2" ry="2" />
<text x="696.82" y="895.5" ></text>
</g>
<g >
<title>camlIrmin__Node__fun_6245 (859 samples, 0.04%)</title><rect x="841.0" y="1205" width="0.4" height="15.0" fill="rgb(248,218,17)" rx="2" ry="2" />
<text x="843.96" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (582 samples, 0.03%)</title><rect x="184.1" y="1349" width="0.3" height="15.0" fill="rgb(206,8,47)" rx="2" ry="2" />
<text x="187.06" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,261 samples, 1.57%)</title><rect x="1094.5" y="741" width="18.6" height="15.0" fill="rgb(212,68,4)" rx="2" ry="2" />
<text x="1097.53" y="751.5" ></text>
</g>
<g >
<title>caml_garbage_collection (641 samples, 0.03%)</title><rect x="185.2" y="1333" width="0.3" height="15.0" fill="rgb(252,165,42)" rx="2" ry="2" />
<text x="188.21" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (310 samples, 0.01%)</title><rect x="1171.1" y="901" width="0.2" height="15.0" fill="rgb(250,70,27)" rx="2" ry="2" />
<text x="1174.15" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (614 samples, 0.03%)</title><rect x="1122.6" y="965" width="0.3" height="15.0" fill="rgb(241,224,24)" rx="2" ry="2" />
<text x="1125.60" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (263 samples, 0.01%)</title><rect x="858.8" y="965" width="0.1" height="15.0" fill="rgb(253,182,21)" rx="2" ry="2" />
<text x="861.76" y="975.5" ></text>
</g>
<g >
<title>mul2add (431 samples, 0.02%)</title><rect x="837.5" y="773" width="0.2" height="15.0" fill="rgb(229,100,46)" rx="2" ry="2" />
<text x="840.48" y="783.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,264 samples, 0.05%)</title><rect x="225.0" y="1317" width="0.6" height="15.0" fill="rgb(235,50,5)" rx="2" ry="2" />
<text x="227.96" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (258 samples, 0.01%)</title><rect x="345.1" y="1301" width="0.1" height="15.0" fill="rgb(224,32,47)" rx="2" ry="2" />
<text x="348.12" y="1311.5" ></text>
</g>
<g >
<title>camlLwt_mutex__fun_151 (1,855 samples, 0.08%)</title><rect x="916.6" y="1461" width="1.0" height="15.0" fill="rgb(247,211,1)" rx="2" ry="2" />
<text x="919.60" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (809 samples, 0.04%)</title><rect x="1017.0" y="1349" width="0.4" height="15.0" fill="rgb(219,92,51)" rx="2" ry="2" />
<text x="1020.03" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (455 samples, 0.02%)</title><rect x="433.0" y="1333" width="0.2" height="15.0" fill="rgb(229,223,50)" rx="2" ry="2" />
<text x="436.00" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (279 samples, 0.01%)</title><rect x="1086.1" y="933" width="0.1" height="15.0" fill="rgb(216,105,30)" rx="2" ry="2" />
<text x="1089.10" y="943.5" ></text>
</g>
<g >
<title>caml_curry5_4 (231 samples, 0.01%)</title><rect x="761.9" y="1077" width="0.1" height="15.0" fill="rgb(227,186,16)" rx="2" ry="2" />
<text x="764.90" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (295 samples, 0.01%)</title><rect x="253.3" y="1333" width="0.1" height="15.0" fill="rgb(248,22,15)" rx="2" ry="2" />
<text x="256.25" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,237 samples, 1.83%)</title><rect x="948.9" y="1525" width="21.6" height="15.0" fill="rgb(220,221,34)" rx="2" ry="2" />
<text x="951.90" y="1535.5" >[..</text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (1,817 samples, 0.08%)</title><rect x="177.7" y="1317" width="0.9" height="15.0" fill="rgb(205,72,4)" rx="2" ry="2" />
<text x="180.69" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (227 samples, 0.01%)</title><rect x="766.1" y="1061" width="0.1" height="15.0" fill="rgb(245,213,16)" rx="2" ry="2" />
<text x="769.11" y="1071.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (209 samples, 0.01%)</title><rect x="211.5" y="1301" width="0.1" height="15.0" fill="rgb(219,160,25)" rx="2" ry="2" />
<text x="214.53" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (206 samples, 0.01%)</title><rect x="607.4" y="1237" width="0.1" height="15.0" fill="rgb(215,215,17)" rx="2" ry="2" />
<text x="610.37" y="1247.5" ></text>
</g>
<g >
<title>muladd (589 samples, 0.03%)</title><rect x="823.3" y="197" width="0.3" height="15.0" fill="rgb(206,50,38)" rx="2" ry="2" />
<text x="826.28" y="207.5" ></text>
</g>
<g >
<title>sweep_slice (726 samples, 0.03%)</title><rect x="896.5" y="1381" width="0.4" height="15.0" fill="rgb(208,18,32)" rx="2" ry="2" />
<text x="899.50" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (737 samples, 0.03%)</title><rect x="232.6" y="1365" width="0.4" height="15.0" fill="rgb(242,34,5)" rx="2" ry="2" />
<text x="235.58" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (212 samples, 0.01%)</title><rect x="501.8" y="1253" width="0.1" height="15.0" fill="rgb(233,17,51)" rx="2" ry="2" />
<text x="504.78" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (11,983 samples, 0.52%)</title><rect x="509.2" y="1301" width="6.1" height="15.0" fill="rgb(241,139,13)" rx="2" ry="2" />
<text x="512.16" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (565 samples, 0.02%)</title><rect x="610.6" y="1157" width="0.3" height="15.0" fill="rgb(252,207,12)" rx="2" ry="2" />
<text x="613.61" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,954 samples, 0.08%)</title><rect x="704.9" y="997" width="1.0" height="15.0" fill="rgb(215,144,33)" rx="2" ry="2" />
<text x="707.92" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (237 samples, 0.01%)</title><rect x="1037.4" y="1349" width="0.1" height="15.0" fill="rgb(251,130,24)" rx="2" ry="2" />
<text x="1040.43" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (290 samples, 0.01%)</title><rect x="589.4" y="1253" width="0.2" height="15.0" fill="rgb(209,53,6)" rx="2" ry="2" />
<text x="592.41" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (310 samples, 0.01%)</title><rect x="878.5" y="869" width="0.1" height="15.0" fill="rgb(213,45,11)" rx="2" ry="2" />
<text x="881.48" y="879.5" ></text>
</g>
<g >
<title>mark_slice_darken (333 samples, 0.01%)</title><rect x="848.8" y="1269" width="0.2" height="15.0" fill="rgb(231,67,1)" rx="2" ry="2" />
<text x="851.79" y="1279.5" ></text>
</g>
<g >
<title>double_jacobian_default (303 samples, 0.01%)</title><rect x="815.9" y="197" width="0.1" height="15.0" fill="rgb(229,42,18)" rx="2" ry="2" />
<text x="818.88" y="207.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (34,492 samples, 1.49%)</title><rect x="815.7" y="661" width="17.6" height="15.0" fill="rgb(233,215,21)" rx="2" ry="2" />
<text x="818.72" y="671.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_2023 (25,066 samples, 1.09%)</title><rect x="84.0" y="1557" width="12.8" height="15.0" fill="rgb(251,220,5)" rx="2" ry="2" />
<text x="86.98" y="1567.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (272 samples, 0.01%)</title><rect x="255.9" y="1333" width="0.1" height="15.0" fill="rgb(251,79,11)" rx="2" ry="2" />
<text x="258.86" y="1343.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_1950 (36,660 samples, 1.59%)</title><rect x="82.8" y="1573" width="18.8" height="15.0" fill="rgb(236,69,13)" rx="2" ry="2" />
<text x="85.83" y="1583.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (1,521 samples, 0.07%)</title><rect x="773.3" y="1125" width="0.7" height="15.0" fill="rgb(223,92,53)" rx="2" ry="2" />
<text x="776.27" y="1135.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (777 samples, 0.03%)</title><rect x="1165.8" y="725" width="0.4" height="15.0" fill="rgb(213,145,40)" rx="2" ry="2" />
<text x="1168.76" y="735.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_894 (529 samples, 0.02%)</title><rect x="841.8" y="1253" width="0.3" height="15.0" fill="rgb(221,37,1)" rx="2" ry="2" />
<text x="844.81" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_115 (554 samples, 0.02%)</title><rect x="549.0" y="1317" width="0.3" height="15.0" fill="rgb(244,123,49)" rx="2" ry="2" />
<text x="551.97" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (6,627 samples, 0.29%)</title><rect x="337.2" y="1397" width="3.4" height="15.0" fill="rgb(253,94,24)" rx="2" ry="2" />
<text x="340.23" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (533 samples, 0.02%)</title><rect x="720.6" y="1029" width="0.3" height="15.0" fill="rgb(252,200,21)" rx="2" ry="2" />
<text x="723.61" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_commit_inner_35083 (1,898 samples, 0.08%)</title><rect x="835.6" y="805" width="1.0" height="15.0" fill="rgb(218,208,13)" rx="2" ry="2" />
<text x="838.63" y="815.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4065 (214 samples, 0.01%)</title><rect x="835.9" y="517" width="0.1" height="15.0" fill="rgb(244,182,54)" rx="2" ry="2" />
<text x="838.93" y="527.5" ></text>
</g>
<g >
<title>muladd (218 samples, 0.01%)</title><rect x="1105.7" y="69" width="0.1" height="15.0" fill="rgb(217,174,46)" rx="2" ry="2" />
<text x="1108.72" y="79.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (239 samples, 0.01%)</title><rect x="191.3" y="1125" width="0.1" height="15.0" fill="rgb(216,215,42)" rx="2" ry="2" />
<text x="194.30" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (286 samples, 0.01%)</title><rect x="223.2" y="1285" width="0.1" height="15.0" fill="rgb(234,49,39)" rx="2" ry="2" />
<text x="226.16" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (521 samples, 0.02%)</title><rect x="150.1" y="1381" width="0.3" height="15.0" fill="rgb(223,175,2)" rx="2" ry="2" />
<text x="153.11" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (208 samples, 0.01%)</title><rect x="190.2" y="1269" width="0.2" height="15.0" fill="rgb(220,170,21)" rx="2" ry="2" />
<text x="193.25" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (1,272 samples, 0.06%)</title><rect x="904.5" y="1413" width="0.6" height="15.0" fill="rgb(217,217,45)" rx="2" ry="2" />
<text x="907.46" y="1423.5" ></text>
</g>
<g >
<title>caml_apply5 (209 samples, 0.01%)</title><rect x="1061.1" y="1221" width="0.1" height="15.0" fill="rgb(223,156,19)" rx="2" ry="2" />
<text x="1064.14" y="1231.5" ></text>
</g>
<g >
<title>caml_compare (386 samples, 0.02%)</title><rect x="167.2" y="1349" width="0.2" height="15.0" fill="rgb(214,183,28)" rx="2" ry="2" />
<text x="170.22" y="1359.5" ></text>
</g>
<g >
<title>apply_z (593 samples, 0.03%)</title><rect x="1158.7" y="181" width="0.3" height="15.0" fill="rgb(236,152,19)" rx="2" ry="2" />
<text x="1161.70" y="191.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (56,009 samples, 2.43%)</title><rect x="1084.9" y="1205" width="28.7" height="15.0" fill="rgb(253,110,23)" rx="2" ry="2" />
<text x="1087.94" y="1215.5" >ca..</text>
</g>
<g >
<title>mark_slice_darken (224 samples, 0.01%)</title><rect x="521.4" y="1221" width="0.1" height="15.0" fill="rgb(213,134,29)" rx="2" ry="2" />
<text x="524.43" y="1231.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (315 samples, 0.01%)</title><rect x="397.4" y="1397" width="0.1" height="15.0" fill="rgb(237,51,10)" rx="2" ry="2" />
<text x="400.35" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (44,588 samples, 1.93%)</title><rect x="815.7" y="1045" width="22.8" height="15.0" fill="rgb(226,134,40)" rx="2" ry="2" />
<text x="818.69" y="1055.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__find_all_4629 (238 samples, 0.01%)</title><rect x="670.4" y="613" width="0.1" height="15.0" fill="rgb(221,227,15)" rx="2" ry="2" />
<text x="673.36" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (290 samples, 0.01%)</title><rect x="563.1" y="1221" width="0.1" height="15.0" fill="rgb(205,171,48)" rx="2" ry="2" />
<text x="566.06" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (458 samples, 0.02%)</title><rect x="708.1" y="997" width="0.2" height="15.0" fill="rgb(227,224,8)" rx="2" ry="2" />
<text x="711.11" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (298 samples, 0.01%)</title><rect x="903.0" y="1413" width="0.1" height="15.0" fill="rgb(210,186,10)" rx="2" ry="2" />
<text x="905.96" y="1423.5" ></text>
</g>
<g >
<title>caml_curry3_1 (199 samples, 0.01%)</title><rect x="555.7" y="1269" width="0.1" height="15.0" fill="rgb(235,157,52)" rx="2" ry="2" />
<text x="558.73" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (987 samples, 0.04%)</title><rect x="625.4" y="997" width="0.5" height="15.0" fill="rgb(225,75,35)" rx="2" ry="2" />
<text x="628.36" y="1007.5" ></text>
</g>
<g >
<title>uECC_vli_add (267 samples, 0.01%)</title><rect x="821.2" y="181" width="0.1" height="15.0" fill="rgb(226,57,53)" rx="2" ry="2" />
<text x="824.17" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (317 samples, 0.01%)</title><rect x="153.3" y="1461" width="0.1" height="15.0" fill="rgb(243,99,18)" rx="2" ry="2" />
<text x="156.28" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (5,384 samples, 0.23%)</title><rect x="463.2" y="1349" width="2.8" height="15.0" fill="rgb(217,35,38)" rx="2" ry="2" />
<text x="466.24" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (35,870 samples, 1.55%)</title><rect x="1094.5" y="597" width="18.4" height="15.0" fill="rgb(237,40,25)" rx="2" ry="2" />
<text x="1097.53" y="607.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (36,360 samples, 1.58%)</title><rect x="1094.5" y="821" width="18.6" height="15.0" fill="rgb(223,205,27)" rx="2" ry="2" />
<text x="1097.53" y="831.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (837 samples, 0.04%)</title><rect x="1177.1" y="965" width="0.4" height="15.0" fill="rgb(229,218,21)" rx="2" ry="2" />
<text x="1180.11" y="975.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (25,766 samples, 1.12%)</title><rect x="1143.9" y="421" width="13.2" height="15.0" fill="rgb(236,96,43)" rx="2" ry="2" />
<text x="1146.90" y="431.5" ></text>
</g>
<g >
<title>caml_apply2 (457 samples, 0.02%)</title><rect x="139.1" y="1397" width="0.3" height="15.0" fill="rgb(242,7,21)" rx="2" ry="2" />
<text x="142.12" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,232 samples, 1.53%)</title><rect x="1143.9" y="501" width="18.0" height="15.0" fill="rgb(252,124,45)" rx="2" ry="2" />
<text x="1146.90" y="511.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (4,075 samples, 0.18%)</title><rect x="831.3" y="325" width="2.0" height="15.0" fill="rgb(209,1,1)" rx="2" ry="2" />
<text x="834.25" y="335.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12911 (1,918 samples, 0.08%)</title><rect x="835.6" y="837" width="1.0" height="15.0" fill="rgb(207,61,12)" rx="2" ry="2" />
<text x="838.61" y="847.5" ></text>
</g>
<g >
<title>uECC_vli_square (817 samples, 0.04%)</title><rect x="1097.3" y="53" width="0.4" height="15.0" fill="rgb(243,145,43)" rx="2" ry="2" />
<text x="1100.27" y="63.5" ></text>
</g>
<g >
<title>mark_slice (383 samples, 0.02%)</title><rect x="810.2" y="997" width="0.2" height="15.0" fill="rgb(212,148,51)" rx="2" ry="2" />
<text x="813.18" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (241 samples, 0.01%)</title><rect x="1000.5" y="1381" width="0.2" height="15.0" fill="rgb(208,166,35)" rx="2" ry="2" />
<text x="1003.54" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (200 samples, 0.01%)</title><rect x="615.6" y="1173" width="0.1" height="15.0" fill="rgb(253,167,11)" rx="2" ry="2" />
<text x="618.61" y="1183.5" ></text>
</g>
<g >
<title>uECC_verify_stub (9,247 samples, 0.40%)</title><rect x="1152.3" y="213" width="4.7" height="15.0" fill="rgb(237,226,37)" rx="2" ry="2" />
<text x="1155.31" y="223.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (252 samples, 0.01%)</title><rect x="255.5" y="1365" width="0.1" height="15.0" fill="rgb(212,105,44)" rx="2" ry="2" />
<text x="258.49" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (233 samples, 0.01%)</title><rect x="190.7" y="1221" width="0.2" height="15.0" fill="rgb(229,84,25)" rx="2" ry="2" />
<text x="193.73" y="1231.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6465 (877 samples, 0.04%)</title><rect x="1018.0" y="1349" width="0.4" height="15.0" fill="rgb(248,18,31)" rx="2" ry="2" />
<text x="1020.99" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,614 samples, 0.37%)</title><rect x="966.1" y="1445" width="4.4" height="15.0" fill="rgb(247,17,12)" rx="2" ry="2" />
<text x="969.08" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,402 samples, 0.10%)</title><rect x="907.1" y="1381" width="1.2" height="15.0" fill="rgb(246,91,34)" rx="2" ry="2" />
<text x="910.07" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (812 samples, 0.04%)</title><rect x="770.6" y="1077" width="0.4" height="15.0" fill="rgb(231,131,53)" rx="2" ry="2" />
<text x="773.55" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (3,058 samples, 0.13%)</title><rect x="1029.1" y="1301" width="1.6" height="15.0" fill="rgb(231,216,0)" rx="2" ry="2" />
<text x="1032.15" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_cmp_unsafe (348 samples, 0.02%)</title><rect x="666.6" y="165" width="0.2" height="15.0" fill="rgb(215,141,35)" rx="2" ry="2" />
<text x="669.64" y="175.5" ></text>
</g>
<g >
<title>mark_slice (1,871 samples, 0.08%)</title><rect x="142.9" y="1381" width="0.9" height="15.0" fill="rgb(209,119,16)" rx="2" ry="2" />
<text x="145.85" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (551 samples, 0.02%)</title><rect x="331.4" y="1365" width="0.2" height="15.0" fill="rgb(233,158,26)" rx="2" ry="2" />
<text x="334.37" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_add (371 samples, 0.02%)</title><rect x="643.2" y="133" width="0.2" height="15.0" fill="rgb(209,189,46)" rx="2" ry="2" />
<text x="646.16" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (547 samples, 0.02%)</title><rect x="493.7" y="1221" width="0.3" height="15.0" fill="rgb(223,16,1)" rx="2" ry="2" />
<text x="496.73" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,364 samples, 0.06%)</title><rect x="240.2" y="1381" width="0.7" height="15.0" fill="rgb(211,175,9)" rx="2" ry="2" />
<text x="243.22" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (491 samples, 0.02%)</title><rect x="245.0" y="1317" width="0.3" height="15.0" fill="rgb(205,136,35)" rx="2" ry="2" />
<text x="248.03" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (218 samples, 0.01%)</title><rect x="1038.9" y="1349" width="0.1" height="15.0" fill="rgb(252,14,48)" rx="2" ry="2" />
<text x="1041.88" y="1359.5" ></text>
</g>
<g >
<title>caml_apply5 (1,544 samples, 0.07%)</title><rect x="581.8" y="1253" width="0.7" height="15.0" fill="rgb(249,0,0)" rx="2" ry="2" />
<text x="584.75" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (7,407 samples, 0.32%)</title><rect x="596.9" y="1333" width="3.8" height="15.0" fill="rgb(229,102,6)" rx="2" ry="2" />
<text x="599.87" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (454 samples, 0.02%)</title><rect x="809.5" y="1029" width="0.3" height="15.0" fill="rgb(236,78,26)" rx="2" ry="2" />
<text x="812.54" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (339 samples, 0.01%)</title><rect x="733.1" y="1141" width="0.2" height="15.0" fill="rgb(236,98,39)" rx="2" ry="2" />
<text x="736.14" y="1151.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (1,014 samples, 0.04%)</title><rect x="694.1" y="965" width="0.6" height="15.0" fill="rgb(231,54,51)" rx="2" ry="2" />
<text x="697.15" y="975.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (767 samples, 0.03%)</title><rect x="593.8" y="1333" width="0.4" height="15.0" fill="rgb(206,165,43)" rx="2" ry="2" />
<text x="596.79" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (637 samples, 0.03%)</title><rect x="657.8" y="165" width="0.3" height="15.0" fill="rgb(217,50,44)" rx="2" ry="2" />
<text x="660.79" y="175.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6835 (847 samples, 0.04%)</title><rect x="835.9" y="549" width="0.5" height="15.0" fill="rgb(229,42,7)" rx="2" ry="2" />
<text x="838.93" y="559.5" ></text>
</g>
<g >
<title>mark_slice (267 samples, 0.01%)</title><rect x="707.9" y="949" width="0.1" height="15.0" fill="rgb(205,183,33)" rx="2" ry="2" />
<text x="710.90" y="959.5" ></text>
</g>
<g >
<title>mark_slice_darken (270 samples, 0.01%)</title><rect x="812.5" y="1045" width="0.2" height="15.0" fill="rgb(205,144,45)" rx="2" ry="2" />
<text x="815.54" y="1055.5" ></text>
</g>
<g >
<title>sweep_slice (315 samples, 0.01%)</title><rect x="199.0" y="1365" width="0.2" height="15.0" fill="rgb(232,35,24)" rx="2" ry="2" />
<text x="202.02" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (19,410 samples, 0.84%)</title><rect x="873.6" y="1109" width="9.9" height="15.0" fill="rgb(240,215,33)" rx="2" ry="2" />
<text x="876.57" y="1119.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (595 samples, 0.03%)</title><rect x="907.8" y="1317" width="0.3" height="15.0" fill="rgb(226,55,37)" rx="2" ry="2" />
<text x="910.79" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_4634 (238 samples, 0.01%)</title><rect x="670.4" y="629" width="0.1" height="15.0" fill="rgb(214,1,34)" rx="2" ry="2" />
<text x="673.36" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (303 samples, 0.01%)</title><rect x="1090.3" y="901" width="0.1" height="15.0" fill="rgb(246,218,49)" rx="2" ry="2" />
<text x="1093.26" y="911.5" ></text>
</g>
<g >
<title>caml_call_gc (401 samples, 0.02%)</title><rect x="537.6" y="1093" width="0.2" height="15.0" fill="rgb(237,193,49)" rx="2" ry="2" />
<text x="540.62" y="1103.5" ></text>
</g>
<g >
<title>caml_string_equal (626 samples, 0.03%)</title><rect x="986.8" y="1317" width="0.3" height="15.0" fill="rgb(235,205,37)" rx="2" ry="2" />
<text x="989.79" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (972 samples, 0.04%)</title><rect x="884.3" y="1285" width="0.5" height="15.0" fill="rgb(227,79,27)" rx="2" ry="2" />
<text x="887.29" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4109 (249 samples, 0.01%)</title><rect x="671.5" y="517" width="0.1" height="15.0" fill="rgb(250,190,54)" rx="2" ry="2" />
<text x="674.47" y="527.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (41,016 samples, 1.78%)</title><rect x="1143.9" y="853" width="20.9" height="15.0" fill="rgb(227,183,13)" rx="2" ry="2" />
<text x="1146.88" y="863.5" ></text>
</g>
<g >
<title>mark_slice_darken (748 samples, 0.03%)</title><rect x="243.8" y="1317" width="0.4" height="15.0" fill="rgb(254,129,9)" rx="2" ry="2" />
<text x="246.79" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (590 samples, 0.03%)</title><rect x="700.6" y="1013" width="0.3" height="15.0" fill="rgb(221,64,2)" rx="2" ry="2" />
<text x="703.59" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (451 samples, 0.02%)</title><rect x="220.6" y="1317" width="0.2" height="15.0" fill="rgb(207,182,40)" rx="2" ry="2" />
<text x="223.56" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (357 samples, 0.02%)</title><rect x="539.5" y="1173" width="0.2" height="15.0" fill="rgb(209,52,18)" rx="2" ry="2" />
<text x="542.54" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (341 samples, 0.01%)</title><rect x="499.4" y="1221" width="0.1" height="15.0" fill="rgb(234,125,46)" rx="2" ry="2" />
<text x="502.36" y="1231.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (954 samples, 0.04%)</title><rect x="1146.0" y="133" width="0.5" height="15.0" fill="rgb(229,91,2)" rx="2" ry="2" />
<text x="1149.02" y="143.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (44,610 samples, 1.93%)</title><rect x="815.7" y="1157" width="22.8" height="15.0" fill="rgb(209,11,8)" rx="2" ry="2" />
<text x="818.68" y="1167.5" >c..</text>
</g>
<g >
<title>caml_process_pending_signals (582 samples, 0.03%)</title><rect x="694.2" y="949" width="0.3" height="15.0" fill="rgb(225,29,1)" rx="2" ry="2" />
<text x="697.19" y="959.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (35,891 samples, 1.55%)</title><rect x="1094.5" y="645" width="18.4" height="15.0" fill="rgb(231,16,26)" rx="2" ry="2" />
<text x="1097.53" y="655.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,683 samples, 0.12%)</title><rect x="191.2" y="1173" width="1.4" height="15.0" fill="rgb(209,108,35)" rx="2" ry="2" />
<text x="194.19" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (744 samples, 0.03%)</title><rect x="819.0" y="213" width="0.4" height="15.0" fill="rgb(239,210,8)" rx="2" ry="2" />
<text x="822.00" y="223.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (885 samples, 0.04%)</title><rect x="832.2" y="245" width="0.4" height="15.0" fill="rgb(214,124,27)" rx="2" ry="2" />
<text x="835.16" y="255.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (253 samples, 0.01%)</title><rect x="1153.3" y="149" width="0.1" height="15.0" fill="rgb(249,189,7)" rx="2" ry="2" />
<text x="1156.29" y="159.5" ></text>
</g>
<g >
<title>sweep_slice (1,061 samples, 0.05%)</title><rect x="384.8" y="1365" width="0.5" height="15.0" fill="rgb(244,7,34)" rx="2" ry="2" />
<text x="387.77" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (397 samples, 0.02%)</title><rect x="498.3" y="1285" width="0.2" height="15.0" fill="rgb(229,132,46)" rx="2" ry="2" />
<text x="501.27" y="1295.5" ></text>
</g>
<g >
<title>__lseek64 (474 samples, 0.02%)</title><rect x="1124.9" y="965" width="0.2" height="15.0" fill="rgb(222,66,46)" rx="2" ry="2" />
<text x="1127.88" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (217 samples, 0.01%)</title><rect x="708.5" y="1013" width="0.1" height="15.0" fill="rgb(235,94,34)" rx="2" ry="2" />
<text x="711.49" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (3,756 samples, 0.16%)</title><rect x="165.5" y="1365" width="1.9" height="15.0" fill="rgb(208,146,53)" rx="2" ry="2" />
<text x="168.50" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (7,142 samples, 0.31%)</title><rect x="1035.4" y="1381" width="3.7" height="15.0" fill="rgb(216,169,39)" rx="2" ry="2" />
<text x="1038.43" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (229 samples, 0.01%)</title><rect x="701.1" y="917" width="0.1" height="15.0" fill="rgb(246,225,10)" rx="2" ry="2" />
<text x="704.11" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (270 samples, 0.01%)</title><rect x="786.4" y="1061" width="0.2" height="15.0" fill="rgb(231,80,30)" rx="2" ry="2" />
<text x="789.42" y="1071.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,773 samples, 0.08%)</title><rect x="1103.4" y="69" width="0.9" height="15.0" fill="rgb(236,205,20)" rx="2" ry="2" />
<text x="1106.39" y="79.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,184 samples, 0.05%)</title><rect x="645.3" y="149" width="0.6" height="15.0" fill="rgb(209,99,38)" rx="2" ry="2" />
<text x="648.29" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (13,065 samples, 0.57%)</title><rect x="549.5" y="1317" width="6.7" height="15.0" fill="rgb(206,173,4)" rx="2" ry="2" />
<text x="552.48" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (447 samples, 0.02%)</title><rect x="264.1" y="1365" width="0.2" height="15.0" fill="rgb(223,142,3)" rx="2" ry="2" />
<text x="267.05" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (991 samples, 0.04%)</title><rect x="1094.6" y="165" width="0.5" height="15.0" fill="rgb(248,101,30)" rx="2" ry="2" />
<text x="1097.56" y="175.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (366 samples, 0.02%)</title><rect x="301.7" y="1349" width="0.1" height="15.0" fill="rgb(226,33,45)" rx="2" ry="2" />
<text x="304.65" y="1359.5" ></text>
</g>
<g >
<title>caml_fl_allocate (12,643 samples, 0.55%)</title><rect x="36.3" y="1605" width="6.5" height="15.0" fill="rgb(212,71,24)" rx="2" ry="2" />
<text x="39.30" y="1615.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (1,485 samples, 0.06%)</title><rect x="668.7" y="245" width="0.7" height="15.0" fill="rgb(225,109,51)" rx="2" ry="2" />
<text x="671.68" y="255.5" ></text>
</g>
<g >
<title>caml_modify (380 samples, 0.02%)</title><rect x="844.7" y="1333" width="0.2" height="15.0" fill="rgb(231,179,19)" rx="2" ry="2" />
<text x="847.69" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (504 samples, 0.02%)</title><rect x="797.1" y="1045" width="0.2" height="15.0" fill="rgb(219,122,2)" rx="2" ry="2" />
<text x="800.06" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (224 samples, 0.01%)</title><rect x="1074.8" y="1141" width="0.1" height="15.0" fill="rgb(236,172,44)" rx="2" ry="2" />
<text x="1077.79" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (986 samples, 0.04%)</title><rect x="1053.2" y="1269" width="0.5" height="15.0" fill="rgb(235,127,40)" rx="2" ry="2" />
<text x="1056.17" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (838 samples, 0.04%)</title><rect x="495.2" y="1269" width="0.4" height="15.0" fill="rgb(242,24,2)" rx="2" ry="2" />
<text x="498.18" y="1279.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (316 samples, 0.01%)</title><rect x="874.4" y="949" width="0.1" height="15.0" fill="rgb(235,146,18)" rx="2" ry="2" />
<text x="877.37" y="959.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4065 (550 samples, 0.02%)</title><rect x="1163.9" y="533" width="0.2" height="15.0" fill="rgb(221,112,3)" rx="2" ry="2" />
<text x="1166.87" y="543.5" ></text>
</g>
<g >
<title>caml_call_gc (522 samples, 0.02%)</title><rect x="492.2" y="1221" width="0.2" height="15.0" fill="rgb(234,25,26)" rx="2" ry="2" />
<text x="495.17" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (498 samples, 0.02%)</title><rect x="586.7" y="1253" width="0.3" height="15.0" fill="rgb(225,98,7)" rx="2" ry="2" />
<text x="589.70" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (795 samples, 0.03%)</title><rect x="557.9" y="1253" width="0.4" height="15.0" fill="rgb(246,101,34)" rx="2" ry="2" />
<text x="560.87" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (10,798 samples, 0.47%)</title><rect x="800.4" y="1077" width="5.5" height="15.0" fill="rgb(243,193,27)" rx="2" ry="2" />
<text x="803.39" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,259 samples, 0.05%)</title><rect x="820.4" y="197" width="0.7" height="15.0" fill="rgb(241,6,26)" rx="2" ry="2" />
<text x="823.42" y="207.5" ></text>
</g>
<g >
<title>mark_slice (238 samples, 0.01%)</title><rect x="221.6" y="1269" width="0.1" height="15.0" fill="rgb(205,11,1)" rx="2" ry="2" />
<text x="224.62" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (245 samples, 0.01%)</title><rect x="793.2" y="949" width="0.1" height="15.0" fill="rgb(238,214,54)" rx="2" ry="2" />
<text x="796.16" y="959.5" ></text>
</g>
<g >
<title>caml_hash (436 samples, 0.02%)</title><rect x="874.3" y="965" width="0.2" height="15.0" fill="rgb(211,92,44)" rx="2" ry="2" />
<text x="877.31" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4918 (489 samples, 0.02%)</title><rect x="1068.8" y="1221" width="0.2" height="15.0" fill="rgb(252,104,7)" rx="2" ry="2" />
<text x="1071.76" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (915 samples, 0.04%)</title><rect x="1143.9" y="213" width="0.5" height="15.0" fill="rgb(225,85,27)" rx="2" ry="2" />
<text x="1146.93" y="223.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,074 samples, 0.05%)</title><rect x="147.4" y="1445" width="0.5" height="15.0" fill="rgb(249,108,38)" rx="2" ry="2" />
<text x="150.39" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2325 (2,771 samples, 0.12%)</title><rect x="237.6" y="1381" width="1.4" height="15.0" fill="rgb(232,104,34)" rx="2" ry="2" />
<text x="240.62" y="1391.5" ></text>
</g>
<g >
<title>caml_alloc_string (655 samples, 0.03%)</title><rect x="587.0" y="1269" width="0.3" height="15.0" fill="rgb(205,110,14)" rx="2" ry="2" />
<text x="589.99" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (28,173 samples, 1.22%)</title><rect x="1129.5" y="1109" width="14.4" height="15.0" fill="rgb(231,188,7)" rx="2" ry="2" />
<text x="1132.46" y="1119.5" ></text>
</g>
<g >
<title>XYcZ_add (264 samples, 0.01%)</title><rect x="1094.6" y="69" width="0.1" height="15.0" fill="rgb(225,79,6)" rx="2" ry="2" />
<text x="1097.56" y="79.5" ></text>
</g>
<g >
<title>caml_oldify_one (212 samples, 0.01%)</title><rect x="293.2" y="1285" width="0.1" height="15.0" fill="rgb(212,106,9)" rx="2" ry="2" />
<text x="296.18" y="1295.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (2,868 samples, 0.12%)</title><rect x="303.1" y="1381" width="1.5" height="15.0" fill="rgb(215,227,4)" rx="2" ry="2" />
<text x="306.12" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (981 samples, 0.04%)</title><rect x="551.4" y="1205" width="0.5" height="15.0" fill="rgb(243,227,16)" rx="2" ry="2" />
<text x="554.38" y="1215.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (380 samples, 0.02%)</title><rect x="417.1" y="1365" width="0.2" height="15.0" fill="rgb(242,59,15)" rx="2" ry="2" />
<text x="420.07" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (594 samples, 0.03%)</title><rect x="210.2" y="1333" width="0.3" height="15.0" fill="rgb(210,30,31)" rx="2" ry="2" />
<text x="213.16" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (440 samples, 0.02%)</title><rect x="623.3" y="1013" width="0.2" height="15.0" fill="rgb(243,113,8)" rx="2" ry="2" />
<text x="626.27" y="1023.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (748 samples, 0.03%)</title><rect x="613.1" y="1141" width="0.4" height="15.0" fill="rgb(249,22,34)" rx="2" ry="2" />
<text x="616.10" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__check_signature_3722 (1,386 samples, 0.06%)</title><rect x="1162.7" y="693" width="0.7" height="15.0" fill="rgb(248,81,36)" rx="2" ry="2" />
<text x="1165.73" y="703.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (222 samples, 0.01%)</title><rect x="768.3" y="1077" width="0.1" height="15.0" fill="rgb(221,144,20)" rx="2" ry="2" />
<text x="771.26" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (75,991 samples, 3.29%)</title><rect x="631.2" y="629" width="38.9" height="15.0" fill="rgb(248,218,50)" rx="2" ry="2" />
<text x="634.24" y="639.5" >cam..</text>
</g>
<g >
<title>uECC_vli_modSub (253 samples, 0.01%)</title><rect x="1153.4" y="165" width="0.2" height="15.0" fill="rgb(254,81,29)" rx="2" ry="2" />
<text x="1156.42" y="175.5" ></text>
</g>
<g >
<title>muladd (313 samples, 0.01%)</title><rect x="829.0" y="197" width="0.2" height="15.0" fill="rgb(240,193,45)" rx="2" ry="2" />
<text x="831.99" y="207.5" ></text>
</g>
<g >
<title>mark_slice (486 samples, 0.02%)</title><rect x="547.8" y="1253" width="0.2" height="15.0" fill="rgb(211,77,38)" rx="2" ry="2" />
<text x="550.79" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (244 samples, 0.01%)</title><rect x="234.0" y="1269" width="0.1" height="15.0" fill="rgb(233,45,51)" rx="2" ry="2" />
<text x="236.98" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (4,352 samples, 0.19%)</title><rect x="502.6" y="1301" width="2.2" height="15.0" fill="rgb(235,130,37)" rx="2" ry="2" />
<text x="505.55" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (225 samples, 0.01%)</title><rect x="870.8" y="869" width="0.1" height="15.0" fill="rgb(222,198,4)" rx="2" ry="2" />
<text x="873.76" y="879.5" ></text>
</g>
<g >
<title>caml_garbage_collection (359 samples, 0.02%)</title><rect x="617.2" y="1189" width="0.2" height="15.0" fill="rgb(231,58,5)" rx="2" ry="2" />
<text x="620.23" y="1199.5" ></text>
</g>
<g >
<title>muladd (245 samples, 0.01%)</title><rect x="829.6" y="197" width="0.1" height="15.0" fill="rgb(210,146,47)" rx="2" ry="2" />
<text x="832.58" y="207.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,370 samples, 0.06%)</title><rect x="823.1" y="229" width="0.7" height="15.0" fill="rgb(243,72,27)" rx="2" ry="2" />
<text x="826.13" y="239.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (323 samples, 0.01%)</title><rect x="805.1" y="965" width="0.2" height="15.0" fill="rgb(224,130,11)" rx="2" ry="2" />
<text x="808.09" y="975.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (334 samples, 0.01%)</title><rect x="870.9" y="901" width="0.2" height="15.0" fill="rgb(233,140,47)" rx="2" ry="2" />
<text x="873.93" y="911.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (232,898 samples, 10.09%)</title><rect x="1049.0" y="1301" width="119.0" height="15.0" fill="rgb(252,228,39)" rx="2" ry="2" />
<text x="1051.98" y="1311.5" >camlLwt__callb..</text>
</g>
<g >
<title>apply_z (2,297 samples, 0.10%)</title><rect x="1100.5" y="101" width="1.1" height="15.0" fill="rgb(211,63,15)" rx="2" ry="2" />
<text x="1103.47" y="111.5" ></text>
</g>
<g >
<title>mark_slice_darken (632 samples, 0.03%)</title><rect x="904.7" y="1349" width="0.3" height="15.0" fill="rgb(232,83,12)" rx="2" ry="2" />
<text x="907.67" y="1359.5" ></text>
</g>
<g >
<title>caml_curry13_12 (287 samples, 0.01%)</title><rect x="1071.2" y="1189" width="0.2" height="15.0" fill="rgb(217,45,18)" rx="2" ry="2" />
<text x="1074.21" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (575 samples, 0.02%)</title><rect x="1040.5" y="1333" width="0.3" height="15.0" fill="rgb(241,155,45)" rx="2" ry="2" />
<text x="1043.48" y="1343.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6463 (241 samples, 0.01%)</title><rect x="586.0" y="1253" width="0.1" height="15.0" fill="rgb(241,92,2)" rx="2" ry="2" />
<text x="589.01" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (252 samples, 0.01%)</title><rect x="292.4" y="1397" width="0.1" height="15.0" fill="rgb(237,155,25)" rx="2" ry="2" />
<text x="295.39" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (899 samples, 0.04%)</title><rect x="842.4" y="1205" width="0.5" height="15.0" fill="rgb(252,31,41)" rx="2" ry="2" />
<text x="845.41" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (969 samples, 0.04%)</title><rect x="1175.6" y="917" width="0.5" height="15.0" fill="rgb(220,197,45)" rx="2" ry="2" />
<text x="1178.59" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (736 samples, 0.03%)</title><rect x="548.3" y="1253" width="0.4" height="15.0" fill="rgb(254,197,21)" rx="2" ry="2" />
<text x="551.32" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,345 samples, 0.06%)</title><rect x="144.5" y="1397" width="0.7" height="15.0" fill="rgb(222,158,7)" rx="2" ry="2" />
<text x="147.47" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (232 samples, 0.01%)</title><rect x="1055.0" y="1253" width="0.1" height="15.0" fill="rgb(211,155,4)" rx="2" ry="2" />
<text x="1058.02" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (1,886 samples, 0.08%)</title><rect x="776.0" y="1077" width="1.0" height="15.0" fill="rgb(209,97,45)" rx="2" ry="2" />
<text x="779.02" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (249 samples, 0.01%)</title><rect x="1005.5" y="1301" width="0.2" height="15.0" fill="rgb(226,140,28)" rx="2" ry="2" />
<text x="1008.53" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (633 samples, 0.03%)</title><rect x="202.8" y="1349" width="0.3" height="15.0" fill="rgb(226,208,46)" rx="2" ry="2" />
<text x="205.80" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (399 samples, 0.02%)</title><rect x="1092.2" y="901" width="0.2" height="15.0" fill="rgb(220,208,51)" rx="2" ry="2" />
<text x="1095.15" y="911.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (37,534 samples, 1.63%)</title><rect x="854.0" y="1125" width="19.2" height="15.0" fill="rgb(240,153,35)" rx="2" ry="2" />
<text x="857.04" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (596 samples, 0.03%)</title><rect x="851.9" y="1269" width="0.3" height="15.0" fill="rgb(236,119,40)" rx="2" ry="2" />
<text x="854.89" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_square (227 samples, 0.01%)</title><rect x="1144.8" y="117" width="0.1" height="15.0" fill="rgb(209,23,32)" rx="2" ry="2" />
<text x="1147.81" y="127.5" ></text>
</g>
<g >
<title>mark_slice (1,029 samples, 0.04%)</title><rect x="1001.9" y="1205" width="0.6" height="15.0" fill="rgb(221,104,26)" rx="2" ry="2" />
<text x="1004.95" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="796.4" y="1029" width="0.1" height="15.0" fill="rgb(249,93,18)" rx="2" ry="2" />
<text x="799.41" y="1039.5" ></text>
</g>
<g >
<title>mul2add (310 samples, 0.01%)</title><rect x="826.3" y="197" width="0.2" height="15.0" fill="rgb(215,1,2)" rx="2" ry="2" />
<text x="829.33" y="207.5" ></text>
</g>
<g >
<title>mark_slice (408 samples, 0.02%)</title><rect x="209.2" y="1317" width="0.2" height="15.0" fill="rgb(242,137,0)" rx="2" ry="2" />
<text x="212.22" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (29,226 samples, 1.27%)</title><rect x="126.2" y="1445" width="15.0" height="15.0" fill="rgb(211,12,10)" rx="2" ry="2" />
<text x="129.23" y="1455.5" ></text>
</g>
<g >
<title>XYcZ_add (850 samples, 0.04%)</title><rect x="1160.2" y="197" width="0.4" height="15.0" fill="rgb(216,173,13)" rx="2" ry="2" />
<text x="1163.18" y="207.5" ></text>
</g>
<g >
<title>__lseek64 (330 samples, 0.01%)</title><rect x="697.6" y="917" width="0.1" height="15.0" fill="rgb(243,6,22)" rx="2" ry="2" />
<text x="700.57" y="927.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (501 samples, 0.02%)</title><rect x="836.0" y="405" width="0.3" height="15.0" fill="rgb(250,114,24)" rx="2" ry="2" />
<text x="839.05" y="415.5" ></text>
</g>
<g >
<title>caml_call_gc (283 samples, 0.01%)</title><rect x="985.5" y="1381" width="0.1" height="15.0" fill="rgb(253,82,43)" rx="2" ry="2" />
<text x="988.50" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (484 samples, 0.02%)</title><rect x="733.7" y="1061" width="0.2" height="15.0" fill="rgb(211,152,25)" rx="2" ry="2" />
<text x="736.66" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (930 samples, 0.04%)</title><rect x="18.1" y="1637" width="0.4" height="15.0" fill="rgb(230,64,23)" rx="2" ry="2" />
<text x="21.06" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (561 samples, 0.02%)</title><rect x="1119.6" y="933" width="0.3" height="15.0" fill="rgb(214,148,50)" rx="2" ry="2" />
<text x="1122.60" y="943.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (8,430 samples, 0.37%)</title><rect x="490.4" y="1269" width="4.4" height="15.0" fill="rgb(222,97,53)" rx="2" ry="2" />
<text x="493.45" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (279 samples, 0.01%)</title><rect x="1117.9" y="965" width="0.1" height="15.0" fill="rgb(233,36,52)" rx="2" ry="2" />
<text x="1120.86" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (252 samples, 0.01%)</title><rect x="696.8" y="869" width="0.1" height="15.0" fill="rgb(230,78,40)" rx="2" ry="2" />
<text x="699.80" y="879.5" ></text>
</g>
<g >
<title>caml_call_gc (1,212 samples, 0.05%)</title><rect x="770.4" y="1125" width="0.7" height="15.0" fill="rgb(237,215,24)" rx="2" ry="2" />
<text x="773.44" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (540 samples, 0.02%)</title><rect x="784.8" y="1093" width="0.3" height="15.0" fill="rgb(252,67,33)" rx="2" ry="2" />
<text x="787.83" y="1103.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (413 samples, 0.02%)</title><rect x="890.6" y="1365" width="0.3" height="15.0" fill="rgb(238,141,37)" rx="2" ry="2" />
<text x="893.64" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (273 samples, 0.01%)</title><rect x="551.5" y="1141" width="0.1" height="15.0" fill="rgb(227,199,38)" rx="2" ry="2" />
<text x="554.49" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (271 samples, 0.01%)</title><rect x="1120.7" y="965" width="0.2" height="15.0" fill="rgb(254,50,50)" rx="2" ry="2" />
<text x="1123.74" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (3,662 samples, 0.16%)</title><rect x="233.0" y="1381" width="1.8" height="15.0" fill="rgb(224,183,19)" rx="2" ry="2" />
<text x="235.96" y="1391.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (340 samples, 0.01%)</title><rect x="697.8" y="917" width="0.2" height="15.0" fill="rgb(253,132,13)" rx="2" ry="2" />
<text x="700.79" y="927.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (1,868 samples, 0.08%)</title><rect x="835.6" y="613" width="1.0" height="15.0" fill="rgb(219,78,11)" rx="2" ry="2" />
<text x="838.64" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,802 samples, 0.08%)</title><rect x="223.4" y="1365" width="1.0" height="15.0" fill="rgb(225,48,42)" rx="2" ry="2" />
<text x="226.45" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,593 samples, 0.16%)</title><rect x="887.8" y="1333" width="1.8" height="15.0" fill="rgb(245,118,0)" rx="2" ry="2" />
<text x="890.81" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (12,541 samples, 0.54%)</title><rect x="428.1" y="1429" width="6.4" height="15.0" fill="rgb(225,194,53)" rx="2" ry="2" />
<text x="431.06" y="1439.5" ></text>
</g>
<g >
<title>mark_slice_darken (677 samples, 0.03%)</title><rect x="234.4" y="1301" width="0.3" height="15.0" fill="rgb(224,44,15)" rx="2" ry="2" />
<text x="237.37" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,306 samples, 0.06%)</title><rect x="556.3" y="1333" width="0.7" height="15.0" fill="rgb(211,111,22)" rx="2" ry="2" />
<text x="559.34" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (333 samples, 0.01%)</title><rect x="855.4" y="885" width="0.1" height="15.0" fill="rgb(238,15,54)" rx="2" ry="2" />
<text x="858.36" y="895.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (36,261 samples, 1.57%)</title><rect x="1094.5" y="725" width="18.6" height="15.0" fill="rgb(231,71,7)" rx="2" ry="2" />
<text x="1097.53" y="735.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (505 samples, 0.02%)</title><rect x="581.8" y="1157" width="0.3" height="15.0" fill="rgb(210,71,46)" rx="2" ry="2" />
<text x="584.81" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,560 samples, 0.07%)</title><rect x="185.5" y="1317" width="0.8" height="15.0" fill="rgb(210,221,39)" rx="2" ry="2" />
<text x="188.55" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (315 samples, 0.01%)</title><rect x="1157.1" y="245" width="0.1" height="15.0" fill="rgb(207,81,16)" rx="2" ry="2" />
<text x="1160.08" y="255.5" ></text>
</g>
<g >
<title>mark_slice_darken (209 samples, 0.01%)</title><rect x="771.1" y="1061" width="0.1" height="15.0" fill="rgb(235,223,21)" rx="2" ry="2" />
<text x="774.13" y="1071.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (519 samples, 0.02%)</title><rect x="1160.2" y="181" width="0.2" height="15.0" fill="rgb(205,175,12)" rx="2" ry="2" />
<text x="1163.18" y="191.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (2,256 samples, 0.10%)</title><rect x="648.3" y="133" width="1.2" height="15.0" fill="rgb(220,125,12)" rx="2" ry="2" />
<text x="651.31" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (535 samples, 0.02%)</title><rect x="695.5" y="917" width="0.2" height="15.0" fill="rgb(224,15,24)" rx="2" ry="2" />
<text x="698.47" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (323 samples, 0.01%)</title><rect x="1005.3" y="1301" width="0.2" height="15.0" fill="rgb(224,226,43)" rx="2" ry="2" />
<text x="1008.34" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (466 samples, 0.02%)</title><rect x="328.3" y="1397" width="0.3" height="15.0" fill="rgb(220,92,53)" rx="2" ry="2" />
<text x="331.34" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (238 samples, 0.01%)</title><rect x="769.5" y="1125" width="0.1" height="15.0" fill="rgb(244,211,18)" rx="2" ry="2" />
<text x="772.46" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (394 samples, 0.02%)</title><rect x="203.6" y="1317" width="0.2" height="15.0" fill="rgb(234,76,5)" rx="2" ry="2" />
<text x="206.58" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (380 samples, 0.02%)</title><rect x="1116.3" y="965" width="0.2" height="15.0" fill="rgb(207,96,23)" rx="2" ry="2" />
<text x="1119.32" y="975.5" ></text>
</g>
<g >
<title>mark_slice_darken (319 samples, 0.01%)</title><rect x="784.9" y="1061" width="0.1" height="15.0" fill="rgb(236,89,41)" rx="2" ry="2" />
<text x="787.88" y="1071.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_2023 (8,433 samples, 0.37%)</title><rect x="975.5" y="1493" width="4.3" height="15.0" fill="rgb(254,154,7)" rx="2" ry="2" />
<text x="978.47" y="1503.5" ></text>
</g>
<g >
<title>caml_call_gc (691 samples, 0.03%)</title><rect x="206.5" y="1365" width="0.4" height="15.0" fill="rgb(248,197,43)" rx="2" ry="2" />
<text x="209.50" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (44,602 samples, 1.93%)</title><rect x="815.7" y="1109" width="22.8" height="15.0" fill="rgb(227,223,28)" rx="2" ry="2" />
<text x="818.68" y="1119.5" >c..</text>
</g>
<g >
<title>camlLwt__resolve_916 (34,489 samples, 1.49%)</title><rect x="815.7" y="645" width="17.6" height="15.0" fill="rgb(254,1,6)" rx="2" ry="2" />
<text x="818.72" y="655.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (942 samples, 0.04%)</title><rect x="698.1" y="997" width="0.5" height="15.0" fill="rgb(254,221,41)" rx="2" ry="2" />
<text x="701.12" y="1007.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (559 samples, 0.02%)</title><rect x="1023.1" y="1381" width="0.3" height="15.0" fill="rgb(232,45,35)" rx="2" ry="2" />
<text x="1026.15" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (1,223 samples, 0.05%)</title><rect x="377.8" y="1317" width="0.6" height="15.0" fill="rgb(234,175,36)" rx="2" ry="2" />
<text x="380.77" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (1,254 samples, 0.05%)</title><rect x="979.9" y="1493" width="0.6" height="15.0" fill="rgb(221,190,45)" rx="2" ry="2" />
<text x="982.89" y="1503.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (412 samples, 0.02%)</title><rect x="1160.6" y="181" width="0.2" height="15.0" fill="rgb(254,30,15)" rx="2" ry="2" />
<text x="1163.62" y="191.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (43,924 samples, 1.90%)</title><rect x="1143.9" y="1093" width="22.4" height="15.0" fill="rgb(237,211,36)" rx="2" ry="2" />
<text x="1146.87" y="1103.5" >c..</text>
</g>
<g >
<title>muladd (702 samples, 0.03%)</title><rect x="1147.1" y="117" width="0.3" height="15.0" fill="rgb(247,207,27)" rx="2" ry="2" />
<text x="1150.06" y="127.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (94,237 samples, 4.08%)</title><rect x="624.4" y="1141" width="48.1" height="15.0" fill="rgb(220,85,43)" rx="2" ry="2" />
<text x="627.37" y="1151.5" >caml..</text>
</g>
<g >
<title>caml_garbage_collection (312 samples, 0.01%)</title><rect x="794.2" y="997" width="0.2" height="15.0" fill="rgb(211,49,0)" rx="2" ry="2" />
<text x="797.23" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (528 samples, 0.02%)</title><rect x="80.3" y="1509" width="0.3" height="15.0" fill="rgb(205,87,10)" rx="2" ry="2" />
<text x="83.33" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (236 samples, 0.01%)</title><rect x="1171.5" y="901" width="0.1" height="15.0" fill="rgb(216,156,5)" rx="2" ry="2" />
<text x="1174.46" y="911.5" ></text>
</g>
<g >
<title>caml_call_gc (231 samples, 0.01%)</title><rect x="617.7" y="1237" width="0.1" height="15.0" fill="rgb(207,50,18)" rx="2" ry="2" />
<text x="620.68" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (874 samples, 0.04%)</title><rect x="535.1" y="1125" width="0.5" height="15.0" fill="rgb(238,90,50)" rx="2" ry="2" />
<text x="538.12" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (738 samples, 0.03%)</title><rect x="563.0" y="1253" width="0.4" height="15.0" fill="rgb(219,209,3)" rx="2" ry="2" />
<text x="566.05" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3831 (6,307 samples, 0.27%)</title><rect x="626.9" y="1029" width="3.2" height="15.0" fill="rgb(225,195,54)" rx="2" ry="2" />
<text x="629.92" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (221 samples, 0.01%)</title><rect x="858.5" y="933" width="0.1" height="15.0" fill="rgb(224,38,47)" rx="2" ry="2" />
<text x="861.45" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (209 samples, 0.01%)</title><rect x="564.3" y="1189" width="0.1" height="15.0" fill="rgb(242,14,17)" rx="2" ry="2" />
<text x="567.30" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (769 samples, 0.03%)</title><rect x="141.8" y="1413" width="0.4" height="15.0" fill="rgb(253,26,24)" rx="2" ry="2" />
<text x="144.80" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (312 samples, 0.01%)</title><rect x="504.6" y="1285" width="0.2" height="15.0" fill="rgb(215,116,36)" rx="2" ry="2" />
<text x="507.62" y="1295.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,030 samples, 0.04%)</title><rect x="1107.8" y="85" width="0.5" height="15.0" fill="rgb(214,96,51)" rx="2" ry="2" />
<text x="1110.76" y="95.5" ></text>
</g>
<g >
<title>caml_call_gc (356 samples, 0.02%)</title><rect x="703.6" y="981" width="0.2" height="15.0" fill="rgb(235,19,4)" rx="2" ry="2" />
<text x="706.64" y="991.5" ></text>
</g>
<g >
<title>caml_apply2 (272 samples, 0.01%)</title><rect x="1083.9" y="1189" width="0.2" height="15.0" fill="rgb(225,123,38)" rx="2" ry="2" />
<text x="1086.92" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (207 samples, 0.01%)</title><rect x="553.4" y="1221" width="0.1" height="15.0" fill="rgb(223,224,22)" rx="2" ry="2" />
<text x="556.40" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,902 samples, 0.08%)</title><rect x="909.9" y="1365" width="0.9" height="15.0" fill="rgb(231,167,11)" rx="2" ry="2" />
<text x="912.86" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (881 samples, 0.04%)</title><rect x="138.6" y="1381" width="0.5" height="15.0" fill="rgb(237,179,28)" rx="2" ry="2" />
<text x="141.64" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (246 samples, 0.01%)</title><rect x="911.8" y="1349" width="0.1" height="15.0" fill="rgb(218,161,30)" rx="2" ry="2" />
<text x="914.81" y="1359.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (224 samples, 0.01%)</title><rect x="240.2" y="1349" width="0.1" height="15.0" fill="rgb(232,160,13)" rx="2" ry="2" />
<text x="243.22" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (2,205 samples, 0.10%)</title><rect x="1149.3" y="149" width="1.1" height="15.0" fill="rgb(219,63,47)" rx="2" ry="2" />
<text x="1152.25" y="159.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (523 samples, 0.02%)</title><rect x="865.7" y="837" width="0.3" height="15.0" fill="rgb(223,220,19)" rx="2" ry="2" />
<text x="868.74" y="847.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5769 (371 samples, 0.02%)</title><rect x="1058.6" y="1141" width="0.2" height="15.0" fill="rgb(205,107,16)" rx="2" ry="2" />
<text x="1061.57" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (196 samples, 0.01%)</title><rect x="1050.4" y="1173" width="0.1" height="15.0" fill="rgb(242,148,49)" rx="2" ry="2" />
<text x="1053.41" y="1183.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (293 samples, 0.01%)</title><rect x="832.9" y="229" width="0.1" height="15.0" fill="rgb(231,192,15)" rx="2" ry="2" />
<text x="835.87" y="239.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4109 (577 samples, 0.02%)</title><rect x="671.4" y="677" width="0.3" height="15.0" fill="rgb(219,142,15)" rx="2" ry="2" />
<text x="674.40" y="687.5" ></text>
</g>
<g >
<title>caml_c_call (353 samples, 0.02%)</title><rect x="387.9" y="1429" width="0.2" height="15.0" fill="rgb(223,54,49)" rx="2" ry="2" />
<text x="390.88" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (2,098 samples, 0.09%)</title><rect x="875.8" y="1013" width="1.0" height="15.0" fill="rgb(228,55,23)" rx="2" ry="2" />
<text x="878.75" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (204 samples, 0.01%)</title><rect x="589.8" y="1301" width="0.1" height="15.0" fill="rgb(237,1,10)" rx="2" ry="2" />
<text x="592.75" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (453 samples, 0.02%)</title><rect x="845.7" y="1317" width="0.2" height="15.0" fill="rgb(246,49,33)" rx="2" ry="2" />
<text x="848.67" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_4546 (218 samples, 0.01%)</title><rect x="670.4" y="581" width="0.1" height="15.0" fill="rgb(230,66,36)" rx="2" ry="2" />
<text x="673.37" y="591.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (1,498 samples, 0.06%)</title><rect x="875.8" y="997" width="0.7" height="15.0" fill="rgb(226,56,4)" rx="2" ry="2" />
<text x="878.77" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (313 samples, 0.01%)</title><rect x="490.9" y="1189" width="0.2" height="15.0" fill="rgb(223,138,52)" rx="2" ry="2" />
<text x="493.91" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (402 samples, 0.02%)</title><rect x="754.3" y="1029" width="0.2" height="15.0" fill="rgb(227,111,8)" rx="2" ry="2" />
<text x="757.27" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (1,876 samples, 0.08%)</title><rect x="1129.8" y="1077" width="0.9" height="15.0" fill="rgb(216,121,32)" rx="2" ry="2" />
<text x="1132.78" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (233 samples, 0.01%)</title><rect x="694.9" y="949" width="0.1" height="15.0" fill="rgb(219,108,49)" rx="2" ry="2" />
<text x="697.86" y="959.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,111 samples, 0.05%)</title><rect x="782.8" y="1125" width="0.6" height="15.0" fill="rgb(217,164,30)" rx="2" ry="2" />
<text x="785.84" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (309 samples, 0.01%)</title><rect x="875.2" y="1013" width="0.1" height="15.0" fill="rgb(251,184,24)" rx="2" ry="2" />
<text x="878.16" y="1023.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,742 samples, 0.08%)</title><rect x="825.1" y="229" width="0.9" height="15.0" fill="rgb(247,9,13)" rx="2" ry="2" />
<text x="828.11" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (583 samples, 0.03%)</title><rect x="1119.2" y="917" width="0.3" height="15.0" fill="rgb(227,215,4)" rx="2" ry="2" />
<text x="1122.23" y="927.5" ></text>
</g>
<g >
<title>caml_call_gc (819 samples, 0.04%)</title><rect x="917.1" y="1445" width="0.5" height="15.0" fill="rgb(206,166,50)" rx="2" ry="2" />
<text x="920.13" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (231 samples, 0.01%)</title><rect x="153.0" y="1429" width="0.1" height="15.0" fill="rgb(248,0,14)" rx="2" ry="2" />
<text x="155.97" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (461 samples, 0.02%)</title><rect x="748.8" y="981" width="0.2" height="15.0" fill="rgb(205,29,4)" rx="2" ry="2" />
<text x="751.78" y="991.5" ></text>
</g>
<g >
<title>mark_slice (1,797 samples, 0.08%)</title><rect x="913.7" y="1381" width="0.9" height="15.0" fill="rgb(238,80,53)" rx="2" ry="2" />
<text x="916.72" y="1391.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (220 samples, 0.01%)</title><rect x="377.6" y="1301" width="0.1" height="15.0" fill="rgb(250,193,0)" rx="2" ry="2" />
<text x="380.62" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,832 samples, 0.08%)</title><rect x="367.7" y="1301" width="1.0" height="15.0" fill="rgb(242,205,20)" rx="2" ry="2" />
<text x="370.74" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (331 samples, 0.01%)</title><rect x="127.3" y="1381" width="0.2" height="15.0" fill="rgb(220,50,8)" rx="2" ry="2" />
<text x="130.33" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (241 samples, 0.01%)</title><rect x="750.4" y="1029" width="0.1" height="15.0" fill="rgb(223,210,2)" rx="2" ry="2" />
<text x="753.42" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (99,365 samples, 4.30%)</title><rect x="622.1" y="1269" width="50.8" height="15.0" fill="rgb(216,225,45)" rx="2" ry="2" />
<text x="625.13" y="1279.5" >camlL..</text>
</g>
<g >
<title>caml_string_compare (216 samples, 0.01%)</title><rect x="1127.7" y="1093" width="0.1" height="15.0" fill="rgb(227,41,7)" rx="2" ry="2" />
<text x="1130.73" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (844 samples, 0.04%)</title><rect x="1178.6" y="1013" width="0.4" height="15.0" fill="rgb(247,174,15)" rx="2" ry="2" />
<text x="1181.57" y="1023.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (3,818 samples, 0.17%)</title><rect x="847.1" y="1349" width="1.9" height="15.0" fill="rgb(219,146,43)" rx="2" ry="2" />
<text x="850.07" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Roll_storage__loop_3224 (983 samples, 0.04%)</title><rect x="833.7" y="741" width="0.5" height="15.0" fill="rgb(240,173,45)" rx="2" ry="2" />
<text x="836.68" y="751.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (861 samples, 0.04%)</title><rect x="268.9" y="1397" width="0.4" height="15.0" fill="rgb(250,92,20)" rx="2" ry="2" />
<text x="271.90" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,850 samples, 0.08%)</title><rect x="291.3" y="1365" width="0.9" height="15.0" fill="rgb(226,182,4)" rx="2" ry="2" />
<text x="294.26" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11923 (765 samples, 0.03%)</title><rect x="1178.0" y="901" width="0.4" height="15.0" fill="rgb(215,111,1)" rx="2" ry="2" />
<text x="1180.97" y="911.5" ></text>
</g>
<g >
<title>caml_garbage_collection (263 samples, 0.01%)</title><rect x="773.9" y="1093" width="0.1" height="15.0" fill="rgb(208,17,52)" rx="2" ry="2" />
<text x="776.91" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (524 samples, 0.02%)</title><rect x="184.7" y="1365" width="0.3" height="15.0" fill="rgb(226,89,4)" rx="2" ry="2" />
<text x="187.71" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (642 samples, 0.03%)</title><rect x="258.4" y="1349" width="0.3" height="15.0" fill="rgb(241,4,13)" rx="2" ry="2" />
<text x="261.38" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (577 samples, 0.02%)</title><rect x="540.2" y="1157" width="0.3" height="15.0" fill="rgb(211,197,25)" rx="2" ry="2" />
<text x="543.24" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (1,457 samples, 0.06%)</title><rect x="810.0" y="1077" width="0.8" height="15.0" fill="rgb(220,76,24)" rx="2" ry="2" />
<text x="813.02" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (442 samples, 0.02%)</title><rect x="242.0" y="1349" width="0.2" height="15.0" fill="rgb(237,96,2)" rx="2" ry="2" />
<text x="245.00" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__fun_2963 (18,128 samples, 0.79%)</title><rect x="466.9" y="1413" width="9.3" height="15.0" fill="rgb(246,59,2)" rx="2" ry="2" />
<text x="469.95" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (218 samples, 0.01%)</title><rect x="870.3" y="885" width="0.1" height="15.0" fill="rgb(224,163,31)" rx="2" ry="2" />
<text x="873.32" y="895.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (641 samples, 0.03%)</title><rect x="554.0" y="1253" width="0.3" height="15.0" fill="rgb(247,47,1)" rx="2" ry="2" />
<text x="556.96" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_457 (1,394 samples, 0.06%)</title><rect x="724.4" y="1189" width="0.8" height="15.0" fill="rgb(224,221,35)" rx="2" ry="2" />
<text x="727.44" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (553 samples, 0.02%)</title><rect x="544.2" y="1317" width="0.3" height="15.0" fill="rgb(240,144,13)" rx="2" ry="2" />
<text x="547.20" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (559 samples, 0.02%)</title><rect x="140.2" y="1333" width="0.3" height="15.0" fill="rgb(227,100,2)" rx="2" ry="2" />
<text x="143.23" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (37,822 samples, 1.64%)</title><rect x="854.0" y="1141" width="19.3" height="15.0" fill="rgb(223,95,28)" rx="2" ry="2" />
<text x="857.01" y="1151.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (378 samples, 0.02%)</title><rect x="654.3" y="149" width="0.2" height="15.0" fill="rgb(234,137,37)" rx="2" ry="2" />
<text x="657.33" y="159.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (44,564 samples, 1.93%)</title><rect x="815.7" y="1029" width="22.8" height="15.0" fill="rgb(250,174,48)" rx="2" ry="2" />
<text x="818.69" y="1039.5" >c..</text>
</g>
<g >
<title>caml_call_gc (413 samples, 0.02%)</title><rect x="499.6" y="1301" width="0.2" height="15.0" fill="rgb(253,229,0)" rx="2" ry="2" />
<text x="502.62" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,327 samples, 0.06%)</title><rect x="213.5" y="1333" width="0.7" height="15.0" fill="rgb(207,181,37)" rx="2" ry="2" />
<text x="216.51" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (514 samples, 0.02%)</title><rect x="514.6" y="1189" width="0.3" height="15.0" fill="rgb(243,159,24)" rx="2" ry="2" />
<text x="517.63" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (306 samples, 0.01%)</title><rect x="184.8" y="1317" width="0.1" height="15.0" fill="rgb(245,77,13)" rx="2" ry="2" />
<text x="187.77" y="1327.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (603 samples, 0.03%)</title><rect x="1147.4" y="133" width="0.3" height="15.0" fill="rgb(210,127,4)" rx="2" ry="2" />
<text x="1150.42" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2325 (237 samples, 0.01%)</title><rect x="204.4" y="1365" width="0.2" height="15.0" fill="rgb(211,57,44)" rx="2" ry="2" />
<text x="207.44" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (551 samples, 0.02%)</title><rect x="589.3" y="1285" width="0.3" height="15.0" fill="rgb(228,217,41)" rx="2" ry="2" />
<text x="592.33" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,754 samples, 0.12%)</title><rect x="599.2" y="1285" width="1.5" height="15.0" fill="rgb(250,187,3)" rx="2" ry="2" />
<text x="602.24" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (9,463 samples, 0.41%)</title><rect x="1157.1" y="437" width="4.8" height="15.0" fill="rgb(252,76,51)" rx="2" ry="2" />
<text x="1160.07" y="447.5" ></text>
</g>
<g >
<title>caml_garbage_collection (302 samples, 0.01%)</title><rect x="552.6" y="1173" width="0.1" height="15.0" fill="rgb(250,143,17)" rx="2" ry="2" />
<text x="555.59" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (26,996 samples, 1.17%)</title><rect x="283.6" y="1429" width="13.8" height="15.0" fill="rgb(227,158,10)" rx="2" ry="2" />
<text x="286.60" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (314 samples, 0.01%)</title><rect x="799.4" y="1045" width="0.2" height="15.0" fill="rgb(238,58,30)" rx="2" ry="2" />
<text x="802.45" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (556 samples, 0.02%)</title><rect x="258.0" y="1381" width="0.3" height="15.0" fill="rgb(207,201,28)" rx="2" ry="2" />
<text x="261.01" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (281 samples, 0.01%)</title><rect x="1042.6" y="1333" width="0.2" height="15.0" fill="rgb(245,204,18)" rx="2" ry="2" />
<text x="1045.65" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,380 samples, 0.06%)</title><rect x="862.1" y="741" width="0.7" height="15.0" fill="rgb(212,227,16)" rx="2" ry="2" />
<text x="865.13" y="751.5" ></text>
</g>
<g >
<title>unix_lseek_64 (24,968 samples, 1.08%)</title><rect x="170.6" y="1349" width="12.8" height="15.0" fill="rgb(250,115,37)" rx="2" ry="2" />
<text x="173.64" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (306 samples, 0.01%)</title><rect x="222.5" y="1317" width="0.2" height="15.0" fill="rgb(217,117,48)" rx="2" ry="2" />
<text x="225.52" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (634 samples, 0.03%)</title><rect x="598.4" y="1221" width="0.3" height="15.0" fill="rgb(253,132,13)" rx="2" ry="2" />
<text x="601.38" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (23,204 samples, 1.01%)</title><rect x="815.7" y="469" width="11.9" height="15.0" fill="rgb(246,47,22)" rx="2" ry="2" />
<text x="818.72" y="479.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (2,078 samples, 0.09%)</title><rect x="1165.1" y="741" width="1.1" height="15.0" fill="rgb(249,54,19)" rx="2" ry="2" />
<text x="1168.09" y="751.5" ></text>
</g>
<g >
<title>uECC_vli_square (505 samples, 0.02%)</title><rect x="832.6" y="229" width="0.3" height="15.0" fill="rgb(210,94,28)" rx="2" ry="2" />
<text x="835.61" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (751 samples, 0.03%)</title><rect x="1058.8" y="1141" width="0.3" height="15.0" fill="rgb(232,83,16)" rx="2" ry="2" />
<text x="1061.76" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3994 (72,083 samples, 3.12%)</title><rect x="631.3" y="293" width="36.8" height="15.0" fill="rgb(210,73,25)" rx="2" ry="2" />
<text x="634.30" y="303.5" >cam..</text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,728 samples, 0.07%)</title><rect x="580.9" y="1253" width="0.8" height="15.0" fill="rgb(249,127,18)" rx="2" ry="2" />
<text x="583.87" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4131 (97,027 samples, 4.20%)</title><rect x="680.1" y="1221" width="49.6" height="15.0" fill="rgb(245,203,49)" rx="2" ry="2" />
<text x="683.10" y="1231.5" >camlI..</text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (804 samples, 0.03%)</title><rect x="678.3" y="1269" width="0.5" height="15.0" fill="rgb(219,77,14)" rx="2" ry="2" />
<text x="681.34" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_tree_4554 (602 samples, 0.03%)</title><rect x="1162.3" y="597" width="0.3" height="15.0" fill="rgb(224,213,41)" rx="2" ry="2" />
<text x="1165.27" y="607.5" ></text>
</g>
<g >
<title>mark_slice_darken (308 samples, 0.01%)</title><rect x="606.1" y="1269" width="0.1" height="15.0" fill="rgb(211,220,54)" rx="2" ry="2" />
<text x="609.08" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (38,256 samples, 1.66%)</title><rect x="815.7" y="805" width="19.6" height="15.0" fill="rgb(228,27,50)" rx="2" ry="2" />
<text x="818.71" y="815.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,810 samples, 0.08%)</title><rect x="102.7" y="1525" width="0.9" height="15.0" fill="rgb(214,9,32)" rx="2" ry="2" />
<text x="105.70" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (389 samples, 0.02%)</title><rect x="580.6" y="1253" width="0.2" height="15.0" fill="rgb(228,71,5)" rx="2" ry="2" />
<text x="583.56" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (535 samples, 0.02%)</title><rect x="243.3" y="1349" width="0.3" height="15.0" fill="rgb(239,75,5)" rx="2" ry="2" />
<text x="246.28" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (248 samples, 0.01%)</title><rect x="621.5" y="1237" width="0.2" height="15.0" fill="rgb(217,196,12)" rx="2" ry="2" />
<text x="624.53" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,518 samples, 0.07%)</title><rect x="557.8" y="1285" width="0.8" height="15.0" fill="rgb(248,87,45)" rx="2" ry="2" />
<text x="560.85" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (1,133 samples, 0.05%)</title><rect x="702.7" y="981" width="0.6" height="15.0" fill="rgb(227,152,29)" rx="2" ry="2" />
<text x="705.71" y="991.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,326 samples, 0.06%)</title><rect x="229.8" y="1269" width="0.7" height="15.0" fill="rgb(205,58,15)" rx="2" ry="2" />
<text x="232.84" y="1279.5" ></text>
</g>
<g >
<title>XYcZ_add (1,004 samples, 0.04%)</title><rect x="1158.2" y="181" width="0.5" height="15.0" fill="rgb(215,29,19)" rx="2" ry="2" />
<text x="1161.19" y="191.5" ></text>
</g>
<g >
<title>unix_read (88,563 samples, 3.84%)</title><rect x="925.9" y="1653" width="45.3" height="15.0" fill="rgb(253,11,40)" rx="2" ry="2" />
<text x="928.92" y="1663.5" >unix..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (535 samples, 0.02%)</title><rect x="725.4" y="1157" width="0.3" height="15.0" fill="rgb(233,75,35)" rx="2" ry="2" />
<text x="728.43" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (512 samples, 0.02%)</title><rect x="1010.4" y="1349" width="0.2" height="15.0" fill="rgb(222,124,26)" rx="2" ry="2" />
<text x="1013.37" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (259 samples, 0.01%)</title><rect x="913.4" y="1365" width="0.1" height="15.0" fill="rgb(254,72,4)" rx="2" ry="2" />
<text x="916.35" y="1375.5" ></text>
</g>
<g >
<title>camlLwt_main__run_124 (413,475 samples, 17.91%)</title><rect x="972.6" y="1525" width="211.4" height="15.0" fill="rgb(219,79,44)" rx="2" ry="2" />
<text x="975.63" y="1535.5" >camlLwt_main__run_124</text>
</g>
<g >
<title>caml_major_collection_slice (599 samples, 0.03%)</title><rect x="256.2" y="1365" width="0.3" height="15.0" fill="rgb(245,148,52)" rx="2" ry="2" />
<text x="259.16" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (35,241 samples, 1.53%)</title><rect x="1143.9" y="597" width="18.0" height="15.0" fill="rgb(234,123,30)" rx="2" ry="2" />
<text x="1146.90" y="607.5" ></text>
</g>
<g >
<title>caml_call_gc (361 samples, 0.02%)</title><rect x="221.2" y="1333" width="0.2" height="15.0" fill="rgb(249,147,1)" rx="2" ry="2" />
<text x="224.17" y="1343.5" ></text>
</g>
<g >
<title>caml_apply5 (1,267 samples, 0.05%)</title><rect x="555.3" y="1285" width="0.6" height="15.0" fill="rgb(240,212,39)" rx="2" ry="2" />
<text x="558.30" y="1295.5" ></text>
</g>
<g >
<title>camlMain__entry (1,664,820 samples, 72.12%)</title><rect x="74.8" y="1605" width="851.1" height="15.0" fill="rgb(220,7,15)" rx="2" ry="2" />
<text x="77.83" y="1615.5" >camlMain__entry</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (390 samples, 0.02%)</title><rect x="1071.0" y="1205" width="0.2" height="15.0" fill="rgb(242,36,47)" rx="2" ry="2" />
<text x="1074.00" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4918 (268 samples, 0.01%)</title><rect x="992.6" y="1381" width="0.1" height="15.0" fill="rgb(230,221,29)" rx="2" ry="2" />
<text x="995.61" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,056 samples, 0.05%)</title><rect x="515.5" y="1269" width="0.5" height="15.0" fill="rgb(248,82,13)" rx="2" ry="2" />
<text x="518.48" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (346 samples, 0.01%)</title><rect x="851.5" y="1237" width="0.2" height="15.0" fill="rgb(215,168,24)" rx="2" ry="2" />
<text x="854.50" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (574 samples, 0.02%)</title><rect x="1031.8" y="1365" width="0.3" height="15.0" fill="rgb(207,65,10)" rx="2" ry="2" />
<text x="1034.79" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (861 samples, 0.04%)</title><rect x="601.0" y="1285" width="0.4" height="15.0" fill="rgb(228,177,52)" rx="2" ry="2" />
<text x="603.95" y="1295.5" ></text>
</g>
<g >
<title>uECC_verify (13,289 samples, 0.58%)</title><rect x="1106.0" y="133" width="6.8" height="15.0" fill="rgb(235,214,35)" rx="2" ry="2" />
<text x="1109.00" y="143.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (206 samples, 0.01%)</title><rect x="767.7" y="1125" width="0.1" height="15.0" fill="rgb(228,51,51)" rx="2" ry="2" />
<text x="770.69" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (203 samples, 0.01%)</title><rect x="1173.1" y="725" width="0.1" height="15.0" fill="rgb(245,6,4)" rx="2" ry="2" />
<text x="1176.11" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (601 samples, 0.03%)</title><rect x="1000.2" y="1125" width="0.3" height="15.0" fill="rgb(239,73,22)" rx="2" ry="2" />
<text x="1003.20" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (431 samples, 0.02%)</title><rect x="1178.6" y="933" width="0.3" height="15.0" fill="rgb(243,130,18)" rx="2" ry="2" />
<text x="1181.64" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (32,071 samples, 1.39%)</title><rect x="527.8" y="1317" width="16.4" height="15.0" fill="rgb(212,70,2)" rx="2" ry="2" />
<text x="530.81" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (501 samples, 0.02%)</title><rect x="765.0" y="1109" width="0.3" height="15.0" fill="rgb(217,202,5)" rx="2" ry="2" />
<text x="768.00" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (1,150 samples, 0.05%)</title><rect x="857.3" y="917" width="0.6" height="15.0" fill="rgb(220,165,31)" rx="2" ry="2" />
<text x="860.27" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (497 samples, 0.02%)</title><rect x="1074.0" y="1157" width="0.3" height="15.0" fill="rgb(212,71,47)" rx="2" ry="2" />
<text x="1077.02" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (206 samples, 0.01%)</title><rect x="725.7" y="1157" width="0.1" height="15.0" fill="rgb(214,124,21)" rx="2" ry="2" />
<text x="728.72" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (801,146 samples, 34.71%)</title><rect x="480.1" y="1397" width="409.5" height="15.0" fill="rgb(223,145,16)" rx="2" ry="2" />
<text x="483.10" y="1407.5" >camlLwt__run_in_resolution_loop_899</text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12887 (11,273 samples, 0.49%)</title><rect x="827.6" y="453" width="5.7" height="15.0" fill="rgb(238,216,42)" rx="2" ry="2" />
<text x="830.58" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (2,456 samples, 0.11%)</title><rect x="136.5" y="1365" width="1.3" height="15.0" fill="rgb(241,34,34)" rx="2" ry="2" />
<text x="139.54" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_add (434 samples, 0.02%)</title><rect x="1104.5" y="53" width="0.2" height="15.0" fill="rgb(254,49,43)" rx="2" ry="2" />
<text x="1107.45" y="63.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (3,724 samples, 0.16%)</title><rect x="149.6" y="1461" width="1.9" height="15.0" fill="rgb(208,124,5)" rx="2" ry="2" />
<text x="152.55" y="1471.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,079 samples, 0.05%)</title><rect x="182.3" y="1285" width="0.6" height="15.0" fill="rgb(214,193,9)" rx="2" ry="2" />
<text x="185.31" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__merge_callbacks_728 (2,952 samples, 0.13%)</title><rect x="604.2" y="1333" width="1.5" height="15.0" fill="rgb(252,162,49)" rx="2" ry="2" />
<text x="607.24" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (244 samples, 0.01%)</title><rect x="884.6" y="1077" width="0.2" height="15.0" fill="rgb(226,116,37)" rx="2" ry="2" />
<text x="887.63" y="1087.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (440 samples, 0.02%)</title><rect x="906.7" y="1301" width="0.2" height="15.0" fill="rgb(207,119,8)" rx="2" ry="2" />
<text x="909.68" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (305 samples, 0.01%)</title><rect x="620.3" y="1013" width="0.2" height="15.0" fill="rgb(233,32,34)" rx="2" ry="2" />
<text x="623.30" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (207 samples, 0.01%)</title><rect x="773.5" y="1029" width="0.1" height="15.0" fill="rgb(246,125,49)" rx="2" ry="2" />
<text x="776.50" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (223 samples, 0.01%)</title><rect x="697.6" y="869" width="0.1" height="15.0" fill="rgb(228,58,39)" rx="2" ry="2" />
<text x="700.62" y="879.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (247 samples, 0.01%)</title><rect x="1032.6" y="1349" width="0.2" height="15.0" fill="rgb(249,148,39)" rx="2" ry="2" />
<text x="1035.64" y="1359.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (220 samples, 0.01%)</title><rect x="816.3" y="181" width="0.1" height="15.0" fill="rgb(233,42,39)" rx="2" ry="2" />
<text x="819.31" y="191.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,461 samples, 0.06%)</title><rect x="713.4" y="1045" width="0.8" height="15.0" fill="rgb(208,151,43)" rx="2" ry="2" />
<text x="716.43" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (97,857 samples, 4.24%)</title><rect x="622.7" y="1189" width="50.1" height="15.0" fill="rgb(244,152,1)" rx="2" ry="2" />
<text x="625.75" y="1199.5" >camlL..</text>
</g>
<g >
<title>__lseek64 (240 samples, 0.01%)</title><rect x="534.8" y="1045" width="0.1" height="15.0" fill="rgb(233,28,34)" rx="2" ry="2" />
<text x="537.76" y="1055.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (260 samples, 0.01%)</title><rect x="336.9" y="1317" width="0.2" height="15.0" fill="rgb(207,28,37)" rx="2" ry="2" />
<text x="339.94" y="1327.5" ></text>
</g>
<g >
<title>uECC_vli_sub (207 samples, 0.01%)</title><rect x="1150.3" y="117" width="0.1" height="15.0" fill="rgb(207,57,17)" rx="2" ry="2" />
<text x="1153.27" y="127.5" ></text>
</g>
<g >
<title>invert_pointer_at (326 samples, 0.01%)</title><rect x="865.4" y="773" width="0.2" height="15.0" fill="rgb(233,81,22)" rx="2" ry="2" />
<text x="868.39" y="783.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (324 samples, 0.01%)</title><rect x="767.9" y="1093" width="0.2" height="15.0" fill="rgb(219,39,49)" rx="2" ry="2" />
<text x="770.91" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (3,576 samples, 0.15%)</title><rect x="307.4" y="1445" width="1.8" height="15.0" fill="rgb(244,56,29)" rx="2" ry="2" />
<text x="310.36" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,434 samples, 0.15%)</title><rect x="124.2" y="1429" width="1.7" height="15.0" fill="rgb(241,136,17)" rx="2" ry="2" />
<text x="127.18" y="1439.5" ></text>
</g>
<g >
<title>camlLwt_sequence__create_99 (1,506 samples, 0.07%)</title><rect x="973.8" y="1493" width="0.8" height="15.0" fill="rgb(227,87,27)" rx="2" ry="2" />
<text x="976.80" y="1503.5" ></text>
</g>
<g >
<title>mark_slice (630 samples, 0.03%)</title><rect x="676.5" y="1173" width="0.3" height="15.0" fill="rgb(215,227,20)" rx="2" ry="2" />
<text x="679.52" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (199 samples, 0.01%)</title><rect x="392.9" y="1397" width="0.1" height="15.0" fill="rgb(213,57,44)" rx="2" ry="2" />
<text x="395.88" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (635 samples, 0.03%)</title><rect x="432.4" y="1317" width="0.3" height="15.0" fill="rgb(246,180,11)" rx="2" ry="2" />
<text x="435.37" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (444 samples, 0.02%)</title><rect x="721.8" y="1045" width="0.2" height="15.0" fill="rgb(215,104,42)" rx="2" ry="2" />
<text x="724.81" y="1055.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (315 samples, 0.01%)</title><rect x="397.4" y="1413" width="0.1" height="15.0" fill="rgb(224,206,8)" rx="2" ry="2" />
<text x="400.35" y="1423.5" ></text>
</g>
<g >
<title>caml_make_vect (345 samples, 0.01%)</title><rect x="737.7" y="1125" width="0.1" height="15.0" fill="rgb(237,132,16)" rx="2" ry="2" />
<text x="740.66" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_4844 (2,631 samples, 0.11%)</title><rect x="619.4" y="1285" width="1.4" height="15.0" fill="rgb(220,5,37)" rx="2" ry="2" />
<text x="622.44" y="1295.5" ></text>
</g>
<g >
<title>caml_string_equal (345 samples, 0.01%)</title><rect x="1125.9" y="933" width="0.2" height="15.0" fill="rgb(241,88,28)" rx="2" ry="2" />
<text x="1128.91" y="943.5" ></text>
</g>
<g >
<title>caml_call_gc (2,105 samples, 0.09%)</title><rect x="327.2" y="1413" width="1.1" height="15.0" fill="rgb(246,157,42)" rx="2" ry="2" />
<text x="330.19" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (869 samples, 0.04%)</title><rect x="1089.3" y="933" width="0.5" height="15.0" fill="rgb(213,139,34)" rx="2" ry="2" />
<text x="1092.34" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (374 samples, 0.02%)</title><rect x="363.1" y="1349" width="0.2" height="15.0" fill="rgb(217,147,41)" rx="2" ry="2" />
<text x="366.12" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (8,199 samples, 0.36%)</title><rect x="535.6" y="1189" width="4.2" height="15.0" fill="rgb(235,23,9)" rx="2" ry="2" />
<text x="538.63" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (350 samples, 0.02%)</title><rect x="619.0" y="1205" width="0.1" height="15.0" fill="rgb(249,151,39)" rx="2" ry="2" />
<text x="621.97" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (19,734 samples, 0.85%)</title><rect x="252.0" y="1429" width="10.1" height="15.0" fill="rgb(240,2,20)" rx="2" ry="2" />
<text x="255.04" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (476 samples, 0.02%)</title><rect x="616.2" y="1205" width="0.3" height="15.0" fill="rgb(215,34,52)" rx="2" ry="2" />
<text x="619.22" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (269 samples, 0.01%)</title><rect x="372.0" y="1285" width="0.1" height="15.0" fill="rgb(213,82,11)" rx="2" ry="2" />
<text x="374.98" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (23,211 samples, 1.01%)</title><rect x="19.4" y="1637" width="11.9" height="15.0" fill="rgb(212,79,6)" rx="2" ry="2" />
<text x="22.39" y="1647.5" ></text>
</g>
<g >
<title>caml_call_gc (374 samples, 0.02%)</title><rect x="613.7" y="1157" width="0.2" height="15.0" fill="rgb(222,206,22)" rx="2" ry="2" />
<text x="616.69" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (254 samples, 0.01%)</title><rect x="615.6" y="1205" width="0.1" height="15.0" fill="rgb(228,9,34)" rx="2" ry="2" />
<text x="618.58" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (956 samples, 0.04%)</title><rect x="916.1" y="1445" width="0.5" height="15.0" fill="rgb(223,1,14)" rx="2" ry="2" />
<text x="919.11" y="1455.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (203 samples, 0.01%)</title><rect x="514.8" y="1157" width="0.1" height="15.0" fill="rgb(228,189,11)" rx="2" ry="2" />
<text x="517.79" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (352 samples, 0.02%)</title><rect x="206.6" y="1301" width="0.2" height="15.0" fill="rgb(206,32,48)" rx="2" ry="2" />
<text x="209.62" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (1,526,030 samples, 66.11%)</title><rect x="117.9" y="1493" width="780.1" height="15.0" fill="rgb(211,166,45)" rx="2" ry="2" />
<text x="120.86" y="1503.5" >camlLwt__callback_1304</text>
</g>
<g >
<title>camlLwt__callback_1304 (38,439 samples, 1.67%)</title><rect x="853.7" y="1173" width="19.7" height="15.0" fill="rgb(224,10,48)" rx="2" ry="2" />
<text x="856.70" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (1,328 samples, 0.06%)</title><rect x="1085.8" y="1013" width="0.7" height="15.0" fill="rgb(218,21,52)" rx="2" ry="2" />
<text x="1088.84" y="1023.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (213 samples, 0.01%)</title><rect x="1094.9" y="53" width="0.1" height="15.0" fill="rgb(215,217,32)" rx="2" ry="2" />
<text x="1097.88" y="63.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (468 samples, 0.02%)</title><rect x="871.3" y="917" width="0.3" height="15.0" fill="rgb(225,28,21)" rx="2" ry="2" />
<text x="874.31" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (237 samples, 0.01%)</title><rect x="1171.0" y="901" width="0.1" height="15.0" fill="rgb(220,71,3)" rx="2" ry="2" />
<text x="1174.02" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (198 samples, 0.01%)</title><rect x="191.9" y="1061" width="0.1" height="15.0" fill="rgb(227,60,39)" rx="2" ry="2" />
<text x="194.88" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (1,349 samples, 0.06%)</title><rect x="1085.8" y="1029" width="0.7" height="15.0" fill="rgb(206,160,54)" rx="2" ry="2" />
<text x="1088.83" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (224 samples, 0.01%)</title><rect x="1052.1" y="1237" width="0.1" height="15.0" fill="rgb(214,83,1)" rx="2" ry="2" />
<text x="1055.10" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (477 samples, 0.02%)</title><rect x="781.8" y="1045" width="0.3" height="15.0" fill="rgb(235,188,45)" rx="2" ry="2" />
<text x="784.83" y="1055.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (573 samples, 0.02%)</title><rect x="268.9" y="1365" width="0.3" height="15.0" fill="rgb(206,108,23)" rx="2" ry="2" />
<text x="271.95" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_8138 (1,386 samples, 0.06%)</title><rect x="1162.7" y="709" width="0.7" height="15.0" fill="rgb(253,220,51)" rx="2" ry="2" />
<text x="1165.73" y="719.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,791 samples, 0.16%)</title><rect x="249.0" y="1397" width="2.0" height="15.0" fill="rgb(231,13,9)" rx="2" ry="2" />
<text x="252.03" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (530 samples, 0.02%)</title><rect x="626.0" y="1013" width="0.3" height="15.0" fill="rgb(245,9,41)" rx="2" ry="2" />
<text x="629.04" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (636 samples, 0.03%)</title><rect x="209.8" y="1349" width="0.3" height="15.0" fill="rgb(242,3,0)" rx="2" ry="2" />
<text x="212.78" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (828 samples, 0.04%)</title><rect x="621.7" y="1285" width="0.4" height="15.0" fill="rgb(212,61,38)" rx="2" ry="2" />
<text x="624.66" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (230 samples, 0.01%)</title><rect x="1163.9" y="437" width="0.2" height="15.0" fill="rgb(244,206,1)" rx="2" ry="2" />
<text x="1166.94" y="447.5" ></text>
</g>
<g >
<title>caml_apply2 (296 samples, 0.01%)</title><rect x="1016.3" y="1349" width="0.2" height="15.0" fill="rgb(252,74,8)" rx="2" ry="2" />
<text x="1019.34" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (693 samples, 0.03%)</title><rect x="711.8" y="1061" width="0.3" height="15.0" fill="rgb(215,127,20)" rx="2" ry="2" />
<text x="714.78" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (2,747 samples, 0.12%)</title><rect x="300.0" y="1413" width="1.4" height="15.0" fill="rgb(251,225,47)" rx="2" ry="2" />
<text x="302.99" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (282 samples, 0.01%)</title><rect x="1056.7" y="1109" width="0.1" height="15.0" fill="rgb(217,202,8)" rx="2" ry="2" />
<text x="1059.67" y="1119.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (262 samples, 0.01%)</title><rect x="235.8" y="1333" width="0.1" height="15.0" fill="rgb(205,9,18)" rx="2" ry="2" />
<text x="238.81" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (11,165 samples, 0.48%)</title><rect x="1118.4" y="1029" width="5.8" height="15.0" fill="rgb(212,15,17)" rx="2" ry="2" />
<text x="1121.45" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1828 (528 samples, 0.02%)</title><rect x="808.9" y="1045" width="0.3" height="15.0" fill="rgb(230,192,17)" rx="2" ry="2" />
<text x="811.89" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (347 samples, 0.02%)</title><rect x="575.7" y="1077" width="0.2" height="15.0" fill="rgb(240,50,42)" rx="2" ry="2" />
<text x="578.74" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (298 samples, 0.01%)</title><rect x="84.2" y="1541" width="0.2" height="15.0" fill="rgb(254,151,24)" rx="2" ry="2" />
<text x="87.21" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (774 samples, 0.03%)</title><rect x="534.7" y="1109" width="0.4" height="15.0" fill="rgb(213,109,26)" rx="2" ry="2" />
<text x="537.71" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (1,238 samples, 0.05%)</title><rect x="771.9" y="1109" width="0.7" height="15.0" fill="rgb(209,128,29)" rx="2" ry="2" />
<text x="774.95" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (280 samples, 0.01%)</title><rect x="555.0" y="1237" width="0.2" height="15.0" fill="rgb(223,111,20)" rx="2" ry="2" />
<text x="558.05" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (269 samples, 0.01%)</title><rect x="795.1" y="981" width="0.1" height="15.0" fill="rgb(246,199,30)" rx="2" ry="2" />
<text x="798.08" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_string (650 samples, 0.03%)</title><rect x="219.4" y="1349" width="0.3" height="15.0" fill="rgb(248,224,49)" rx="2" ry="2" />
<text x="222.40" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (1,210 samples, 0.05%)</title><rect x="813.1" y="1141" width="0.6" height="15.0" fill="rgb(216,66,46)" rx="2" ry="2" />
<text x="816.09" y="1151.5" ></text>
</g>
<g >
<title>uECC_vli_add (311 samples, 0.01%)</title><rect x="657.8" y="149" width="0.2" height="15.0" fill="rgb(245,55,17)" rx="2" ry="2" />
<text x="660.80" y="159.5" ></text>
</g>
<g >
<title>caml_oldify_one (196 samples, 0.01%)</title><rect x="372.0" y="1269" width="0.1" height="15.0" fill="rgb(228,190,45)" rx="2" ry="2" />
<text x="375.02" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (1,125 samples, 0.05%)</title><rect x="420.9" y="1413" width="0.6" height="15.0" fill="rgb(228,168,28)" rx="2" ry="2" />
<text x="423.93" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (36,360 samples, 1.58%)</title><rect x="1094.5" y="837" width="18.6" height="15.0" fill="rgb(208,9,26)" rx="2" ry="2" />
<text x="1097.53" y="847.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (837 samples, 0.04%)</title><rect x="582.1" y="1189" width="0.4" height="15.0" fill="rgb(244,58,5)" rx="2" ry="2" />
<text x="585.08" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (80,713 samples, 3.50%)</title><rect x="631.2" y="1077" width="41.3" height="15.0" fill="rgb(229,126,40)" rx="2" ry="2" />
<text x="634.21" y="1087.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (631 samples, 0.03%)</title><rect x="754.2" y="1077" width="0.3" height="15.0" fill="rgb(253,83,19)" rx="2" ry="2" />
<text x="757.20" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (3,820 samples, 0.17%)</title><rect x="190.6" y="1253" width="2.0" height="15.0" fill="rgb(237,213,0)" rx="2" ry="2" />
<text x="193.61" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (789,332 samples, 34.20%)</title><rect x="481.7" y="1381" width="403.5" height="15.0" fill="rgb(243,54,35)" rx="2" ry="2" />
<text x="484.67" y="1391.5" >camlLwt__iter_callback_list_848</text>
</g>
<g >
<title>mark_slice_darken (327 samples, 0.01%)</title><rect x="610.7" y="1125" width="0.1" height="15.0" fill="rgb(230,60,12)" rx="2" ry="2" />
<text x="613.67" y="1135.5" ></text>
</g>
<g >
<title>caml_modify (432 samples, 0.02%)</title><rect x="848.2" y="1301" width="0.3" height="15.0" fill="rgb(222,6,18)" rx="2" ry="2" />
<text x="851.23" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (58,218 samples, 2.52%)</title><rect x="940.7" y="1541" width="29.8" height="15.0" fill="rgb(237,98,10)" rx="2" ry="2" />
<text x="943.73" y="1551.5" >[[..</text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,468 samples, 0.11%)</title><rect x="191.3" y="1157" width="1.3" height="15.0" fill="rgb(214,3,21)" rx="2" ry="2" />
<text x="194.30" y="1167.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (264 samples, 0.01%)</title><rect x="714.4" y="1077" width="0.1" height="15.0" fill="rgb(242,108,17)" rx="2" ry="2" />
<text x="717.39" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (305 samples, 0.01%)</title><rect x="584.3" y="1333" width="0.2" height="15.0" fill="rgb(230,162,45)" rx="2" ry="2" />
<text x="587.32" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (234 samples, 0.01%)</title><rect x="190.9" y="1189" width="0.1" height="15.0" fill="rgb(245,196,16)" rx="2" ry="2" />
<text x="193.85" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (2,788 samples, 0.12%)</title><rect x="415.5" y="1381" width="1.4" height="15.0" fill="rgb(248,111,21)" rx="2" ry="2" />
<text x="418.45" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (307 samples, 0.01%)</title><rect x="770.1" y="1077" width="0.1" height="15.0" fill="rgb(218,24,40)" rx="2" ry="2" />
<text x="773.08" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (243 samples, 0.01%)</title><rect x="571.1" y="1269" width="0.2" height="15.0" fill="rgb(235,29,9)" rx="2" ry="2" />
<text x="574.14" y="1279.5" ></text>
</g>
<g >
<title>caml_darken (604 samples, 0.03%)</title><rect x="518.5" y="1301" width="0.3" height="15.0" fill="rgb(246,215,25)" rx="2" ry="2" />
<text x="521.46" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__of_bin_string_1159 (595 samples, 0.03%)</title><rect x="167.4" y="1381" width="0.3" height="15.0" fill="rgb(247,191,8)" rx="2" ry="2" />
<text x="170.44" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (1,836 samples, 0.08%)</title><rect x="629.2" y="1013" width="0.9" height="15.0" fill="rgb(225,160,9)" rx="2" ry="2" />
<text x="632.19" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (240 samples, 0.01%)</title><rect x="191.0" y="1189" width="0.1" height="15.0" fill="rgb(220,121,46)" rx="2" ry="2" />
<text x="193.97" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (513 samples, 0.02%)</title><rect x="704.0" y="949" width="0.2" height="15.0" fill="rgb(206,166,15)" rx="2" ry="2" />
<text x="706.97" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (436 samples, 0.02%)</title><rect x="569.8" y="1237" width="0.2" height="15.0" fill="rgb(219,142,27)" rx="2" ry="2" />
<text x="572.82" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (291 samples, 0.01%)</title><rect x="766.5" y="1061" width="0.2" height="15.0" fill="rgb(214,85,40)" rx="2" ry="2" />
<text x="769.53" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (258 samples, 0.01%)</title><rect x="523.9" y="1269" width="0.1" height="15.0" fill="rgb(226,187,47)" rx="2" ry="2" />
<text x="526.85" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (5,824 samples, 0.25%)</title><rect x="228.0" y="1349" width="3.0" height="15.0" fill="rgb(223,229,1)" rx="2" ry="2" />
<text x="231.01" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (875 samples, 0.04%)</title><rect x="726.6" y="1141" width="0.4" height="15.0" fill="rgb(252,3,47)" rx="2" ry="2" />
<text x="729.57" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (2,063 samples, 0.09%)</title><rect x="372.0" y="1349" width="1.0" height="15.0" fill="rgb(237,183,16)" rx="2" ry="2" />
<text x="374.95" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (2,424 samples, 0.11%)</title><rect x="149.7" y="1413" width="1.2" height="15.0" fill="rgb(238,139,38)" rx="2" ry="2" />
<text x="152.70" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (627 samples, 0.03%)</title><rect x="489.8" y="1205" width="0.3" height="15.0" fill="rgb(254,37,35)" rx="2" ry="2" />
<text x="492.76" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (431 samples, 0.02%)</title><rect x="805.3" y="1013" width="0.2" height="15.0" fill="rgb(219,103,42)" rx="2" ry="2" />
<text x="808.32" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (1,273 samples, 0.06%)</title><rect x="1143.0" y="1061" width="0.6" height="15.0" fill="rgb(234,80,54)" rx="2" ry="2" />
<text x="1145.99" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (607 samples, 0.03%)</title><rect x="1120.1" y="933" width="0.3" height="15.0" fill="rgb(206,226,53)" rx="2" ry="2" />
<text x="1123.11" y="943.5" ></text>
</g>
<g >
<title>uECC_verify (634 samples, 0.03%)</title><rect x="815.7" y="213" width="0.4" height="15.0" fill="rgb(228,115,22)" rx="2" ry="2" />
<text x="818.75" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (339 samples, 0.01%)</title><rect x="1006.2" y="1301" width="0.2" height="15.0" fill="rgb(253,52,52)" rx="2" ry="2" />
<text x="1009.22" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (824 samples, 0.04%)</title><rect x="152.0" y="1397" width="0.4" height="15.0" fill="rgb(233,163,27)" rx="2" ry="2" />
<text x="154.97" y="1407.5" ></text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (201 samples, 0.01%)</title><rect x="380.5" y="1413" width="0.1" height="15.0" fill="rgb(245,129,21)" rx="2" ry="2" />
<text x="383.53" y="1423.5" ></text>
</g>
<g >
<title>XYcZ_add (1,190 samples, 0.05%)</title><rect x="828.9" y="245" width="0.6" height="15.0" fill="rgb(231,197,7)" rx="2" ry="2" />
<text x="831.91" y="255.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (69,129 samples, 2.99%)</title><rect x="849.8" y="1333" width="35.3" height="15.0" fill="rgb(210,229,49)" rx="2" ry="2" />
<text x="852.79" y="1343.5" >ca..</text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (312 samples, 0.01%)</title><rect x="872.6" y="965" width="0.2" height="15.0" fill="rgb(223,162,28)" rx="2" ry="2" />
<text x="875.61" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__prim_615 (297 samples, 0.01%)</title><rect x="448.3" y="1429" width="0.2" height="15.0" fill="rgb(239,128,8)" rx="2" ry="2" />
<text x="451.30" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (711 samples, 0.03%)</title><rect x="564.2" y="1221" width="0.4" height="15.0" fill="rgb(205,142,4)" rx="2" ry="2" />
<text x="567.19" y="1231.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (2,489 samples, 0.11%)</title><rect x="837.0" y="805" width="1.3" height="15.0" fill="rgb(211,29,16)" rx="2" ry="2" />
<text x="840.02" y="815.5" ></text>
</g>
<g >
<title>mark_slice_darken (360 samples, 0.02%)</title><rect x="334.6" y="1349" width="0.2" height="15.0" fill="rgb(223,80,50)" rx="2" ry="2" />
<text x="337.61" y="1359.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (8,701 samples, 0.38%)</title><rect x="823.1" y="293" width="4.5" height="15.0" fill="rgb(254,23,13)" rx="2" ry="2" />
<text x="826.11" y="303.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (227 samples, 0.01%)</title><rect x="1181.3" y="1413" width="0.1" height="15.0" fill="rgb(207,187,31)" rx="2" ry="2" />
<text x="1184.26" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (289 samples, 0.01%)</title><rect x="518.8" y="1301" width="0.2" height="15.0" fill="rgb(229,182,31)" rx="2" ry="2" />
<text x="521.84" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (264 samples, 0.01%)</title><rect x="796.0" y="997" width="0.1" height="15.0" fill="rgb(219,36,37)" rx="2" ry="2" />
<text x="798.95" y="1007.5" ></text>
</g>
<g >
<title>caml_call_gc (4,481 samples, 0.19%)</title><rect x="601.0" y="1333" width="2.2" height="15.0" fill="rgb(240,64,13)" rx="2" ry="2" />
<text x="603.95" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (969 samples, 0.04%)</title><rect x="884.3" y="1253" width="0.5" height="15.0" fill="rgb(239,144,42)" rx="2" ry="2" />
<text x="887.29" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2615 (290 samples, 0.01%)</title><rect x="220.2" y="1365" width="0.1" height="15.0" fill="rgb(246,46,30)" rx="2" ry="2" />
<text x="223.17" y="1375.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (286 samples, 0.01%)</title><rect x="915.1" y="1413" width="0.2" height="15.0" fill="rgb(239,141,4)" rx="2" ry="2" />
<text x="918.10" y="1423.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (217 samples, 0.01%)</title><rect x="243.6" y="1333" width="0.1" height="15.0" fill="rgb(226,215,7)" rx="2" ry="2" />
<text x="246.56" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (314 samples, 0.01%)</title><rect x="1167.2" y="1253" width="0.2" height="15.0" fill="rgb(228,33,10)" rx="2" ry="2" />
<text x="1170.23" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (577 samples, 0.02%)</title><rect x="487.8" y="1269" width="0.3" height="15.0" fill="rgb(242,220,26)" rx="2" ry="2" />
<text x="490.80" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (2,211 samples, 0.10%)</title><rect x="1127.9" y="1125" width="1.1" height="15.0" fill="rgb(215,73,21)" rx="2" ry="2" />
<text x="1130.88" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (79,481 samples, 3.44%)</title><rect x="631.2" y="869" width="40.7" height="15.0" fill="rgb(228,25,0)" rx="2" ry="2" />
<text x="634.23" y="879.5" >cam..</text>
</g>
<g >
<title>uECC_vli_mult (1,080 samples, 0.05%)</title><rect x="825.1" y="213" width="0.6" height="15.0" fill="rgb(235,109,28)" rx="2" ry="2" />
<text x="828.12" y="223.5" ></text>
</g>
<g >
<title>caml_modify (500 samples, 0.02%)</title><rect x="919.9" y="1493" width="0.3" height="15.0" fill="rgb(249,144,54)" rx="2" ry="2" />
<text x="922.91" y="1503.5" ></text>
</g>
<g >
<title>uECC_vli_add (207 samples, 0.01%)</title><rect x="1097.1" y="37" width="0.1" height="15.0" fill="rgb(209,12,46)" rx="2" ry="2" />
<text x="1100.07" y="47.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (2,237 samples, 0.10%)</title><rect x="827.8" y="277" width="1.1" height="15.0" fill="rgb(243,142,10)" rx="2" ry="2" />
<text x="830.75" y="287.5" ></text>
</g>
<g >
<title>caml_call_gc (703 samples, 0.03%)</title><rect x="848.7" y="1333" width="0.3" height="15.0" fill="rgb(211,28,32)" rx="2" ry="2" />
<text x="851.66" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_211 (236 samples, 0.01%)</title><rect x="807.1" y="1045" width="0.1" height="15.0" fill="rgb(244,157,24)" rx="2" ry="2" />
<text x="810.08" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (744 samples, 0.03%)</title><rect x="572.7" y="1173" width="0.4" height="15.0" fill="rgb(215,19,7)" rx="2" ry="2" />
<text x="575.70" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,801 samples, 1.55%)</title><rect x="1094.5" y="421" width="18.3" height="15.0" fill="rgb(205,106,15)" rx="2" ry="2" />
<text x="1097.53" y="431.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (6,749 samples, 0.29%)</title><rect x="463.2" y="1365" width="3.5" height="15.0" fill="rgb(239,5,22)" rx="2" ry="2" />
<text x="466.24" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (712 samples, 0.03%)</title><rect x="626.5" y="981" width="0.3" height="15.0" fill="rgb(251,1,7)" rx="2" ry="2" />
<text x="629.48" y="991.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (2,719 samples, 0.12%)</title><rect x="901.9" y="1461" width="1.4" height="15.0" fill="rgb(252,185,9)" rx="2" ry="2" />
<text x="904.89" y="1471.5" ></text>
</g>
<g >
<title>caml_garbage_collection (744 samples, 0.03%)</title><rect x="491.8" y="1189" width="0.3" height="15.0" fill="rgb(214,103,7)" rx="2" ry="2" />
<text x="494.76" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (273 samples, 0.01%)</title><rect x="709.3" y="1013" width="0.1" height="15.0" fill="rgb(218,217,52)" rx="2" ry="2" />
<text x="712.31" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (245 samples, 0.01%)</title><rect x="796.1" y="1013" width="0.2" height="15.0" fill="rgb(230,186,16)" rx="2" ry="2" />
<text x="799.14" y="1023.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (269 samples, 0.01%)</title><rect x="1098.3" y="85" width="0.1" height="15.0" fill="rgb(230,15,9)" rx="2" ry="2" />
<text x="1101.30" y="95.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (644 samples, 0.03%)</title><rect x="214.3" y="1333" width="0.3" height="15.0" fill="rgb(206,136,50)" rx="2" ry="2" />
<text x="217.26" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (362 samples, 0.02%)</title><rect x="881.1" y="901" width="0.2" height="15.0" fill="rgb(218,6,10)" rx="2" ry="2" />
<text x="884.10" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (401 samples, 0.02%)</title><rect x="856.3" y="917" width="0.2" height="15.0" fill="rgb(217,124,40)" rx="2" ry="2" />
<text x="859.34" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (631 samples, 0.03%)</title><rect x="831.3" y="245" width="0.3" height="15.0" fill="rgb(232,112,28)" rx="2" ry="2" />
<text x="834.27" y="255.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,286 samples, 0.06%)</title><rect x="564.0" y="1269" width="0.6" height="15.0" fill="rgb(220,204,40)" rx="2" ry="2" />
<text x="566.96" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (304 samples, 0.01%)</title><rect x="301.2" y="1397" width="0.2" height="15.0" fill="rgb(250,14,28)" rx="2" ry="2" />
<text x="304.23" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,073 samples, 0.05%)</title><rect x="1067.4" y="1205" width="0.6" height="15.0" fill="rgb(233,14,3)" rx="2" ry="2" />
<text x="1070.43" y="1215.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (4,941 samples, 0.21%)</title><rect x="323.3" y="1397" width="2.5" height="15.0" fill="rgb(222,209,28)" rx="2" ry="2" />
<text x="326.25" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (2,466 samples, 0.11%)</title><rect x="1125.4" y="1029" width="1.2" height="15.0" fill="rgb(235,214,23)" rx="2" ry="2" />
<text x="1128.36" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (4,057 samples, 0.18%)</title><rect x="997.0" y="1301" width="2.1" height="15.0" fill="rgb(227,27,38)" rx="2" ry="2" />
<text x="1000.00" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_sub (312 samples, 0.01%)</title><rect x="1111.6" y="69" width="0.2" height="15.0" fill="rgb(215,18,6)" rx="2" ry="2" />
<text x="1114.62" y="79.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (3,277 samples, 0.14%)</title><rect x="597.3" y="1317" width="1.6" height="15.0" fill="rgb(223,116,45)" rx="2" ry="2" />
<text x="600.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (1,296 samples, 0.06%)</title><rect x="623.1" y="1077" width="0.7" height="15.0" fill="rgb(238,54,19)" rx="2" ry="2" />
<text x="626.10" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (1,025 samples, 0.04%)</title><rect x="1129.8" y="1029" width="0.6" height="15.0" fill="rgb(208,123,37)" rx="2" ry="2" />
<text x="1132.84" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (685 samples, 0.03%)</title><rect x="431.5" y="1333" width="0.3" height="15.0" fill="rgb(245,62,16)" rx="2" ry="2" />
<text x="434.47" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (579 samples, 0.03%)</title><rect x="783.0" y="1077" width="0.3" height="15.0" fill="rgb(226,165,31)" rx="2" ry="2" />
<text x="786.02" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (1,594 samples, 0.07%)</title><rect x="695.4" y="981" width="0.8" height="15.0" fill="rgb(219,126,5)" rx="2" ry="2" />
<text x="698.38" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (78,691 samples, 3.41%)</title><rect x="682.8" y="1157" width="40.2" height="15.0" fill="rgb(222,21,2)" rx="2" ry="2" />
<text x="685.82" y="1167.5" >cam..</text>
</g>
<g >
<title>camlLwt__pause_2050 (259 samples, 0.01%)</title><rect x="1182.0" y="1365" width="0.1" height="15.0" fill="rgb(227,177,54)" rx="2" ry="2" />
<text x="1185.00" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (1,736 samples, 0.08%)</title><rect x="1082.8" y="1173" width="0.9" height="15.0" fill="rgb(231,183,39)" rx="2" ry="2" />
<text x="1085.81" y="1183.5" ></text>
</g>
<g >
<title>caml_string_equal (5,841 samples, 0.25%)</title><rect x="352.9" y="1365" width="3.0" height="15.0" fill="rgb(253,151,37)" rx="2" ry="2" />
<text x="355.93" y="1375.5" ></text>
</g>
<g >
<title>double_jacobian_default (12,426 samples, 0.54%)</title><rect x="660.2" y="181" width="6.4" height="15.0" fill="rgb(237,59,27)" rx="2" ry="2" />
<text x="663.20" y="191.5" ></text>
</g>
<g >
<title>uECC_vli_mult (660 samples, 0.03%)</title><rect x="1145.5" y="117" width="0.3" height="15.0" fill="rgb(240,66,9)" rx="2" ry="2" />
<text x="1148.50" y="127.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (80,694 samples, 3.50%)</title><rect x="631.2" y="997" width="41.3" height="15.0" fill="rgb(253,179,31)" rx="2" ry="2" />
<text x="634.22" y="1007.5" >cam..</text>
</g>
<g >
<title>caml_gc_dispatch (368 samples, 0.02%)</title><rect x="334.8" y="1397" width="0.2" height="15.0" fill="rgb(243,120,34)" rx="2" ry="2" />
<text x="337.85" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (426 samples, 0.02%)</title><rect x="805.0" y="997" width="0.3" height="15.0" fill="rgb(240,207,24)" rx="2" ry="2" />
<text x="808.04" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (80,705 samples, 3.50%)</title><rect x="631.2" y="1061" width="41.3" height="15.0" fill="rgb(252,122,27)" rx="2" ry="2" />
<text x="634.21" y="1071.5" >cam..</text>
</g>
<g >
<title>caml_garbage_collection (313 samples, 0.01%)</title><rect x="98.1" y="1509" width="0.2" height="15.0" fill="rgb(209,21,14)" rx="2" ry="2" />
<text x="101.10" y="1519.5" ></text>
</g>
<g >
<title>caml_oldify_one (370 samples, 0.02%)</title><rect x="894.8" y="1349" width="0.2" height="15.0" fill="rgb(227,26,28)" rx="2" ry="2" />
<text x="897.77" y="1359.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (273 samples, 0.01%)</title><rect x="185.5" y="1301" width="0.2" height="15.0" fill="rgb(215,88,18)" rx="2" ry="2" />
<text x="188.55" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (355 samples, 0.02%)</title><rect x="556.2" y="1301" width="0.1" height="15.0" fill="rgb(245,16,23)" rx="2" ry="2" />
<text x="559.16" y="1311.5" ></text>
</g>
<g >
<title>apply_z (1,318 samples, 0.06%)</title><rect x="824.3" y="245" width="0.7" height="15.0" fill="rgb(219,111,24)" rx="2" ry="2" />
<text x="827.30" y="255.5" ></text>
</g>
<g >
<title>caml_garbage_collection (400 samples, 0.02%)</title><rect x="537.6" y="1077" width="0.2" height="15.0" fill="rgb(228,140,5)" rx="2" ry="2" />
<text x="540.62" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (677 samples, 0.03%)</title><rect x="578.8" y="1285" width="0.3" height="15.0" fill="rgb(230,205,23)" rx="2" ry="2" />
<text x="581.80" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (348 samples, 0.02%)</title><rect x="795.7" y="997" width="0.2" height="15.0" fill="rgb(230,184,54)" rx="2" ry="2" />
<text x="798.74" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (955 samples, 0.04%)</title><rect x="1132.3" y="1029" width="0.4" height="15.0" fill="rgb(253,0,42)" rx="2" ry="2" />
<text x="1135.25" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (1,065 samples, 0.05%)</title><rect x="620.9" y="1269" width="0.6" height="15.0" fill="rgb(218,84,47)" rx="2" ry="2" />
<text x="623.94" y="1279.5" ></text>
</g>
<g >
<title>mul2add (316 samples, 0.01%)</title><rect x="821.8" y="181" width="0.1" height="15.0" fill="rgb(253,148,42)" rx="2" ry="2" />
<text x="824.76" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (977 samples, 0.04%)</title><rect x="530.0" y="1173" width="0.5" height="15.0" fill="rgb(233,45,10)" rx="2" ry="2" />
<text x="532.96" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,301 samples, 0.06%)</title><rect x="995.9" y="1301" width="0.7" height="15.0" fill="rgb(223,156,3)" rx="2" ry="2" />
<text x="998.92" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (296 samples, 0.01%)</title><rect x="851.1" y="1237" width="0.2" height="15.0" fill="rgb(225,102,12)" rx="2" ry="2" />
<text x="854.15" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (232 samples, 0.01%)</title><rect x="554.9" y="1237" width="0.1" height="15.0" fill="rgb(218,134,31)" rx="2" ry="2" />
<text x="557.93" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (236 samples, 0.01%)</title><rect x="190.5" y="1237" width="0.1" height="15.0" fill="rgb(210,216,49)" rx="2" ry="2" />
<text x="193.49" y="1247.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (222 samples, 0.01%)</title><rect x="1141.0" y="997" width="0.1" height="15.0" fill="rgb(242,127,10)" rx="2" ry="2" />
<text x="1144.00" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (783 samples, 0.03%)</title><rect x="273.6" y="1365" width="0.4" height="15.0" fill="rgb(224,208,5)" rx="2" ry="2" />
<text x="276.61" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (302 samples, 0.01%)</title><rect x="1141.6" y="1061" width="0.2" height="15.0" fill="rgb(246,155,37)" rx="2" ry="2" />
<text x="1144.61" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,203 samples, 0.10%)</title><rect x="601.7" y="1269" width="1.2" height="15.0" fill="rgb(207,139,0)" rx="2" ry="2" />
<text x="604.72" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (915 samples, 0.04%)</title><rect x="1143.9" y="197" width="0.5" height="15.0" fill="rgb(210,21,49)" rx="2" ry="2" />
<text x="1146.93" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (237 samples, 0.01%)</title><rect x="1006.6" y="1285" width="0.1" height="15.0" fill="rgb(232,33,11)" rx="2" ry="2" />
<text x="1009.58" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (262 samples, 0.01%)</title><rect x="701.6" y="981" width="0.2" height="15.0" fill="rgb(236,151,47)" rx="2" ry="2" />
<text x="704.63" y="991.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (879 samples, 0.04%)</title><rect x="719.9" y="965" width="0.5" height="15.0" fill="rgb(237,149,14)" rx="2" ry="2" />
<text x="722.94" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (255 samples, 0.01%)</title><rect x="732.7" y="1109" width="0.1" height="15.0" fill="rgb(215,114,30)" rx="2" ry="2" />
<text x="735.66" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (448 samples, 0.02%)</title><rect x="623.9" y="1125" width="0.3" height="15.0" fill="rgb(226,68,32)" rx="2" ry="2" />
<text x="626.94" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7384 (14,315 samples, 0.62%)</title><rect x="685.0" y="1109" width="7.3" height="15.0" fill="rgb(218,167,38)" rx="2" ry="2" />
<text x="688.03" y="1119.5" ></text>
</g>
<g >
<title>muladd (583 samples, 0.03%)</title><rect x="1096.7" y="37" width="0.3" height="15.0" fill="rgb(210,222,43)" rx="2" ry="2" />
<text x="1099.69" y="47.5" ></text>
</g>
<g >
<title>sweep_slice (251 samples, 0.01%)</title><rect x="186.2" y="1285" width="0.1" height="15.0" fill="rgb(248,209,4)" rx="2" ry="2" />
<text x="189.22" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (6,330 samples, 0.27%)</title><rect x="880.1" y="1045" width="3.2" height="15.0" fill="rgb(233,93,17)" rx="2" ry="2" />
<text x="883.09" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6835 (247 samples, 0.01%)</title><rect x="671.5" y="485" width="0.1" height="15.0" fill="rgb(212,77,14)" rx="2" ry="2" />
<text x="674.47" y="495.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (321 samples, 0.01%)</title><rect x="1071.7" y="1205" width="0.2" height="15.0" fill="rgb(247,112,8)" rx="2" ry="2" />
<text x="1074.74" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (342 samples, 0.01%)</title><rect x="875.0" y="1045" width="0.2" height="15.0" fill="rgb(238,134,36)" rx="2" ry="2" />
<text x="877.98" y="1055.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (1,081 samples, 0.05%)</title><rect x="382.0" y="1365" width="0.6" height="15.0" fill="rgb(244,107,21)" rx="2" ry="2" />
<text x="385.01" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (284 samples, 0.01%)</title><rect x="697.6" y="901" width="0.1" height="15.0" fill="rgb(241,134,45)" rx="2" ry="2" />
<text x="700.59" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (1,357 samples, 0.06%)</title><rect x="1066.1" y="1189" width="0.7" height="15.0" fill="rgb(227,26,35)" rx="2" ry="2" />
<text x="1069.08" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (7,941 samples, 0.34%)</title><rect x="1175.0" y="1077" width="4.0" height="15.0" fill="rgb(249,155,36)" rx="2" ry="2" />
<text x="1177.96" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,546 samples, 0.33%)</title><rect x="14.1" y="1637" width="3.8" height="15.0" fill="rgb(238,197,49)" rx="2" ry="2" />
<text x="17.07" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3818 (304 samples, 0.01%)</title><rect x="1143.1" y="1013" width="0.1" height="15.0" fill="rgb(246,146,30)" rx="2" ry="2" />
<text x="1146.06" y="1023.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (518 samples, 0.02%)</title><rect x="149.2" y="1413" width="0.3" height="15.0" fill="rgb(214,32,19)" rx="2" ry="2" />
<text x="152.21" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (808 samples, 0.04%)</title><rect x="715.7" y="965" width="0.4" height="15.0" fill="rgb(209,209,5)" rx="2" ry="2" />
<text x="718.69" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4379 (206 samples, 0.01%)</title><rect x="629.9" y="981" width="0.1" height="15.0" fill="rgb(243,52,1)" rx="2" ry="2" />
<text x="632.85" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,978 samples, 0.09%)</title><rect x="721.5" y="1093" width="1.0" height="15.0" fill="rgb(230,133,10)" rx="2" ry="2" />
<text x="724.47" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (588 samples, 0.03%)</title><rect x="207.5" y="1365" width="0.3" height="15.0" fill="rgb(254,77,47)" rx="2" ry="2" />
<text x="210.51" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,831 samples, 0.12%)</title><rect x="534.1" y="1157" width="1.5" height="15.0" fill="rgb(219,116,20)" rx="2" ry="2" />
<text x="537.12" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,762 samples, 0.08%)</title><rect x="191.7" y="1109" width="0.9" height="15.0" fill="rgb(218,214,35)" rx="2" ry="2" />
<text x="194.65" y="1119.5" ></text>
</g>
<g >
<title>uECC_decompress (2,908 samples, 0.13%)</title><rect x="836.8" y="837" width="1.5" height="15.0" fill="rgb(216,135,42)" rx="2" ry="2" />
<text x="839.84" y="847.5" ></text>
</g>
<g >
<title>uECC_vli_sub (324 samples, 0.01%)</title><rect x="638.3" y="101" width="0.1" height="15.0" fill="rgb(249,108,54)" rx="2" ry="2" />
<text x="641.28" y="111.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (694 samples, 0.03%)</title><rect x="733.6" y="1077" width="0.4" height="15.0" fill="rgb(241,9,3)" rx="2" ry="2" />
<text x="736.63" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Main__apply_operation_3177 (9,461 samples, 0.41%)</title><rect x="1157.1" y="357" width="4.8" height="15.0" fill="rgb(219,113,51)" rx="2" ry="2" />
<text x="1160.07" y="367.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Main__apply_operation_3177 (35,779 samples, 1.55%)</title><rect x="1094.5" y="277" width="18.3" height="15.0" fill="rgb(221,24,14)" rx="2" ry="2" />
<text x="1097.54" y="287.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (470 samples, 0.02%)</title><rect x="519.2" y="1317" width="0.2" height="15.0" fill="rgb(245,32,19)" rx="2" ry="2" />
<text x="522.16" y="1327.5" ></text>
</g>
<g >
<title>muladd (944 samples, 0.04%)</title><rect x="632.5" y="101" width="0.5" height="15.0" fill="rgb(246,3,53)" rx="2" ry="2" />
<text x="635.49" y="111.5" ></text>
</g>
<g >
<title>sweep_slice (278 samples, 0.01%)</title><rect x="330.2" y="1413" width="0.1" height="15.0" fill="rgb(237,84,26)" rx="2" ry="2" />
<text x="333.19" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (303 samples, 0.01%)</title><rect x="805.4" y="981" width="0.1" height="15.0" fill="rgb(246,131,25)" rx="2" ry="2" />
<text x="808.36" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (212 samples, 0.01%)</title><rect x="700.5" y="981" width="0.1" height="15.0" fill="rgb(251,177,33)" rx="2" ry="2" />
<text x="703.48" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (491 samples, 0.02%)</title><rect x="613.9" y="1157" width="0.2" height="15.0" fill="rgb(233,151,42)" rx="2" ry="2" />
<text x="616.88" y="1167.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,384 samples, 0.06%)</title><rect x="1096.6" y="69" width="0.7" height="15.0" fill="rgb(225,167,11)" rx="2" ry="2" />
<text x="1099.55" y="79.5" ></text>
</g>
<g >
<title>caml_curry5_4 (603 samples, 0.03%)</title><rect x="782.1" y="1109" width="0.3" height="15.0" fill="rgb(254,225,48)" rx="2" ry="2" />
<text x="785.13" y="1119.5" ></text>
</g>
<g >
<title>caml_next_frame_descriptor (38,566 samples, 1.67%)</title><rect x="55.1" y="1621" width="19.7" height="15.0" fill="rgb(230,226,54)" rx="2" ry="2" />
<text x="58.11" y="1631.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (242 samples, 0.01%)</title><rect x="582.1" y="1109" width="0.1" height="15.0" fill="rgb(205,182,16)" rx="2" ry="2" />
<text x="585.12" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__already_in_dst_4971 (888 samples, 0.04%)</title><rect x="549.9" y="1253" width="0.4" height="15.0" fill="rgb(211,13,16)" rx="2" ry="2" />
<text x="552.86" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Node__skip_5037 (360 samples, 0.02%)</title><rect x="763.7" y="1141" width="0.1" height="15.0" fill="rgb(239,127,17)" rx="2" ry="2" />
<text x="766.66" y="1151.5" ></text>
</g>
<g >
<title>__lseek64 (11,071 samples, 0.48%)</title><rect x="171.1" y="1333" width="5.6" height="15.0" fill="rgb(209,138,17)" rx="2" ry="2" />
<text x="174.07" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4928 (243 samples, 0.01%)</title><rect x="715.1" y="1077" width="0.1" height="15.0" fill="rgb(248,175,33)" rx="2" ry="2" />
<text x="718.05" y="1087.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (265 samples, 0.01%)</title><rect x="211.9" y="1269" width="0.2" height="15.0" fill="rgb(253,90,46)" rx="2" ry="2" />
<text x="214.92" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (569 samples, 0.02%)</title><rect x="769.1" y="1125" width="0.3" height="15.0" fill="rgb(226,94,5)" rx="2" ry="2" />
<text x="772.06" y="1135.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (335 samples, 0.01%)</title><rect x="534.5" y="1061" width="0.1" height="15.0" fill="rgb(241,25,52)" rx="2" ry="2" />
<text x="537.46" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (286 samples, 0.01%)</title><rect x="545.0" y="1269" width="0.1" height="15.0" fill="rgb(230,226,30)" rx="2" ry="2" />
<text x="548.00" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (305 samples, 0.01%)</title><rect x="827.6" y="309" width="0.1" height="15.0" fill="rgb(237,35,11)" rx="2" ry="2" />
<text x="830.59" y="319.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (999 samples, 0.04%)</title><rect x="577.2" y="773" width="0.5" height="15.0" fill="rgb(239,7,5)" rx="2" ry="2" />
<text x="580.19" y="783.5" ></text>
</g>
<g >
<title>uECC_vli_mult (221 samples, 0.01%)</title><rect x="1152.1" y="149" width="0.1" height="15.0" fill="rgb(218,147,40)" rx="2" ry="2" />
<text x="1155.08" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (4,061 samples, 0.18%)</title><rect x="696.6" y="1029" width="2.0" height="15.0" fill="rgb(239,190,14)" rx="2" ry="2" />
<text x="699.56" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (77,729 samples, 3.37%)</title><rect x="631.2" y="773" width="39.8" height="15.0" fill="rgb(221,112,45)" rx="2" ry="2" />
<text x="634.24" y="783.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (387 samples, 0.02%)</title><rect x="394.2" y="1429" width="0.2" height="15.0" fill="rgb(214,77,48)" rx="2" ry="2" />
<text x="397.22" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (380 samples, 0.02%)</title><rect x="1053.5" y="1253" width="0.2" height="15.0" fill="rgb(206,32,13)" rx="2" ry="2" />
<text x="1056.48" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (390 samples, 0.02%)</title><rect x="1142.3" y="1045" width="0.2" height="15.0" fill="rgb(208,109,54)" rx="2" ry="2" />
<text x="1145.29" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (15,331 samples, 0.66%)</title><rect x="427.0" y="1445" width="7.9" height="15.0" fill="rgb(251,216,14)" rx="2" ry="2" />
<text x="430.04" y="1455.5" ></text>
</g>
<g >
<title>caml_alloc_shr (292 samples, 0.01%)</title><rect x="336.9" y="1333" width="0.2" height="15.0" fill="rgb(221,224,48)" rx="2" ry="2" />
<text x="339.92" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_add (220 samples, 0.01%)</title><rect x="1108.4" y="69" width="0.1" height="15.0" fill="rgb(226,176,12)" rx="2" ry="2" />
<text x="1111.35" y="79.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__fun_97218 (204 samples, 0.01%)</title><rect x="554.7" y="1285" width="0.1" height="15.0" fill="rgb(245,229,25)" rx="2" ry="2" />
<text x="557.70" y="1295.5" ></text>
</g>
<g >
<title>sweep_slice (212 samples, 0.01%)</title><rect x="847.7" y="1253" width="0.2" height="15.0" fill="rgb(248,171,22)" rx="2" ry="2" />
<text x="850.75" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (234 samples, 0.01%)</title><rect x="554.2" y="1205" width="0.1" height="15.0" fill="rgb(208,18,50)" rx="2" ry="2" />
<text x="557.17" y="1215.5" ></text>
</g>
<g >
<title>caml_hash (397 samples, 0.02%)</title><rect x="686.2" y="997" width="0.2" height="15.0" fill="rgb(248,77,54)" rx="2" ry="2" />
<text x="689.16" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_4844 (598 samples, 0.03%)</title><rect x="1179.3" y="1093" width="0.3" height="15.0" fill="rgb(221,56,39)" rx="2" ry="2" />
<text x="1182.29" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (229 samples, 0.01%)</title><rect x="221.2" y="1285" width="0.1" height="15.0" fill="rgb(247,116,22)" rx="2" ry="2" />
<text x="224.20" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__mem_5759 (228 samples, 0.01%)</title><rect x="791.2" y="1045" width="0.1" height="15.0" fill="rgb(227,28,19)" rx="2" ry="2" />
<text x="794.21" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (358 samples, 0.02%)</title><rect x="1012.8" y="1381" width="0.1" height="15.0" fill="rgb(232,48,1)" rx="2" ry="2" />
<text x="1015.75" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_add (659 samples, 0.03%)</title><rect x="641.4" y="117" width="0.3" height="15.0" fill="rgb(236,70,31)" rx="2" ry="2" />
<text x="644.40" y="127.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (2,968 samples, 0.13%)</title><rect x="1101.9" y="85" width="1.5" height="15.0" fill="rgb(252,88,48)" rx="2" ry="2" />
<text x="1104.85" y="95.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (799 samples, 0.03%)</title><rect x="432.4" y="1333" width="0.4" height="15.0" fill="rgb(249,80,31)" rx="2" ry="2" />
<text x="435.37" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (978 samples, 0.04%)</title><rect x="216.3" y="1317" width="0.5" height="15.0" fill="rgb(250,188,41)" rx="2" ry="2" />
<text x="219.25" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (733 samples, 0.03%)</title><rect x="777.0" y="1093" width="0.4" height="15.0" fill="rgb(227,228,4)" rx="2" ry="2" />
<text x="779.98" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (902 samples, 0.04%)</title><rect x="240.3" y="1349" width="0.5" height="15.0" fill="rgb(251,12,40)" rx="2" ry="2" />
<text x="243.34" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,977 samples, 0.09%)</title><rect x="439.8" y="1381" width="1.0" height="15.0" fill="rgb(224,70,29)" rx="2" ry="2" />
<text x="442.76" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (287 samples, 0.01%)</title><rect x="707.3" y="965" width="0.2" height="15.0" fill="rgb(254,17,33)" rx="2" ry="2" />
<text x="710.34" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,429 samples, 0.06%)</title><rect x="581.8" y="1205" width="0.7" height="15.0" fill="rgb(209,222,7)" rx="2" ry="2" />
<text x="584.78" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (79,486 samples, 3.44%)</title><rect x="631.2" y="885" width="40.7" height="15.0" fill="rgb(210,45,8)" rx="2" ry="2" />
<text x="634.23" y="895.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (23,993 samples, 1.04%)</title><rect x="1114.8" y="1109" width="12.3" height="15.0" fill="rgb(235,157,36)" rx="2" ry="2" />
<text x="1117.85" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (436 samples, 0.02%)</title><rect x="585.1" y="1285" width="0.2" height="15.0" fill="rgb(224,189,21)" rx="2" ry="2" />
<text x="588.09" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (2,323 samples, 0.10%)</title><rect x="857.1" y="981" width="1.2" height="15.0" fill="rgb(225,109,41)" rx="2" ry="2" />
<text x="860.08" y="991.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (5,814 samples, 0.25%)</title><rect x="985.8" y="1365" width="2.9" height="15.0" fill="rgb(238,52,8)" rx="2" ry="2" />
<text x="988.77" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (439 samples, 0.02%)</title><rect x="701.0" y="965" width="0.3" height="15.0" fill="rgb(212,119,32)" rx="2" ry="2" />
<text x="704.05" y="975.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (3,897 samples, 0.17%)</title><rect x="1158.2" y="245" width="2.0" height="15.0" fill="rgb(220,219,41)" rx="2" ry="2" />
<text x="1161.17" y="255.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (551 samples, 0.02%)</title><rect x="177.7" y="1301" width="0.3" height="15.0" fill="rgb(210,39,7)" rx="2" ry="2" />
<text x="180.71" y="1311.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (220 samples, 0.01%)</title><rect x="1105.8" y="85" width="0.1" height="15.0" fill="rgb(218,37,2)" rx="2" ry="2" />
<text x="1108.83" y="95.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (548 samples, 0.02%)</title><rect x="792.5" y="981" width="0.3" height="15.0" fill="rgb(205,105,50)" rx="2" ry="2" />
<text x="795.52" y="991.5" ></text>
</g>
<g >
<title>uECC_vli_add (295 samples, 0.01%)</title><rect x="633.1" y="101" width="0.1" height="15.0" fill="rgb(219,37,44)" rx="2" ry="2" />
<text x="636.09" y="111.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (969 samples, 0.04%)</title><rect x="699.8" y="1029" width="0.5" height="15.0" fill="rgb(210,10,43)" rx="2" ry="2" />
<text x="702.84" y="1039.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (376 samples, 0.02%)</title><rect x="633.7" y="117" width="0.2" height="15.0" fill="rgb(250,1,0)" rx="2" ry="2" />
<text x="636.75" y="127.5" ></text>
</g>
<g >
<title>caml_call_gc (1,001 samples, 0.04%)</title><rect x="432.3" y="1365" width="0.5" height="15.0" fill="rgb(248,182,41)" rx="2" ry="2" />
<text x="435.27" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (4,211 samples, 0.18%)</title><rect x="921.2" y="1493" width="2.1" height="15.0" fill="rgb(244,87,8)" rx="2" ry="2" />
<text x="924.16" y="1503.5" ></text>
</g>
<g >
<title>caml_call_gc (2,968 samples, 0.13%)</title><rect x="378.5" y="1397" width="1.6" height="15.0" fill="rgb(253,52,52)" rx="2" ry="2" />
<text x="381.55" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (376 samples, 0.02%)</title><rect x="235.0" y="1317" width="0.2" height="15.0" fill="rgb(254,175,27)" rx="2" ry="2" />
<text x="237.96" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (509 samples, 0.02%)</title><rect x="523.0" y="1237" width="0.3" height="15.0" fill="rgb(250,118,9)" rx="2" ry="2" />
<text x="526.01" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (301 samples, 0.01%)</title><rect x="772.1" y="1029" width="0.1" height="15.0" fill="rgb(227,143,2)" rx="2" ry="2" />
<text x="775.09" y="1039.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (860 samples, 0.04%)</title><rect x="327.3" y="1349" width="0.4" height="15.0" fill="rgb(240,165,34)" rx="2" ry="2" />
<text x="330.30" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (699 samples, 0.03%)</title><rect x="200.2" y="1333" width="0.4" height="15.0" fill="rgb(205,79,46)" rx="2" ry="2" />
<text x="203.23" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (43,915 samples, 1.90%)</title><rect x="1143.9" y="1061" width="22.4" height="15.0" fill="rgb(231,174,18)" rx="2" ry="2" />
<text x="1146.87" y="1071.5" >c..</text>
</g>
<g >
<title>caml_empty_minor_heap (198 samples, 0.01%)</title><rect x="677.6" y="1221" width="0.1" height="15.0" fill="rgb(229,18,54)" rx="2" ry="2" />
<text x="680.64" y="1231.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (382 samples, 0.02%)</title><rect x="417.1" y="1381" width="0.2" height="15.0" fill="rgb(250,189,34)" rx="2" ry="2" />
<text x="420.07" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,229 samples, 0.05%)</title><rect x="187.8" y="1365" width="0.6" height="15.0" fill="rgb(248,223,18)" rx="2" ry="2" />
<text x="190.79" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_square (573 samples, 0.02%)</title><rect x="830.4" y="213" width="0.3" height="15.0" fill="rgb(207,136,20)" rx="2" ry="2" />
<text x="833.43" y="223.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (199 samples, 0.01%)</title><rect x="978.4" y="1445" width="0.1" height="15.0" fill="rgb(220,170,52)" rx="2" ry="2" />
<text x="981.44" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (4,059 samples, 0.18%)</title><rect x="693.1" y="1029" width="2.0" height="15.0" fill="rgb(225,104,20)" rx="2" ry="2" />
<text x="696.05" y="1039.5" ></text>
</g>
<g >
<title>uECC_verify (4,789 samples, 0.21%)</title><rect x="1144.4" y="165" width="2.5" height="15.0" fill="rgb(216,36,53)" rx="2" ry="2" />
<text x="1147.41" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (4,941 samples, 0.21%)</title><rect x="1019.9" y="1381" width="2.5" height="15.0" fill="rgb(210,35,52)" rx="2" ry="2" />
<text x="1022.86" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__map__bal_160 (1,422 samples, 0.06%)</title><rect x="619.9" y="1141" width="0.7" height="15.0" fill="rgb(247,143,40)" rx="2" ry="2" />
<text x="622.88" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (340 samples, 0.01%)</title><rect x="698.1" y="933" width="0.2" height="15.0" fill="rgb(237,217,42)" rx="2" ry="2" />
<text x="701.14" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (6,462 samples, 0.28%)</title><rect x="1175.1" y="997" width="3.3" height="15.0" fill="rgb(215,204,23)" rx="2" ry="2" />
<text x="1178.13" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (654 samples, 0.03%)</title><rect x="778.0" y="1077" width="0.4" height="15.0" fill="rgb(225,109,31)" rx="2" ry="2" />
<text x="781.04" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (1,749 samples, 0.08%)</title><rect x="1175.5" y="949" width="0.9" height="15.0" fill="rgb(210,144,33)" rx="2" ry="2" />
<text x="1178.46" y="959.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (378 samples, 0.02%)</title><rect x="845.7" y="1301" width="0.2" height="15.0" fill="rgb(223,153,17)" rx="2" ry="2" />
<text x="848.71" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (23,126 samples, 1.00%)</title><rect x="815.7" y="341" width="11.9" height="15.0" fill="rgb(221,7,22)" rx="2" ry="2" />
<text x="818.74" y="351.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (40,697 samples, 1.76%)</title><rect x="1143.9" y="837" width="20.8" height="15.0" fill="rgb(211,68,53)" rx="2" ry="2" />
<text x="1146.88" y="847.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4559 (685 samples, 0.03%)</title><rect x="1178.6" y="965" width="0.3" height="15.0" fill="rgb(237,216,50)" rx="2" ry="2" />
<text x="1181.60" y="975.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12887 (35,781 samples, 1.55%)</title><rect x="1094.5" y="309" width="18.3" height="15.0" fill="rgb(239,99,47)" rx="2" ry="2" />
<text x="1097.54" y="319.5" ></text>
</g>
<g >
<title>caml_curry3_2 (395 samples, 0.02%)</title><rect x="274.1" y="1429" width="0.2" height="15.0" fill="rgb(247,17,15)" rx="2" ry="2" />
<text x="277.10" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (332 samples, 0.01%)</title><rect x="1118.7" y="885" width="0.1" height="15.0" fill="rgb(253,188,13)" rx="2" ry="2" />
<text x="1121.68" y="895.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (457 samples, 0.02%)</title><rect x="222.8" y="1301" width="0.2" height="15.0" fill="rgb(229,219,28)" rx="2" ry="2" />
<text x="225.81" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (1,494 samples, 0.06%)</title><rect x="581.8" y="1237" width="0.7" height="15.0" fill="rgb(217,197,9)" rx="2" ry="2" />
<text x="584.76" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (503 samples, 0.02%)</title><rect x="730.5" y="1157" width="0.2" height="15.0" fill="rgb(208,134,28)" rx="2" ry="2" />
<text x="733.49" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (336 samples, 0.01%)</title><rect x="726.8" y="1125" width="0.1" height="15.0" fill="rgb(211,194,1)" rx="2" ry="2" />
<text x="729.76" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12885 (3,600 samples, 0.16%)</title><rect x="668.2" y="421" width="1.9" height="15.0" fill="rgb(214,157,1)" rx="2" ry="2" />
<text x="671.24" y="431.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (21,729 samples, 0.94%)</title><rect x="532.8" y="1221" width="11.1" height="15.0" fill="rgb(230,55,54)" rx="2" ry="2" />
<text x="535.80" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1828 (872 samples, 0.04%)</title><rect x="781.7" y="1109" width="0.4" height="15.0" fill="rgb(243,177,39)" rx="2" ry="2" />
<text x="784.68" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (206 samples, 0.01%)</title><rect x="858.0" y="901" width="0.1" height="15.0" fill="rgb(205,105,34)" rx="2" ry="2" />
<text x="860.98" y="911.5" ></text>
</g>
<g >
<title>sweep_slice (248 samples, 0.01%)</title><rect x="188.3" y="1349" width="0.1" height="15.0" fill="rgb(236,25,26)" rx="2" ry="2" />
<text x="191.29" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (216 samples, 0.01%)</title><rect x="1123.2" y="981" width="0.1" height="15.0" fill="rgb(206,205,41)" rx="2" ry="2" />
<text x="1126.21" y="991.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4602 (3,820 samples, 0.17%)</title><rect x="1087.9" y="965" width="1.9" height="15.0" fill="rgb(235,116,13)" rx="2" ry="2" />
<text x="1090.87" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (716 samples, 0.03%)</title><rect x="541.1" y="1125" width="0.4" height="15.0" fill="rgb(245,184,22)" rx="2" ry="2" />
<text x="544.11" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (538 samples, 0.02%)</title><rect x="878.4" y="933" width="0.3" height="15.0" fill="rgb(211,173,21)" rx="2" ry="2" />
<text x="881.42" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (331 samples, 0.01%)</title><rect x="1076.7" y="1157" width="0.2" height="15.0" fill="rgb(234,124,9)" rx="2" ry="2" />
<text x="1079.70" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (451 samples, 0.02%)</title><rect x="295.2" y="1317" width="0.3" height="15.0" fill="rgb(233,111,40)" rx="2" ry="2" />
<text x="298.24" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (59,571 samples, 2.58%)</title><rect x="692.3" y="1109" width="30.5" height="15.0" fill="rgb(246,177,5)" rx="2" ry="2" />
<text x="695.34" y="1119.5" >ca..</text>
</g>
<g >
<title>caml_call_gc (355 samples, 0.02%)</title><rect x="556.2" y="1317" width="0.1" height="15.0" fill="rgb(219,170,41)" rx="2" ry="2" />
<text x="559.16" y="1327.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (648 samples, 0.03%)</title><rect x="124.2" y="1413" width="0.3" height="15.0" fill="rgb(239,194,50)" rx="2" ry="2" />
<text x="127.18" y="1423.5" ></text>
</g>
<g >
<title>caml_garbage_collection (736 samples, 0.03%)</title><rect x="521.6" y="1285" width="0.4" height="15.0" fill="rgb(251,3,44)" rx="2" ry="2" />
<text x="524.60" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (942 samples, 0.04%)</title><rect x="137.3" y="1301" width="0.5" height="15.0" fill="rgb(215,25,33)" rx="2" ry="2" />
<text x="140.31" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_add (378 samples, 0.02%)</title><rect x="837.9" y="773" width="0.2" height="15.0" fill="rgb(217,131,28)" rx="2" ry="2" />
<text x="840.93" y="783.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (54,885 samples, 2.38%)</title><rect x="1085.4" y="1157" width="28.1" height="15.0" fill="rgb(245,23,48)" rx="2" ry="2" />
<text x="1088.44" y="1167.5" >c..</text>
</g>
<g >
<title>caml_string_compare (384 samples, 0.02%)</title><rect x="726.2" y="1125" width="0.2" height="15.0" fill="rgb(207,176,0)" rx="2" ry="2" />
<text x="729.17" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (295 samples, 0.01%)</title><rect x="203.6" y="1301" width="0.2" height="15.0" fill="rgb(229,147,22)" rx="2" ry="2" />
<text x="206.63" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (363 samples, 0.02%)</title><rect x="805.4" y="997" width="0.1" height="15.0" fill="rgb(229,69,46)" rx="2" ry="2" />
<text x="808.36" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (433 samples, 0.02%)</title><rect x="614.7" y="1173" width="0.2" height="15.0" fill="rgb(212,90,26)" rx="2" ry="2" />
<text x="617.70" y="1183.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,033 samples, 0.04%)</title><rect x="565.9" y="1125" width="0.5" height="15.0" fill="rgb(241,133,6)" rx="2" ry="2" />
<text x="568.89" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (325 samples, 0.01%)</title><rect x="864.2" y="709" width="0.2" height="15.0" fill="rgb(235,131,30)" rx="2" ry="2" />
<text x="867.21" y="719.5" ></text>
</g>
<g >
<title>caml_apply2 (2,596 samples, 0.11%)</title><rect x="377.2" y="1397" width="1.3" height="15.0" fill="rgb(209,186,13)" rx="2" ry="2" />
<text x="380.22" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (314 samples, 0.01%)</title><rect x="581.9" y="1109" width="0.1" height="15.0" fill="rgb(223,4,4)" rx="2" ry="2" />
<text x="584.87" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (3,347 samples, 0.14%)</title><rect x="190.9" y="1221" width="1.7" height="15.0" fill="rgb(209,93,7)" rx="2" ry="2" />
<text x="193.85" y="1231.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (199 samples, 0.01%)</title><rect x="443.3" y="1365" width="0.1" height="15.0" fill="rgb(245,15,29)" rx="2" ry="2" />
<text x="446.25" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_969 (461 samples, 0.02%)</title><rect x="202.0" y="1365" width="0.2" height="15.0" fill="rgb(217,63,12)" rx="2" ry="2" />
<text x="205.01" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,805 samples, 0.08%)</title><rect x="380.3" y="1429" width="1.0" height="15.0" fill="rgb(221,120,46)" rx="2" ry="2" />
<text x="383.35" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (249 samples, 0.01%)</title><rect x="835.7" y="485" width="0.1" height="15.0" fill="rgb(248,199,51)" rx="2" ry="2" />
<text x="838.72" y="495.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (245 samples, 0.01%)</title><rect x="219.8" y="1317" width="0.1" height="15.0" fill="rgb(233,67,33)" rx="2" ry="2" />
<text x="222.78" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__tuple_213 (336 samples, 0.01%)</title><rect x="780.3" y="1109" width="0.2" height="15.0" fill="rgb(247,28,7)" rx="2" ry="2" />
<text x="783.30" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (874 samples, 0.04%)</title><rect x="215.3" y="1301" width="0.4" height="15.0" fill="rgb(244,154,31)" rx="2" ry="2" />
<text x="218.28" y="1311.5" ></text>
</g>
<g >
<title>caml_string_equal (398 samples, 0.02%)</title><rect x="1035.0" y="1365" width="0.2" height="15.0" fill="rgb(238,209,25)" rx="2" ry="2" />
<text x="1037.96" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (944 samples, 0.04%)</title><rect x="336.6" y="1365" width="0.5" height="15.0" fill="rgb(244,136,19)" rx="2" ry="2" />
<text x="339.59" y="1375.5" ></text>
</g>
<g >
<title>caml_string_compare (238 samples, 0.01%)</title><rect x="544.3" y="1285" width="0.2" height="15.0" fill="rgb(214,198,41)" rx="2" ry="2" />
<text x="547.34" y="1295.5" ></text>
</g>
<g >
<title>caml_send1 (658 samples, 0.03%)</title><rect x="1183.7" y="1509" width="0.3" height="15.0" fill="rgb(223,220,33)" rx="2" ry="2" />
<text x="1186.66" y="1519.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (216 samples, 0.01%)</title><rect x="701.7" y="965" width="0.1" height="15.0" fill="rgb(223,31,22)" rx="2" ry="2" />
<text x="704.66" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (358 samples, 0.02%)</title><rect x="1012.8" y="1365" width="0.1" height="15.0" fill="rgb(239,35,5)" rx="2" ry="2" />
<text x="1015.75" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (4,169 samples, 0.18%)</title><rect x="735.8" y="1141" width="2.1" height="15.0" fill="rgb(226,64,41)" rx="2" ry="2" />
<text x="738.80" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1162 (479 samples, 0.02%)</title><rect x="167.5" y="1365" width="0.2" height="15.0" fill="rgb(209,152,47)" rx="2" ry="2" />
<text x="170.50" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (683 samples, 0.03%)</title><rect x="19.0" y="1637" width="0.4" height="15.0" fill="rgb(215,147,40)" rx="2" ry="2" />
<text x="22.04" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (2,540 samples, 0.11%)</title><rect x="210.9" y="1365" width="1.3" height="15.0" fill="rgb(205,14,28)" rx="2" ry="2" />
<text x="213.86" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_square (208 samples, 0.01%)</title><rect x="631.9" y="101" width="0.1" height="15.0" fill="rgb(214,97,10)" rx="2" ry="2" />
<text x="634.89" y="111.5" ></text>
</g>
<g >
<title>caml_garbage_collection (211 samples, 0.01%)</title><rect x="613.2" y="1109" width="0.1" height="15.0" fill="rgb(224,155,36)" rx="2" ry="2" />
<text x="616.21" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (795 samples, 0.03%)</title><rect x="811.7" y="1093" width="0.4" height="15.0" fill="rgb(220,105,9)" rx="2" ry="2" />
<text x="814.73" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,479 samples, 0.11%)</title><rect x="1119.2" y="981" width="1.2" height="15.0" fill="rgb(214,25,50)" rx="2" ry="2" />
<text x="1122.16" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (675 samples, 0.03%)</title><rect x="1128.7" y="1077" width="0.3" height="15.0" fill="rgb(211,137,23)" rx="2" ry="2" />
<text x="1131.66" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (200 samples, 0.01%)</title><rect x="725.1" y="1157" width="0.1" height="15.0" fill="rgb(207,201,9)" rx="2" ry="2" />
<text x="728.05" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (487 samples, 0.02%)</title><rect x="773.0" y="1093" width="0.3" height="15.0" fill="rgb(233,190,42)" rx="2" ry="2" />
<text x="776.02" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (1,458 samples, 0.06%)</title><rect x="1085.8" y="1061" width="0.8" height="15.0" fill="rgb(216,31,11)" rx="2" ry="2" />
<text x="1088.82" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (12,918 samples, 0.56%)</title><rect x="489.0" y="1285" width="6.6" height="15.0" fill="rgb(254,23,10)" rx="2" ry="2" />
<text x="492.01" y="1295.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (528 samples, 0.02%)</title><rect x="639.2" y="149" width="0.3" height="15.0" fill="rgb(214,54,13)" rx="2" ry="2" />
<text x="642.23" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (894 samples, 0.04%)</title><rect x="1000.1" y="1221" width="0.4" height="15.0" fill="rgb(252,177,28)" rx="2" ry="2" />
<text x="1003.05" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (250 samples, 0.01%)</title><rect x="720.9" y="1013" width="0.2" height="15.0" fill="rgb(249,121,1)" rx="2" ry="2" />
<text x="723.92" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (2,229 samples, 0.10%)</title><rect x="685.7" y="1061" width="1.1" height="15.0" fill="rgb(242,50,53)" rx="2" ry="2" />
<text x="688.66" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (837 samples, 0.04%)</title><rect x="1000.1" y="1205" width="0.4" height="15.0" fill="rgb(221,27,42)" rx="2" ry="2" />
<text x="1003.08" y="1215.5" ></text>
</g>
<g >
<title>caml_apply5 (1,561 samples, 0.07%)</title><rect x="796.3" y="1061" width="0.8" height="15.0" fill="rgb(245,95,6)" rx="2" ry="2" />
<text x="799.26" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (889 samples, 0.04%)</title><rect x="267.8" y="1365" width="0.5" height="15.0" fill="rgb(231,148,2)" rx="2" ry="2" />
<text x="270.81" y="1375.5" ></text>
</g>
<g >
<title>unix_gettimeofday (3,328 samples, 0.14%)</title><rect x="99.9" y="1557" width="1.7" height="15.0" fill="rgb(212,1,14)" rx="2" ry="2" />
<text x="102.87" y="1567.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (463 samples, 0.02%)</title><rect x="831.8" y="245" width="0.2" height="15.0" fill="rgb(214,212,51)" rx="2" ry="2" />
<text x="834.79" y="255.5" ></text>
</g>
<g >
<title>unix_lseek_64 (279 samples, 0.01%)</title><rect x="1057.0" y="1029" width="0.1" height="15.0" fill="rgb(209,227,18)" rx="2" ry="2" />
<text x="1059.96" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (22,689 samples, 0.98%)</title><rect x="750.6" y="1109" width="11.6" height="15.0" fill="rgb(209,199,28)" rx="2" ry="2" />
<text x="753.59" y="1119.5" ></text>
</g>
<g >
<title>caml_hash (376 samples, 0.02%)</title><rect x="719.1" y="965" width="0.2" height="15.0" fill="rgb(240,180,54)" rx="2" ry="2" />
<text x="722.10" y="975.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (715,063 samples, 30.98%)</title><rect x="483.5" y="1365" width="365.5" height="15.0" fill="rgb(207,132,1)" rx="2" ry="2" />
<text x="486.49" y="1375.5" >camlLwt__callback_1225</text>
</g>
<g >
<title>caml_hash (352 samples, 0.02%)</title><rect x="532.2" y="1125" width="0.2" height="15.0" fill="rgb(243,144,5)" rx="2" ry="2" />
<text x="535.25" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (490 samples, 0.02%)</title><rect x="875.4" y="1045" width="0.3" height="15.0" fill="rgb(234,60,37)" rx="2" ry="2" />
<text x="878.45" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (266 samples, 0.01%)</title><rect x="537.7" y="1045" width="0.1" height="15.0" fill="rgb(206,38,17)" rx="2" ry="2" />
<text x="540.65" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (305 samples, 0.01%)</title><rect x="1074.1" y="997" width="0.2" height="15.0" fill="rgb(209,99,50)" rx="2" ry="2" />
<text x="1077.12" y="1007.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__apply_operation_5609 (3,594 samples, 0.16%)</title><rect x="668.2" y="341" width="1.9" height="15.0" fill="rgb(253,62,31)" rx="2" ry="2" />
<text x="671.24" y="351.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (213 samples, 0.01%)</title><rect x="692.2" y="1061" width="0.1" height="15.0" fill="rgb(247,94,33)" rx="2" ry="2" />
<text x="695.24" y="1071.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (237 samples, 0.01%)</title><rect x="906.1" y="1317" width="0.1" height="15.0" fill="rgb(247,122,12)" rx="2" ry="2" />
<text x="909.08" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (314 samples, 0.01%)</title><rect x="799.4" y="1029" width="0.2" height="15.0" fill="rgb(245,225,42)" rx="2" ry="2" />
<text x="802.45" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (723 samples, 0.03%)</title><rect x="547.7" y="1285" width="0.4" height="15.0" fill="rgb(244,57,8)" rx="2" ry="2" />
<text x="550.73" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (235 samples, 0.01%)</title><rect x="883.7" y="1141" width="0.2" height="15.0" fill="rgb(226,213,47)" rx="2" ry="2" />
<text x="886.73" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (342 samples, 0.01%)</title><rect x="1177.7" y="821" width="0.2" height="15.0" fill="rgb(223,66,24)" rx="2" ry="2" />
<text x="1180.75" y="831.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (1,127 samples, 0.05%)</title><rect x="1130.8" y="1077" width="0.6" height="15.0" fill="rgb(249,146,49)" rx="2" ry="2" />
<text x="1133.82" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,090 samples, 0.05%)</title><rect x="261.0" y="1349" width="0.6" height="15.0" fill="rgb(219,222,40)" rx="2" ry="2" />
<text x="264.04" y="1359.5" ></text>
</g>
<g >
<title>caml_modify (253 samples, 0.01%)</title><rect x="792.7" y="965" width="0.1" height="15.0" fill="rgb(231,186,21)" rx="2" ry="2" />
<text x="795.67" y="975.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (260 samples, 0.01%)</title><rect x="1144.7" y="117" width="0.1" height="15.0" fill="rgb(254,122,22)" rx="2" ry="2" />
<text x="1147.67" y="127.5" ></text>
</g>
<g >
<title>caml_call_gc (199 samples, 0.01%)</title><rect x="980.6" y="1493" width="0.1" height="15.0" fill="rgb(224,198,50)" rx="2" ry="2" />
<text x="983.58" y="1503.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (752 samples, 0.03%)</title><rect x="643.2" y="149" width="0.3" height="15.0" fill="rgb(236,114,45)" rx="2" ry="2" />
<text x="646.15" y="159.5" ></text>
</g>
<g >
<title>caml_garbage_collection (374 samples, 0.02%)</title><rect x="613.7" y="1141" width="0.2" height="15.0" fill="rgb(232,146,37)" rx="2" ry="2" />
<text x="616.69" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (657 samples, 0.03%)</title><rect x="568.4" y="1221" width="0.3" height="15.0" fill="rgb(219,152,16)" rx="2" ry="2" />
<text x="571.38" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (216 samples, 0.01%)</title><rect x="699.7" y="1029" width="0.1" height="15.0" fill="rgb(216,29,23)" rx="2" ry="2" />
<text x="702.73" y="1039.5" ></text>
</g>
<g >
<title>caml_oldify_one (216 samples, 0.01%)</title><rect x="228.4" y="1285" width="0.1" height="15.0" fill="rgb(231,170,17)" rx="2" ry="2" />
<text x="231.43" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (349 samples, 0.02%)</title><rect x="1073.7" y="1125" width="0.2" height="15.0" fill="rgb(244,120,4)" rx="2" ry="2" />
<text x="1076.73" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (1,286 samples, 0.06%)</title><rect x="1174.2" y="933" width="0.7" height="15.0" fill="rgb(232,192,38)" rx="2" ry="2" />
<text x="1177.21" y="943.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2,091 samples, 0.09%)</title><rect x="100.3" y="1541" width="1.1" height="15.0" fill="rgb(234,31,54)" rx="2" ry="2" />
<text x="103.34" y="1551.5" ></text>
</g>
<g >
<title>camlLwt_sequence__loop_139 (1,606,841 samples, 69.61%)</title><rect x="103.6" y="1573" width="821.4" height="15.0" fill="rgb(253,192,53)" rx="2" ry="2" />
<text x="106.62" y="1583.5" >camlLwt_sequence__loop_139</text>
</g>
<g >
<title>mark_slice_darken (562 samples, 0.02%)</title><rect x="572.8" y="1157" width="0.3" height="15.0" fill="rgb(252,3,22)" rx="2" ry="2" />
<text x="575.80" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15580 (430 samples, 0.02%)</title><rect x="1078.2" y="1285" width="0.2" height="15.0" fill="rgb(226,39,18)" rx="2" ry="2" />
<text x="1081.21" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (238 samples, 0.01%)</title><rect x="774.1" y="1077" width="0.1" height="15.0" fill="rgb(217,105,46)" rx="2" ry="2" />
<text x="777.12" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_all_4629 (816 samples, 0.04%)</title><rect x="833.8" y="677" width="0.4" height="15.0" fill="rgb(205,18,37)" rx="2" ry="2" />
<text x="836.76" y="687.5" ></text>
</g>
<g >
<title>muladd (279 samples, 0.01%)</title><rect x="1158.2" y="133" width="0.2" height="15.0" fill="rgb(209,29,43)" rx="2" ry="2" />
<text x="1161.24" y="143.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__commit_30907 (1,631 samples, 0.07%)</title><rect x="1163.9" y="757" width="0.8" height="15.0" fill="rgb(243,188,54)" rx="2" ry="2" />
<text x="1166.85" y="767.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (375 samples, 0.02%)</title><rect x="1122.3" y="885" width="0.2" height="15.0" fill="rgb(206,34,51)" rx="2" ry="2" />
<text x="1125.31" y="895.5" ></text>
</g>
<g >
<title>caml_garbage_collection (882 samples, 0.04%)</title><rect x="607.1" y="1301" width="0.4" height="15.0" fill="rgb(222,27,18)" rx="2" ry="2" />
<text x="610.10" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (86,744 samples, 3.76%)</title><rect x="926.1" y="1621" width="44.4" height="15.0" fill="rgb(213,111,18)" rx="2" ry="2" />
<text x="929.14" y="1631.5" >[[ke..</text>
</g>
<g >
<title>camlLwt__map_1294 (704 samples, 0.03%)</title><rect x="590.9" y="1301" width="0.3" height="15.0" fill="rgb(246,88,31)" rx="2" ry="2" />
<text x="593.88" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (292 samples, 0.01%)</title><rect x="151.0" y="1397" width="0.2" height="15.0" fill="rgb(244,134,13)" rx="2" ry="2" />
<text x="154.02" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (455 samples, 0.02%)</title><rect x="1122.3" y="917" width="0.2" height="15.0" fill="rgb(231,117,7)" rx="2" ry="2" />
<text x="1125.27" y="927.5" ></text>
</g>
<g >
<title>caml_garbage_collection (418 samples, 0.02%)</title><rect x="616.2" y="1173" width="0.3" height="15.0" fill="rgb(236,223,9)" rx="2" ry="2" />
<text x="619.25" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (240 samples, 0.01%)</title><rect x="1012.6" y="1381" width="0.1" height="15.0" fill="rgb(242,137,49)" rx="2" ry="2" />
<text x="1015.60" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (38,386 samples, 1.66%)</title><rect x="1143.9" y="773" width="19.6" height="15.0" fill="rgb(225,200,21)" rx="2" ry="2" />
<text x="1146.89" y="783.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (1,146 samples, 0.05%)</title><rect x="1128.4" y="1093" width="0.6" height="15.0" fill="rgb(227,9,45)" rx="2" ry="2" />
<text x="1131.42" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__already_in_dst_4971 (776 samples, 0.03%)</title><rect x="1060.4" y="1189" width="0.4" height="15.0" fill="rgb(232,54,10)" rx="2" ry="2" />
<text x="1063.40" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (605 samples, 0.03%)</title><rect x="784.4" y="1109" width="0.3" height="15.0" fill="rgb(205,215,15)" rx="2" ry="2" />
<text x="787.44" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,444 samples, 0.06%)</title><rect x="565.7" y="1221" width="0.8" height="15.0" fill="rgb(208,155,1)" rx="2" ry="2" />
<text x="568.72" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (2,823 samples, 0.12%)</title><rect x="597.5" y="1301" width="1.4" height="15.0" fill="rgb(248,167,22)" rx="2" ry="2" />
<text x="600.50" y="1311.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,170 samples, 0.05%)</title><rect x="696.7" y="949" width="0.6" height="15.0" fill="rgb(237,52,1)" rx="2" ry="2" />
<text x="699.68" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (1,749 samples, 0.08%)</title><rect x="631.3" y="229" width="0.9" height="15.0" fill="rgb(212,177,6)" rx="2" ry="2" />
<text x="634.30" y="239.5" ></text>
</g>
<g >
<title>mark_slice_darken (954 samples, 0.04%)</title><rect x="412.1" y="1333" width="0.5" height="15.0" fill="rgb(209,14,8)" rx="2" ry="2" />
<text x="415.09" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,230 samples, 0.05%)</title><rect x="1148.3" y="149" width="0.6" height="15.0" fill="rgb(230,35,19)" rx="2" ry="2" />
<text x="1151.25" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (868 samples, 0.04%)</title><rect x="576.4" y="1205" width="0.4" height="15.0" fill="rgb(213,194,25)" rx="2" ry="2" />
<text x="579.38" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (388 samples, 0.02%)</title><rect x="1055.6" y="1173" width="0.2" height="15.0" fill="rgb(235,30,14)" rx="2" ry="2" />
<text x="1058.56" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (233 samples, 0.01%)</title><rect x="245.4" y="1365" width="0.1" height="15.0" fill="rgb(227,118,22)" rx="2" ry="2" />
<text x="248.39" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (76,158 samples, 3.30%)</title><rect x="631.2" y="709" width="39.0" height="15.0" fill="rgb(215,42,29)" rx="2" ry="2" />
<text x="634.24" y="719.5" >cam..</text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (489 samples, 0.02%)</title><rect x="878.4" y="917" width="0.3" height="15.0" fill="rgb(247,221,1)" rx="2" ry="2" />
<text x="881.44" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,428 samples, 0.06%)</title><rect x="718.9" y="997" width="0.7" height="15.0" fill="rgb(250,210,36)" rx="2" ry="2" />
<text x="721.89" y="1007.5" ></text>
</g>
<g >
<title>caml_raise_exn (48,711 samples, 2.11%)</title><rect x="49.9" y="1653" width="24.9" height="15.0" fill="rgb(249,35,15)" rx="2" ry="2" />
<text x="52.93" y="1663.5" >c..</text>
</g>
<g >
<title>caml_call_gc (439 samples, 0.02%)</title><rect x="701.0" y="981" width="0.3" height="15.0" fill="rgb(227,114,47)" rx="2" ry="2" />
<text x="704.05" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,365 samples, 0.19%)</title><rect x="887.4" y="1349" width="2.2" height="15.0" fill="rgb(211,117,32)" rx="2" ry="2" />
<text x="890.41" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (352 samples, 0.02%)</title><rect x="690.1" y="1029" width="0.1" height="15.0" fill="rgb(218,155,23)" rx="2" ry="2" />
<text x="693.07" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (375 samples, 0.02%)</title><rect x="572.1" y="1285" width="0.2" height="15.0" fill="rgb(228,191,9)" rx="2" ry="2" />
<text x="575.14" y="1295.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (492 samples, 0.02%)</title><rect x="1152.8" y="149" width="0.3" height="15.0" fill="rgb(221,167,16)" rx="2" ry="2" />
<text x="1155.81" y="159.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (44,608 samples, 1.93%)</title><rect x="815.7" y="1141" width="22.8" height="15.0" fill="rgb(227,80,38)" rx="2" ry="2" />
<text x="818.68" y="1151.5" >c..</text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (350 samples, 0.02%)</title><rect x="1179.1" y="1189" width="0.2" height="15.0" fill="rgb(214,53,51)" rx="2" ry="2" />
<text x="1182.11" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (336 samples, 0.01%)</title><rect x="579.6" y="1237" width="0.2" height="15.0" fill="rgb(244,97,11)" rx="2" ry="2" />
<text x="582.65" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2345 (208 samples, 0.01%)</title><rect x="706.0" y="1029" width="0.1" height="15.0" fill="rgb(232,76,14)" rx="2" ry="2" />
<text x="708.97" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (511 samples, 0.02%)</title><rect x="491.5" y="1157" width="0.3" height="15.0" fill="rgb(254,119,54)" rx="2" ry="2" />
<text x="494.49" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (285 samples, 0.01%)</title><rect x="767.3" y="1093" width="0.2" height="15.0" fill="rgb(224,181,22)" rx="2" ry="2" />
<text x="770.31" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11806 (224 samples, 0.01%)</title><rect x="624.6" y="1077" width="0.1" height="15.0" fill="rgb(224,57,19)" rx="2" ry="2" />
<text x="627.58" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_modAdd (595 samples, 0.03%)</title><rect x="646.0" y="149" width="0.3" height="15.0" fill="rgb(217,94,25)" rx="2" ry="2" />
<text x="649.01" y="159.5" ></text>
</g>
<g >
<title>mark_slice_darken (346 samples, 0.01%)</title><rect x="848.0" y="1237" width="0.2" height="15.0" fill="rgb(216,135,21)" rx="2" ry="2" />
<text x="850.99" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (517 samples, 0.02%)</title><rect x="564.2" y="1205" width="0.3" height="15.0" fill="rgb(235,198,42)" rx="2" ry="2" />
<text x="567.23" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (214 samples, 0.01%)</title><rect x="1056.4" y="1045" width="0.1" height="15.0" fill="rgb(218,34,41)" rx="2" ry="2" />
<text x="1059.42" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (13,729 samples, 0.59%)</title><rect x="533.0" y="1205" width="7.1" height="15.0" fill="rgb(242,97,1)" rx="2" ry="2" />
<text x="536.03" y="1215.5" ></text>
</g>
<g >
<title>[[vdso]] (469 samples, 0.02%)</title><rect x="981.0" y="1461" width="0.3" height="15.0" fill="rgb(224,165,22)" rx="2" ry="2" />
<text x="984.02" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (535 samples, 0.02%)</title><rect x="313.3" y="1365" width="0.3" height="15.0" fill="rgb(249,148,16)" rx="2" ry="2" />
<text x="316.32" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_115 (369 samples, 0.02%)</title><rect x="707.6" y="1029" width="0.2" height="15.0" fill="rgb(250,71,16)" rx="2" ry="2" />
<text x="710.57" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (4,294 samples, 0.19%)</title><rect x="256.6" y="1413" width="2.2" height="15.0" fill="rgb(247,197,27)" rx="2" ry="2" />
<text x="259.59" y="1423.5" ></text>
</g>
<g >
<title>caml_garbage_collection (356 samples, 0.02%)</title><rect x="911.8" y="1381" width="0.2" height="15.0" fill="rgb(251,156,49)" rx="2" ry="2" />
<text x="914.78" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (225 samples, 0.01%)</title><rect x="582.7" y="1253" width="0.1" height="15.0" fill="rgb(249,186,36)" rx="2" ry="2" />
<text x="585.67" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_tree_4554 (803 samples, 0.03%)</title><rect x="833.8" y="661" width="0.4" height="15.0" fill="rgb(223,184,43)" rx="2" ry="2" />
<text x="836.76" y="671.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (437 samples, 0.02%)</title><rect x="170.4" y="1301" width="0.2" height="15.0" fill="rgb(229,229,44)" rx="2" ry="2" />
<text x="173.41" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (217 samples, 0.01%)</title><rect x="762.2" y="1109" width="0.1" height="15.0" fill="rgb(229,38,30)" rx="2" ry="2" />
<text x="765.19" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (655 samples, 0.03%)</title><rect x="80.3" y="1541" width="0.3" height="15.0" fill="rgb(223,26,50)" rx="2" ry="2" />
<text x="83.26" y="1551.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (286 samples, 0.01%)</title><rect x="669.2" y="165" width="0.1" height="15.0" fill="rgb(220,155,21)" rx="2" ry="2" />
<text x="672.17" y="175.5" ></text>
</g>
<g >
<title>caml_apply2 (1,218 samples, 0.05%)</title><rect x="617.8" y="1253" width="0.6" height="15.0" fill="rgb(241,52,17)" rx="2" ry="2" />
<text x="620.80" y="1263.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,269 samples, 0.05%)</title><rect x="325.1" y="1365" width="0.7" height="15.0" fill="rgb(229,90,2)" rx="2" ry="2" />
<text x="328.13" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (337 samples, 0.01%)</title><rect x="771.1" y="1093" width="0.2" height="15.0" fill="rgb(247,64,22)" rx="2" ry="2" />
<text x="774.10" y="1103.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (557 samples, 0.02%)</title><rect x="818.7" y="197" width="0.3" height="15.0" fill="rgb(230,223,2)" rx="2" ry="2" />
<text x="821.71" y="207.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (460 samples, 0.02%)</title><rect x="793.8" y="997" width="0.2" height="15.0" fill="rgb(210,139,50)" rx="2" ry="2" />
<text x="796.76" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12430 (7,597 samples, 0.33%)</title><rect x="875.4" y="1077" width="3.8" height="15.0" fill="rgb(246,69,38)" rx="2" ry="2" />
<text x="878.36" y="1087.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (3,374 samples, 0.15%)</title><rect x="1160.2" y="245" width="1.7" height="15.0" fill="rgb(238,38,10)" rx="2" ry="2" />
<text x="1163.17" y="255.5" ></text>
</g>
<g >
<title>uECC_vli_square (327 samples, 0.01%)</title><rect x="635.0" y="117" width="0.2" height="15.0" fill="rgb(211,180,28)" rx="2" ry="2" />
<text x="638.00" y="127.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (768 samples, 0.03%)</title><rect x="712.6" y="1045" width="0.4" height="15.0" fill="rgb(223,71,3)" rx="2" ry="2" />
<text x="715.62" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (484 samples, 0.02%)</title><rect x="223.1" y="1317" width="0.3" height="15.0" fill="rgb(215,99,2)" rx="2" ry="2" />
<text x="226.12" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (342 samples, 0.01%)</title><rect x="778.2" y="1029" width="0.1" height="15.0" fill="rgb(218,114,48)" rx="2" ry="2" />
<text x="781.15" y="1039.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,013 samples, 0.04%)</title><rect x="198.5" y="1349" width="0.5" height="15.0" fill="rgb(211,75,20)" rx="2" ry="2" />
<text x="201.50" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (628 samples, 0.03%)</title><rect x="1063.9" y="1157" width="0.4" height="15.0" fill="rgb(223,12,36)" rx="2" ry="2" />
<text x="1066.94" y="1167.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (294 samples, 0.01%)</title><rect x="831.6" y="245" width="0.1" height="15.0" fill="rgb(219,101,8)" rx="2" ry="2" />
<text x="834.59" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (10,040 samples, 0.43%)</title><rect x="995.4" y="1381" width="5.1" height="15.0" fill="rgb(212,225,21)" rx="2" ry="2" />
<text x="998.41" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (654 samples, 0.03%)</title><rect x="380.9" y="1413" width="0.4" height="15.0" fill="rgb(243,114,32)" rx="2" ry="2" />
<text x="383.92" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (406 samples, 0.02%)</title><rect x="291.9" y="1301" width="0.2" height="15.0" fill="rgb(232,34,28)" rx="2" ry="2" />
<text x="294.85" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (463 samples, 0.02%)</title><rect x="617.4" y="1205" width="0.3" height="15.0" fill="rgb(228,203,42)" rx="2" ry="2" />
<text x="620.42" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (273 samples, 0.01%)</title><rect x="562.2" y="1269" width="0.1" height="15.0" fill="rgb(241,77,4)" rx="2" ry="2" />
<text x="565.17" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (353 samples, 0.02%)</title><rect x="770.1" y="1109" width="0.1" height="15.0" fill="rgb(224,29,24)" rx="2" ry="2" />
<text x="773.06" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (457 samples, 0.02%)</title><rect x="682.0" y="1093" width="0.2" height="15.0" fill="rgb(216,160,54)" rx="2" ry="2" />
<text x="685.01" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (80,700 samples, 3.50%)</title><rect x="631.2" y="1029" width="41.3" height="15.0" fill="rgb(227,81,1)" rx="2" ry="2" />
<text x="634.22" y="1039.5" >cam..</text>
</g>
<g >
<title>caml_empty_minor_heap (236 samples, 0.01%)</title><rect x="215.2" y="1301" width="0.1" height="15.0" fill="rgb(251,210,19)" rx="2" ry="2" />
<text x="218.16" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (245 samples, 0.01%)</title><rect x="1120.3" y="901" width="0.1" height="15.0" fill="rgb(213,162,48)" rx="2" ry="2" />
<text x="1123.29" y="911.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,285 samples, 0.06%)</title><rect x="1090.5" y="805" width="0.6" height="15.0" fill="rgb(248,48,40)" rx="2" ry="2" />
<text x="1093.46" y="815.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (712 samples, 0.03%)</title><rect x="94.2" y="1477" width="0.3" height="15.0" fill="rgb(251,141,17)" rx="2" ry="2" />
<text x="97.18" y="1487.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (14,375 samples, 0.62%)</title><rect x="1087.2" y="1045" width="7.3" height="15.0" fill="rgb(238,72,26)" rx="2" ry="2" />
<text x="1090.18" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (610 samples, 0.03%)</title><rect x="730.4" y="1189" width="0.3" height="15.0" fill="rgb(236,199,39)" rx="2" ry="2" />
<text x="733.43" y="1199.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (771 samples, 0.03%)</title><rect x="970.8" y="1605" width="0.4" height="15.0" fill="rgb(221,166,9)" rx="2" ry="2" />
<text x="973.79" y="1615.5" ></text>
</g>
<g >
<title>mark_slice (504 samples, 0.02%)</title><rect x="224.1" y="1285" width="0.2" height="15.0" fill="rgb(210,15,45)" rx="2" ry="2" />
<text x="227.05" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (250 samples, 0.01%)</title><rect x="505.3" y="1301" width="0.1" height="15.0" fill="rgb(252,211,27)" rx="2" ry="2" />
<text x="508.30" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (99,166 samples, 4.30%)</title><rect x="622.2" y="1253" width="50.7" height="15.0" fill="rgb(206,140,18)" rx="2" ry="2" />
<text x="625.17" y="1263.5" >camlL..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,164 samples, 0.05%)</title><rect x="737.0" y="1093" width="0.6" height="15.0" fill="rgb(254,57,5)" rx="2" ry="2" />
<text x="739.97" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (264 samples, 0.01%)</title><rect x="197.9" y="1349" width="0.1" height="15.0" fill="rgb(218,72,24)" rx="2" ry="2" />
<text x="200.90" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (357 samples, 0.02%)</title><rect x="266.7" y="1333" width="0.2" height="15.0" fill="rgb(229,81,34)" rx="2" ry="2" />
<text x="269.69" y="1343.5" ></text>
</g>
<g >
<title>mod_sqrt_default (2,411 samples, 0.10%)</title><rect x="1164.9" y="757" width="1.3" height="15.0" fill="rgb(217,42,23)" rx="2" ry="2" />
<text x="1167.92" y="767.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (757 samples, 0.03%)</title><rect x="149.2" y="1461" width="0.4" height="15.0" fill="rgb(216,57,35)" rx="2" ry="2" />
<text x="152.16" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (587 samples, 0.03%)</title><rect x="18.2" y="1589" width="0.3" height="15.0" fill="rgb(237,12,48)" rx="2" ry="2" />
<text x="21.16" y="1599.5" ></text>
</g>
<g >
<title>caml_apply3 (484 samples, 0.02%)</title><rect x="309.6" y="1445" width="0.2" height="15.0" fill="rgb(242,133,10)" rx="2" ry="2" />
<text x="312.57" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (51,039 samples, 2.21%)</title><rect x="1087.1" y="1077" width="26.1" height="15.0" fill="rgb(244,78,24)" rx="2" ry="2" />
<text x="1090.12" y="1087.5" >c..</text>
</g>
<g >
<title>caml_major_collection_slice (366 samples, 0.02%)</title><rect x="810.8" y="1045" width="0.2" height="15.0" fill="rgb(206,162,42)" rx="2" ry="2" />
<text x="813.85" y="1055.5" ></text>
</g>
<g >
<title>caml_c_call (213 samples, 0.01%)</title><rect x="80.2" y="1541" width="0.1" height="15.0" fill="rgb(222,105,40)" rx="2" ry="2" />
<text x="83.16" y="1551.5" ></text>
</g>
<g >
<title>caml_call_gc (1,711 samples, 0.07%)</title><rect x="918.2" y="1477" width="0.8" height="15.0" fill="rgb(250,120,1)" rx="2" ry="2" />
<text x="921.16" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (299 samples, 0.01%)</title><rect x="581.9" y="1093" width="0.1" height="15.0" fill="rgb(222,163,52)" rx="2" ry="2" />
<text x="584.88" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (398 samples, 0.02%)</title><rect x="520.9" y="1301" width="0.2" height="15.0" fill="rgb(253,125,2)" rx="2" ry="2" />
<text x="523.86" y="1311.5" ></text>
</g>
<g >
<title>uECC_verify (1,481 samples, 0.06%)</title><rect x="668.7" y="197" width="0.7" height="15.0" fill="rgb(252,53,29)" rx="2" ry="2" />
<text x="671.68" y="207.5" ></text>
</g>
<g >
<title>caml_garbage_collection (361 samples, 0.02%)</title><rect x="523.8" y="1301" width="0.2" height="15.0" fill="rgb(224,70,24)" rx="2" ry="2" />
<text x="526.83" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (214 samples, 0.01%)</title><rect x="848.5" y="1285" width="0.1" height="15.0" fill="rgb(236,151,47)" rx="2" ry="2" />
<text x="851.47" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (6,931 samples, 0.30%)</title><rect x="1120.5" y="1013" width="3.5" height="15.0" fill="rgb(236,216,28)" rx="2" ry="2" />
<text x="1123.46" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (286 samples, 0.01%)</title><rect x="774.1" y="1093" width="0.2" height="15.0" fill="rgb(232,70,3)" rx="2" ry="2" />
<text x="777.12" y="1103.5" ></text>
</g>
<g >
<title>uECC_vli_modAdd (299 samples, 0.01%)</title><rect x="1101.7" y="85" width="0.2" height="15.0" fill="rgb(233,157,24)" rx="2" ry="2" />
<text x="1104.70" y="95.5" ></text>
</g>
<g >
<title>caml_apply2 (3,139 samples, 0.14%)</title><rect x="419.9" y="1429" width="1.6" height="15.0" fill="rgb(226,136,44)" rx="2" ry="2" />
<text x="422.90" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (464 samples, 0.02%)</title><rect x="1074.0" y="1141" width="0.3" height="15.0" fill="rgb(246,42,4)" rx="2" ry="2" />
<text x="1077.04" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (5,446 samples, 0.24%)</title><rect x="574.9" y="1269" width="2.8" height="15.0" fill="rgb(207,30,48)" rx="2" ry="2" />
<text x="577.94" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (487 samples, 0.02%)</title><rect x="773.0" y="1109" width="0.3" height="15.0" fill="rgb(237,86,29)" rx="2" ry="2" />
<text x="776.02" y="1119.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (492 samples, 0.02%)</title><rect x="823.6" y="213" width="0.2" height="15.0" fill="rgb(231,215,6)" rx="2" ry="2" />
<text x="826.58" y="223.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,853 samples, 0.08%)</title><rect x="1154.4" y="165" width="1.0" height="15.0" fill="rgb(245,84,8)" rx="2" ry="2" />
<text x="1157.41" y="175.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,098 samples, 0.13%)</title><rect x="249.4" y="1381" width="1.6" height="15.0" fill="rgb(232,163,20)" rx="2" ry="2" />
<text x="252.38" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (55,810 samples, 2.42%)</title><rect x="1085.0" y="1189" width="28.5" height="15.0" fill="rgb(222,85,54)" rx="2" ry="2" />
<text x="1087.98" y="1199.5" >ca..</text>
</g>
<g >
<title>caml_garbage_collection (776 samples, 0.03%)</title><rect x="272.4" y="1397" width="0.4" height="15.0" fill="rgb(229,67,30)" rx="2" ry="2" />
<text x="275.36" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (223 samples, 0.01%)</title><rect x="719.4" y="965" width="0.1" height="15.0" fill="rgb(246,116,39)" rx="2" ry="2" />
<text x="722.43" y="975.5" ></text>
</g>
<g >
<title>sweep_slice (235 samples, 0.01%)</title><rect x="915.8" y="1397" width="0.1" height="15.0" fill="rgb(237,176,41)" rx="2" ry="2" />
<text x="918.77" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,503 samples, 0.07%)</title><rect x="432.0" y="1397" width="0.8" height="15.0" fill="rgb(245,121,31)" rx="2" ry="2" />
<text x="435.01" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (627 samples, 0.03%)</title><rect x="1169.5" y="901" width="0.3" height="15.0" fill="rgb(240,19,22)" rx="2" ry="2" />
<text x="1172.51" y="911.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (2,277 samples, 0.10%)</title><rect x="388.4" y="1413" width="1.2" height="15.0" fill="rgb(206,57,42)" rx="2" ry="2" />
<text x="391.41" y="1423.5" ></text>
</g>
<g >
<title>caml_garbage_collection (794 samples, 0.03%)</title><rect x="214.2" y="1349" width="0.4" height="15.0" fill="rgb(252,41,30)" rx="2" ry="2" />
<text x="217.18" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_7512 (23,127 samples, 1.00%)</title><rect x="815.7" y="373" width="11.9" height="15.0" fill="rgb(206,138,17)" rx="2" ry="2" />
<text x="818.74" y="383.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (561 samples, 0.02%)</title><rect x="833.8" y="597" width="0.3" height="15.0" fill="rgb(224,185,18)" rx="2" ry="2" />
<text x="836.84" y="607.5" ></text>
</g>
<g >
<title>sweep_slice (352 samples, 0.02%)</title><rect x="372.8" y="1301" width="0.2" height="15.0" fill="rgb(222,126,40)" rx="2" ry="2" />
<text x="375.83" y="1311.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (388 samples, 0.02%)</title><rect x="551.6" y="1173" width="0.2" height="15.0" fill="rgb(223,161,9)" rx="2" ry="2" />
<text x="554.63" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (562 samples, 0.02%)</title><rect x="546.4" y="1237" width="0.3" height="15.0" fill="rgb(245,185,42)" rx="2" ry="2" />
<text x="549.37" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (204 samples, 0.01%)</title><rect x="1083.7" y="1173" width="0.1" height="15.0" fill="rgb(205,6,8)" rx="2" ry="2" />
<text x="1086.69" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (4,367 samples, 0.19%)</title><rect x="887.4" y="1365" width="2.2" height="15.0" fill="rgb(210,201,29)" rx="2" ry="2" />
<text x="890.41" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (1,574 samples, 0.07%)</title><rect x="611.7" y="1157" width="0.8" height="15.0" fill="rgb(216,62,25)" rx="2" ry="2" />
<text x="614.73" y="1167.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (222 samples, 0.01%)</title><rect x="770.4" y="1093" width="0.2" height="15.0" fill="rgb(219,111,47)" rx="2" ry="2" />
<text x="773.44" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (267 samples, 0.01%)</title><rect x="264.1" y="1333" width="0.1" height="15.0" fill="rgb(236,177,3)" rx="2" ry="2" />
<text x="267.10" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (473 samples, 0.02%)</title><rect x="997.8" y="1189" width="0.3" height="15.0" fill="rgb(248,60,53)" rx="2" ry="2" />
<text x="1000.81" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (1,081 samples, 0.05%)</title><rect x="330.5" y="1445" width="0.6" height="15.0" fill="rgb(219,207,31)" rx="2" ry="2" />
<text x="333.55" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (1,819 samples, 0.08%)</title><rect x="214.9" y="1365" width="0.9" height="15.0" fill="rgb(237,194,10)" rx="2" ry="2" />
<text x="217.89" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15242 (391 samples, 0.02%)</title><rect x="884.4" y="1109" width="0.2" height="15.0" fill="rgb(209,51,47)" rx="2" ry="2" />
<text x="887.43" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15242 (291 samples, 0.01%)</title><rect x="1179.4" y="1045" width="0.1" height="15.0" fill="rgb(226,161,23)" rx="2" ry="2" />
<text x="1182.37" y="1055.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (253 samples, 0.01%)</title><rect x="794.7" y="1045" width="0.2" height="15.0" fill="rgb(217,14,1)" rx="2" ry="2" />
<text x="797.74" y="1055.5" ></text>
</g>
<g >
<title>caml_curry3 (239 samples, 0.01%)</title><rect x="768.7" y="1109" width="0.2" height="15.0" fill="rgb(246,116,4)" rx="2" ry="2" />
<text x="771.74" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (44,556 samples, 1.93%)</title><rect x="815.7" y="997" width="22.8" height="15.0" fill="rgb(225,224,54)" rx="2" ry="2" />
<text x="818.69" y="1007.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (2,313 samples, 0.10%)</title><rect x="447.3" y="1445" width="1.2" height="15.0" fill="rgb(236,188,3)" rx="2" ry="2" />
<text x="450.27" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (259 samples, 0.01%)</title><rect x="768.2" y="1093" width="0.2" height="15.0" fill="rgb(229,168,10)" rx="2" ry="2" />
<text x="771.24" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (232 samples, 0.01%)</title><rect x="851.8" y="1221" width="0.1" height="15.0" fill="rgb(215,146,34)" rx="2" ry="2" />
<text x="854.77" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (2,952 samples, 0.13%)</title><rect x="544.5" y="1317" width="1.5" height="15.0" fill="rgb(251,8,3)" rx="2" ry="2" />
<text x="547.48" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (247 samples, 0.01%)</title><rect x="189.4" y="1381" width="0.1" height="15.0" fill="rgb(218,47,31)" rx="2" ry="2" />
<text x="192.42" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (958 samples, 0.04%)</title><rect x="225.7" y="1333" width="0.5" height="15.0" fill="rgb(234,197,3)" rx="2" ry="2" />
<text x="228.74" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (603 samples, 0.03%)</title><rect x="217.1" y="1269" width="0.3" height="15.0" fill="rgb(224,59,13)" rx="2" ry="2" />
<text x="220.12" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (310 samples, 0.01%)</title><rect x="188.8" y="1285" width="0.1" height="15.0" fill="rgb(225,71,38)" rx="2" ry="2" />
<text x="191.79" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_engine__iter_1264 (791 samples, 0.03%)</title><rect x="101.6" y="1573" width="0.4" height="15.0" fill="rgb(215,185,38)" rx="2" ry="2" />
<text x="104.57" y="1583.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (288 samples, 0.01%)</title><rect x="498.6" y="1269" width="0.1" height="15.0" fill="rgb(226,151,6)" rx="2" ry="2" />
<text x="501.60" y="1279.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (960 samples, 0.04%)</title><rect x="1003.6" y="1173" width="0.5" height="15.0" fill="rgb(230,218,16)" rx="2" ry="2" />
<text x="1006.57" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (80,340 samples, 3.48%)</title><rect x="682.6" y="1189" width="41.1" height="15.0" fill="rgb(252,59,7)" rx="2" ry="2" />
<text x="685.61" y="1199.5" >cam..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (5,282 samples, 0.23%)</title><rect x="802.8" y="1045" width="2.7" height="15.0" fill="rgb(237,46,13)" rx="2" ry="2" />
<text x="805.84" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (371 samples, 0.02%)</title><rect x="707.1" y="981" width="0.2" height="15.0" fill="rgb(242,26,33)" rx="2" ry="2" />
<text x="710.12" y="991.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (326 samples, 0.01%)</title><rect x="528.2" y="1237" width="0.1" height="15.0" fill="rgb(245,223,10)" rx="2" ry="2" />
<text x="531.15" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (273 samples, 0.01%)</title><rect x="709.3" y="1029" width="0.1" height="15.0" fill="rgb(253,220,46)" rx="2" ry="2" />
<text x="712.31" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (5,554 samples, 0.24%)</title><rect x="674.8" y="1269" width="2.8" height="15.0" fill="rgb(216,12,34)" rx="2" ry="2" />
<text x="677.80" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (208 samples, 0.01%)</title><rect x="552.5" y="1141" width="0.1" height="15.0" fill="rgb(209,201,23)" rx="2" ry="2" />
<text x="555.49" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (968 samples, 0.04%)</title><rect x="267.2" y="1397" width="0.5" height="15.0" fill="rgb(246,15,38)" rx="2" ry="2" />
<text x="270.18" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4065 (578 samples, 0.03%)</title><rect x="835.6" y="597" width="0.3" height="15.0" fill="rgb(224,137,23)" rx="2" ry="2" />
<text x="838.64" y="607.5" ></text>
</g>
<g >
<title>uECC_vli_add (458 samples, 0.02%)</title><rect x="1102.9" y="53" width="0.3" height="15.0" fill="rgb(221,190,19)" rx="2" ry="2" />
<text x="1105.95" y="63.5" ></text>
</g>
<g >
<title>caml_call_gc (921 samples, 0.04%)</title><rect x="712.5" y="1077" width="0.5" height="15.0" fill="rgb(207,160,40)" rx="2" ry="2" />
<text x="715.54" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__add_regular_callback_list_node_736 (557 samples, 0.02%)</title><rect x="18.7" y="1637" width="0.3" height="15.0" fill="rgb(242,222,16)" rx="2" ry="2" />
<text x="21.69" y="1647.5" ></text>
</g>
<g >
<title>caml_call_gc (212 samples, 0.01%)</title><rect x="700.5" y="997" width="0.1" height="15.0" fill="rgb(237,104,6)" rx="2" ry="2" />
<text x="703.48" y="1007.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (976 samples, 0.04%)</title><rect x="837.8" y="789" width="0.5" height="15.0" fill="rgb(246,26,3)" rx="2" ry="2" />
<text x="840.80" y="799.5" ></text>
</g>
<g >
<title>mark_slice (495 samples, 0.02%)</title><rect x="210.2" y="1317" width="0.2" height="15.0" fill="rgb(223,23,37)" rx="2" ry="2" />
<text x="213.16" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (1,461 samples, 0.06%)</title><rect x="908.4" y="1413" width="0.7" height="15.0" fill="rgb(247,87,45)" rx="2" ry="2" />
<text x="911.37" y="1423.5" ></text>
</g>
<g >
<title>do_compaction (1,432 samples, 0.06%)</title><rect x="865.0" y="789" width="0.7" height="15.0" fill="rgb(211,21,32)" rx="2" ry="2" />
<text x="867.98" y="799.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (5,737 samples, 0.25%)</title><rect x="1001.6" y="1333" width="2.9" height="15.0" fill="rgb(253,107,24)" rx="2" ry="2" />
<text x="1004.56" y="1343.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (291 samples, 0.01%)</title><rect x="265.6" y="1365" width="0.1" height="15.0" fill="rgb(208,113,50)" rx="2" ry="2" />
<text x="268.60" y="1375.5" ></text>
</g>
<g >
<title>uECC_verify_stub (4,596 samples, 0.20%)</title><rect x="828.9" y="277" width="2.4" height="15.0" fill="rgb(208,72,2)" rx="2" ry="2" />
<text x="831.90" y="287.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (238 samples, 0.01%)</title><rect x="553.1" y="1237" width="0.1" height="15.0" fill="rgb(226,91,14)" rx="2" ry="2" />
<text x="556.07" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,825 samples, 0.08%)</title><rect x="748.1" y="1061" width="1.0" height="15.0" fill="rgb(230,157,52)" rx="2" ry="2" />
<text x="751.14" y="1071.5" ></text>
</g>
<g >
<title>sweep_slice (267 samples, 0.01%)</title><rect x="1002.5" y="1205" width="0.1" height="15.0" fill="rgb(249,129,50)" rx="2" ry="2" />
<text x="1005.47" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (214 samples, 0.01%)</title><rect x="1066.0" y="1189" width="0.1" height="15.0" fill="rgb(234,116,1)" rx="2" ry="2" />
<text x="1068.97" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (482 samples, 0.02%)</title><rect x="729.5" y="1141" width="0.2" height="15.0" fill="rgb(206,65,3)" rx="2" ry="2" />
<text x="732.45" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (504 samples, 0.02%)</title><rect x="1003.6" y="1141" width="0.3" height="15.0" fill="rgb(231,142,13)" rx="2" ry="2" />
<text x="1006.65" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (1,187 samples, 0.05%)</title><rect x="217.7" y="1301" width="0.6" height="15.0" fill="rgb(208,101,29)" rx="2" ry="2" />
<text x="220.68" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (620 samples, 0.03%)</title><rect x="209.1" y="1349" width="0.4" height="15.0" fill="rgb(207,82,15)" rx="2" ry="2" />
<text x="212.15" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (264 samples, 0.01%)</title><rect x="614.7" y="1141" width="0.2" height="15.0" fill="rgb(215,0,50)" rx="2" ry="2" />
<text x="617.75" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (1,277 samples, 0.06%)</title><rect x="910.0" y="1333" width="0.7" height="15.0" fill="rgb(236,115,29)" rx="2" ry="2" />
<text x="913.03" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_825 (2,872 samples, 0.12%)</title><rect x="917.6" y="1493" width="1.4" height="15.0" fill="rgb(226,4,1)" rx="2" ry="2" />
<text x="920.56" y="1503.5" ></text>
</g>
<g >
<title>_start (413,475 samples, 17.91%)</title><rect x="972.6" y="1669" width="211.4" height="15.0" fill="rgb(219,57,8)" rx="2" ry="2" />
<text x="975.63" y="1679.5" >_start</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (5,665 samples, 0.25%)</title><rect x="574.9" y="1285" width="2.9" height="15.0" fill="rgb(229,102,0)" rx="2" ry="2" />
<text x="577.87" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (699 samples, 0.03%)</title><rect x="720.5" y="1061" width="0.4" height="15.0" fill="rgb(237,211,46)" rx="2" ry="2" />
<text x="723.53" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (443 samples, 0.02%)</title><rect x="812.5" y="1077" width="0.2" height="15.0" fill="rgb(221,191,13)" rx="2" ry="2" />
<text x="815.50" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (354 samples, 0.02%)</title><rect x="884.9" y="1285" width="0.2" height="15.0" fill="rgb(214,186,23)" rx="2" ry="2" />
<text x="887.95" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (478 samples, 0.02%)</title><rect x="521.4" y="1269" width="0.2" height="15.0" fill="rgb(240,22,45)" rx="2" ry="2" />
<text x="524.35" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (592 samples, 0.03%)</title><rect x="221.5" y="1333" width="0.3" height="15.0" fill="rgb(233,179,31)" rx="2" ry="2" />
<text x="224.46" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (209 samples, 0.01%)</title><rect x="1000.4" y="981" width="0.1" height="15.0" fill="rgb(218,105,3)" rx="2" ry="2" />
<text x="1003.40" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (224 samples, 0.01%)</title><rect x="202.6" y="1365" width="0.1" height="15.0" fill="rgb(236,97,22)" rx="2" ry="2" />
<text x="205.58" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (424 samples, 0.02%)</title><rect x="591.5" y="1317" width="0.2" height="15.0" fill="rgb(224,165,11)" rx="2" ry="2" />
<text x="594.52" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2055 (235 samples, 0.01%)</title><rect x="747.9" y="1061" width="0.2" height="15.0" fill="rgb(241,110,23)" rx="2" ry="2" />
<text x="750.94" y="1071.5" ></text>
</g>
<g >
<title>sweep_slice (343 samples, 0.01%)</title><rect x="335.7" y="1381" width="0.2" height="15.0" fill="rgb(205,179,46)" rx="2" ry="2" />
<text x="338.72" y="1391.5" ></text>
</g>
<g >
<title>apply_z (1,475 samples, 0.06%)</title><rect x="819.5" y="229" width="0.8" height="15.0" fill="rgb(245,1,4)" rx="2" ry="2" />
<text x="822.52" y="239.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,689 samples, 0.07%)</title><rect x="247.5" y="1365" width="0.8" height="15.0" fill="rgb(252,43,43)" rx="2" ry="2" />
<text x="250.45" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (207 samples, 0.01%)</title><rect x="275.8" y="1333" width="0.1" height="15.0" fill="rgb(228,191,14)" rx="2" ry="2" />
<text x="278.84" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,844 samples, 0.08%)</title><rect x="465.1" y="1317" width="0.9" height="15.0" fill="rgb(229,183,27)" rx="2" ry="2" />
<text x="468.05" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (2,222 samples, 0.10%)</title><rect x="803.1" y="1013" width="1.2" height="15.0" fill="rgb(230,222,31)" rx="2" ry="2" />
<text x="806.13" y="1023.5" ></text>
</g>
<g >
<title>muladd (219 samples, 0.01%)</title><rect x="1104.2" y="53" width="0.1" height="15.0" fill="rgb(210,165,18)" rx="2" ry="2" />
<text x="1107.19" y="63.5" ></text>
</g>
<g >
<title>caml_call_gc (595 samples, 0.03%)</title><rect x="253.2" y="1397" width="0.3" height="15.0" fill="rgb(213,19,17)" rx="2" ry="2" />
<text x="256.16" y="1407.5" ></text>
</g>
<g >
<title>muladd (346 samples, 0.01%)</title><rect x="1159.1" y="133" width="0.2" height="15.0" fill="rgb(210,95,19)" rx="2" ry="2" />
<text x="1162.15" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (354 samples, 0.02%)</title><rect x="612.9" y="1125" width="0.2" height="15.0" fill="rgb(248,169,30)" rx="2" ry="2" />
<text x="615.92" y="1135.5" ></text>
</g>
<g >
<title>uECC_vli_mult (296 samples, 0.01%)</title><rect x="828.3" y="197" width="0.1" height="15.0" fill="rgb(247,224,10)" rx="2" ry="2" />
<text x="831.26" y="207.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,587 samples, 0.07%)</title><rect x="880.7" y="949" width="0.8" height="15.0" fill="rgb(209,223,5)" rx="2" ry="2" />
<text x="883.71" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_853 (275 samples, 0.01%)</title><rect x="443.8" y="1429" width="0.1" height="15.0" fill="rgb(234,169,18)" rx="2" ry="2" />
<text x="446.75" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (325 samples, 0.01%)</title><rect x="804.3" y="1013" width="0.2" height="15.0" fill="rgb(216,42,3)" rx="2" ry="2" />
<text x="807.29" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (207 samples, 0.01%)</title><rect x="534.8" y="1029" width="0.1" height="15.0" fill="rgb(220,41,48)" rx="2" ry="2" />
<text x="537.78" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="861.4" y="757" width="0.1" height="15.0" fill="rgb(239,203,44)" rx="2" ry="2" />
<text x="864.37" y="767.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (5,327 samples, 0.23%)</title><rect x="271.6" y="1445" width="2.7" height="15.0" fill="rgb(206,104,12)" rx="2" ry="2" />
<text x="274.58" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,150 samples, 0.05%)</title><rect x="577.1" y="933" width="0.6" height="15.0" fill="rgb(235,154,36)" rx="2" ry="2" />
<text x="580.12" y="943.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (421 samples, 0.02%)</title><rect x="881.1" y="917" width="0.2" height="15.0" fill="rgb(210,25,7)" rx="2" ry="2" />
<text x="884.07" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_mult (315 samples, 0.01%)</title><rect x="1112.5" y="101" width="0.2" height="15.0" fill="rgb(230,183,3)" rx="2" ry="2" />
<text x="1115.50" y="111.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (2,311 samples, 0.10%)</title><rect x="521.1" y="1333" width="1.1" height="15.0" fill="rgb(205,113,51)" rx="2" ry="2" />
<text x="524.06" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (2,155 samples, 0.09%)</title><rect x="891.9" y="1413" width="1.1" height="15.0" fill="rgb(226,218,38)" rx="2" ry="2" />
<text x="894.89" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (199 samples, 0.01%)</title><rect x="42.7" y="1589" width="0.1" height="15.0" fill="rgb(207,109,48)" rx="2" ry="2" />
<text x="45.66" y="1599.5" ></text>
</g>
<g >
<title>caml_call_gc (8,166 samples, 0.35%)</title><rect x="462.5" y="1397" width="4.2" height="15.0" fill="rgb(238,210,19)" rx="2" ry="2" />
<text x="465.52" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (445 samples, 0.02%)</title><rect x="625.5" y="949" width="0.2" height="15.0" fill="rgb(213,62,4)" rx="2" ry="2" />
<text x="628.48" y="959.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (2,148 samples, 0.09%)</title><rect x="875.7" y="1029" width="1.1" height="15.0" fill="rgb(222,174,27)" rx="2" ry="2" />
<text x="878.74" y="1039.5" ></text>
</g>
<g >
<title>mark_slice_darken (623 samples, 0.03%)</title><rect x="211.7" y="1285" width="0.4" height="15.0" fill="rgb(235,67,50)" rx="2" ry="2" />
<text x="214.74" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (268 samples, 0.01%)</title><rect x="722.6" y="1029" width="0.2" height="15.0" fill="rgb(234,111,26)" rx="2" ry="2" />
<text x="725.62" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_square (288 samples, 0.01%)</title><rect x="1108.6" y="85" width="0.1" height="15.0" fill="rgb(238,187,10)" rx="2" ry="2" />
<text x="1111.58" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,324 samples, 0.06%)</title><rect x="855.2" y="933" width="0.6" height="15.0" fill="rgb(224,214,6)" rx="2" ry="2" />
<text x="858.15" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (754 samples, 0.03%)</title><rect x="747.6" y="1061" width="0.3" height="15.0" fill="rgb(225,41,29)" rx="2" ry="2" />
<text x="750.55" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (1,291 samples, 0.06%)</title><rect x="372.2" y="1301" width="0.6" height="15.0" fill="rgb(241,199,51)" rx="2" ry="2" />
<text x="375.17" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11900 (431 samples, 0.02%)</title><rect x="879.2" y="1077" width="0.3" height="15.0" fill="rgb(229,150,16)" rx="2" ry="2" />
<text x="882.24" y="1087.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (259 samples, 0.01%)</title><rect x="546.5" y="1221" width="0.2" height="15.0" fill="rgb(248,99,15)" rx="2" ry="2" />
<text x="549.53" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,003 samples, 0.04%)</title><rect x="1117.7" y="1013" width="0.5" height="15.0" fill="rgb(226,152,51)" rx="2" ry="2" />
<text x="1120.67" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,742 samples, 0.21%)</title><rect x="268.9" y="1413" width="2.4" height="15.0" fill="rgb(233,195,45)" rx="2" ry="2" />
<text x="271.90" y="1423.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (242 samples, 0.01%)</title><rect x="669.7" y="181" width="0.1" height="15.0" fill="rgb(211,98,45)" rx="2" ry="2" />
<text x="672.72" y="191.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (236 samples, 0.01%)</title><rect x="716.8" y="1061" width="0.1" height="15.0" fill="rgb(246,110,44)" rx="2" ry="2" />
<text x="719.76" y="1071.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,117 samples, 0.05%)</title><rect x="821.4" y="197" width="0.6" height="15.0" fill="rgb(205,129,50)" rx="2" ry="2" />
<text x="824.43" y="207.5" ></text>
</g>
<g >
<title>mark_slice_darken (284 samples, 0.01%)</title><rect x="784.5" y="1045" width="0.2" height="15.0" fill="rgb(252,140,42)" rx="2" ry="2" />
<text x="787.54" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (249 samples, 0.01%)</title><rect x="835.7" y="469" width="0.1" height="15.0" fill="rgb(232,210,48)" rx="2" ry="2" />
<text x="838.72" y="479.5" ></text>
</g>
<g >
<title>caml_call_gc (659 samples, 0.03%)</title><rect x="847.9" y="1301" width="0.3" height="15.0" fill="rgb(252,108,6)" rx="2" ry="2" />
<text x="850.89" y="1311.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (206 samples, 0.01%)</title><rect x="721.9" y="1013" width="0.1" height="15.0" fill="rgb(246,220,48)" rx="2" ry="2" />
<text x="724.90" y="1023.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (271 samples, 0.01%)</title><rect x="587.3" y="1237" width="0.2" height="15.0" fill="rgb(231,205,35)" rx="2" ry="2" />
<text x="590.32" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (4,307 samples, 0.19%)</title><rect x="190.4" y="1285" width="2.2" height="15.0" fill="rgb(220,95,41)" rx="2" ry="2" />
<text x="193.37" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,247 samples, 0.05%)</title><rect x="577.1" y="1013" width="0.6" height="15.0" fill="rgb(247,181,45)" rx="2" ry="2" />
<text x="580.07" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (23,206 samples, 1.01%)</title><rect x="815.7" y="501" width="11.9" height="15.0" fill="rgb(252,164,37)" rx="2" ry="2" />
<text x="818.72" y="511.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,521 samples, 0.07%)</title><rect x="191.8" y="1093" width="0.8" height="15.0" fill="rgb(216,28,30)" rx="2" ry="2" />
<text x="194.78" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (508 samples, 0.02%)</title><rect x="582.2" y="1173" width="0.3" height="15.0" fill="rgb(209,225,0)" rx="2" ry="2" />
<text x="585.25" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (1,229 samples, 0.05%)</title><rect x="188.7" y="1381" width="0.6" height="15.0" fill="rgb(238,88,31)" rx="2" ry="2" />
<text x="191.66" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (554 samples, 0.02%)</title><rect x="706.7" y="981" width="0.3" height="15.0" fill="rgb(234,122,47)" rx="2" ry="2" />
<text x="709.69" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (283 samples, 0.01%)</title><rect x="1171.5" y="917" width="0.1" height="15.0" fill="rgb(254,121,8)" rx="2" ry="2" />
<text x="1174.45" y="927.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (207 samples, 0.01%)</title><rect x="497.0" y="1205" width="0.1" height="15.0" fill="rgb(253,186,45)" rx="2" ry="2" />
<text x="500.04" y="1215.5" ></text>
</g>
<g >
<title>XYcZ_add (317 samples, 0.01%)</title><rect x="669.4" y="197" width="0.2" height="15.0" fill="rgb(217,40,3)" rx="2" ry="2" />
<text x="672.44" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (511 samples, 0.02%)</title><rect x="1062.4" y="1141" width="0.3" height="15.0" fill="rgb(210,39,39)" rx="2" ry="2" />
<text x="1065.42" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (227 samples, 0.01%)</title><rect x="528.4" y="1285" width="0.1" height="15.0" fill="rgb(252,176,41)" rx="2" ry="2" />
<text x="531.36" y="1295.5" ></text>
</g>
<g >
<title>sweep_slice (203 samples, 0.01%)</title><rect x="226.1" y="1317" width="0.1" height="15.0" fill="rgb(225,99,44)" rx="2" ry="2" />
<text x="229.13" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (313 samples, 0.01%)</title><rect x="1031.9" y="1349" width="0.2" height="15.0" fill="rgb(245,16,29)" rx="2" ry="2" />
<text x="1034.92" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (514 samples, 0.02%)</title><rect x="1056.3" y="1077" width="0.2" height="15.0" fill="rgb(205,17,36)" rx="2" ry="2" />
<text x="1059.28" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (668 samples, 0.03%)</title><rect x="595.4" y="1301" width="0.3" height="15.0" fill="rgb(226,134,6)" rx="2" ry="2" />
<text x="598.35" y="1311.5" ></text>
</g>
<g >
<title>memmove (525 samples, 0.02%)</title><rect x="219.1" y="1317" width="0.3" height="15.0" fill="rgb(228,34,13)" rx="2" ry="2" />
<text x="222.13" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (523 samples, 0.02%)</title><rect x="431.6" y="1317" width="0.2" height="15.0" fill="rgb(210,1,23)" rx="2" ry="2" />
<text x="434.55" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (340 samples, 0.01%)</title><rect x="618.7" y="1221" width="0.2" height="15.0" fill="rgb(231,13,2)" rx="2" ry="2" />
<text x="621.75" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (496 samples, 0.02%)</title><rect x="253.2" y="1365" width="0.3" height="15.0" fill="rgb(233,59,25)" rx="2" ry="2" />
<text x="256.21" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (990 samples, 0.04%)</title><rect x="1094.6" y="149" width="0.5" height="15.0" fill="rgb(253,111,11)" rx="2" ry="2" />
<text x="1097.56" y="159.5" ></text>
</g>
<g >
<title>caml_call_gc (753 samples, 0.03%)</title><rect x="501.3" y="1301" width="0.4" height="15.0" fill="rgb(231,18,54)" rx="2" ry="2" />
<text x="504.29" y="1311.5" ></text>
</g>
<g >
<title>XYcZ_add (437 samples, 0.02%)</title><rect x="834.4" y="693" width="0.2" height="15.0" fill="rgb(235,209,54)" rx="2" ry="2" />
<text x="837.36" y="703.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (322,156 samples, 13.96%)</title><rect x="678.2" y="1285" width="164.7" height="15.0" fill="rgb(215,71,30)" rx="2" ry="2" />
<text x="681.25" y="1295.5" >camlLwt__resolve_916</text>
</g>
<g >
<title>muladd (451 samples, 0.02%)</title><rect x="654.1" y="133" width="0.2" height="15.0" fill="rgb(248,25,39)" rx="2" ry="2" />
<text x="657.10" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (447 samples, 0.02%)</title><rect x="1174.3" y="837" width="0.3" height="15.0" fill="rgb(246,172,32)" rx="2" ry="2" />
<text x="1177.35" y="847.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (220 samples, 0.01%)</title><rect x="1182.0" y="1349" width="0.1" height="15.0" fill="rgb(233,105,18)" rx="2" ry="2" />
<text x="1185.02" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (356 samples, 0.02%)</title><rect x="911.8" y="1397" width="0.2" height="15.0" fill="rgb(250,6,35)" rx="2" ry="2" />
<text x="914.78" y="1407.5" ></text>
</g>
<g >
<title>uECC_verify (1,656 samples, 0.07%)</title><rect x="834.4" y="709" width="0.8" height="15.0" fill="rgb(253,25,1)" rx="2" ry="2" />
<text x="837.35" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (863 samples, 0.04%)</title><rect x="534.2" y="1109" width="0.4" height="15.0" fill="rgb(224,95,1)" rx="2" ry="2" />
<text x="537.21" y="1119.5" ></text>
</g>
<g >
<title>double_jacobian_default (5,032 samples, 0.22%)</title><rect x="1149.1" y="165" width="2.6" height="15.0" fill="rgb(213,26,16)" rx="2" ry="2" />
<text x="1152.10" y="175.5" ></text>
</g>
<g >
<title>mark_slice (304 samples, 0.01%)</title><rect x="503.8" y="1221" width="0.2" height="15.0" fill="rgb(241,7,21)" rx="2" ry="2" />
<text x="506.80" y="1231.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (515 samples, 0.02%)</title><rect x="887.4" y="1301" width="0.3" height="15.0" fill="rgb(207,6,44)" rx="2" ry="2" />
<text x="890.45" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (248 samples, 0.01%)</title><rect x="772.1" y="1013" width="0.1" height="15.0" fill="rgb(243,199,19)" rx="2" ry="2" />
<text x="775.09" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (570 samples, 0.02%)</title><rect x="871.9" y="949" width="0.3" height="15.0" fill="rgb(228,81,28)" rx="2" ry="2" />
<text x="874.92" y="959.5" ></text>
</g>
<g >
<title>uECC_vli_add (263 samples, 0.01%)</title><rect x="652.4" y="133" width="0.2" height="15.0" fill="rgb(234,92,3)" rx="2" ry="2" />
<text x="655.44" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (468 samples, 0.02%)</title><rect x="571.3" y="1285" width="0.2" height="15.0" fill="rgb(227,105,5)" rx="2" ry="2" />
<text x="574.29" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (750 samples, 0.03%)</title><rect x="76.9" y="1557" width="0.4" height="15.0" fill="rgb(215,22,8)" rx="2" ry="2" />
<text x="79.95" y="1567.5" ></text>
</g>
<g >
<title>caml_garbage_collection (681 samples, 0.03%)</title><rect x="499.2" y="1269" width="0.4" height="15.0" fill="rgb(246,226,45)" rx="2" ry="2" />
<text x="502.25" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (376 samples, 0.02%)</title><rect x="797.9" y="1013" width="0.2" height="15.0" fill="rgb(216,42,23)" rx="2" ry="2" />
<text x="800.91" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,620 samples, 0.07%)</title><rect x="1163.9" y="661" width="0.8" height="15.0" fill="rgb(225,76,28)" rx="2" ry="2" />
<text x="1166.86" y="671.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (2,816 samples, 0.12%)</title><rect x="530.5" y="1189" width="1.4" height="15.0" fill="rgb(244,18,20)" rx="2" ry="2" />
<text x="533.50" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (198 samples, 0.01%)</title><rect x="1063.4" y="1173" width="0.1" height="15.0" fill="rgb(213,101,11)" rx="2" ry="2" />
<text x="1066.39" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (616 samples, 0.03%)</title><rect x="530.1" y="1141" width="0.3" height="15.0" fill="rgb(221,115,27)" rx="2" ry="2" />
<text x="533.09" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (563 samples, 0.02%)</title><rect x="241.9" y="1381" width="0.3" height="15.0" fill="rgb(215,209,21)" rx="2" ry="2" />
<text x="244.94" y="1391.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (550 samples, 0.02%)</title><rect x="1163.9" y="517" width="0.2" height="15.0" fill="rgb(213,227,39)" rx="2" ry="2" />
<text x="1166.87" y="527.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (240 samples, 0.01%)</title><rect x="1093.8" y="965" width="0.1" height="15.0" fill="rgb(217,66,8)" rx="2" ry="2" />
<text x="1096.79" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (1,059 samples, 0.05%)</title><rect x="1064.3" y="1157" width="0.5" height="15.0" fill="rgb(226,73,12)" rx="2" ry="2" />
<text x="1067.26" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3831 (7,412 samples, 0.32%)</title><rect x="1089.8" y="965" width="3.8" height="15.0" fill="rgb(249,113,4)" rx="2" ry="2" />
<text x="1092.83" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__pair_585 (223 samples, 0.01%)</title><rect x="1137.3" y="1029" width="0.1" height="15.0" fill="rgb(213,90,48)" rx="2" ry="2" />
<text x="1140.30" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (681 samples, 0.03%)</title><rect x="140.7" y="1381" width="0.3" height="15.0" fill="rgb(242,88,46)" rx="2" ry="2" />
<text x="143.67" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (58,626 samples, 2.54%)</title><rect x="853.6" y="1189" width="30.0" height="15.0" fill="rgb(230,145,43)" rx="2" ry="2" />
<text x="856.63" y="1199.5" >ca..</text>
</g>
<g >
<title>camlLwt__callback_1225 (45,958 samples, 1.99%)</title><rect x="788.6" y="1109" width="23.5" height="15.0" fill="rgb(253,223,4)" rx="2" ry="2" />
<text x="791.64" y="1119.5" >c..</text>
</g>
<g >
<title>camlData_encoding__Binary_reader__read_rec_564 (970 samples, 0.04%)</title><rect x="671.9" y="837" width="0.5" height="15.0" fill="rgb(245,81,2)" rx="2" ry="2" />
<text x="674.88" y="847.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (839 samples, 0.04%)</title><rect x="1075.3" y="1141" width="0.5" height="15.0" fill="rgb(206,98,8)" rx="2" ry="2" />
<text x="1078.33" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__append_5843 (206 samples, 0.01%)</title><rect x="589.9" y="1317" width="0.1" height="15.0" fill="rgb(227,131,44)" rx="2" ry="2" />
<text x="592.86" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (375 samples, 0.02%)</title><rect x="1175.2" y="965" width="0.2" height="15.0" fill="rgb(212,76,9)" rx="2" ry="2" />
<text x="1178.22" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,076 samples, 0.05%)</title><rect x="577.2" y="885" width="0.5" height="15.0" fill="rgb(212,155,54)" rx="2" ry="2" />
<text x="580.15" y="895.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (1,347 samples, 0.06%)</title><rect x="1174.2" y="949" width="0.7" height="15.0" fill="rgb(232,75,40)" rx="2" ry="2" />
<text x="1177.19" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__pair_585 (838 samples, 0.04%)</title><rect x="754.9" y="1093" width="0.5" height="15.0" fill="rgb(221,151,3)" rx="2" ry="2" />
<text x="757.94" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (226 samples, 0.01%)</title><rect x="498.6" y="1253" width="0.1" height="15.0" fill="rgb(226,79,1)" rx="2" ry="2" />
<text x="501.60" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (368 samples, 0.02%)</title><rect x="503.8" y="1237" width="0.2" height="15.0" fill="rgb(208,129,27)" rx="2" ry="2" />
<text x="506.80" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (362 samples, 0.02%)</title><rect x="522.5" y="1301" width="0.2" height="15.0" fill="rgb(225,0,38)" rx="2" ry="2" />
<text x="525.55" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (34,949 samples, 1.51%)</title><rect x="899.7" y="1493" width="17.9" height="15.0" fill="rgb(218,146,2)" rx="2" ry="2" />
<text x="902.69" y="1503.5" ></text>
</g>
<g >
<title>caml_call_gc (648 samples, 0.03%)</title><rect x="809.5" y="1077" width="0.3" height="15.0" fill="rgb(231,217,29)" rx="2" ry="2" />
<text x="812.50" y="1087.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (340 samples, 0.01%)</title><rect x="217.5" y="1301" width="0.2" height="15.0" fill="rgb(217,58,30)" rx="2" ry="2" />
<text x="220.50" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (487 samples, 0.02%)</title><rect x="783.5" y="1093" width="0.2" height="15.0" fill="rgb(213,57,48)" rx="2" ry="2" />
<text x="786.48" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (44,561 samples, 1.93%)</title><rect x="815.7" y="1013" width="22.8" height="15.0" fill="rgb(222,227,1)" rx="2" ry="2" />
<text x="818.69" y="1023.5" >c..</text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (1,008 samples, 0.04%)</title><rect x="343.5" y="1397" width="0.5" height="15.0" fill="rgb(239,74,8)" rx="2" ry="2" />
<text x="346.52" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (952 samples, 0.04%)</title><rect x="540.1" y="1189" width="0.5" height="15.0" fill="rgb(205,21,19)" rx="2" ry="2" />
<text x="543.10" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,718 samples, 0.07%)</title><rect x="294.8" y="1365" width="0.8" height="15.0" fill="rgb(210,83,12)" rx="2" ry="2" />
<text x="297.77" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__node_28327 (351 samples, 0.02%)</title><rect x="767.5" y="1125" width="0.1" height="15.0" fill="rgb(244,73,23)" rx="2" ry="2" />
<text x="770.47" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (2,693 samples, 0.12%)</title><rect x="706.2" y="1029" width="1.4" height="15.0" fill="rgb(251,186,8)" rx="2" ry="2" />
<text x="709.19" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (301 samples, 0.01%)</title><rect x="534.3" y="1045" width="0.1" height="15.0" fill="rgb(218,19,48)" rx="2" ry="2" />
<text x="537.26" y="1055.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (776 samples, 0.03%)</title><rect x="1150.0" y="133" width="0.4" height="15.0" fill="rgb(250,112,40)" rx="2" ry="2" />
<text x="1152.98" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (681 samples, 0.03%)</title><rect x="499.2" y="1285" width="0.4" height="15.0" fill="rgb(225,105,39)" rx="2" ry="2" />
<text x="502.25" y="1295.5" ></text>
</g>
<g >
<title>caml_oldify_one (243 samples, 0.01%)</title><rect x="597.6" y="1221" width="0.1" height="15.0" fill="rgb(235,152,44)" rx="2" ry="2" />
<text x="600.58" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (271 samples, 0.01%)</title><rect x="448.8" y="1461" width="0.2" height="15.0" fill="rgb(218,118,6)" rx="2" ry="2" />
<text x="451.84" y="1471.5" ></text>
</g>
<g >
<title>caml_garbage_collection (500 samples, 0.02%)</title><rect x="773.6" y="1077" width="0.3" height="15.0" fill="rgb(208,128,36)" rx="2" ry="2" />
<text x="776.63" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (699 samples, 0.03%)</title><rect x="840.2" y="1189" width="0.3" height="15.0" fill="rgb(217,127,1)" rx="2" ry="2" />
<text x="843.15" y="1199.5" ></text>
</g>
<g >
<title>uECC_decompress_stub (2,908 samples, 0.13%)</title><rect x="836.8" y="853" width="1.5" height="15.0" fill="rgb(212,199,37)" rx="2" ry="2" />
<text x="839.84" y="863.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (41,024 samples, 1.78%)</title><rect x="1143.9" y="885" width="20.9" height="15.0" fill="rgb(250,75,0)" rx="2" ry="2" />
<text x="1146.88" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (201 samples, 0.01%)</title><rect x="189.7" y="1317" width="0.1" height="15.0" fill="rgb(240,187,53)" rx="2" ry="2" />
<text x="192.71" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (215 samples, 0.01%)</title><rect x="700.2" y="1013" width="0.1" height="15.0" fill="rgb(223,7,29)" rx="2" ry="2" />
<text x="703.21" y="1023.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (659 samples, 0.03%)</title><rect x="998.1" y="1269" width="0.3" height="15.0" fill="rgb(233,218,33)" rx="2" ry="2" />
<text x="1001.05" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,845 samples, 0.56%)</title><rect x="86.0" y="1493" width="6.6" height="15.0" fill="rgb(208,143,2)" rx="2" ry="2" />
<text x="89.02" y="1503.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (345 samples, 0.01%)</title><rect x="691.2" y="997" width="0.1" height="15.0" fill="rgb(227,145,5)" rx="2" ry="2" />
<text x="694.16" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (292 samples, 0.01%)</title><rect x="551.5" y="1173" width="0.1" height="15.0" fill="rgb(248,196,39)" rx="2" ry="2" />
<text x="554.48" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modAdd (223 samples, 0.01%)</title><rect x="1149.1" y="149" width="0.2" height="15.0" fill="rgb(240,158,49)" rx="2" ry="2" />
<text x="1152.14" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (206 samples, 0.01%)</title><rect x="1056.7" y="1093" width="0.1" height="15.0" fill="rgb(215,211,42)" rx="2" ry="2" />
<text x="1059.68" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (747 samples, 0.03%)</title><rect x="1057.6" y="1077" width="0.4" height="15.0" fill="rgb(232,169,34)" rx="2" ry="2" />
<text x="1060.59" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (14,398 samples, 0.62%)</title><rect x="815.7" y="325" width="7.4" height="15.0" fill="rgb(230,201,30)" rx="2" ry="2" />
<text x="818.74" y="335.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (4,044 samples, 0.18%)</title><rect x="242.2" y="1397" width="2.1" height="15.0" fill="rgb(214,83,54)" rx="2" ry="2" />
<text x="245.22" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,891 samples, 1.55%)</title><rect x="1094.5" y="629" width="18.4" height="15.0" fill="rgb(217,22,8)" rx="2" ry="2" />
<text x="1097.53" y="639.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (298 samples, 0.01%)</title><rect x="817.7" y="181" width="0.2" height="15.0" fill="rgb(229,101,43)" rx="2" ry="2" />
<text x="820.71" y="191.5" ></text>
</g>
<g >
<title>caml_garbage_collection (932 samples, 0.04%)</title><rect x="432.8" y="1381" width="0.5" height="15.0" fill="rgb(245,82,39)" rx="2" ry="2" />
<text x="435.83" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_mmod (227 samples, 0.01%)</title><rect x="1112.4" y="101" width="0.1" height="15.0" fill="rgb(223,226,11)" rx="2" ry="2" />
<text x="1115.38" y="111.5" ></text>
</g>
<g >
<title>uECC_vli_mult (2,119 samples, 0.09%)</title><rect x="643.6" y="133" width="1.0" height="15.0" fill="rgb(232,203,5)" rx="2" ry="2" />
<text x="646.55" y="143.5" ></text>
</g>
<g >
<title>caml_program (1,664,820 samples, 72.12%)</title><rect x="74.8" y="1621" width="851.1" height="15.0" fill="rgb(222,49,31)" rx="2" ry="2" />
<text x="77.83" y="1631.5" >caml_program</text>
</g>
<g >
<title>caml_hash (6,412 samples, 0.28%)</title><rect x="287.7" y="1381" width="3.3" height="15.0" fill="rgb(225,44,23)" rx="2" ry="2" />
<text x="290.71" y="1391.5" ></text>
</g>
<g >
<title>__lseek64 (17,633 samples, 0.76%)</title><rect x="314.2" y="1397" width="9.1" height="15.0" fill="rgb(254,99,4)" rx="2" ry="2" />
<text x="317.24" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (466 samples, 0.02%)</title><rect x="558.4" y="1253" width="0.2" height="15.0" fill="rgb(241,55,8)" rx="2" ry="2" />
<text x="561.38" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (259 samples, 0.01%)</title><rect x="498.3" y="1237" width="0.1" height="15.0" fill="rgb(234,53,9)" rx="2" ry="2" />
<text x="501.31" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (719 samples, 0.03%)</title><rect x="675.7" y="1221" width="0.4" height="15.0" fill="rgb(246,175,39)" rx="2" ry="2" />
<text x="678.72" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (216 samples, 0.01%)</title><rect x="561.1" y="1173" width="0.1" height="15.0" fill="rgb(229,218,38)" rx="2" ry="2" />
<text x="564.12" y="1183.5" ></text>
</g>
<g >
<title>caml_hash (466 samples, 0.02%)</title><rect x="734.9" y="1077" width="0.2" height="15.0" fill="rgb(211,87,4)" rx="2" ry="2" />
<text x="737.90" y="1087.5" ></text>
</g>
<g >
<title>caml_alloc_string (301 samples, 0.01%)</title><rect x="702.2" y="981" width="0.1" height="15.0" fill="rgb(231,143,9)" rx="2" ry="2" />
<text x="705.17" y="991.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (225 samples, 0.01%)</title><rect x="1022.0" y="1301" width="0.1" height="15.0" fill="rgb(246,41,44)" rx="2" ry="2" />
<text x="1024.96" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (417 samples, 0.02%)</title><rect x="1173.7" y="805" width="0.2" height="15.0" fill="rgb(246,102,48)" rx="2" ry="2" />
<text x="1176.65" y="815.5" ></text>
</g>
<g >
<title>caml_alloc_shr (289 samples, 0.01%)</title><rect x="462.9" y="1301" width="0.2" height="15.0" fill="rgb(238,43,35)" rx="2" ry="2" />
<text x="465.94" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,606 samples, 0.07%)</title><rect x="878.4" y="997" width="0.8" height="15.0" fill="rgb(220,175,48)" rx="2" ry="2" />
<text x="881.36" y="1007.5" ></text>
</g>
<g >
<title>uECC_verify_stub (910 samples, 0.04%)</title><rect x="1143.9" y="165" width="0.5" height="15.0" fill="rgb(246,184,20)" rx="2" ry="2" />
<text x="1146.93" y="175.5" ></text>
</g>
<g >
<title>caml_call_gc (227 samples, 0.01%)</title><rect x="792.8" y="1013" width="0.2" height="15.0" fill="rgb(205,17,15)" rx="2" ry="2" />
<text x="795.85" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,761 samples, 0.08%)</title><rect x="971.2" y="1621" width="0.9" height="15.0" fill="rgb(225,78,11)" rx="2" ry="2" />
<text x="974.19" y="1631.5" ></text>
</g>
<g >
<title>caml_garbage_collection (198 samples, 0.01%)</title><rect x="590.8" y="1269" width="0.1" height="15.0" fill="rgb(254,173,12)" rx="2" ry="2" />
<text x="593.78" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_sub (220 samples, 0.01%)</title><rect x="1156.2" y="133" width="0.1" height="15.0" fill="rgb(239,76,53)" rx="2" ry="2" />
<text x="1159.20" y="143.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (282 samples, 0.01%)</title><rect x="972.3" y="1621" width="0.2" height="15.0" fill="rgb(214,133,46)" rx="2" ry="2" />
<text x="975.33" y="1631.5" ></text>
</g>
<g >
<title>mark_slice_darken (736 samples, 0.03%)</title><rect x="908.6" y="1349" width="0.4" height="15.0" fill="rgb(236,223,21)" rx="2" ry="2" />
<text x="911.62" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (596 samples, 0.03%)</title><rect x="250.7" y="1365" width="0.3" height="15.0" fill="rgb(214,69,26)" rx="2" ry="2" />
<text x="253.66" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (934 samples, 0.04%)</title><rect x="265.7" y="1349" width="0.5" height="15.0" fill="rgb(245,88,3)" rx="2" ry="2" />
<text x="268.74" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (41,164 samples, 1.78%)</title><rect x="815.7" y="933" width="21.0" height="15.0" fill="rgb(246,35,45)" rx="2" ry="2" />
<text x="818.70" y="943.5" ></text>
</g>
<g >
<title>caml_call_gc (217 samples, 0.01%)</title><rect x="714.1" y="1029" width="0.1" height="15.0" fill="rgb(249,142,48)" rx="2" ry="2" />
<text x="717.07" y="1039.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (244 samples, 0.01%)</title><rect x="1050.9" y="1061" width="0.2" height="15.0" fill="rgb(254,197,40)" rx="2" ry="2" />
<text x="1053.94" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (306 samples, 0.01%)</title><rect x="1180.1" y="1285" width="0.1" height="15.0" fill="rgb(239,121,3)" rx="2" ry="2" />
<text x="1183.07" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (202 samples, 0.01%)</title><rect x="854.8" y="933" width="0.1" height="15.0" fill="rgb(218,212,40)" rx="2" ry="2" />
<text x="857.82" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (411 samples, 0.02%)</title><rect x="1057.7" y="1061" width="0.2" height="15.0" fill="rgb(209,49,14)" rx="2" ry="2" />
<text x="1060.70" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (219 samples, 0.01%)</title><rect x="551.5" y="1125" width="0.1" height="15.0" fill="rgb(221,200,19)" rx="2" ry="2" />
<text x="554.52" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (3,554 samples, 0.15%)</title><rect x="1014.7" y="1365" width="1.8" height="15.0" fill="rgb(219,213,51)" rx="2" ry="2" />
<text x="1017.69" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (414 samples, 0.02%)</title><rect x="784.8" y="1077" width="0.2" height="15.0" fill="rgb(250,82,54)" rx="2" ry="2" />
<text x="787.83" y="1087.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (357 samples, 0.02%)</title><rect x="294.6" y="1349" width="0.2" height="15.0" fill="rgb(248,229,18)" rx="2" ry="2" />
<text x="297.58" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5769 (1,140 samples, 0.05%)</title><rect x="1124.8" y="1029" width="0.6" height="15.0" fill="rgb(216,213,36)" rx="2" ry="2" />
<text x="1127.78" y="1039.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (256 samples, 0.01%)</title><rect x="787.7" y="1093" width="0.1" height="15.0" fill="rgb(241,86,0)" rx="2" ry="2" />
<text x="790.65" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (275 samples, 0.01%)</title><rect x="870.7" y="901" width="0.2" height="15.0" fill="rgb(214,201,0)" rx="2" ry="2" />
<text x="873.74" y="911.5" ></text>
</g>
<g >
<title>unix_lseek_64 (326 samples, 0.01%)</title><rect x="698.1" y="917" width="0.2" height="15.0" fill="rgb(219,224,6)" rx="2" ry="2" />
<text x="701.15" y="927.5" ></text>
</g>
<g >
<title>caml_call_gc (294 samples, 0.01%)</title><rect x="768.1" y="1093" width="0.1" height="15.0" fill="rgb(209,10,42)" rx="2" ry="2" />
<text x="771.07" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (33,609 samples, 1.46%)</title><rect x="900.4" y="1477" width="17.2" height="15.0" fill="rgb(232,28,28)" rx="2" ry="2" />
<text x="903.37" y="1487.5" ></text>
</g>
<g >
<title>caml_call_gc (301 samples, 0.01%)</title><rect x="549.1" y="1301" width="0.2" height="15.0" fill="rgb(243,54,40)" rx="2" ry="2" />
<text x="552.10" y="1311.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (368 samples, 0.02%)</title><rect x="334.8" y="1381" width="0.2" height="15.0" fill="rgb(245,49,23)" rx="2" ry="2" />
<text x="337.85" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5769 (1,805 samples, 0.08%)</title><rect x="540.9" y="1205" width="0.9" height="15.0" fill="rgb(218,45,1)" rx="2" ry="2" />
<text x="543.91" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (2,355 samples, 0.10%)</title><rect x="417.1" y="1413" width="1.2" height="15.0" fill="rgb(242,181,0)" rx="2" ry="2" />
<text x="420.07" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (572 samples, 0.02%)</title><rect x="1094.2" y="1013" width="0.3" height="15.0" fill="rgb(213,113,36)" rx="2" ry="2" />
<text x="1097.23" y="1023.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (350 samples, 0.02%)</title><rect x="906.1" y="1349" width="0.1" height="15.0" fill="rgb(240,80,27)" rx="2" ry="2" />
<text x="909.06" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (672 samples, 0.03%)</title><rect x="1130.0" y="1013" width="0.3" height="15.0" fill="rgb(226,14,5)" rx="2" ry="2" />
<text x="1132.98" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (250 samples, 0.01%)</title><rect x="1172.5" y="885" width="0.2" height="15.0" fill="rgb(215,217,35)" rx="2" ry="2" />
<text x="1175.54" y="895.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,418 samples, 0.06%)</title><rect x="619.9" y="1093" width="0.7" height="15.0" fill="rgb(233,143,3)" rx="2" ry="2" />
<text x="622.88" y="1103.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (312 samples, 0.01%)</title><rect x="834.7" y="677" width="0.2" height="15.0" fill="rgb(208,59,17)" rx="2" ry="2" />
<text x="837.74" y="687.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (6,161 samples, 0.27%)</title><rect x="646.3" y="149" width="3.2" height="15.0" fill="rgb(249,116,29)" rx="2" ry="2" />
<text x="649.32" y="159.5" ></text>
</g>
<g >
<title>mark_slice_darken (344 samples, 0.01%)</title><rect x="265.4" y="1301" width="0.1" height="15.0" fill="rgb(223,191,41)" rx="2" ry="2" />
<text x="268.37" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_mult (248 samples, 0.01%)</title><rect x="631.7" y="101" width="0.1" height="15.0" fill="rgb(247,140,15)" rx="2" ry="2" />
<text x="634.70" y="111.5" ></text>
</g>
<g >
<title>mark_slice (432 samples, 0.02%)</title><rect x="847.9" y="1253" width="0.3" height="15.0" fill="rgb(219,186,29)" rx="2" ry="2" />
<text x="850.95" y="1263.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (808 samples, 0.04%)</title><rect x="642.7" y="133" width="0.5" height="15.0" fill="rgb(215,94,54)" rx="2" ry="2" />
<text x="645.74" y="143.5" ></text>
</g>
<g >
<title>caml_modify (904 samples, 0.04%)</title><rect x="1186.4" y="1653" width="0.5" height="15.0" fill="rgb(221,148,33)" rx="2" ry="2" />
<text x="1189.40" y="1663.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (1,605 samples, 0.07%)</title><rect x="619.8" y="1173" width="0.8" height="15.0" fill="rgb(233,72,37)" rx="2" ry="2" />
<text x="622.80" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (772 samples, 0.03%)</title><rect x="1159.5" y="165" width="0.4" height="15.0" fill="rgb(227,146,19)" rx="2" ry="2" />
<text x="1162.48" y="175.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,243 samples, 0.05%)</title><rect x="1062.2" y="1205" width="0.6" height="15.0" fill="rgb(245,57,46)" rx="2" ry="2" />
<text x="1065.18" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,305 samples, 0.06%)</title><rect x="999.8" y="1317" width="0.7" height="15.0" fill="rgb(214,149,45)" rx="2" ry="2" />
<text x="1002.85" y="1327.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (487 samples, 0.02%)</title><rect x="300.4" y="1365" width="0.3" height="15.0" fill="rgb(238,92,3)" rx="2" ry="2" />
<text x="303.41" y="1375.5" ></text>
</g>
<g >
<title>caml_hash (226 samples, 0.01%)</title><rect x="568.5" y="1189" width="0.1" height="15.0" fill="rgb(236,38,13)" rx="2" ry="2" />
<text x="571.48" y="1199.5" ></text>
</g>
<g >
<title>uECC_vli_mult (663 samples, 0.03%)</title><rect x="1153.6" y="149" width="0.3" height="15.0" fill="rgb(219,220,28)" rx="2" ry="2" />
<text x="1156.55" y="159.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (271 samples, 0.01%)</title><rect x="475.1" y="1333" width="0.2" height="15.0" fill="rgb(227,59,46)" rx="2" ry="2" />
<text x="478.14" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,007 samples, 0.04%)</title><rect x="1000.0" y="1253" width="0.5" height="15.0" fill="rgb(249,107,7)" rx="2" ry="2" />
<text x="1003.00" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6835 (1,868 samples, 0.08%)</title><rect x="835.6" y="629" width="1.0" height="15.0" fill="rgb(206,56,12)" rx="2" ry="2" />
<text x="838.64" y="639.5" ></text>
</g>
<g >
<title>mark_slice (301 samples, 0.01%)</title><rect x="617.5" y="1173" width="0.1" height="15.0" fill="rgb(240,195,48)" rx="2" ry="2" />
<text x="620.46" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (325 samples, 0.01%)</title><rect x="804.3" y="997" width="0.2" height="15.0" fill="rgb(208,131,6)" rx="2" ry="2" />
<text x="807.29" y="1007.5" ></text>
</g>
<g >
<title>camlLwt_sequence__create_99 (5,480 samples, 0.24%)</title><rect x="78.4" y="1557" width="2.8" height="15.0" fill="rgb(216,133,51)" rx="2" ry="2" />
<text x="81.36" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_869 (1,177 samples, 0.05%)</title><rect x="235.2" y="1381" width="0.6" height="15.0" fill="rgb(251,205,19)" rx="2" ry="2" />
<text x="238.21" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,028 samples, 0.04%)</title><rect x="847.3" y="1269" width="0.6" height="15.0" fill="rgb(222,114,20)" rx="2" ry="2" />
<text x="850.33" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__copy_12384 (8,808 samples, 0.38%)</title><rect x="520.1" y="1349" width="4.5" height="15.0" fill="rgb(217,30,23)" rx="2" ry="2" />
<text x="523.05" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (359 samples, 0.02%)</title><rect x="492.2" y="1173" width="0.2" height="15.0" fill="rgb(212,118,10)" rx="2" ry="2" />
<text x="495.21" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (223 samples, 0.01%)</title><rect x="785.1" y="1141" width="0.1" height="15.0" fill="rgb(220,110,12)" rx="2" ry="2" />
<text x="788.11" y="1151.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (809 samples, 0.04%)</title><rect x="1018.0" y="1317" width="0.4" height="15.0" fill="rgb(214,35,23)" rx="2" ry="2" />
<text x="1021.03" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (246 samples, 0.01%)</title><rect x="884.6" y="1109" width="0.2" height="15.0" fill="rgb(230,88,17)" rx="2" ry="2" />
<text x="887.63" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="848.5" y="1317" width="0.1" height="15.0" fill="rgb(214,206,48)" rx="2" ry="2" />
<text x="851.45" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,635 samples, 0.11%)</title><rect x="1009.8" y="1365" width="1.3" height="15.0" fill="rgb(232,77,31)" rx="2" ry="2" />
<text x="1012.78" y="1375.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (14,663 samples, 0.64%)</title><rect x="1098.5" y="149" width="7.5" height="15.0" fill="rgb(231,228,2)" rx="2" ry="2" />
<text x="1101.48" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (5,481 samples, 0.24%)</title><rect x="1120.6" y="997" width="2.8" height="15.0" fill="rgb(214,28,7)" rx="2" ry="2" />
<text x="1123.60" y="1007.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (662 samples, 0.03%)</title><rect x="1155.0" y="149" width="0.4" height="15.0" fill="rgb(239,73,12)" rx="2" ry="2" />
<text x="1158.02" y="159.5" ></text>
</g>
<g >
<title>caml_string_equal (322 samples, 0.01%)</title><rect x="1018.8" y="1365" width="0.1" height="15.0" fill="rgb(237,184,47)" rx="2" ry="2" />
<text x="1021.78" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (238 samples, 0.01%)</title><rect x="84.2" y="1509" width="0.2" height="15.0" fill="rgb(240,202,40)" rx="2" ry="2" />
<text x="87.24" y="1519.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (260 samples, 0.01%)</title><rect x="678.0" y="1189" width="0.1" height="15.0" fill="rgb(253,59,51)" rx="2" ry="2" />
<text x="681.00" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (5,210 samples, 0.23%)</title><rect x="535.9" y="1157" width="2.6" height="15.0" fill="rgb(233,46,30)" rx="2" ry="2" />
<text x="538.88" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (359 samples, 0.02%)</title><rect x="1005.7" y="1301" width="0.1" height="15.0" fill="rgb(225,188,17)" rx="2" ry="2" />
<text x="1008.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4070 (1,290 samples, 0.06%)</title><rect x="835.9" y="597" width="0.7" height="15.0" fill="rgb(223,209,11)" rx="2" ry="2" />
<text x="838.93" y="607.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,665 samples, 0.07%)</title><rect x="198.3" y="1381" width="0.9" height="15.0" fill="rgb(243,46,46)" rx="2" ry="2" />
<text x="201.33" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (655 samples, 0.03%)</title><rect x="810.4" y="1061" width="0.4" height="15.0" fill="rgb(229,41,7)" rx="2" ry="2" />
<text x="813.43" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (408 samples, 0.02%)</title><rect x="866.5" y="869" width="0.2" height="15.0" fill="rgb(218,191,50)" rx="2" ry="2" />
<text x="869.47" y="879.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (993 samples, 0.04%)</title><rect x="896.0" y="1349" width="0.5" height="15.0" fill="rgb(217,7,13)" rx="2" ry="2" />
<text x="899.00" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (812 samples, 0.04%)</title><rect x="1002.1" y="1189" width="0.4" height="15.0" fill="rgb(213,208,19)" rx="2" ry="2" />
<text x="1005.06" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (356 samples, 0.02%)</title><rect x="492.8" y="1141" width="0.1" height="15.0" fill="rgb(224,186,43)" rx="2" ry="2" />
<text x="495.75" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (198 samples, 0.01%)</title><rect x="583.5" y="1317" width="0.1" height="15.0" fill="rgb(229,8,48)" rx="2" ry="2" />
<text x="586.49" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (223 samples, 0.01%)</title><rect x="733.2" y="1093" width="0.1" height="15.0" fill="rgb(225,6,21)" rx="2" ry="2" />
<text x="736.17" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (240 samples, 0.01%)</title><rect x="190.1" y="1301" width="0.1" height="15.0" fill="rgb(218,121,1)" rx="2" ry="2" />
<text x="193.11" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,298 samples, 0.06%)</title><rect x="1090.5" y="869" width="0.6" height="15.0" fill="rgb(227,33,14)" rx="2" ry="2" />
<text x="1093.45" y="879.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (301 samples, 0.01%)</title><rect x="1182.3" y="1381" width="0.2" height="15.0" fill="rgb(207,53,50)" rx="2" ry="2" />
<text x="1185.32" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (223 samples, 0.01%)</title><rect x="839.3" y="1093" width="0.1" height="15.0" fill="rgb(249,96,1)" rx="2" ry="2" />
<text x="842.33" y="1103.5" ></text>
</g>
<g >
<title>camlLwt_sequence__remove_96 (199 samples, 0.01%)</title><rect x="1047.5" y="1285" width="0.1" height="15.0" fill="rgb(221,50,38)" rx="2" ry="2" />
<text x="1050.50" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (331 samples, 0.01%)</title><rect x="435.5" y="1445" width="0.2" height="15.0" fill="rgb(223,61,34)" rx="2" ry="2" />
<text x="438.52" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (244 samples, 0.01%)</title><rect x="881.7" y="949" width="0.2" height="15.0" fill="rgb(237,97,3)" rx="2" ry="2" />
<text x="884.74" y="959.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (1,278 samples, 0.06%)</title><rect x="644.6" y="133" width="0.7" height="15.0" fill="rgb(213,137,23)" rx="2" ry="2" />
<text x="647.64" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__check_and_copy_12436 (338 samples, 0.01%)</title><rect x="796.4" y="1045" width="0.1" height="15.0" fill="rgb(240,69,20)" rx="2" ry="2" />
<text x="799.36" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (823 samples, 0.04%)</title><rect x="216.3" y="1301" width="0.5" height="15.0" fill="rgb(209,197,22)" rx="2" ry="2" />
<text x="219.33" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (268,641 samples, 11.64%)</title><rect x="1043.9" y="1413" width="137.4" height="15.0" fill="rgb(213,16,52)" rx="2" ry="2" />
<text x="1046.93" y="1423.5" >camlLwt__resolve_..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_12014 (336 samples, 0.01%)</title><rect x="164.6" y="1397" width="0.2" height="15.0" fill="rgb(243,155,27)" rx="2" ry="2" />
<text x="167.64" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (1,264 samples, 0.05%)</title><rect x="183.4" y="1349" width="0.7" height="15.0" fill="rgb(222,212,20)" rx="2" ry="2" />
<text x="186.40" y="1359.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6465 (3,039 samples, 0.13%)</title><rect x="303.0" y="1413" width="1.6" height="15.0" fill="rgb(237,36,52)" rx="2" ry="2" />
<text x="306.03" y="1423.5" ></text>
</g>
<g >
<title>mark_slice_darken (231 samples, 0.01%)</title><rect x="612.4" y="1077" width="0.1" height="15.0" fill="rgb(211,44,22)" rx="2" ry="2" />
<text x="615.38" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (434 samples, 0.02%)</title><rect x="495.9" y="1205" width="0.3" height="15.0" fill="rgb(252,24,35)" rx="2" ry="2" />
<text x="498.94" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (353 samples, 0.02%)</title><rect x="1119.9" y="901" width="0.2" height="15.0" fill="rgb(245,75,0)" rx="2" ry="2" />
<text x="1122.91" y="911.5" ></text>
</g>
<g >
<title>mark_slice_darken (709 samples, 0.03%)</title><rect x="240.4" y="1333" width="0.4" height="15.0" fill="rgb(232,226,42)" rx="2" ry="2" />
<text x="243.43" y="1343.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (560 samples, 0.02%)</title><rect x="998.8" y="1253" width="0.3" height="15.0" fill="rgb(252,93,53)" rx="2" ry="2" />
<text x="1001.79" y="1263.5" ></text>
</g>
<g >
<title>uECC_verify (2,237 samples, 0.10%)</title><rect x="827.8" y="245" width="1.1" height="15.0" fill="rgb(234,184,53)" rx="2" ry="2" />
<text x="830.75" y="255.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__apply_operation_5609 (25,740 samples, 1.12%)</title><rect x="1143.9" y="325" width="13.2" height="15.0" fill="rgb(224,152,38)" rx="2" ry="2" />
<text x="1146.91" y="335.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14795 (601 samples, 0.03%)</title><rect x="699.9" y="1013" width="0.3" height="15.0" fill="rgb(225,203,46)" rx="2" ry="2" />
<text x="702.90" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (981 samples, 0.04%)</title><rect x="243.7" y="1333" width="0.5" height="15.0" fill="rgb(252,166,32)" rx="2" ry="2" />
<text x="246.67" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (652 samples, 0.03%)</title><rect x="244.9" y="1333" width="0.4" height="15.0" fill="rgb(225,210,49)" rx="2" ry="2" />
<text x="247.95" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_small (547 samples, 0.02%)</title><rect x="170.4" y="1317" width="0.2" height="15.0" fill="rgb(220,126,20)" rx="2" ry="2" />
<text x="173.36" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (231 samples, 0.01%)</title><rect x="557.7" y="1301" width="0.1" height="15.0" fill="rgb(230,227,13)" rx="2" ry="2" />
<text x="560.71" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (332,607 samples, 14.41%)</title><rect x="673.1" y="1301" width="170.0" height="15.0" fill="rgb(232,207,54)" rx="2" ry="2" />
<text x="676.05" y="1311.5" >camlLwt__callback_1304</text>
</g>
<g >
<title>mark_slice (433 samples, 0.02%)</title><rect x="779.7" y="1061" width="0.2" height="15.0" fill="rgb(219,208,23)" rx="2" ry="2" />
<text x="782.67" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (384 samples, 0.02%)</title><rect x="878.5" y="901" width="0.1" height="15.0" fill="rgb(233,73,1)" rx="2" ry="2" />
<text x="881.45" y="911.5" ></text>
</g>
<g >
<title>uECC_vli_add (318 samples, 0.01%)</title><rect x="1151.2" y="117" width="0.1" height="15.0" fill="rgb(211,182,7)" rx="2" ry="2" />
<text x="1154.18" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (1,547 samples, 0.07%)</title><rect x="878.4" y="981" width="0.8" height="15.0" fill="rgb(210,165,52)" rx="2" ry="2" />
<text x="881.38" y="991.5" ></text>
</g>
<g >
<title>mark_slice (333 samples, 0.01%)</title><rect x="494.5" y="1205" width="0.2" height="15.0" fill="rgb(226,181,24)" rx="2" ry="2" />
<text x="497.55" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__return_1073 (3,100 samples, 0.13%)</title><rect x="890.1" y="1413" width="1.6" height="15.0" fill="rgb(238,151,17)" rx="2" ry="2" />
<text x="893.10" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,373 samples, 0.10%)</title><rect x="91.4" y="1445" width="1.2" height="15.0" fill="rgb(211,171,3)" rx="2" ry="2" />
<text x="94.38" y="1455.5" ></text>
</g>
<g >
<title>mark_slice (225 samples, 0.01%)</title><rect x="222.0" y="1253" width="0.1" height="15.0" fill="rgb(225,216,41)" rx="2" ry="2" />
<text x="224.98" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (584 samples, 0.03%)</title><rect x="501.0" y="1269" width="0.3" height="15.0" fill="rgb(219,222,38)" rx="2" ry="2" />
<text x="503.99" y="1279.5" ></text>
</g>
<g >
<title>caml_apply4 (371 samples, 0.02%)</title><rect x="98.7" y="1557" width="0.2" height="15.0" fill="rgb(246,129,39)" rx="2" ry="2" />
<text x="101.74" y="1567.5" ></text>
</g>
<g >
<title>apply_z (227 samples, 0.01%)</title><rect x="668.9" y="181" width="0.1" height="15.0" fill="rgb(248,49,4)" rx="2" ry="2" />
<text x="671.88" y="191.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (7,962 samples, 0.34%)</title><rect x="1174.9" y="1093" width="4.1" height="15.0" fill="rgb(220,27,3)" rx="2" ry="2" />
<text x="1177.95" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (994 samples, 0.04%)</title><rect x="577.2" y="677" width="0.5" height="15.0" fill="rgb(209,198,35)" rx="2" ry="2" />
<text x="580.19" y="687.5" ></text>
</g>
<g >
<title>camlIndex__fun_3276 (330 samples, 0.01%)</title><rect x="720.9" y="1061" width="0.2" height="15.0" fill="rgb(215,90,47)" rx="2" ry="2" />
<text x="723.88" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (2,552 samples, 0.11%)</title><rect x="1137.9" y="1029" width="1.4" height="15.0" fill="rgb(221,45,5)" rx="2" ry="2" />
<text x="1140.95" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (311 samples, 0.01%)</title><rect x="1075.8" y="1141" width="0.1" height="15.0" fill="rgb(233,122,42)" rx="2" ry="2" />
<text x="1078.78" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (220 samples, 0.01%)</title><rect x="200.9" y="1333" width="0.1" height="15.0" fill="rgb(207,109,29)" rx="2" ry="2" />
<text x="203.93" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (411 samples, 0.02%)</title><rect x="203.9" y="1381" width="0.2" height="15.0" fill="rgb(228,29,47)" rx="2" ry="2" />
<text x="206.93" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (695 samples, 0.03%)</title><rect x="798.8" y="1029" width="0.4" height="15.0" fill="rgb(238,113,6)" rx="2" ry="2" />
<text x="801.82" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (281 samples, 0.01%)</title><rect x="1057.0" y="1045" width="0.1" height="15.0" fill="rgb(252,75,14)" rx="2" ry="2" />
<text x="1059.95" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (11,517 samples, 0.50%)</title><rect x="860.2" y="901" width="5.9" height="15.0" fill="rgb(224,150,21)" rx="2" ry="2" />
<text x="863.21" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (220 samples, 0.01%)</title><rect x="836.1" y="277" width="0.1" height="15.0" fill="rgb(242,43,4)" rx="2" ry="2" />
<text x="839.12" y="287.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (282 samples, 0.01%)</title><rect x="552.4" y="1189" width="0.2" height="15.0" fill="rgb(253,193,29)" rx="2" ry="2" />
<text x="555.45" y="1199.5" ></text>
</g>
<g >
<title>caml_apply2 (237 samples, 0.01%)</title><rect x="1094.4" y="981" width="0.1" height="15.0" fill="rgb(250,152,9)" rx="2" ry="2" />
<text x="1097.36" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15526 (12,982 samples, 0.56%)</title><rect x="1054.7" y="1285" width="6.6" height="15.0" fill="rgb(249,98,17)" rx="2" ry="2" />
<text x="1057.71" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (2,304 samples, 0.10%)</title><rect x="1072.3" y="1141" width="1.1" height="15.0" fill="rgb(214,148,27)" rx="2" ry="2" />
<text x="1075.26" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (117,263 samples, 5.08%)</title><rect x="331.7" y="1461" width="60.0" height="15.0" fill="rgb(237,11,49)" rx="2" ry="2" />
<text x="334.74" y="1471.5" >camlIr..</text>
</g>
<g >
<title>uECC_vli_modMult_fast (531 samples, 0.02%)</title><rect x="1112.5" y="117" width="0.3" height="15.0" fill="rgb(206,108,40)" rx="2" ry="2" />
<text x="1115.49" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (3,193 samples, 0.14%)</title><rect x="292.8" y="1381" width="1.6" height="15.0" fill="rgb(212,189,12)" rx="2" ry="2" />
<text x="295.81" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (208 samples, 0.01%)</title><rect x="490.0" y="1173" width="0.1" height="15.0" fill="rgb(252,129,35)" rx="2" ry="2" />
<text x="492.97" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (286 samples, 0.01%)</title><rect x="1111.8" y="101" width="0.1" height="15.0" fill="rgb(219,124,15)" rx="2" ry="2" />
<text x="1114.78" y="111.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (321 samples, 0.01%)</title><rect x="706.5" y="997" width="0.2" height="15.0" fill="rgb(248,47,30)" rx="2" ry="2" />
<text x="709.53" y="1007.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (320 samples, 0.01%)</title><rect x="705.0" y="933" width="0.2" height="15.0" fill="rgb(215,129,4)" rx="2" ry="2" />
<text x="708.02" y="943.5" ></text>
</g>
<g >
<title>mark_slice_darken (204 samples, 0.01%)</title><rect x="523.9" y="1253" width="0.1" height="15.0" fill="rgb(236,160,4)" rx="2" ry="2" />
<text x="526.88" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (2,315 samples, 0.10%)</title><rect x="253.9" y="1397" width="1.2" height="15.0" fill="rgb(245,17,49)" rx="2" ry="2" />
<text x="256.87" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (296 samples, 0.01%)</title><rect x="554.1" y="1221" width="0.2" height="15.0" fill="rgb(243,148,25)" rx="2" ry="2" />
<text x="557.14" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (651 samples, 0.03%)</title><rect x="1130.9" y="1045" width="0.3" height="15.0" fill="rgb(244,195,6)" rx="2" ry="2" />
<text x="1133.89" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (413 samples, 0.02%)</title><rect x="499.6" y="1285" width="0.2" height="15.0" fill="rgb(210,175,22)" rx="2" ry="2" />
<text x="502.62" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11923 (1,211 samples, 0.05%)</title><rect x="866.1" y="901" width="0.6" height="15.0" fill="rgb(224,154,1)" rx="2" ry="2" />
<text x="869.10" y="911.5" ></text>
</g>
<g >
<title>caml_call_gc (266 samples, 0.01%)</title><rect x="799.9" y="1029" width="0.1" height="15.0" fill="rgb(226,132,45)" rx="2" ry="2" />
<text x="802.87" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4780 (579 samples, 0.03%)</title><rect x="1179.3" y="1077" width="0.3" height="15.0" fill="rgb(252,197,12)" rx="2" ry="2" />
<text x="1182.29" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_825 (5,620 samples, 0.24%)</title><rect x="894.0" y="1445" width="2.9" height="15.0" fill="rgb(213,36,45)" rx="2" ry="2" />
<text x="897.00" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_569 (324 samples, 0.01%)</title><rect x="578.2" y="1285" width="0.2" height="15.0" fill="rgb(234,89,23)" rx="2" ry="2" />
<text x="581.22" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2116 (252 samples, 0.01%)</title><rect x="707.0" y="1013" width="0.1" height="15.0" fill="rgb(254,6,12)" rx="2" ry="2" />
<text x="709.97" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (799 samples, 0.03%)</title><rect x="1178.6" y="997" width="0.4" height="15.0" fill="rgb(254,51,37)" rx="2" ry="2" />
<text x="1181.58" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (366 samples, 0.02%)</title><rect x="490.2" y="1221" width="0.2" height="15.0" fill="rgb(248,43,28)" rx="2" ry="2" />
<text x="493.24" y="1231.5" ></text>
</g>
<g >
<title>uECC_vli_square (298 samples, 0.01%)</title><rect x="828.5" y="197" width="0.1" height="15.0" fill="rgb(219,51,40)" rx="2" ry="2" />
<text x="831.49" y="207.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_get_30924 (611 samples, 0.03%)</title><rect x="1162.3" y="645" width="0.3" height="15.0" fill="rgb(236,115,33)" rx="2" ry="2" />
<text x="1165.27" y="655.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,409 samples, 0.06%)</title><rect x="1152.3" y="165" width="0.8" height="15.0" fill="rgb(234,35,28)" rx="2" ry="2" />
<text x="1155.34" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,230 samples, 0.05%)</title><rect x="1116.8" y="949" width="0.6" height="15.0" fill="rgb(253,202,33)" rx="2" ry="2" />
<text x="1119.78" y="959.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (35,817 samples, 1.55%)</title><rect x="1094.5" y="533" width="18.3" height="15.0" fill="rgb(237,75,0)" rx="2" ry="2" />
<text x="1097.53" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (310 samples, 0.01%)</title><rect x="151.5" y="1445" width="0.2" height="15.0" fill="rgb(241,150,28)" rx="2" ry="2" />
<text x="154.54" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (285 samples, 0.01%)</title><rect x="519.0" y="1333" width="0.2" height="15.0" fill="rgb(243,188,38)" rx="2" ry="2" />
<text x="522.01" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (390 samples, 0.02%)</title><rect x="798.2" y="997" width="0.2" height="15.0" fill="rgb(229,102,50)" rx="2" ry="2" />
<text x="801.25" y="1007.5" ></text>
</g>
<g >
<title>unix_lseek_64 (796 samples, 0.03%)</title><rect x="697.6" y="933" width="0.4" height="15.0" fill="rgb(249,1,1)" rx="2" ry="2" />
<text x="700.56" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (498 samples, 0.02%)</title><rect x="1116.3" y="981" width="0.3" height="15.0" fill="rgb(229,217,32)" rx="2" ry="2" />
<text x="1119.30" y="991.5" ></text>
</g>
<g >
<title>muladd (744 samples, 0.03%)</title><rect x="1107.9" y="69" width="0.4" height="15.0" fill="rgb(205,44,7)" rx="2" ry="2" />
<text x="1110.91" y="79.5" ></text>
</g>
<g >
<title>caml_garbage_collection (563 samples, 0.02%)</title><rect x="241.9" y="1365" width="0.3" height="15.0" fill="rgb(224,119,50)" rx="2" ry="2" />
<text x="244.94" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (982 samples, 0.04%)</title><rect x="615.0" y="1205" width="0.5" height="15.0" fill="rgb(228,124,51)" rx="2" ry="2" />
<text x="618.04" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (252 samples, 0.01%)</title><rect x="200.9" y="1349" width="0.1" height="15.0" fill="rgb(232,44,33)" rx="2" ry="2" />
<text x="203.91" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (214 samples, 0.01%)</title><rect x="191.2" y="1157" width="0.1" height="15.0" fill="rgb(223,204,19)" rx="2" ry="2" />
<text x="194.19" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (309 samples, 0.01%)</title><rect x="1010.9" y="1333" width="0.1" height="15.0" fill="rgb(224,3,8)" rx="2" ry="2" />
<text x="1013.89" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (413 samples, 0.02%)</title><rect x="391.5" y="1445" width="0.2" height="15.0" fill="rgb(234,122,52)" rx="2" ry="2" />
<text x="394.47" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,079 samples, 0.05%)</title><rect x="234.3" y="1333" width="0.5" height="15.0" fill="rgb(252,41,19)" rx="2" ry="2" />
<text x="237.28" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (19,710 samples, 0.85%)</title><rect x="873.5" y="1141" width="10.1" height="15.0" fill="rgb(248,208,32)" rx="2" ry="2" />
<text x="876.51" y="1151.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (359 samples, 0.02%)</title><rect x="631.7" y="117" width="0.2" height="15.0" fill="rgb(246,87,51)" rx="2" ry="2" />
<text x="634.70" y="127.5" ></text>
</g>
<g >
<title>mark_slice (458 samples, 0.02%)</title><rect x="206.6" y="1317" width="0.2" height="15.0" fill="rgb(238,206,49)" rx="2" ry="2" />
<text x="209.56" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (211 samples, 0.01%)</title><rect x="613.2" y="1125" width="0.1" height="15.0" fill="rgb(206,164,17)" rx="2" ry="2" />
<text x="616.21" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (583 samples, 0.03%)</title><rect x="147.6" y="1397" width="0.3" height="15.0" fill="rgb(219,128,21)" rx="2" ry="2" />
<text x="150.56" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (362 samples, 0.02%)</title><rect x="707.3" y="981" width="0.2" height="15.0" fill="rgb(234,9,22)" rx="2" ry="2" />
<text x="710.34" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (242 samples, 0.01%)</title><rect x="563.2" y="1205" width="0.2" height="15.0" fill="rgb(251,171,37)" rx="2" ry="2" />
<text x="566.23" y="1215.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (26,415 samples, 1.14%)</title><rect x="654.6" y="229" width="13.5" height="15.0" fill="rgb(253,78,40)" rx="2" ry="2" />
<text x="657.64" y="239.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (354 samples, 0.02%)</title><rect x="526.9" y="1285" width="0.1" height="15.0" fill="rgb(214,92,49)" rx="2" ry="2" />
<text x="529.87" y="1295.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (320 samples, 0.01%)</title><rect x="309.8" y="1445" width="0.2" height="15.0" fill="rgb(215,226,20)" rx="2" ry="2" />
<text x="312.82" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,277 samples, 0.14%)</title><rect x="386.2" y="1381" width="1.7" height="15.0" fill="rgb(238,88,13)" rx="2" ry="2" />
<text x="389.20" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (270 samples, 0.01%)</title><rect x="238.8" y="1285" width="0.1" height="15.0" fill="rgb(212,156,46)" rx="2" ry="2" />
<text x="241.79" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (291 samples, 0.01%)</title><rect x="766.7" y="1061" width="0.1" height="15.0" fill="rgb(213,25,53)" rx="2" ry="2" />
<text x="769.67" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (206 samples, 0.01%)</title><rect x="382.3" y="1301" width="0.2" height="15.0" fill="rgb(237,28,31)" rx="2" ry="2" />
<text x="385.35" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (43,909 samples, 1.90%)</title><rect x="1143.9" y="1013" width="22.4" height="15.0" fill="rgb(222,13,39)" rx="2" ry="2" />
<text x="1146.87" y="1023.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (1,018 samples, 0.04%)</title><rect x="566.5" y="1221" width="0.5" height="15.0" fill="rgb(247,97,15)" rx="2" ry="2" />
<text x="569.46" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (714 samples, 0.03%)</title><rect x="265.9" y="1333" width="0.3" height="15.0" fill="rgb(246,51,32)" rx="2" ry="2" />
<text x="268.86" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (199 samples, 0.01%)</title><rect x="800.1" y="1061" width="0.1" height="15.0" fill="rgb(219,142,21)" rx="2" ry="2" />
<text x="803.14" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (6,059 samples, 0.26%)</title><rect x="565.1" y="1253" width="3.1" height="15.0" fill="rgb(221,109,22)" rx="2" ry="2" />
<text x="568.08" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (728 samples, 0.03%)</title><rect x="677.2" y="1237" width="0.4" height="15.0" fill="rgb(254,160,16)" rx="2" ry="2" />
<text x="680.22" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (10,294 samples, 0.45%)</title><rect x="149.0" y="1477" width="5.3" height="15.0" fill="rgb(230,7,46)" rx="2" ry="2" />
<text x="152.02" y="1487.5" ></text>
</g>
<g >
<title>caml_alloc_dummy (495 samples, 0.02%)</title><rect x="79.9" y="1541" width="0.3" height="15.0" fill="rgb(225,142,47)" rx="2" ry="2" />
<text x="82.90" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (475 samples, 0.02%)</title><rect x="201.8" y="1365" width="0.2" height="15.0" fill="rgb(226,152,23)" rx="2" ry="2" />
<text x="204.76" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,515 samples, 0.07%)</title><rect x="1088.0" y="885" width="0.8" height="15.0" fill="rgb(252,154,14)" rx="2" ry="2" />
<text x="1091.03" y="895.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,246 samples, 0.05%)</title><rect x="1106.1" y="85" width="0.6" height="15.0" fill="rgb(243,99,35)" rx="2" ry="2" />
<text x="1109.06" y="95.5" ></text>
</g>
<g >
<title>sweep_slice (360 samples, 0.02%)</title><rect x="476.0" y="1349" width="0.2" height="15.0" fill="rgb(245,188,50)" rx="2" ry="2" />
<text x="479.03" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (204 samples, 0.01%)</title><rect x="880.5" y="917" width="0.1" height="15.0" fill="rgb(249,193,52)" rx="2" ry="2" />
<text x="883.54" y="927.5" ></text>
</g>
<g >
<title>caml_call_gc (699 samples, 0.03%)</title><rect x="840.2" y="1205" width="0.3" height="15.0" fill="rgb(212,127,23)" rx="2" ry="2" />
<text x="843.15" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (822 samples, 0.04%)</title><rect x="785.5" y="1077" width="0.4" height="15.0" fill="rgb(252,152,1)" rx="2" ry="2" />
<text x="788.49" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__create_inner_1520 (763 samples, 0.03%)</title><rect x="154.3" y="1445" width="0.4" height="15.0" fill="rgb(234,145,19)" rx="2" ry="2" />
<text x="157.30" y="1455.5" ></text>
</g>
<g >
<title>uECC_decompress_stub (2,461 samples, 0.11%)</title><rect x="1164.9" y="789" width="1.3" height="15.0" fill="rgb(220,99,3)" rx="2" ry="2" />
<text x="1167.92" y="799.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (221 samples, 0.01%)</title><rect x="190.0" y="1317" width="0.1" height="15.0" fill="rgb(252,172,42)" rx="2" ry="2" />
<text x="192.98" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (213 samples, 0.01%)</title><rect x="1120.1" y="917" width="0.1" height="15.0" fill="rgb(208,161,40)" rx="2" ry="2" />
<text x="1123.11" y="927.5" ></text>
</g>
<g >
<title>caml_apply3 (259 samples, 0.01%)</title><rect x="375.1" y="1365" width="0.1" height="15.0" fill="rgb(205,157,3)" rx="2" ry="2" />
<text x="378.10" y="1375.5" ></text>
</g>
<g >
<title>caml_string_compare (215 samples, 0.01%)</title><rect x="1128.0" y="1077" width="0.1" height="15.0" fill="rgb(222,192,22)" rx="2" ry="2" />
<text x="1131.02" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (35,817 samples, 1.55%)</title><rect x="1094.5" y="581" width="18.3" height="15.0" fill="rgb(207,220,29)" rx="2" ry="2" />
<text x="1097.53" y="591.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (499 samples, 0.02%)</title><rect x="219.1" y="1301" width="0.3" height="15.0" fill="rgb(242,144,22)" rx="2" ry="2" />
<text x="222.15" y="1311.5" ></text>
</g>
<g >
<title>caml_curry2 (1,081 samples, 0.05%)</title><rect x="331.2" y="1445" width="0.5" height="15.0" fill="rgb(220,135,6)" rx="2" ry="2" />
<text x="334.19" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (270 samples, 0.01%)</title><rect x="795.8" y="981" width="0.1" height="15.0" fill="rgb(226,7,47)" rx="2" ry="2" />
<text x="798.78" y="991.5" ></text>
</g>
<g >
<title>caml_hash (369 samples, 0.02%)</title><rect x="688.6" y="949" width="0.2" height="15.0" fill="rgb(230,134,7)" rx="2" ry="2" />
<text x="691.65" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_853 (535 samples, 0.02%)</title><rect x="433.3" y="1413" width="0.3" height="15.0" fill="rgb(219,221,13)" rx="2" ry="2" />
<text x="436.30" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (200 samples, 0.01%)</title><rect x="582.3" y="1141" width="0.1" height="15.0" fill="rgb(223,173,36)" rx="2" ry="2" />
<text x="585.26" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (6,960 samples, 0.30%)</title><rect x="1135.7" y="1045" width="3.6" height="15.0" fill="rgb(229,160,8)" rx="2" ry="2" />
<text x="1138.73" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (426 samples, 0.02%)</title><rect x="750.4" y="1061" width="0.2" height="15.0" fill="rgb(205,35,39)" rx="2" ry="2" />
<text x="753.38" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,450 samples, 0.06%)</title><rect x="239.2" y="1365" width="0.8" height="15.0" fill="rgb(222,46,21)" rx="2" ry="2" />
<text x="242.24" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (273 samples, 0.01%)</title><rect x="185.5" y="1285" width="0.2" height="15.0" fill="rgb(233,40,5)" rx="2" ry="2" />
<text x="188.55" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_14721 (366 samples, 0.02%)</title><rect x="587.6" y="1269" width="0.2" height="15.0" fill="rgb(226,41,53)" rx="2" ry="2" />
<text x="590.64" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (89,527 samples, 3.88%)</title><rect x="993.7" y="1413" width="45.8" height="15.0" fill="rgb(249,8,13)" rx="2" ry="2" />
<text x="996.74" y="1423.5" >caml..</text>
</g>
<g >
<title>uECC_vli_modInv (259 samples, 0.01%)</title><rect x="1146.6" y="149" width="0.1" height="15.0" fill="rgb(222,45,36)" rx="2" ry="2" />
<text x="1149.58" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (662 samples, 0.03%)</title><rect x="514.6" y="1253" width="0.3" height="15.0" fill="rgb(232,60,23)" rx="2" ry="2" />
<text x="517.59" y="1263.5" ></text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (225 samples, 0.01%)</title><rect x="141.3" y="1429" width="0.1" height="15.0" fill="rgb(244,132,30)" rx="2" ry="2" />
<text x="144.32" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (470 samples, 0.02%)</title><rect x="762.6" y="1141" width="0.2" height="15.0" fill="rgb(226,42,25)" rx="2" ry="2" />
<text x="765.61" y="1151.5" ></text>
</g>
<g >
<title>XYcZ_add (564 samples, 0.02%)</title><rect x="827.8" y="229" width="0.2" height="15.0" fill="rgb(229,177,48)" rx="2" ry="2" />
<text x="830.76" y="239.5" ></text>
</g>
<g >
<title>caml_oldify_one (262 samples, 0.01%)</title><rect x="142.7" y="1349" width="0.1" height="15.0" fill="rgb(235,82,24)" rx="2" ry="2" />
<text x="145.67" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (1,110 samples, 0.05%)</title><rect x="245.4" y="1397" width="0.6" height="15.0" fill="rgb(218,82,20)" rx="2" ry="2" />
<text x="248.39" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_values_11648 (269 samples, 0.01%)</title><rect x="1127.1" y="1109" width="0.2" height="15.0" fill="rgb(241,171,38)" rx="2" ry="2" />
<text x="1130.11" y="1119.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (404 samples, 0.02%)</title><rect x="599.0" y="1253" width="0.2" height="15.0" fill="rgb(224,207,18)" rx="2" ry="2" />
<text x="601.97" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (603 samples, 0.03%)</title><rect x="557.9" y="1237" width="0.4" height="15.0" fill="rgb(206,155,41)" rx="2" ry="2" />
<text x="560.94" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (2,024 samples, 0.09%)</title><rect x="912.5" y="1429" width="1.0" height="15.0" fill="rgb(217,70,1)" rx="2" ry="2" />
<text x="915.45" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (510 samples, 0.02%)</title><rect x="394.4" y="1445" width="0.3" height="15.0" fill="rgb(225,215,48)" rx="2" ry="2" />
<text x="397.45" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (928 samples, 0.04%)</title><rect x="1164.1" y="501" width="0.5" height="15.0" fill="rgb(236,211,27)" rx="2" ry="2" />
<text x="1167.15" y="511.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,875 samples, 0.08%)</title><rect x="1125.5" y="997" width="1.0" height="15.0" fill="rgb(210,56,43)" rx="2" ry="2" />
<text x="1128.52" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4379 (7,965 samples, 0.35%)</title><rect x="757.3" y="1077" width="4.1" height="15.0" fill="rgb(229,84,20)" rx="2" ry="2" />
<text x="760.32" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (238 samples, 0.01%)</title><rect x="1127.7" y="1109" width="0.1" height="15.0" fill="rgb(211,67,17)" rx="2" ry="2" />
<text x="1130.72" y="1119.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (611 samples, 0.03%)</title><rect x="1158.2" y="165" width="0.3" height="15.0" fill="rgb(229,10,39)" rx="2" ry="2" />
<text x="1161.19" y="175.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (1,215 samples, 0.05%)</title><rect x="897.1" y="1477" width="0.7" height="15.0" fill="rgb(219,146,13)" rx="2" ry="2" />
<text x="900.14" y="1487.5" ></text>
</g>
<g >
<title>caml_call_gc (198 samples, 0.01%)</title><rect x="691.6" y="997" width="0.1" height="15.0" fill="rgb(228,155,34)" rx="2" ry="2" />
<text x="694.60" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (5,509 samples, 0.24%)</title><rect x="868.5" y="933" width="2.8" height="15.0" fill="rgb(216,92,0)" rx="2" ry="2" />
<text x="871.45" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (499 samples, 0.02%)</title><rect x="1172.2" y="885" width="0.3" height="15.0" fill="rgb(222,11,6)" rx="2" ry="2" />
<text x="1175.21" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (1,853 samples, 0.08%)</title><rect x="217.5" y="1349" width="0.9" height="15.0" fill="rgb(253,152,21)" rx="2" ry="2" />
<text x="220.50" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,394 samples, 0.19%)</title><rect x="422.8" y="1445" width="2.3" height="15.0" fill="rgb(219,116,20)" rx="2" ry="2" />
<text x="425.84" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (301 samples, 0.01%)</title><rect x="991.5" y="1333" width="0.2" height="15.0" fill="rgb(231,204,23)" rx="2" ry="2" />
<text x="994.55" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_square (683 samples, 0.03%)</title><rect x="645.3" y="133" width="0.4" height="15.0" fill="rgb(237,192,38)" rx="2" ry="2" />
<text x="648.33" y="143.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (475 samples, 0.02%)</title><rect x="1089.1" y="949" width="0.2" height="15.0" fill="rgb(218,177,28)" rx="2" ry="2" />
<text x="1092.09" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (268 samples, 0.01%)</title><rect x="581.9" y="1077" width="0.1" height="15.0" fill="rgb(235,190,17)" rx="2" ry="2" />
<text x="584.89" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (1,474 samples, 0.06%)</title><rect x="495.8" y="1269" width="0.7" height="15.0" fill="rgb(238,170,24)" rx="2" ry="2" />
<text x="498.76" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (301 samples, 0.01%)</title><rect x="1030.5" y="1269" width="0.1" height="15.0" fill="rgb(209,75,46)" rx="2" ry="2" />
<text x="1033.48" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (44,555 samples, 1.93%)</title><rect x="815.7" y="981" width="22.8" height="15.0" fill="rgb(237,142,51)" rx="2" ry="2" />
<text x="818.69" y="991.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4928 (260 samples, 0.01%)</title><rect x="693.1" y="1013" width="0.2" height="15.0" fill="rgb(221,37,27)" rx="2" ry="2" />
<text x="696.14" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (458 samples, 0.02%)</title><rect x="1086.7" y="1061" width="0.2" height="15.0" fill="rgb(221,47,18)" rx="2" ry="2" />
<text x="1089.71" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (229 samples, 0.01%)</title><rect x="733.8" y="1045" width="0.1" height="15.0" fill="rgb(228,76,7)" rx="2" ry="2" />
<text x="736.79" y="1055.5" ></text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (443 samples, 0.02%)</title><rect x="435.1" y="1461" width="0.2" height="15.0" fill="rgb(213,25,25)" rx="2" ry="2" />
<text x="438.07" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (248 samples, 0.01%)</title><rect x="835.7" y="453" width="0.1" height="15.0" fill="rgb(226,42,27)" rx="2" ry="2" />
<text x="838.72" y="463.5" ></text>
</g>
<g >
<title>sweep_slice (323 samples, 0.01%)</title><rect x="218.3" y="1301" width="0.1" height="15.0" fill="rgb(223,135,36)" rx="2" ry="2" />
<text x="221.28" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (198 samples, 0.01%)</title><rect x="849.7" y="1317" width="0.1" height="15.0" fill="rgb(232,112,8)" rx="2" ry="2" />
<text x="852.69" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (736 samples, 0.03%)</title><rect x="748.7" y="1013" width="0.4" height="15.0" fill="rgb(244,1,24)" rx="2" ry="2" />
<text x="751.70" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (25,766 samples, 1.12%)</title><rect x="1143.9" y="405" width="13.2" height="15.0" fill="rgb(234,221,6)" rx="2" ry="2" />
<text x="1146.90" y="415.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (245 samples, 0.01%)</title><rect x="1074.1" y="949" width="0.2" height="15.0" fill="rgb(251,149,34)" rx="2" ry="2" />
<text x="1077.15" y="959.5" ></text>
</g>
<g >
<title>caml_apply5 (1,558 samples, 0.07%)</title><rect x="1177.6" y="981" width="0.8" height="15.0" fill="rgb(244,194,17)" rx="2" ry="2" />
<text x="1180.62" y="991.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (6,269 samples, 0.27%)</title><rect x="611.2" y="1205" width="3.2" height="15.0" fill="rgb(243,140,18)" rx="2" ry="2" />
<text x="614.15" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (1,727 samples, 0.07%)</title><rect x="631.3" y="213" width="0.9" height="15.0" fill="rgb(241,3,3)" rx="2" ry="2" />
<text x="634.31" y="223.5" ></text>
</g>
<g >
<title>mark_slice (485 samples, 0.02%)</title><rect x="141.9" y="1381" width="0.2" height="15.0" fill="rgb(223,223,17)" rx="2" ry="2" />
<text x="144.88" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (329 samples, 0.01%)</title><rect x="875.5" y="997" width="0.1" height="15.0" fill="rgb(205,108,17)" rx="2" ry="2" />
<text x="878.48" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (228 samples, 0.01%)</title><rect x="858.3" y="965" width="0.1" height="15.0" fill="rgb(254,113,46)" rx="2" ry="2" />
<text x="861.31" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (268 samples, 0.01%)</title><rect x="544.3" y="1301" width="0.2" height="15.0" fill="rgb(248,121,2)" rx="2" ry="2" />
<text x="547.33" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (102,615 samples, 4.45%)</title><rect x="1114.3" y="1205" width="52.5" height="15.0" fill="rgb(208,143,36)" rx="2" ry="2" />
<text x="1117.33" y="1215.5" >camlL..</text>
</g>
<g >
<title>uECC_vli_rshift1 (288 samples, 0.01%)</title><rect x="666.8" y="165" width="0.2" height="15.0" fill="rgb(254,44,43)" rx="2" ry="2" />
<text x="669.82" y="175.5" ></text>
</g>
<g >
<title>uECC_vli_mmod (242 samples, 0.01%)</title><rect x="1105.5" y="85" width="0.2" height="15.0" fill="rgb(251,105,7)" rx="2" ry="2" />
<text x="1108.54" y="95.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,957 samples, 0.08%)</title><rect x="112.1" y="1477" width="1.0" height="15.0" fill="rgb(211,148,15)" rx="2" ry="2" />
<text x="115.05" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2116 (737 samples, 0.03%)</title><rect x="234.8" y="1381" width="0.4" height="15.0" fill="rgb(246,161,42)" rx="2" ry="2" />
<text x="237.83" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,038 samples, 0.04%)</title><rect x="874.2" y="1013" width="0.5" height="15.0" fill="rgb(250,195,53)" rx="2" ry="2" />
<text x="877.21" y="1023.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (248 samples, 0.01%)</title><rect x="1084.3" y="1141" width="0.1" height="15.0" fill="rgb(233,207,4)" rx="2" ry="2" />
<text x="1087.32" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2325 (544 samples, 0.02%)</title><rect x="707.8" y="1013" width="0.3" height="15.0" fill="rgb(242,31,45)" rx="2" ry="2" />
<text x="710.78" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,307 samples, 0.40%)</title><rect x="172.0" y="1301" width="4.7" height="15.0" fill="rgb(212,127,10)" rx="2" ry="2" />
<text x="174.97" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (356 samples, 0.02%)</title><rect x="703.6" y="965" width="0.2" height="15.0" fill="rgb(213,82,23)" rx="2" ry="2" />
<text x="706.64" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4070 (632 samples, 0.03%)</title><rect x="836.0" y="517" width="0.4" height="15.0" fill="rgb(234,221,10)" rx="2" ry="2" />
<text x="839.04" y="527.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (2,146 samples, 0.09%)</title><rect x="1157.1" y="261" width="1.1" height="15.0" fill="rgb(245,170,39)" rx="2" ry="2" />
<text x="1160.08" y="271.5" ></text>
</g>
<g >
<title>caml_call_gc (301 samples, 0.01%)</title><rect x="1007.4" y="1285" width="0.2" height="15.0" fill="rgb(230,167,13)" rx="2" ry="2" />
<text x="1010.41" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (294 samples, 0.01%)</title><rect x="1177.8" y="805" width="0.1" height="15.0" fill="rgb(221,21,40)" rx="2" ry="2" />
<text x="1180.76" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (628 samples, 0.03%)</title><rect x="710.1" y="1045" width="0.3" height="15.0" fill="rgb(210,14,13)" rx="2" ry="2" />
<text x="713.08" y="1055.5" ></text>
</g>
<g >
<title>caml_startup_common (1,664,820 samples, 72.12%)</title><rect x="74.8" y="1653" width="851.1" height="15.0" fill="rgb(225,141,7)" rx="2" ry="2" />
<text x="77.83" y="1663.5" >caml_startup_common</text>
</g>
<g >
<title>camlLwt_mutex__fun_157 (14,448 samples, 0.63%)</title><rect x="467.7" y="1397" width="7.4" height="15.0" fill="rgb(246,102,15)" rx="2" ry="2" />
<text x="470.74" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (1,340 samples, 0.06%)</title><rect x="188.6" y="1397" width="0.7" height="15.0" fill="rgb(251,107,39)" rx="2" ry="2" />
<text x="191.61" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (395 samples, 0.02%)</title><rect x="771.1" y="1109" width="0.2" height="15.0" fill="rgb(231,60,33)" rx="2" ry="2" />
<text x="774.07" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (2,255 samples, 0.10%)</title><rect x="102.5" y="1557" width="1.1" height="15.0" fill="rgb(251,21,51)" rx="2" ry="2" />
<text x="105.47" y="1567.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (367 samples, 0.02%)</title><rect x="914.9" y="1445" width="0.2" height="15.0" fill="rgb(243,36,0)" rx="2" ry="2" />
<text x="917.92" y="1455.5" ></text>
</g>
<g >
<title>caml_tuplify2 (387 samples, 0.02%)</title><rect x="246.0" y="1397" width="0.2" height="15.0" fill="rgb(234,10,43)" rx="2" ry="2" />
<text x="248.96" y="1407.5" ></text>
</g>
<g >
<title>caml_oldify_one (319 samples, 0.01%)</title><rect x="386.0" y="1333" width="0.1" height="15.0" fill="rgb(237,188,36)" rx="2" ry="2" />
<text x="388.96" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (43,889 samples, 1.90%)</title><rect x="1143.9" y="965" width="22.4" height="15.0" fill="rgb(217,173,13)" rx="2" ry="2" />
<text x="1146.87" y="975.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2116 (799 samples, 0.03%)</title><rect x="244.3" y="1397" width="0.4" height="15.0" fill="rgb(225,162,52)" rx="2" ry="2" />
<text x="247.29" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (217 samples, 0.01%)</title><rect x="201.7" y="1333" width="0.1" height="15.0" fill="rgb(237,7,41)" rx="2" ry="2" />
<text x="204.65" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (299 samples, 0.01%)</title><rect x="678.5" y="1189" width="0.2" height="15.0" fill="rgb(243,40,17)" rx="2" ry="2" />
<text x="681.53" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4559 (1,120 samples, 0.05%)</title><rect x="1174.2" y="901" width="0.6" height="15.0" fill="rgb(237,161,23)" rx="2" ry="2" />
<text x="1177.24" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (831 samples, 0.04%)</title><rect x="129.8" y="1397" width="0.4" height="15.0" fill="rgb(210,211,15)" rx="2" ry="2" />
<text x="132.79" y="1407.5" ></text>
</g>
<g >
<title>sweep_slice (836 samples, 0.04%)</title><rect x="270.9" y="1381" width="0.4" height="15.0" fill="rgb(222,96,37)" rx="2" ry="2" />
<text x="273.89" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (220 samples, 0.01%)</title><rect x="799.3" y="1029" width="0.1" height="15.0" fill="rgb(233,138,1)" rx="2" ry="2" />
<text x="802.33" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (802 samples, 0.03%)</title><rect x="638.7" y="149" width="0.4" height="15.0" fill="rgb(233,136,19)" rx="2" ry="2" />
<text x="641.69" y="159.5" ></text>
</g>
<g >
<title>caml_oldify_one (252 samples, 0.01%)</title><rect x="478.8" y="1301" width="0.1" height="15.0" fill="rgb(214,125,12)" rx="2" ry="2" />
<text x="481.76" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (239 samples, 0.01%)</title><rect x="189.6" y="1365" width="0.1" height="15.0" fill="rgb(221,68,44)" rx="2" ry="2" />
<text x="192.55" y="1375.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,297 samples, 0.06%)</title><rect x="1001.9" y="1237" width="0.7" height="15.0" fill="rgb(207,61,26)" rx="2" ry="2" />
<text x="1004.95" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (285 samples, 0.01%)</title><rect x="193.0" y="1397" width="0.1" height="15.0" fill="rgb(253,158,14)" rx="2" ry="2" />
<text x="196.00" y="1407.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3994 (11,233 samples, 0.49%)</title><rect x="827.6" y="373" width="5.7" height="15.0" fill="rgb(247,217,43)" rx="2" ry="2" />
<text x="830.59" y="383.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (1,677 samples, 0.07%)</title><rect x="491.3" y="1221" width="0.8" height="15.0" fill="rgb(250,21,35)" rx="2" ry="2" />
<text x="494.28" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (900 samples, 0.04%)</title><rect x="1130.8" y="1061" width="0.5" height="15.0" fill="rgb(250,222,6)" rx="2" ry="2" />
<text x="1133.85" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (1,603 samples, 0.07%)</title><rect x="1080.4" y="1253" width="0.8" height="15.0" fill="rgb(206,203,47)" rx="2" ry="2" />
<text x="1083.38" y="1263.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (3,885 samples, 0.17%)</title><rect x="1158.2" y="229" width="2.0" height="15.0" fill="rgb(218,229,41)" rx="2" ry="2" />
<text x="1161.18" y="239.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (1,682 samples, 0.07%)</title><rect x="641.2" y="133" width="0.8" height="15.0" fill="rgb(249,174,22)" rx="2" ry="2" />
<text x="644.17" y="143.5" ></text>
</g>
<g >
<title>uECC_vli_square (455 samples, 0.02%)</title><rect x="1159.5" y="149" width="0.2" height="15.0" fill="rgb(214,126,31)" rx="2" ry="2" />
<text x="1162.49" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (453 samples, 0.02%)</title><rect x="570.7" y="1269" width="0.2" height="15.0" fill="rgb(224,26,29)" rx="2" ry="2" />
<text x="573.69" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_square (196 samples, 0.01%)</title><rect x="816.4" y="181" width="0.1" height="15.0" fill="rgb(223,176,53)" rx="2" ry="2" />
<text x="819.42" y="191.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (266 samples, 0.01%)</title><rect x="831.0" y="245" width="0.1" height="15.0" fill="rgb(214,150,22)" rx="2" ry="2" />
<text x="833.97" y="255.5" ></text>
</g>
<g >
<title>mark_slice_darken (964 samples, 0.04%)</title><rect x="906.4" y="1317" width="0.5" height="15.0" fill="rgb(220,77,6)" rx="2" ry="2" />
<text x="909.41" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,255 samples, 0.05%)</title><rect x="1075.3" y="1173" width="0.7" height="15.0" fill="rgb(207,222,21)" rx="2" ry="2" />
<text x="1078.31" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (264 samples, 0.01%)</title><rect x="868.8" y="885" width="0.1" height="15.0" fill="rgb(219,187,3)" rx="2" ry="2" />
<text x="871.80" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (1,079 samples, 0.05%)</title><rect x="242.4" y="1381" width="0.6" height="15.0" fill="rgb(240,105,14)" rx="2" ry="2" />
<text x="245.45" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (946 samples, 0.04%)</title><rect x="1011.4" y="1365" width="0.5" height="15.0" fill="rgb(208,8,48)" rx="2" ry="2" />
<text x="1014.42" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (9,249 samples, 0.40%)</title><rect x="335.9" y="1445" width="4.7" height="15.0" fill="rgb(219,87,15)" rx="2" ry="2" />
<text x="338.89" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (200 samples, 0.01%)</title><rect x="677.1" y="1205" width="0.1" height="15.0" fill="rgb(228,216,29)" rx="2" ry="2" />
<text x="680.08" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395 samples, 0.02%)</title><rect x="541.3" y="1077" width="0.2" height="15.0" fill="rgb(215,42,42)" rx="2" ry="2" />
<text x="544.27" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,136 samples, 0.05%)</title><rect x="565.9" y="1173" width="0.6" height="15.0" fill="rgb(231,94,12)" rx="2" ry="2" />
<text x="568.88" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_sub (216 samples, 0.01%)</title><rect x="638.5" y="117" width="0.1" height="15.0" fill="rgb(236,34,42)" rx="2" ry="2" />
<text x="641.52" y="127.5" ></text>
</g>
<g >
<title>caml_garbage_collection (512 samples, 0.02%)</title><rect x="786.3" y="1109" width="0.3" height="15.0" fill="rgb(217,224,49)" rx="2" ry="2" />
<text x="789.34" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (1,105 samples, 0.05%)</title><rect x="405.3" y="1413" width="0.5" height="15.0" fill="rgb(245,67,11)" rx="2" ry="2" />
<text x="408.26" y="1423.5" ></text>
</g>
<g >
<title>unix_lseek_64 (2,457 samples, 0.11%)</title><rect x="715.3" y="1045" width="1.2" height="15.0" fill="rgb(230,226,24)" rx="2" ry="2" />
<text x="718.29" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (347 samples, 0.02%)</title><rect x="1000.3" y="1029" width="0.2" height="15.0" fill="rgb(242,52,6)" rx="2" ry="2" />
<text x="1003.33" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,479 samples, 0.19%)</title><rect x="601.0" y="1317" width="2.2" height="15.0" fill="rgb(246,92,47)" rx="2" ry="2" />
<text x="603.95" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15580 (361 samples, 0.02%)</title><rect x="879.6" y="1093" width="0.2" height="15.0" fill="rgb(229,77,28)" rx="2" ry="2" />
<text x="882.61" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (433 samples, 0.02%)</title><rect x="1044.3" y="1397" width="0.2" height="15.0" fill="rgb(251,161,32)" rx="2" ry="2" />
<text x="1047.29" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (201 samples, 0.01%)</title><rect x="490.9" y="1157" width="0.1" height="15.0" fill="rgb(212,154,45)" rx="2" ry="2" />
<text x="493.94" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (386 samples, 0.02%)</title><rect x="836.1" y="389" width="0.2" height="15.0" fill="rgb(252,88,23)" rx="2" ry="2" />
<text x="839.10" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,732 samples, 1.46%)</title><rect x="953.2" y="1509" width="17.3" height="15.0" fill="rgb(209,104,35)" rx="2" ry="2" />
<text x="956.24" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (829 samples, 0.04%)</title><rect x="1119.2" y="965" width="0.4" height="15.0" fill="rgb(228,137,30)" rx="2" ry="2" />
<text x="1122.18" y="975.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (2,038 samples, 0.09%)</title><rect x="665.1" y="149" width="1.0" height="15.0" fill="rgb(213,31,16)" rx="2" ry="2" />
<text x="668.07" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_869 (234 samples, 0.01%)</title><rect x="202.5" y="1365" width="0.1" height="15.0" fill="rgb(252,47,14)" rx="2" ry="2" />
<text x="205.46" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__finalize_1515 (1,912 samples, 0.08%)</title><rect x="900.9" y="1461" width="1.0" height="15.0" fill="rgb(228,168,45)" rx="2" ry="2" />
<text x="903.91" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (340 samples, 0.01%)</title><rect x="305.0" y="1397" width="0.2" height="15.0" fill="rgb(238,27,10)" rx="2" ry="2" />
<text x="308.02" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (215 samples, 0.01%)</title><rect x="589.5" y="1237" width="0.1" height="15.0" fill="rgb(238,11,21)" rx="2" ry="2" />
<text x="592.45" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (1,485 samples, 0.06%)</title><rect x="1177.6" y="965" width="0.8" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
<text x="1180.63" y="975.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (218 samples, 0.01%)</title><rect x="327.2" y="1365" width="0.1" height="15.0" fill="rgb(247,48,31)" rx="2" ry="2" />
<text x="330.19" y="1375.5" ></text>
</g>
<g >
<title>camlLwt_sequence__loop_139 (394,913 samples, 17.11%)</title><rect x="981.8" y="1509" width="201.9" height="15.0" fill="rgb(237,185,32)" rx="2" ry="2" />
<text x="984.78" y="1519.5" >camlLwt_sequence__loop_139</text>
</g>
<g >
<title>caml_garbage_collection (1,079 samples, 0.05%)</title><rect x="442.6" y="1365" width="0.5" height="15.0" fill="rgb(224,224,25)" rx="2" ry="2" />
<text x="445.59" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (38,384 samples, 1.66%)</title><rect x="1143.9" y="757" width="19.6" height="15.0" fill="rgb(250,74,47)" rx="2" ry="2" />
<text x="1146.89" y="767.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (1,034 samples, 0.04%)</title><rect x="880.8" y="933" width="0.5" height="15.0" fill="rgb(249,36,24)" rx="2" ry="2" />
<text x="883.76" y="943.5" ></text>
</g>
<g >
<title>caml_call_gc (330 samples, 0.01%)</title><rect x="682.4" y="1173" width="0.2" height="15.0" fill="rgb(243,151,26)" rx="2" ry="2" />
<text x="685.44" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (780 samples, 0.03%)</title><rect x="207.1" y="1365" width="0.4" height="15.0" fill="rgb(224,103,24)" rx="2" ry="2" />
<text x="210.11" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (1,437 samples, 0.06%)</title><rect x="541.0" y="1189" width="0.7" height="15.0" fill="rgb(224,128,3)" rx="2" ry="2" />
<text x="544.01" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (2,241 samples, 0.10%)</title><rect x="827.7" y="309" width="1.2" height="15.0" fill="rgb(248,172,49)" rx="2" ry="2" />
<text x="830.75" y="319.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (445 samples, 0.02%)</title><rect x="839.7" y="1221" width="0.2" height="15.0" fill="rgb(212,203,18)" rx="2" ry="2" />
<text x="842.66" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (199 samples, 0.01%)</title><rect x="549.1" y="1253" width="0.1" height="15.0" fill="rgb(238,142,11)" rx="2" ry="2" />
<text x="552.12" y="1263.5" ></text>
</g>
<g >
<title>camlLwt_engine__restart_actions_996 (525 samples, 0.02%)</title><rect x="96.8" y="1557" width="0.3" height="15.0" fill="rgb(253,50,26)" rx="2" ry="2" />
<text x="99.80" y="1567.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (340 samples, 0.01%)</title><rect x="827.8" y="213" width="0.1" height="15.0" fill="rgb(208,136,1)" rx="2" ry="2" />
<text x="830.76" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__save_11896 (208 samples, 0.01%)</title><rect x="867.2" y="1013" width="0.2" height="15.0" fill="rgb(233,202,28)" rx="2" ry="2" />
<text x="870.25" y="1023.5" ></text>
</g>
<g >
<title>mark_slice_darken (198 samples, 0.01%)</title><rect x="1064.1" y="1029" width="0.1" height="15.0" fill="rgb(235,136,53)" rx="2" ry="2" />
<text x="1067.13" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (291 samples, 0.01%)</title><rect x="544.7" y="1285" width="0.1" height="15.0" fill="rgb(207,82,22)" rx="2" ry="2" />
<text x="547.67" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (13,692 samples, 0.59%)</title><rect x="42.9" y="1605" width="7.0" height="15.0" fill="rgb(218,3,50)" rx="2" ry="2" />
<text x="45.92" y="1615.5" ></text>
</g>
<g >
<title>mark_slice (728 samples, 0.03%)</title><rect x="235.3" y="1317" width="0.4" height="15.0" fill="rgb(252,142,43)" rx="2" ry="2" />
<text x="238.34" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (1,635 samples, 0.07%)</title><rect x="300.3" y="1397" width="0.8" height="15.0" fill="rgb(210,44,39)" rx="2" ry="2" />
<text x="303.29" y="1407.5" ></text>
</g>
<g >
<title>memmove (206 samples, 0.01%)</title><rect x="1010.1" y="1301" width="0.1" height="15.0" fill="rgb(254,224,28)" rx="2" ry="2" />
<text x="1013.10" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (401 samples, 0.02%)</title><rect x="528.1" y="1269" width="0.2" height="15.0" fill="rgb(223,199,9)" rx="2" ry="2" />
<text x="531.11" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (2,870 samples, 0.12%)</title><rect x="441.7" y="1413" width="1.4" height="15.0" fill="rgb(207,60,45)" rx="2" ry="2" />
<text x="444.68" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (539 samples, 0.02%)</title><rect x="761.5" y="1013" width="0.3" height="15.0" fill="rgb(254,65,35)" rx="2" ry="2" />
<text x="764.55" y="1023.5" ></text>
</g>
<g >
<title>uECC_vli_add (422 samples, 0.02%)</title><rect x="636.6" y="101" width="0.2" height="15.0" fill="rgb(207,28,21)" rx="2" ry="2" />
<text x="639.61" y="111.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (2,187 samples, 0.09%)</title><rect x="1125.5" y="1013" width="1.1" height="15.0" fill="rgb(222,146,21)" rx="2" ry="2" />
<text x="1128.50" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (529,096 samples, 22.92%)</title><rect x="154.8" y="1477" width="270.5" height="15.0" fill="rgb(206,24,8)" rx="2" ry="2" />
<text x="157.79" y="1487.5" >camlIrmin_pack__Pack__unsafe_find_5778</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (374 samples, 0.02%)</title><rect x="783.5" y="1077" width="0.2" height="15.0" fill="rgb(206,83,44)" rx="2" ry="2" />
<text x="786.54" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2186 (321 samples, 0.01%)</title><rect x="700.7" y="997" width="0.1" height="15.0" fill="rgb(231,75,20)" rx="2" ry="2" />
<text x="703.65" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (2,230 samples, 0.10%)</title><rect x="599.2" y="1269" width="1.2" height="15.0" fill="rgb(205,166,48)" rx="2" ry="2" />
<text x="602.25" y="1279.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (231 samples, 0.01%)</title><rect x="136.2" y="1269" width="0.1" height="15.0" fill="rgb(251,63,35)" rx="2" ry="2" />
<text x="139.15" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (75,649 samples, 3.28%)</title><rect x="341.7" y="1429" width="38.6" height="15.0" fill="rgb(208,127,19)" rx="2" ry="2" />
<text x="344.68" y="1439.5" >cam..</text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (35,781 samples, 1.55%)</title><rect x="1094.5" y="325" width="18.3" height="15.0" fill="rgb(244,52,1)" rx="2" ry="2" />
<text x="1097.54" y="335.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,009 samples, 0.04%)</title><rect x="1095.1" y="69" width="0.5" height="15.0" fill="rgb(223,161,29)" rx="2" ry="2" />
<text x="1098.09" y="79.5" ></text>
</g>
<g >
<title>XYcZ_add (365 samples, 0.02%)</title><rect x="1162.7" y="629" width="0.2" height="15.0" fill="rgb(251,112,7)" rx="2" ry="2" />
<text x="1165.74" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__check_and_copy_to_lower_12412 (5,222 samples, 0.23%)</title><rect x="764.8" y="1125" width="2.7" height="15.0" fill="rgb(210,23,44)" rx="2" ry="2" />
<text x="767.79" y="1135.5" ></text>
</g>
<g >
<title>__GI___pthread_getspecific (558 samples, 0.02%)</title><rect x="182.0" y="1301" width="0.2" height="15.0" fill="rgb(245,171,13)" rx="2" ry="2" />
<text x="184.95" y="1311.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (276 samples, 0.01%)</title><rect x="869.7" y="821" width="0.2" height="15.0" fill="rgb(254,87,47)" rx="2" ry="2" />
<text x="872.71" y="831.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (447 samples, 0.02%)</title><rect x="613.7" y="1173" width="0.2" height="15.0" fill="rgb(210,147,12)" rx="2" ry="2" />
<text x="616.65" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__pre_hash_12261 (379 samples, 0.02%)</title><rect x="1164.4" y="309" width="0.2" height="15.0" fill="rgb(251,212,14)" rx="2" ry="2" />
<text x="1167.36" y="319.5" ></text>
</g>
<g >
<title>uECC_vli_mult (565 samples, 0.02%)</title><rect x="667.6" y="165" width="0.3" height="15.0" fill="rgb(210,3,5)" rx="2" ry="2" />
<text x="670.61" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (437 samples, 0.02%)</title><rect x="865.8" y="805" width="0.2" height="15.0" fill="rgb(248,130,52)" rx="2" ry="2" />
<text x="868.78" y="815.5" ></text>
</g>
<g >
<title>mark_slice (445 samples, 0.02%)</title><rect x="265.3" y="1317" width="0.2" height="15.0" fill="rgb(226,79,46)" rx="2" ry="2" />
<text x="268.32" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (312 samples, 0.01%)</title><rect x="857.4" y="901" width="0.2" height="15.0" fill="rgb(227,191,11)" rx="2" ry="2" />
<text x="860.40" y="911.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (2,864 samples, 0.12%)</title><rect x="990.3" y="1365" width="1.5" height="15.0" fill="rgb(225,226,17)" rx="2" ry="2" />
<text x="993.35" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (665 samples, 0.03%)</title><rect x="799.3" y="1061" width="0.3" height="15.0" fill="rgb(232,229,54)" rx="2" ry="2" />
<text x="802.27" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,241 samples, 1.53%)</title><rect x="1143.9" y="629" width="18.0" height="15.0" fill="rgb(250,25,41)" rx="2" ry="2" />
<text x="1146.90" y="639.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (9,617 samples, 0.42%)</title><rect x="818.2" y="309" width="4.9" height="15.0" fill="rgb(219,20,24)" rx="2" ry="2" />
<text x="821.18" y="319.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (4,068 samples, 0.18%)</title><rect x="190.5" y="1269" width="2.1" height="15.0" fill="rgb(233,71,41)" rx="2" ry="2" />
<text x="193.49" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (210 samples, 0.01%)</title><rect x="1130.1" y="981" width="0.1" height="15.0" fill="rgb(238,36,10)" rx="2" ry="2" />
<text x="1133.13" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (556 samples, 0.02%)</title><rect x="258.0" y="1365" width="0.3" height="15.0" fill="rgb(224,212,15)" rx="2" ry="2" />
<text x="261.01" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3984 (1,478 samples, 0.06%)</title><rect x="1161.9" y="693" width="0.8" height="15.0" fill="rgb(217,16,52)" rx="2" ry="2" />
<text x="1164.94" y="703.5" ></text>
</g>
<g >
<title>mark_slice (298 samples, 0.01%)</title><rect x="797.9" y="997" width="0.2" height="15.0" fill="rgb(248,12,44)" rx="2" ry="2" />
<text x="800.91" y="1007.5" ></text>
</g>
<g >
<title>caml_call_gc (806 samples, 0.03%)</title><rect x="595.3" y="1333" width="0.4" height="15.0" fill="rgb(207,58,43)" rx="2" ry="2" />
<text x="598.28" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (817 samples, 0.04%)</title><rect x="697.5" y="949" width="0.5" height="15.0" fill="rgb(237,9,38)" rx="2" ry="2" />
<text x="700.55" y="959.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (367 samples, 0.02%)</title><rect x="701.1" y="949" width="0.2" height="15.0" fill="rgb(251,188,35)" rx="2" ry="2" />
<text x="704.08" y="959.5" ></text>
</g>
<g >
<title>double_jacobian_default (1,870 samples, 0.08%)</title><rect x="817.0" y="213" width="0.9" height="15.0" fill="rgb(238,115,24)" rx="2" ry="2" />
<text x="819.97" y="223.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (247 samples, 0.01%)</title><rect x="554.9" y="1253" width="0.1" height="15.0" fill="rgb(226,3,23)" rx="2" ry="2" />
<text x="557.92" y="1263.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (468 samples, 0.02%)</title><rect x="111.8" y="1461" width="0.3" height="15.0" fill="rgb(224,19,52)" rx="2" ry="2" />
<text x="114.81" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,148 samples, 0.05%)</title><rect x="367.9" y="1269" width="0.6" height="15.0" fill="rgb(221,208,32)" rx="2" ry="2" />
<text x="370.91" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (226 samples, 0.01%)</title><rect x="1114.0" y="1173" width="0.1" height="15.0" fill="rgb(250,94,41)" rx="2" ry="2" />
<text x="1117.03" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,667 samples, 0.07%)</title><rect x="616.0" y="1237" width="0.9" height="15.0" fill="rgb(250,224,49)" rx="2" ry="2" />
<text x="619.00" y="1247.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,217 samples, 0.05%)</title><rect x="182.2" y="1301" width="0.7" height="15.0" fill="rgb(234,222,40)" rx="2" ry="2" />
<text x="185.24" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (3,392 samples, 0.15%)</title><rect x="551.3" y="1237" width="1.7" height="15.0" fill="rgb(218,135,26)" rx="2" ry="2" />
<text x="554.26" y="1247.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (773 samples, 0.03%)</title><rect x="94.1" y="1493" width="0.4" height="15.0" fill="rgb(241,173,52)" rx="2" ry="2" />
<text x="97.15" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_869 (404 samples, 0.02%)</title><rect x="703.4" y="981" width="0.2" height="15.0" fill="rgb(223,12,2)" rx="2" ry="2" />
<text x="706.42" y="991.5" ></text>
</g>
<g >
<title>mark_slice (645 samples, 0.03%)</title><rect x="1003.6" y="1157" width="0.3" height="15.0" fill="rgb(226,82,53)" rx="2" ry="2" />
<text x="1006.57" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (362 samples, 0.02%)</title><rect x="210.2" y="1301" width="0.2" height="15.0" fill="rgb(231,186,43)" rx="2" ry="2" />
<text x="213.23" y="1311.5" ></text>
</g>
<g >
<title>caml_string_equal (282 samples, 0.01%)</title><rect x="584.3" y="1317" width="0.2" height="15.0" fill="rgb(211,98,3)" rx="2" ry="2" />
<text x="587.33" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (464 samples, 0.02%)</title><rect x="192.3" y="1013" width="0.2" height="15.0" fill="rgb(238,8,14)" rx="2" ry="2" />
<text x="195.31" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (4,745 samples, 0.21%)</title><rect x="268.9" y="1429" width="2.4" height="15.0" fill="rgb(210,141,32)" rx="2" ry="2" />
<text x="271.89" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (374 samples, 0.02%)</title><rect x="241.2" y="1349" width="0.2" height="15.0" fill="rgb(224,207,48)" rx="2" ry="2" />
<text x="244.21" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (306 samples, 0.01%)</title><rect x="222.5" y="1333" width="0.2" height="15.0" fill="rgb(241,82,14)" rx="2" ry="2" />
<text x="225.52" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (209 samples, 0.01%)</title><rect x="767.0" y="1077" width="0.1" height="15.0" fill="rgb(236,42,19)" rx="2" ry="2" />
<text x="769.96" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (320 samples, 0.01%)</title><rect x="854.8" y="981" width="0.2" height="15.0" fill="rgb(211,100,43)" rx="2" ry="2" />
<text x="857.81" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (726 samples, 0.03%)</title><rect x="523.0" y="1269" width="0.3" height="15.0" fill="rgb(206,149,45)" rx="2" ry="2" />
<text x="525.95" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (318 samples, 0.01%)</title><rect x="1135.5" y="1013" width="0.2" height="15.0" fill="rgb(214,195,26)" rx="2" ry="2" />
<text x="1138.52" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (582 samples, 0.03%)</title><rect x="553.4" y="1237" width="0.3" height="15.0" fill="rgb(225,184,20)" rx="2" ry="2" />
<text x="556.37" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,249 samples, 0.05%)</title><rect x="517.2" y="1237" width="0.7" height="15.0" fill="rgb(234,183,5)" rx="2" ry="2" />
<text x="520.22" y="1247.5" ></text>
</g>
<g >
<title>caml_compact_heap (1,450 samples, 0.06%)</title><rect x="1002.8" y="1189" width="0.8" height="15.0" fill="rgb(247,199,51)" rx="2" ry="2" />
<text x="1005.83" y="1199.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (404 samples, 0.02%)</title><rect x="1100.1" y="69" width="0.2" height="15.0" fill="rgb(210,172,13)" rx="2" ry="2" />
<text x="1103.08" y="79.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,475 samples, 0.11%)</title><rect x="516.6" y="1253" width="1.3" height="15.0" fill="rgb(223,54,27)" rx="2" ry="2" />
<text x="519.59" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (663 samples, 0.03%)</title><rect x="737.1" y="1045" width="0.3" height="15.0" fill="rgb(219,38,51)" rx="2" ry="2" />
<text x="740.11" y="1055.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,966 samples, 0.09%)</title><rect x="186.4" y="1381" width="1.0" height="15.0" fill="rgb(242,115,8)" rx="2" ry="2" />
<text x="189.36" y="1391.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (219 samples, 0.01%)</title><rect x="1022.0" y="1285" width="0.1" height="15.0" fill="rgb(212,156,23)" rx="2" ry="2" />
<text x="1024.96" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6835 (402 samples, 0.02%)</title><rect x="836.4" y="501" width="0.2" height="15.0" fill="rgb(209,67,15)" rx="2" ry="2" />
<text x="839.39" y="511.5" ></text>
</g>
<g >
<title>caml_call_gc (538 samples, 0.02%)</title><rect x="169.7" y="1365" width="0.3" height="15.0" fill="rgb(252,30,54)" rx="2" ry="2" />
<text x="172.72" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (36,261 samples, 1.57%)</title><rect x="1094.5" y="773" width="18.6" height="15.0" fill="rgb(216,16,25)" rx="2" ry="2" />
<text x="1097.53" y="783.5" ></text>
</g>
<g >
<title>caml_garbage_collection (968 samples, 0.04%)</title><rect x="267.2" y="1381" width="0.5" height="15.0" fill="rgb(231,165,50)" rx="2" ry="2" />
<text x="270.18" y="1391.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (464 samples, 0.02%)</title><rect x="249.1" y="1349" width="0.2" height="15.0" fill="rgb(214,20,26)" rx="2" ry="2" />
<text x="252.06" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (232 samples, 0.01%)</title><rect x="489.3" y="1205" width="0.1" height="15.0" fill="rgb(213,46,15)" rx="2" ry="2" />
<text x="492.28" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (1,840 samples, 0.08%)</title><rect x="377.6" y="1365" width="0.9" height="15.0" fill="rgb(230,116,48)" rx="2" ry="2" />
<text x="380.61" y="1375.5" ></text>
</g>
<g >
<title>sweep_slice (447 samples, 0.02%)</title><rect x="143.8" y="1381" width="0.2" height="15.0" fill="rgb(242,120,13)" rx="2" ry="2" />
<text x="146.81" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (1,264 samples, 0.05%)</title><rect x="225.0" y="1333" width="0.6" height="15.0" fill="rgb(242,131,18)" rx="2" ry="2" />
<text x="227.96" y="1343.5" ></text>
</g>
<g >
<title>camlLogs__kmsg_inner_1967 (495 samples, 0.02%)</title><rect x="146.5" y="1461" width="0.2" height="15.0" fill="rgb(208,173,19)" rx="2" ry="2" />
<text x="149.48" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,623 samples, 0.07%)</title><rect x="1119.6" y="965" width="0.8" height="15.0" fill="rgb(240,43,33)" rx="2" ry="2" />
<text x="1122.60" y="975.5" ></text>
</g>
<g >
<title>uECC_vli_mult (620 samples, 0.03%)</title><rect x="1095.1" y="53" width="0.3" height="15.0" fill="rgb(224,160,47)" rx="2" ry="2" />
<text x="1098.10" y="63.5" ></text>
</g>
<g >
<title>caml_tuplify2 (1,042 samples, 0.05%)</title><rect x="279.1" y="1445" width="0.5" height="15.0" fill="rgb(214,168,8)" rx="2" ry="2" />
<text x="282.10" y="1455.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (294 samples, 0.01%)</title><rect x="234.6" y="1285" width="0.1" height="15.0" fill="rgb(218,84,14)" rx="2" ry="2" />
<text x="237.57" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (206 samples, 0.01%)</title><rect x="725.7" y="1141" width="0.1" height="15.0" fill="rgb(213,130,22)" rx="2" ry="2" />
<text x="728.72" y="1151.5" ></text>
</g>
<g >
<title>uECC_verify_stub (4,110 samples, 0.18%)</title><rect x="816.1" y="245" width="2.1" height="15.0" fill="rgb(229,133,26)" rx="2" ry="2" />
<text x="819.08" y="255.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (571 samples, 0.02%)</title><rect x="79.6" y="1525" width="0.3" height="15.0" fill="rgb(226,54,52)" rx="2" ry="2" />
<text x="82.61" y="1535.5" ></text>
</g>
<g >
<title>mark_slice (922 samples, 0.04%)</title><rect x="274.5" y="1381" width="0.5" height="15.0" fill="rgb(227,174,40)" rx="2" ry="2" />
<text x="277.50" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (11,115 samples, 0.48%)</title><rect x="625.0" y="1061" width="5.7" height="15.0" fill="rgb(221,88,41)" rx="2" ry="2" />
<text x="628.01" y="1071.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (1,379 samples, 0.06%)</title><rect x="1162.7" y="677" width="0.7" height="15.0" fill="rgb(237,133,34)" rx="2" ry="2" />
<text x="1165.73" y="687.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (790 samples, 0.03%)</title><rect x="1000.1" y="1189" width="0.4" height="15.0" fill="rgb(208,195,39)" rx="2" ry="2" />
<text x="1003.11" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,418 samples, 0.06%)</title><rect x="619.9" y="1109" width="0.7" height="15.0" fill="rgb(244,30,3)" rx="2" ry="2" />
<text x="622.88" y="1119.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (439 samples, 0.02%)</title><rect x="218.1" y="1269" width="0.2" height="15.0" fill="rgb(250,32,49)" rx="2" ry="2" />
<text x="221.06" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (240 samples, 0.01%)</title><rect x="552.9" y="1221" width="0.1" height="15.0" fill="rgb(235,214,0)" rx="2" ry="2" />
<text x="555.87" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (423 samples, 0.02%)</title><rect x="1119.9" y="933" width="0.2" height="15.0" fill="rgb(231,180,16)" rx="2" ry="2" />
<text x="1122.89" y="943.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (793 samples, 0.03%)</title><rect x="600.0" y="1237" width="0.4" height="15.0" fill="rgb(231,143,27)" rx="2" ry="2" />
<text x="602.98" y="1247.5" ></text>
</g>
<g >
<title>double_jacobian_default (562 samples, 0.02%)</title><rect x="669.7" y="197" width="0.3" height="15.0" fill="rgb(207,159,23)" rx="2" ry="2" />
<text x="672.71" y="207.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (235 samples, 0.01%)</title><rect x="595.0" y="1301" width="0.1" height="15.0" fill="rgb(218,136,16)" rx="2" ry="2" />
<text x="598.03" y="1311.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (232 samples, 0.01%)</title><rect x="767.1" y="1109" width="0.1" height="15.0" fill="rgb(251,188,53)" rx="2" ry="2" />
<text x="770.13" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (575 samples, 0.02%)</title><rect x="334.6" y="1381" width="0.2" height="15.0" fill="rgb(213,135,27)" rx="2" ry="2" />
<text x="337.56" y="1391.5" ></text>
</g>
<g >
<title>caml_alloc_shr (237 samples, 0.01%)</title><rect x="275.8" y="1349" width="0.1" height="15.0" fill="rgb(205,15,3)" rx="2" ry="2" />
<text x="278.82" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (198 samples, 0.01%)</title><rect x="611.5" y="1125" width="0.1" height="15.0" fill="rgb(207,150,10)" rx="2" ry="2" />
<text x="614.45" y="1135.5" ></text>
</g>
<g >
<title>__GI___select (5,177 samples, 0.22%)</title><rect x="975.9" y="1461" width="2.6" height="15.0" fill="rgb(228,51,7)" rx="2" ry="2" />
<text x="978.90" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (282 samples, 0.01%)</title><rect x="1074.1" y="981" width="0.2" height="15.0" fill="rgb(248,132,5)" rx="2" ry="2" />
<text x="1077.13" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,436 samples, 0.06%)</title><rect x="243.6" y="1365" width="0.7" height="15.0" fill="rgb(244,51,13)" rx="2" ry="2" />
<text x="246.56" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (288 samples, 0.01%)</title><rect x="583.7" y="1301" width="0.2" height="15.0" fill="rgb(254,26,45)" rx="2" ry="2" />
<text x="586.72" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (2,675 samples, 0.12%)</title><rect x="1082.7" y="1205" width="1.4" height="15.0" fill="rgb(235,54,11)" rx="2" ry="2" />
<text x="1085.71" y="1215.5" ></text>
</g>
<g >
<title>muladd (229 samples, 0.01%)</title><rect x="1145.1" y="101" width="0.1" height="15.0" fill="rgb(226,228,17)" rx="2" ry="2" />
<text x="1148.11" y="111.5" ></text>
</g>
<g >
<title>XYcZ_add (7,561 samples, 0.33%)</title><rect x="639.7" y="165" width="3.8" height="15.0" fill="rgb(227,150,13)" rx="2" ry="2" />
<text x="642.67" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (438 samples, 0.02%)</title><rect x="578.8" y="1221" width="0.3" height="15.0" fill="rgb(224,35,19)" rx="2" ry="2" />
<text x="581.85" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (934 samples, 0.04%)</title><rect x="524.1" y="1317" width="0.5" height="15.0" fill="rgb(242,183,5)" rx="2" ry="2" />
<text x="527.08" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,060 samples, 0.09%)</title><rect x="372.0" y="1333" width="1.0" height="15.0" fill="rgb(249,133,1)" rx="2" ry="2" />
<text x="374.96" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (240 samples, 0.01%)</title><rect x="1083.3" y="1093" width="0.1" height="15.0" fill="rgb(227,38,48)" rx="2" ry="2" />
<text x="1086.29" y="1103.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (217 samples, 0.01%)</title><rect x="724.9" y="1141" width="0.1" height="15.0" fill="rgb(209,204,40)" rx="2" ry="2" />
<text x="727.86" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (223 samples, 0.01%)</title><rect x="583.7" y="1285" width="0.2" height="15.0" fill="rgb(232,204,13)" rx="2" ry="2" />
<text x="586.75" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (855 samples, 0.04%)</title><rect x="589.3" y="1301" width="0.4" height="15.0" fill="rgb(252,216,11)" rx="2" ry="2" />
<text x="592.29" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (274 samples, 0.01%)</title><rect x="1043.0" y="1365" width="0.1" height="15.0" fill="rgb(234,205,41)" rx="2" ry="2" />
<text x="1045.98" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (1,690 samples, 0.07%)</title><rect x="814.5" y="1125" width="0.8" height="15.0" fill="rgb(232,10,3)" rx="2" ry="2" />
<text x="817.46" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (30,754 samples, 1.33%)</title><rect x="528.5" y="1301" width="15.7" height="15.0" fill="rgb(247,154,39)" rx="2" ry="2" />
<text x="531.48" y="1311.5" ></text>
</g>
<g >
<title>invert_pointer_at (308 samples, 0.01%)</title><rect x="1003.3" y="1157" width="0.2" height="15.0" fill="rgb(242,124,35)" rx="2" ry="2" />
<text x="1006.34" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (851 samples, 0.04%)</title><rect x="441.0" y="1365" width="0.4" height="15.0" fill="rgb(215,221,14)" rx="2" ry="2" />
<text x="443.98" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (698 samples, 0.03%)</title><rect x="256.1" y="1397" width="0.4" height="15.0" fill="rgb(243,65,36)" rx="2" ry="2" />
<text x="259.11" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (196 samples, 0.01%)</title><rect x="694.9" y="933" width="0.1" height="15.0" fill="rgb(230,181,50)" rx="2" ry="2" />
<text x="697.88" y="943.5" ></text>
</g>
<g >
<title>caml_copy_int64 (548 samples, 0.02%)</title><rect x="170.4" y="1349" width="0.2" height="15.0" fill="rgb(238,60,5)" rx="2" ry="2" />
<text x="173.36" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (389 samples, 0.02%)</title><rect x="1120.2" y="917" width="0.2" height="15.0" fill="rgb(226,206,18)" rx="2" ry="2" />
<text x="1123.22" y="927.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,801 samples, 1.55%)</title><rect x="1094.5" y="357" width="18.3" height="15.0" fill="rgb(217,54,43)" rx="2" ry="2" />
<text x="1097.53" y="367.5" ></text>
</g>
<g >
<title>caml_garbage_collection (379 samples, 0.02%)</title><rect x="550.9" y="1205" width="0.2" height="15.0" fill="rgb(242,78,25)" rx="2" ry="2" />
<text x="553.90" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (213 samples, 0.01%)</title><rect x="301.1" y="1397" width="0.1" height="15.0" fill="rgb(206,35,0)" rx="2" ry="2" />
<text x="304.12" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (317 samples, 0.01%)</title><rect x="233.4" y="1285" width="0.1" height="15.0" fill="rgb(206,75,54)" rx="2" ry="2" />
<text x="236.38" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,081 samples, 0.05%)</title><rect x="564.0" y="1237" width="0.6" height="15.0" fill="rgb(229,116,34)" rx="2" ry="2" />
<text x="567.02" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (9,329 samples, 0.40%)</title><rect x="428.5" y="1413" width="4.8" height="15.0" fill="rgb(214,223,17)" rx="2" ry="2" />
<text x="431.53" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (23,206 samples, 1.01%)</title><rect x="815.7" y="517" width="11.9" height="15.0" fill="rgb(233,190,47)" rx="2" ry="2" />
<text x="818.72" y="527.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (1,817 samples, 0.08%)</title><rect x="351.8" y="1381" width="1.0" height="15.0" fill="rgb(239,57,36)" rx="2" ry="2" />
<text x="354.83" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (2,843 samples, 0.12%)</title><rect x="541.8" y="1205" width="1.5" height="15.0" fill="rgb(226,110,27)" rx="2" ry="2" />
<text x="544.84" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (354 samples, 0.02%)</title><rect x="535.4" y="1109" width="0.2" height="15.0" fill="rgb(250,6,32)" rx="2" ry="2" />
<text x="538.38" y="1119.5" ></text>
</g>
<g >
<title>double_jacobian_default (4,249 samples, 0.18%)</title><rect x="1154.3" y="181" width="2.2" height="15.0" fill="rgb(212,2,54)" rx="2" ry="2" />
<text x="1157.29" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (217 samples, 0.01%)</title><rect x="392.8" y="1397" width="0.1" height="15.0" fill="rgb(243,214,31)" rx="2" ry="2" />
<text x="395.76" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (1,573 samples, 0.07%)</title><rect x="185.5" y="1349" width="0.8" height="15.0" fill="rgb(254,97,43)" rx="2" ry="2" />
<text x="188.54" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (72,229 samples, 3.13%)</title><rect x="1129.4" y="1125" width="36.9" height="15.0" fill="rgb(254,17,0)" rx="2" ry="2" />
<text x="1132.40" y="1135.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (205 samples, 0.01%)</title><rect x="555.6" y="1253" width="0.1" height="15.0" fill="rgb(248,142,49)" rx="2" ry="2" />
<text x="558.62" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (199 samples, 0.01%)</title><rect x="531.3" y="1077" width="0.1" height="15.0" fill="rgb(210,13,34)" rx="2" ry="2" />
<text x="534.29" y="1087.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (310 samples, 0.01%)</title><rect x="377.6" y="1333" width="0.2" height="15.0" fill="rgb(232,200,3)" rx="2" ry="2" />
<text x="380.61" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_457 (473 samples, 0.02%)</title><rect x="1128.2" y="1093" width="0.2" height="15.0" fill="rgb(238,116,17)" rx="2" ry="2" />
<text x="1131.18" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (460 samples, 0.02%)</title><rect x="993.4" y="1333" width="0.2" height="15.0" fill="rgb(231,132,10)" rx="2" ry="2" />
<text x="996.38" y="1343.5" ></text>
</g>
<g >
<title>blake2b_compress (426 samples, 0.02%)</title><rect x="1079.0" y="1173" width="0.2" height="15.0" fill="rgb(218,221,31)" rx="2" ry="2" />
<text x="1081.98" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (232 samples, 0.01%)</title><rect x="1119.3" y="869" width="0.1" height="15.0" fill="rgb(231,174,23)" rx="2" ry="2" />
<text x="1122.26" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (770 samples, 0.03%)</title><rect x="1067.0" y="1221" width="0.4" height="15.0" fill="rgb(244,32,27)" rx="2" ry="2" />
<text x="1070.00" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (241 samples, 0.01%)</title><rect x="1077.7" y="1093" width="0.1" height="15.0" fill="rgb(211,210,3)" rx="2" ry="2" />
<text x="1080.65" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (242 samples, 0.01%)</title><rect x="495.0" y="1237" width="0.2" height="15.0" fill="rgb(231,35,40)" rx="2" ry="2" />
<text x="498.05" y="1247.5" ></text>
</g>
<g >
<title>XYcZ_add (3,372 samples, 0.15%)</title><rect x="1106.0" y="117" width="1.8" height="15.0" fill="rgb(206,184,12)" rx="2" ry="2" />
<text x="1109.03" y="127.5" ></text>
</g>
<g >
<title>caml_fl_add_blocks (220 samples, 0.01%)</title><rect x="154.3" y="1381" width="0.1" height="15.0" fill="rgb(235,213,51)" rx="2" ry="2" />
<text x="157.31" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_mult (861 samples, 0.04%)</title><rect x="823.1" y="213" width="0.5" height="15.0" fill="rgb(221,1,8)" rx="2" ry="2" />
<text x="826.14" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (1,562 samples, 0.07%)</title><rect x="202.7" y="1365" width="0.8" height="15.0" fill="rgb(207,157,15)" rx="2" ry="2" />
<text x="205.70" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (987 samples, 0.04%)</title><rect x="462.6" y="1333" width="0.5" height="15.0" fill="rgb(243,174,40)" rx="2" ry="2" />
<text x="465.59" y="1343.5" ></text>
</g>
<g >
<title>muladd (1,289 samples, 0.06%)</title><rect x="1102.1" y="53" width="0.7" height="15.0" fill="rgb(228,194,25)" rx="2" ry="2" />
<text x="1105.14" y="63.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (237 samples, 0.01%)</title><rect x="432.6" y="1285" width="0.1" height="15.0" fill="rgb(253,113,16)" rx="2" ry="2" />
<text x="435.57" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (4,840 samples, 0.21%)</title><rect x="468.7" y="1365" width="2.5" height="15.0" fill="rgb(246,183,4)" rx="2" ry="2" />
<text x="471.70" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,638 samples, 0.07%)</title><rect x="620.8" y="1285" width="0.9" height="15.0" fill="rgb(227,221,40)" rx="2" ry="2" />
<text x="623.82" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (488 samples, 0.02%)</title><rect x="327.4" y="1317" width="0.2" height="15.0" fill="rgb(244,184,2)" rx="2" ry="2" />
<text x="330.37" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (524 samples, 0.02%)</title><rect x="783.5" y="1109" width="0.2" height="15.0" fill="rgb(228,214,48)" rx="2" ry="2" />
<text x="786.46" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (54,572 samples, 2.36%)</title><rect x="1085.5" y="1109" width="27.9" height="15.0" fill="rgb(235,148,45)" rx="2" ry="2" />
<text x="1088.54" y="1119.5" >c..</text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (80,697 samples, 3.50%)</title><rect x="631.2" y="1013" width="41.3" height="15.0" fill="rgb(253,57,30)" rx="2" ry="2" />
<text x="634.22" y="1023.5" >cam..</text>
</g>
<g >
<title>caml_major_collection_slice (581 samples, 0.03%)</title><rect x="677.3" y="1221" width="0.3" height="15.0" fill="rgb(246,53,14)" rx="2" ry="2" />
<text x="680.30" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (728 samples, 0.03%)</title><rect x="1171.0" y="917" width="0.4" height="15.0" fill="rgb(250,164,38)" rx="2" ry="2" />
<text x="1173.99" y="927.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (831 samples, 0.04%)</title><rect x="1018.0" y="1333" width="0.4" height="15.0" fill="rgb(215,205,26)" rx="2" ry="2" />
<text x="1021.01" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (3,447 samples, 0.15%)</title><rect x="536.1" y="1141" width="1.8" height="15.0" fill="rgb(224,160,26)" rx="2" ry="2" />
<text x="539.09" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (386 samples, 0.02%)</title><rect x="716.7" y="1077" width="0.2" height="15.0" fill="rgb(236,151,46)" rx="2" ry="2" />
<text x="719.68" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (221 samples, 0.01%)</title><rect x="871.4" y="869" width="0.2" height="15.0" fill="rgb(212,213,3)" rx="2" ry="2" />
<text x="874.44" y="879.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,866 samples, 0.12%)</title><rect x="191.1" y="1189" width="1.5" height="15.0" fill="rgb(224,198,49)" rx="2" ry="2" />
<text x="194.10" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (2,279 samples, 0.10%)</title><rect x="685.6" y="1077" width="1.2" height="15.0" fill="rgb(254,10,52)" rx="2" ry="2" />
<text x="688.63" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,453 samples, 0.06%)</title><rect x="265.6" y="1381" width="0.7" height="15.0" fill="rgb(217,53,19)" rx="2" ry="2" />
<text x="268.60" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (524 samples, 0.02%)</title><rect x="184.7" y="1349" width="0.3" height="15.0" fill="rgb(250,89,19)" rx="2" ry="2" />
<text x="187.71" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (589 samples, 0.03%)</title><rect x="328.3" y="1429" width="0.3" height="15.0" fill="rgb(245,133,22)" rx="2" ry="2" />
<text x="331.28" y="1439.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (533 samples, 0.02%)</title><rect x="585.1" y="1301" width="0.3" height="15.0" fill="rgb(253,162,20)" rx="2" ry="2" />
<text x="588.09" y="1311.5" ></text>
</g>
<g >
<title>__lseek64 (788 samples, 0.03%)</title><rect x="541.1" y="1141" width="0.4" height="15.0" fill="rgb(244,47,24)" rx="2" ry="2" />
<text x="544.07" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (1,724 samples, 0.07%)</title><rect x="1087.9" y="901" width="0.9" height="15.0" fill="rgb(220,182,10)" rx="2" ry="2" />
<text x="1090.95" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (792 samples, 0.03%)</title><rect x="804.9" y="1013" width="0.4" height="15.0" fill="rgb(213,202,45)" rx="2" ry="2" />
<text x="807.85" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,363 samples, 0.06%)</title><rect x="548.1" y="1301" width="0.7" height="15.0" fill="rgb(252,29,43)" rx="2" ry="2" />
<text x="551.10" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (369 samples, 0.02%)</title><rect x="717.3" y="1013" width="0.2" height="15.0" fill="rgb(225,128,22)" rx="2" ry="2" />
<text x="720.35" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (380 samples, 0.02%)</title><rect x="765.1" y="1077" width="0.2" height="15.0" fill="rgb(249,132,19)" rx="2" ry="2" />
<text x="768.06" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_square (231 samples, 0.01%)</title><rect x="1154.1" y="149" width="0.1" height="15.0" fill="rgb(240,149,10)" rx="2" ry="2" />
<text x="1157.11" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14232 (1,135 samples, 0.05%)</title><rect x="594.6" y="1349" width="0.5" height="15.0" fill="rgb(221,109,14)" rx="2" ry="2" />
<text x="597.57" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (333 samples, 0.01%)</title><rect x="791.8" y="1013" width="0.2" height="15.0" fill="rgb(235,115,4)" rx="2" ry="2" />
<text x="794.79" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__prim_615 (1,010 samples, 0.04%)</title><rect x="358.6" y="1365" width="0.5" height="15.0" fill="rgb(212,77,17)" rx="2" ry="2" />
<text x="361.61" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,001 samples, 0.04%)</title><rect x="440.9" y="1381" width="0.5" height="15.0" fill="rgb(234,41,8)" rx="2" ry="2" />
<text x="443.91" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (271 samples, 0.01%)</title><rect x="435.6" y="1413" width="0.1" height="15.0" fill="rgb(245,187,6)" rx="2" ry="2" />
<text x="438.55" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (975 samples, 0.04%)</title><rect x="623.2" y="1029" width="0.5" height="15.0" fill="rgb(227,49,8)" rx="2" ry="2" />
<text x="626.25" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (1,382 samples, 0.06%)</title><rect x="294.8" y="1349" width="0.7" height="15.0" fill="rgb(230,171,19)" rx="2" ry="2" />
<text x="297.77" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (213 samples, 0.01%)</title><rect x="190.0" y="1301" width="0.1" height="15.0" fill="rgb(253,227,24)" rx="2" ry="2" />
<text x="192.98" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,308 samples, 0.06%)</title><rect x="845.4" y="1349" width="0.7" height="15.0" fill="rgb(223,78,30)" rx="2" ry="2" />
<text x="848.40" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (232 samples, 0.01%)</title><rect x="884.0" y="1237" width="0.2" height="15.0" fill="rgb(216,56,21)" rx="2" ry="2" />
<text x="887.04" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4607 (48,582 samples, 2.10%)</title><rect x="738.0" y="1157" width="24.8" height="15.0" fill="rgb(231,51,5)" rx="2" ry="2" />
<text x="741.01" y="1167.5" >c..</text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (5,596 samples, 0.24%)</title><rect x="717.7" y="1061" width="2.8" height="15.0" fill="rgb(248,199,8)" rx="2" ry="2" />
<text x="720.67" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_454 (1,546 samples, 0.07%)</title><rect x="546.0" y="1317" width="0.8" height="15.0" fill="rgb(218,51,45)" rx="2" ry="2" />
<text x="548.99" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (612 samples, 0.03%)</title><rect x="983.2" y="1461" width="0.3" height="15.0" fill="rgb(231,124,31)" rx="2" ry="2" />
<text x="986.19" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (353 samples, 0.02%)</title><rect x="220.6" y="1301" width="0.1" height="15.0" fill="rgb(236,222,3)" rx="2" ry="2" />
<text x="223.56" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,823 samples, 0.12%)</title><rect x="597.5" y="1285" width="1.4" height="15.0" fill="rgb(245,184,41)" rx="2" ry="2" />
<text x="600.50" y="1295.5" ></text>
</g>
<g >
<title>caml_mutex_lock (331 samples, 0.01%)</title><rect x="989.2" y="1381" width="0.1" height="15.0" fill="rgb(248,9,44)" rx="2" ry="2" />
<text x="992.17" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (467 samples, 0.02%)</title><rect x="1056.3" y="1061" width="0.2" height="15.0" fill="rgb(241,160,28)" rx="2" ry="2" />
<text x="1059.29" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (364 samples, 0.02%)</title><rect x="781.4" y="1093" width="0.2" height="15.0" fill="rgb(220,225,3)" rx="2" ry="2" />
<text x="784.39" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (890 samples, 0.04%)</title><rect x="188.7" y="1349" width="0.5" height="15.0" fill="rgb(209,64,18)" rx="2" ry="2" />
<text x="191.73" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (2,694 samples, 0.12%)</title><rect x="913.5" y="1429" width="1.4" height="15.0" fill="rgb(252,197,4)" rx="2" ry="2" />
<text x="916.49" y="1439.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (260 samples, 0.01%)</title><rect x="908.4" y="1381" width="0.1" height="15.0" fill="rgb(249,219,13)" rx="2" ry="2" />
<text x="911.38" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15566 (9,411 samples, 0.41%)</title><rect x="1169.3" y="965" width="4.8" height="15.0" fill="rgb(245,113,10)" rx="2" ry="2" />
<text x="1172.25" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (7,144 samples, 0.31%)</title><rect x="275.4" y="1429" width="3.7" height="15.0" fill="rgb(220,31,37)" rx="2" ry="2" />
<text x="278.45" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (312 samples, 0.01%)</title><rect x="504.6" y="1269" width="0.2" height="15.0" fill="rgb(223,172,5)" rx="2" ry="2" />
<text x="507.62" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (701 samples, 0.03%)</title><rect x="1000.2" y="1157" width="0.3" height="15.0" fill="rgb(234,125,7)" rx="2" ry="2" />
<text x="1003.15" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (1,681 samples, 0.07%)</title><rect x="812.8" y="1157" width="0.9" height="15.0" fill="rgb(222,86,6)" rx="2" ry="2" />
<text x="815.85" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,039 samples, 0.05%)</title><rect x="489.6" y="1269" width="0.6" height="15.0" fill="rgb(250,53,54)" rx="2" ry="2" />
<text x="492.62" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (491 samples, 0.02%)</title><rect x="827.0" y="245" width="0.3" height="15.0" fill="rgb(241,205,48)" rx="2" ry="2" />
<text x="830.04" y="255.5" ></text>
</g>
<g >
<title>caml_call_gc (584 samples, 0.03%)</title><rect x="501.0" y="1285" width="0.3" height="15.0" fill="rgb(249,103,40)" rx="2" ry="2" />
<text x="503.99" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (1,759 samples, 0.08%)</title><rect x="293.3" y="1317" width="0.9" height="15.0" fill="rgb(206,85,30)" rx="2" ry="2" />
<text x="296.33" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (242 samples, 0.01%)</title><rect x="836.1" y="309" width="0.1" height="15.0" fill="rgb(211,124,30)" rx="2" ry="2" />
<text x="839.11" y="319.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11900 (264 samples, 0.01%)</title><rect x="884.3" y="1109" width="0.1" height="15.0" fill="rgb(233,114,25)" rx="2" ry="2" />
<text x="887.29" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (61,630 samples, 2.67%)</title><rect x="852.7" y="1285" width="31.5" height="15.0" fill="rgb(233,223,35)" rx="2" ry="2" />
<text x="855.68" y="1295.5" >ca..</text>
</g>
<g >
<title>uECC_vli_square (3,347 samples, 0.14%)</title><rect x="663.4" y="149" width="1.7" height="15.0" fill="rgb(229,61,49)" rx="2" ry="2" />
<text x="666.36" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12007 (1,660 samples, 0.07%)</title><rect x="995.8" y="1333" width="0.9" height="15.0" fill="rgb(209,128,15)" rx="2" ry="2" />
<text x="998.81" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (269 samples, 0.01%)</title><rect x="499.7" y="1253" width="0.1" height="15.0" fill="rgb(214,221,4)" rx="2" ry="2" />
<text x="502.66" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (231 samples, 0.01%)</title><rect x="1052.9" y="1205" width="0.1" height="15.0" fill="rgb(250,186,36)" rx="2" ry="2" />
<text x="1055.92" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (2,104 samples, 0.09%)</title><rect x="775.9" y="1093" width="1.1" height="15.0" fill="rgb(218,149,4)" rx="2" ry="2" />
<text x="778.90" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14952 (210 samples, 0.01%)</title><rect x="884.5" y="1077" width="0.1" height="15.0" fill="rgb(223,126,41)" rx="2" ry="2" />
<text x="887.52" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (556 samples, 0.02%)</title><rect x="1052.8" y="1237" width="0.3" height="15.0" fill="rgb(216,94,29)" rx="2" ry="2" />
<text x="1055.85" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (255 samples, 0.01%)</title><rect x="216.5" y="1253" width="0.2" height="15.0" fill="rgb(239,100,20)" rx="2" ry="2" />
<text x="219.54" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (285 samples, 0.01%)</title><rect x="1089.6" y="901" width="0.2" height="15.0" fill="rgb(233,2,36)" rx="2" ry="2" />
<text x="1092.62" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (370 samples, 0.02%)</title><rect x="1121.6" y="917" width="0.2" height="15.0" fill="rgb(228,107,16)" rx="2" ry="2" />
<text x="1124.64" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2451 (2,609 samples, 0.11%)</title><rect x="212.8" y="1349" width="1.4" height="15.0" fill="rgb(225,156,10)" rx="2" ry="2" />
<text x="215.85" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (1,471 samples, 0.06%)</title><rect x="216.8" y="1349" width="0.7" height="15.0" fill="rgb(232,159,12)" rx="2" ry="2" />
<text x="219.75" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,451 samples, 0.06%)</title><rect x="291.5" y="1349" width="0.7" height="15.0" fill="rgb(205,54,5)" rx="2" ry="2" />
<text x="294.47" y="1359.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (595 samples, 0.03%)</title><rect x="598.9" y="1285" width="0.3" height="15.0" fill="rgb(245,201,3)" rx="2" ry="2" />
<text x="601.94" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (1,084 samples, 0.05%)</title><rect x="382.0" y="1381" width="0.6" height="15.0" fill="rgb(245,215,6)" rx="2" ry="2" />
<text x="385.01" y="1391.5" ></text>
</g>
<g >
<title>fdlist_to_fdset (4,285 samples, 0.19%)</title><rect x="94.6" y="1525" width="2.2" height="15.0" fill="rgb(240,218,8)" rx="2" ry="2" />
<text x="97.59" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (397 samples, 0.02%)</title><rect x="1069.9" y="1221" width="0.2" height="15.0" fill="rgb(227,189,49)" rx="2" ry="2" />
<text x="1072.86" y="1231.5" ></text>
</g>
<g >
<title>compare_val (339 samples, 0.01%)</title><rect x="167.2" y="1333" width="0.2" height="15.0" fill="rgb(207,32,42)" rx="2" ry="2" />
<text x="170.24" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (1,825 samples, 0.08%)</title><rect x="1062.1" y="1237" width="0.9" height="15.0" fill="rgb(253,14,29)" rx="2" ry="2" />
<text x="1065.08" y="1247.5" ></text>
</g>
<g >
<title>caml_string_equal (845 samples, 0.04%)</title><rect x="807.4" y="1045" width="0.4" height="15.0" fill="rgb(208,16,15)" rx="2" ry="2" />
<text x="810.38" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15628 (219 samples, 0.01%)</title><rect x="585.4" y="1349" width="0.1" height="15.0" fill="rgb(234,123,50)" rx="2" ry="2" />
<text x="588.37" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_mult (428 samples, 0.02%)</title><rect x="1160.9" y="165" width="0.3" height="15.0" fill="rgb(240,6,21)" rx="2" ry="2" />
<text x="1163.94" y="175.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (688 samples, 0.03%)</title><rect x="385.8" y="1381" width="0.4" height="15.0" fill="rgb(217,118,26)" rx="2" ry="2" />
<text x="388.85" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (280 samples, 0.01%)</title><rect x="999.6" y="1333" width="0.2" height="15.0" fill="rgb(223,117,25)" rx="2" ry="2" />
<text x="1002.64" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (337 samples, 0.01%)</title><rect x="1183.2" y="1413" width="0.2" height="15.0" fill="rgb(237,162,26)" rx="2" ry="2" />
<text x="1186.20" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (299 samples, 0.01%)</title><rect x="992.4" y="1397" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="995.45" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,593 samples, 0.11%)</title><rect x="293.1" y="1349" width="1.3" height="15.0" fill="rgb(209,21,1)" rx="2" ry="2" />
<text x="296.12" y="1359.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (878 samples, 0.04%)</title><rect x="93.4" y="1509" width="0.5" height="15.0" fill="rgb(239,74,25)" rx="2" ry="2" />
<text x="96.45" y="1519.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,246 samples, 0.05%)</title><rect x="915.3" y="1413" width="0.6" height="15.0" fill="rgb(206,159,50)" rx="2" ry="2" />
<text x="918.25" y="1423.5" ></text>
</g>
<g >
<title>alloc_custom_gen (547 samples, 0.02%)</title><rect x="170.4" y="1333" width="0.2" height="15.0" fill="rgb(206,25,48)" rx="2" ry="2" />
<text x="173.36" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (950 samples, 0.04%)</title><rect x="797.6" y="1061" width="0.5" height="15.0" fill="rgb(207,84,2)" rx="2" ry="2" />
<text x="800.61" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (1,810 samples, 0.08%)</title><rect x="492.6" y="1221" width="0.9" height="15.0" fill="rgb(228,201,30)" rx="2" ry="2" />
<text x="495.60" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2666 (369 samples, 0.02%)</title><rect x="251.9" y="1429" width="0.1" height="15.0" fill="rgb(248,182,17)" rx="2" ry="2" />
<text x="254.85" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (365 samples, 0.02%)</title><rect x="193.0" y="1429" width="0.1" height="15.0" fill="rgb(233,141,24)" rx="2" ry="2" />
<text x="195.96" y="1439.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (4,321 samples, 0.19%)</title><rect x="585.7" y="1301" width="2.2" height="15.0" fill="rgb(227,67,40)" rx="2" ry="2" />
<text x="588.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2666 (203 samples, 0.01%)</title><rect x="231.9" y="1397" width="0.1" height="15.0" fill="rgb(223,168,26)" rx="2" ry="2" />
<text x="234.89" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (298 samples, 0.01%)</title><rect x="594.0" y="1301" width="0.2" height="15.0" fill="rgb(226,118,3)" rx="2" ry="2" />
<text x="597.03" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (307 samples, 0.01%)</title><rect x="689.6" y="1045" width="0.1" height="15.0" fill="rgb(248,93,16)" rx="2" ry="2" />
<text x="692.57" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (388 samples, 0.02%)</title><rect x="518.8" y="1333" width="0.2" height="15.0" fill="rgb(215,58,41)" rx="2" ry="2" />
<text x="521.79" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,358 samples, 0.06%)</title><rect x="200.0" y="1381" width="0.7" height="15.0" fill="rgb(244,55,43)" rx="2" ry="2" />
<text x="203.00" y="1391.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (1,080 samples, 0.05%)</title><rect x="254.4" y="1349" width="0.6" height="15.0" fill="rgb(230,140,22)" rx="2" ry="2" />
<text x="257.42" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (410 samples, 0.02%)</title><rect x="574.2" y="1269" width="0.2" height="15.0" fill="rgb(252,45,27)" rx="2" ry="2" />
<text x="577.16" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,009 samples, 0.04%)</title><rect x="211.6" y="1317" width="0.6" height="15.0" fill="rgb(236,12,35)" rx="2" ry="2" />
<text x="214.64" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (80,686 samples, 3.50%)</title><rect x="631.2" y="965" width="41.3" height="15.0" fill="rgb(247,167,27)" rx="2" ry="2" />
<text x="634.22" y="975.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (696 samples, 0.03%)</title><rect x="1178.0" y="885" width="0.4" height="15.0" fill="rgb(227,14,38)" rx="2" ry="2" />
<text x="1181.00" y="895.5" ></text>
</g>
<g >
<title>uECC_vli_mult (374 samples, 0.02%)</title><rect x="1158.2" y="149" width="0.2" height="15.0" fill="rgb(228,85,50)" rx="2" ry="2" />
<text x="1161.20" y="159.5" ></text>
</g>
<g >
<title>caml_hash (1,253 samples, 0.05%)</title><rect x="1134.4" y="981" width="0.6" height="15.0" fill="rgb(217,203,4)" rx="2" ry="2" />
<text x="1137.37" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,322 samples, 0.19%)</title><rect x="894.7" y="1413" width="2.2" height="15.0" fill="rgb(247,102,5)" rx="2" ry="2" />
<text x="897.67" y="1423.5" ></text>
</g>
<g >
<title>unix_lseek_64 (2,554 samples, 0.11%)</title><rect x="693.4" y="981" width="1.3" height="15.0" fill="rgb(238,19,31)" rx="2" ry="2" />
<text x="696.36" y="991.5" ></text>
</g>
<g >
<title>caml_string_compare (305 samples, 0.01%)</title><rect x="683.6" y="1061" width="0.1" height="15.0" fill="rgb(246,54,19)" rx="2" ry="2" />
<text x="686.59" y="1071.5" ></text>
</g>
<g >
<title>caml_oldify_one (371 samples, 0.02%)</title><rect x="887.5" y="1285" width="0.2" height="15.0" fill="rgb(216,130,32)" rx="2" ry="2" />
<text x="890.52" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (976 samples, 0.04%)</title><rect x="554.8" y="1285" width="0.5" height="15.0" fill="rgb(225,198,40)" rx="2" ry="2" />
<text x="557.80" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (875 samples, 0.04%)</title><rect x="543.4" y="1205" width="0.4" height="15.0" fill="rgb(248,71,26)" rx="2" ry="2" />
<text x="546.38" y="1215.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (244 samples, 0.01%)</title><rect x="824.1" y="213" width="0.1" height="15.0" fill="rgb(244,62,38)" rx="2" ry="2" />
<text x="827.05" y="223.5" ></text>
</g>
<g >
<title>caml_call_gc (480 samples, 0.02%)</title><rect x="709.6" y="1045" width="0.2" height="15.0" fill="rgb(214,106,0)" rx="2" ry="2" />
<text x="712.56" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (341 samples, 0.01%)</title><rect x="471.5" y="1317" width="0.2" height="15.0" fill="rgb(232,228,43)" rx="2" ry="2" />
<text x="474.50" y="1327.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (212 samples, 0.01%)</title><rect x="176.8" y="1317" width="0.1" height="15.0" fill="rgb(223,215,49)" rx="2" ry="2" />
<text x="179.77" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_115 (550 samples, 0.02%)</title><rect x="813.8" y="1141" width="0.3" height="15.0" fill="rgb(247,125,26)" rx="2" ry="2" />
<text x="816.84" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (3,820 samples, 0.17%)</title><rect x="1118.5" y="1013" width="1.9" height="15.0" fill="rgb(228,210,0)" rx="2" ry="2" />
<text x="1121.48" y="1023.5" ></text>
</g>
<g >
<title>mark_slice_darken (252 samples, 0.01%)</title><rect x="493.8" y="1157" width="0.2" height="15.0" fill="rgb(238,144,7)" rx="2" ry="2" />
<text x="496.82" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (920 samples, 0.04%)</title><rect x="712.5" y="1061" width="0.5" height="15.0" fill="rgb(245,79,38)" rx="2" ry="2" />
<text x="715.54" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (881 samples, 0.04%)</title><rect x="807.4" y="1061" width="0.4" height="15.0" fill="rgb(231,196,18)" rx="2" ry="2" />
<text x="810.36" y="1071.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (238 samples, 0.01%)</title><rect x="98.9" y="1509" width="0.1" height="15.0" fill="rgb(228,109,2)" rx="2" ry="2" />
<text x="101.93" y="1519.5" ></text>
</g>
<g >
<title>uECC_vli_square (296 samples, 0.01%)</title><rect x="1095.6" y="53" width="0.2" height="15.0" fill="rgb(232,166,44)" rx="2" ry="2" />
<text x="1098.61" y="63.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (270 samples, 0.01%)</title><rect x="574.6" y="1253" width="0.1" height="15.0" fill="rgb(236,162,27)" rx="2" ry="2" />
<text x="577.61" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (226 samples, 0.01%)</title><rect x="578.9" y="1205" width="0.2" height="15.0" fill="rgb(240,168,38)" rx="2" ry="2" />
<text x="581.95" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (580 samples, 0.03%)</title><rect x="1004.7" y="1333" width="0.3" height="15.0" fill="rgb(229,167,38)" rx="2" ry="2" />
<text x="1007.70" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__fun_3318 (246 samples, 0.01%)</title><rect x="380.2" y="1413" width="0.1" height="15.0" fill="rgb(240,83,34)" rx="2" ry="2" />
<text x="383.22" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (11,407 samples, 0.49%)</title><rect x="860.3" y="869" width="5.8" height="15.0" fill="rgb(210,65,42)" rx="2" ry="2" />
<text x="863.25" y="879.5" ></text>
</g>
<g >
<title>mark_slice_darken (507 samples, 0.02%)</title><rect x="839.2" y="1109" width="0.2" height="15.0" fill="rgb(240,214,33)" rx="2" ry="2" />
<text x="842.19" y="1119.5" ></text>
</g>
<g >
<title>camlData_encoding__Binary_reader__of_bytes_exn_822 (973 samples, 0.04%)</title><rect x="671.9" y="853" width="0.5" height="15.0" fill="rgb(223,57,25)" rx="2" ry="2" />
<text x="674.88" y="863.5" ></text>
</g>
<g >
<title>caml_call_gc (795 samples, 0.03%)</title><rect x="214.2" y="1365" width="0.4" height="15.0" fill="rgb(236,35,14)" rx="2" ry="2" />
<text x="217.18" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (5,393 samples, 0.23%)</title><rect x="660.6" y="165" width="2.7" height="15.0" fill="rgb(253,129,27)" rx="2" ry="2" />
<text x="663.58" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (326 samples, 0.01%)</title><rect x="1033.5" y="1381" width="0.2" height="15.0" fill="rgb(251,180,6)" rx="2" ry="2" />
<text x="1036.50" y="1391.5" ></text>
</g>
<g >
<title>muladd (252 samples, 0.01%)</title><rect x="831.3" y="213" width="0.2" height="15.0" fill="rgb(231,0,28)" rx="2" ry="2" />
<text x="834.33" y="223.5" ></text>
</g>
<g >
<title>caml_call_gc (393 samples, 0.02%)</title><rect x="1023.2" y="1365" width="0.2" height="15.0" fill="rgb(243,201,3)" rx="2" ry="2" />
<text x="1026.23" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (990 samples, 0.04%)</title><rect x="1094.6" y="133" width="0.5" height="15.0" fill="rgb(227,44,21)" rx="2" ry="2" />
<text x="1097.56" y="143.5" ></text>
</g>
<g >
<title>mark_slice (332 samples, 0.01%)</title><rect x="495.9" y="1189" width="0.2" height="15.0" fill="rgb(251,164,44)" rx="2" ry="2" />
<text x="498.94" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,801 samples, 0.08%)</title><rect x="1116.7" y="997" width="0.9" height="15.0" fill="rgb(252,29,9)" rx="2" ry="2" />
<text x="1119.72" y="1007.5" ></text>
</g>
<g >
<title>caml_apply2 (290 samples, 0.01%)</title><rect x="1006.9" y="1301" width="0.2" height="15.0" fill="rgb(237,86,10)" rx="2" ry="2" />
<text x="1009.94" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15566 (11,661 samples, 0.51%)</title><rect x="873.6" y="1093" width="6.0" height="15.0" fill="rgb(206,195,52)" rx="2" ry="2" />
<text x="876.65" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (244 samples, 0.01%)</title><rect x="554.0" y="1205" width="0.1" height="15.0" fill="rgb(233,187,27)" rx="2" ry="2" />
<text x="557.02" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (505 samples, 0.02%)</title><rect x="754.3" y="1045" width="0.2" height="15.0" fill="rgb(231,90,35)" rx="2" ry="2" />
<text x="757.27" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (454 samples, 0.02%)</title><rect x="1077.1" y="1077" width="0.3" height="15.0" fill="rgb(249,51,20)" rx="2" ry="2" />
<text x="1080.14" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (2,356 samples, 0.10%)</title><rect x="575.1" y="1205" width="1.2" height="15.0" fill="rgb(241,69,52)" rx="2" ry="2" />
<text x="578.11" y="1215.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (574 samples, 0.02%)</title><rect x="1036.9" y="1317" width="0.3" height="15.0" fill="rgb(229,79,14)" rx="2" ry="2" />
<text x="1039.90" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (694 samples, 0.03%)</title><rect x="192.6" y="1413" width="0.4" height="15.0" fill="rgb(252,64,3)" rx="2" ry="2" />
<text x="195.60" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (1,423 samples, 0.06%)</title><rect x="568.3" y="1253" width="0.7" height="15.0" fill="rgb(205,25,1)" rx="2" ry="2" />
<text x="571.29" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (3,600 samples, 0.16%)</title><rect x="668.2" y="405" width="1.9" height="15.0" fill="rgb(251,118,25)" rx="2" ry="2" />
<text x="671.24" y="415.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (531 samples, 0.02%)</title><rect x="1034.0" y="1397" width="0.3" height="15.0" fill="rgb(221,195,53)" rx="2" ry="2" />
<text x="1036.98" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (557 samples, 0.02%)</title><rect x="18.7" y="1621" width="0.3" height="15.0" fill="rgb(246,28,50)" rx="2" ry="2" />
<text x="21.69" y="1631.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,264 samples, 0.05%)</title><rect x="183.4" y="1333" width="0.7" height="15.0" fill="rgb(235,165,17)" rx="2" ry="2" />
<text x="186.40" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (75,991 samples, 3.29%)</title><rect x="631.2" y="613" width="38.9" height="15.0" fill="rgb(220,21,35)" rx="2" ry="2" />
<text x="634.24" y="623.5" >cam..</text>
</g>
<g >
<title>caml_copy_double (329 samples, 0.01%)</title><rect x="101.4" y="1541" width="0.2" height="15.0" fill="rgb(247,210,7)" rx="2" ry="2" />
<text x="104.40" y="1551.5" ></text>
</g>
<g >
<title>mark_slice (1,628 samples, 0.07%)</title><rect x="907.3" y="1349" width="0.8" height="15.0" fill="rgb(222,12,49)" rx="2" ry="2" />
<text x="910.27" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (992 samples, 0.04%)</title><rect x="193.8" y="1381" width="0.5" height="15.0" fill="rgb(215,169,44)" rx="2" ry="2" />
<text x="196.81" y="1391.5" ></text>
</g>
<g >
<title>caml_apply3 (496 samples, 0.02%)</title><rect x="187.4" y="1381" width="0.2" height="15.0" fill="rgb(248,101,17)" rx="2" ry="2" />
<text x="190.36" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,627 samples, 2.89%)</title><rect x="936.4" y="1573" width="34.1" height="15.0" fill="rgb(213,28,49)" rx="2" ry="2" />
<text x="939.43" y="1583.5" >[[..</text>
</g>
<g >
<title>uECC_vli_modInv (406 samples, 0.02%)</title><rect x="1098.0" y="85" width="0.3" height="15.0" fill="rgb(249,227,27)" rx="2" ry="2" />
<text x="1101.05" y="95.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (440 samples, 0.02%)</title><rect x="1170.7" y="869" width="0.2" height="15.0" fill="rgb(232,122,42)" rx="2" ry="2" />
<text x="1173.70" y="879.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_851 (1,093 samples, 0.05%)</title><rect x="1018.0" y="1365" width="0.5" height="15.0" fill="rgb(247,224,36)" rx="2" ry="2" />
<text x="1020.96" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (299 samples, 0.01%)</title><rect x="810.2" y="981" width="0.2" height="15.0" fill="rgb(213,165,1)" rx="2" ry="2" />
<text x="813.22" y="991.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (911 samples, 0.04%)</title><rect x="1143.9" y="181" width="0.5" height="15.0" fill="rgb(220,174,46)" rx="2" ry="2" />
<text x="1146.93" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,317 samples, 0.06%)</title><rect x="191.9" y="1077" width="0.7" height="15.0" fill="rgb(252,77,6)" rx="2" ry="2" />
<text x="194.88" y="1087.5" ></text>
</g>
<g >
<title>uECC_verify (759 samples, 0.03%)</title><rect x="668.3" y="181" width="0.4" height="15.0" fill="rgb(246,28,21)" rx="2" ry="2" />
<text x="671.29" y="191.5" ></text>
</g>
<g >
<title>caml_garbage_collection (374 samples, 0.02%)</title><rect x="772.1" y="1045" width="0.1" height="15.0" fill="rgb(221,171,19)" rx="2" ry="2" />
<text x="775.06" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (233 samples, 0.01%)</title><rect x="698.4" y="949" width="0.1" height="15.0" fill="rgb(208,129,2)" rx="2" ry="2" />
<text x="701.38" y="959.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3994 (23,126 samples, 1.00%)</title><rect x="815.7" y="357" width="11.9" height="15.0" fill="rgb(215,99,0)" rx="2" ry="2" />
<text x="818.74" y="367.5" ></text>
</g>
<g >
<title>camlLwt__iter_list_849 (644 samples, 0.03%)</title><rect x="885.2" y="1381" width="0.3" height="15.0" fill="rgb(243,173,4)" rx="2" ry="2" />
<text x="888.17" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__check_signature_3722 (580 samples, 0.03%)</title><rect x="670.6" y="693" width="0.3" height="15.0" fill="rgb(244,91,8)" rx="2" ry="2" />
<text x="673.58" y="703.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__apply_operation_5609 (11,249 samples, 0.49%)</title><rect x="827.6" y="405" width="5.7" height="15.0" fill="rgb(205,57,0)" rx="2" ry="2" />
<text x="830.59" y="415.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (619 samples, 0.03%)</title><rect x="623.9" y="1141" width="0.3" height="15.0" fill="rgb(206,104,3)" rx="2" ry="2" />
<text x="626.86" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (818 samples, 0.04%)</title><rect x="917.1" y="1429" width="0.5" height="15.0" fill="rgb(254,54,35)" rx="2" ry="2" />
<text x="920.13" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,400 samples, 0.06%)</title><rect x="1116.7" y="965" width="0.8" height="15.0" fill="rgb(217,54,1)" rx="2" ry="2" />
<text x="1119.74" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (1,051 samples, 0.05%)</title><rect x="218.9" y="1349" width="0.5" height="15.0" fill="rgb(210,147,31)" rx="2" ry="2" />
<text x="221.87" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (51,116 samples, 2.21%)</title><rect x="1087.1" y="1093" width="26.1" height="15.0" fill="rgb(220,178,13)" rx="2" ry="2" />
<text x="1090.08" y="1103.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (294 samples, 0.01%)</title><rect x="708.1" y="965" width="0.2" height="15.0" fill="rgb(222,109,44)" rx="2" ry="2" />
<text x="711.14" y="975.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (7,846 samples, 0.34%)</title><rect x="905.1" y="1429" width="4.0" height="15.0" fill="rgb(244,214,43)" rx="2" ry="2" />
<text x="908.11" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (1,336 samples, 0.06%)</title><rect x="260.9" y="1381" width="0.7" height="15.0" fill="rgb(252,90,43)" rx="2" ry="2" />
<text x="263.92" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (413 samples, 0.02%)</title><rect x="845.1" y="1301" width="0.2" height="15.0" fill="rgb(254,195,38)" rx="2" ry="2" />
<text x="848.09" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (202 samples, 0.01%)</title><rect x="616.8" y="1189" width="0.1" height="15.0" fill="rgb(233,28,6)" rx="2" ry="2" />
<text x="619.75" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (222 samples, 0.01%)</title><rect x="552.0" y="1189" width="0.2" height="15.0" fill="rgb(237,187,41)" rx="2" ry="2" />
<text x="555.04" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (506 samples, 0.02%)</title><rect x="1046.5" y="1333" width="0.3" height="15.0" fill="rgb(235,81,16)" rx="2" ry="2" />
<text x="1049.50" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,794 samples, 0.08%)</title><rect x="999.6" y="1349" width="0.9" height="15.0" fill="rgb(213,128,19)" rx="2" ry="2" />
<text x="1002.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (2,200 samples, 0.10%)</title><rect x="221.4" y="1349" width="1.1" height="15.0" fill="rgb(243,202,44)" rx="2" ry="2" />
<text x="224.35" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (943 samples, 0.04%)</title><rect x="1070.5" y="1205" width="0.5" height="15.0" fill="rgb(253,78,48)" rx="2" ry="2" />
<text x="1073.52" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,510 samples, 0.07%)</title><rect x="217.7" y="1317" width="0.7" height="15.0" fill="rgb(216,165,17)" rx="2" ry="2" />
<text x="220.68" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (75,971 samples, 3.29%)</title><rect x="631.2" y="533" width="38.9" height="15.0" fill="rgb(221,161,40)" rx="2" ry="2" />
<text x="634.25" y="543.5" >cam..</text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (3,351 samples, 0.15%)</title><rect x="1134.0" y="1029" width="1.7" height="15.0" fill="rgb(251,170,54)" rx="2" ry="2" />
<text x="1136.98" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (206 samples, 0.01%)</title><rect x="623.1" y="1045" width="0.1" height="15.0" fill="rgb(238,185,47)" rx="2" ry="2" />
<text x="626.13" y="1055.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,020 samples, 0.04%)</title><rect x="1107.1" y="101" width="0.5" height="15.0" fill="rgb(229,206,4)" rx="2" ry="2" />
<text x="1110.06" y="111.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (484 samples, 0.02%)</title><rect x="778.9" y="1093" width="0.3" height="15.0" fill="rgb(245,83,10)" rx="2" ry="2" />
<text x="781.91" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (332 samples, 0.01%)</title><rect x="709.6" y="997" width="0.2" height="15.0" fill="rgb(238,41,37)" rx="2" ry="2" />
<text x="712.60" y="1007.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (266 samples, 0.01%)</title><rect x="770.8" y="1045" width="0.2" height="15.0" fill="rgb(231,30,34)" rx="2" ry="2" />
<text x="773.83" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__finalize_1515 (417 samples, 0.02%)</title><rect x="771.1" y="1141" width="0.2" height="15.0" fill="rgb(249,184,49)" rx="2" ry="2" />
<text x="774.06" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (322 samples, 0.01%)</title><rect x="1047.0" y="1301" width="0.2" height="15.0" fill="rgb(236,165,51)" rx="2" ry="2" />
<text x="1050.03" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (227 samples, 0.01%)</title><rect x="792.8" y="997" width="0.2" height="15.0" fill="rgb(253,7,37)" rx="2" ry="2" />
<text x="795.85" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (257 samples, 0.01%)</title><rect x="767.9" y="1061" width="0.2" height="15.0" fill="rgb(219,198,27)" rx="2" ry="2" />
<text x="770.94" y="1071.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (416 samples, 0.02%)</title><rect x="1022.1" y="1333" width="0.2" height="15.0" fill="rgb(245,0,46)" rx="2" ry="2" />
<text x="1025.08" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (76,158 samples, 3.30%)</title><rect x="631.2" y="693" width="39.0" height="15.0" fill="rgb(220,33,51)" rx="2" ry="2" />
<text x="634.24" y="703.5" >cam..</text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (209 samples, 0.01%)</title><rect x="998.9" y="1237" width="0.1" height="15.0" fill="rgb(232,200,52)" rx="2" ry="2" />
<text x="1001.89" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (6,447 samples, 0.28%)</title><rect x="382.0" y="1397" width="3.3" height="15.0" fill="rgb(241,108,38)" rx="2" ry="2" />
<text x="385.01" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (440 samples, 0.02%)</title><rect x="496.9" y="1221" width="0.2" height="15.0" fill="rgb(207,7,20)" rx="2" ry="2" />
<text x="499.92" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (70,704 samples, 3.06%)</title><rect x="849.0" y="1365" width="36.2" height="15.0" fill="rgb(245,45,5)" rx="2" ry="2" />
<text x="852.03" y="1375.5" >cam..</text>
</g>
<g >
<title>caml_leave_blocking_section (519 samples, 0.02%)</title><rect x="697.0" y="933" width="0.3" height="15.0" fill="rgb(228,119,42)" rx="2" ry="2" />
<text x="700.01" y="943.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,840 samples, 0.08%)</title><rect x="377.6" y="1349" width="0.9" height="15.0" fill="rgb(224,39,54)" rx="2" ry="2" />
<text x="380.61" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (550 samples, 0.02%)</title><rect x="1077.9" y="1221" width="0.2" height="15.0" fill="rgb(205,108,11)" rx="2" ry="2" />
<text x="1080.85" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (276 samples, 0.01%)</title><rect x="391.5" y="1397" width="0.2" height="15.0" fill="rgb(209,58,7)" rx="2" ry="2" />
<text x="394.51" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2153 (1,504 samples, 0.07%)</title><rect x="240.1" y="1413" width="0.8" height="15.0" fill="rgb(234,189,26)" rx="2" ry="2" />
<text x="243.15" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (645 samples, 0.03%)</title><rect x="1122.2" y="949" width="0.3" height="15.0" fill="rgb(234,15,23)" rx="2" ry="2" />
<text x="1125.17" y="959.5" ></text>
</g>
<g >
<title>caml_apply3 (592 samples, 0.03%)</title><rect x="268.6" y="1429" width="0.3" height="15.0" fill="rgb(235,41,43)" rx="2" ry="2" />
<text x="271.59" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (268 samples, 0.01%)</title><rect x="879.8" y="1093" width="0.1" height="15.0" fill="rgb(215,116,10)" rx="2" ry="2" />
<text x="882.79" y="1103.5" ></text>
</g>
<g >
<title>caml_mutex_lock (2,969 samples, 0.13%)</title><rect x="388.1" y="1429" width="1.5" height="15.0" fill="rgb(238,130,42)" rx="2" ry="2" />
<text x="391.06" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (2,744 samples, 0.12%)</title><rect x="728.3" y="1189" width="1.4" height="15.0" fill="rgb(233,16,51)" rx="2" ry="2" />
<text x="731.30" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (977 samples, 0.04%)</title><rect x="693.5" y="949" width="0.5" height="15.0" fill="rgb(238,197,53)" rx="2" ry="2" />
<text x="696.47" y="959.5" ></text>
</g>
<g >
<title>mark_slice (197 samples, 0.01%)</title><rect x="561.3" y="1189" width="0.1" height="15.0" fill="rgb(253,152,14)" rx="2" ry="2" />
<text x="564.30" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (1,095 samples, 0.05%)</title><rect x="779.9" y="1125" width="0.6" height="15.0" fill="rgb(248,33,29)" rx="2" ry="2" />
<text x="782.94" y="1135.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (2,921 samples, 0.13%)</title><rect x="1103.4" y="85" width="1.5" height="15.0" fill="rgb(219,149,24)" rx="2" ry="2" />
<text x="1106.37" y="95.5" ></text>
</g>
<g >
<title>uECC_vli_sub (309 samples, 0.01%)</title><rect x="653.3" y="149" width="0.2" height="15.0" fill="rgb(210,20,31)" rx="2" ry="2" />
<text x="656.33" y="159.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (367 samples, 0.02%)</title><rect x="579.6" y="1253" width="0.2" height="15.0" fill="rgb(241,127,38)" rx="2" ry="2" />
<text x="582.63" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (405 samples, 0.02%)</title><rect x="140.7" y="1349" width="0.2" height="15.0" fill="rgb(217,148,50)" rx="2" ry="2" />
<text x="143.74" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,077 samples, 0.05%)</title><rect x="904.6" y="1381" width="0.5" height="15.0" fill="rgb(220,195,5)" rx="2" ry="2" />
<text x="907.56" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (17,628 samples, 0.76%)</title><rect x="609.5" y="1269" width="9.1" height="15.0" fill="rgb(214,99,44)" rx="2" ry="2" />
<text x="612.55" y="1279.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (332 samples, 0.01%)</title><rect x="327.0" y="1349" width="0.2" height="15.0" fill="rgb(225,40,3)" rx="2" ry="2" />
<text x="330.01" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (326 samples, 0.01%)</title><rect x="213.9" y="1253" width="0.2" height="15.0" fill="rgb(245,1,29)" rx="2" ry="2" />
<text x="216.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (1,527 samples, 0.07%)</title><rect x="137.0" y="1349" width="0.8" height="15.0" fill="rgb(243,0,27)" rx="2" ry="2" />
<text x="140.01" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (855,912 samples, 37.08%)</title><rect x="455.5" y="1445" width="437.5" height="15.0" fill="rgb(235,45,41)" rx="2" ry="2" />
<text x="458.45" y="1455.5" >camlLwt__iter_callback_list_848</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (1,095 samples, 0.05%)</title><rect x="243.0" y="1381" width="0.6" height="15.0" fill="rgb(209,153,3)" rx="2" ry="2" />
<text x="246.00" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_square (636 samples, 0.03%)</title><rect x="1107.1" y="85" width="0.3" height="15.0" fill="rgb(239,208,13)" rx="2" ry="2" />
<text x="1110.07" y="95.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (41,024 samples, 1.78%)</title><rect x="1143.9" y="901" width="20.9" height="15.0" fill="rgb(222,186,39)" rx="2" ry="2" />
<text x="1146.88" y="911.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (264 samples, 0.01%)</title><rect x="847.6" y="1221" width="0.1" height="15.0" fill="rgb(254,189,0)" rx="2" ry="2" />
<text x="850.61" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (2,095 samples, 0.09%)</title><rect x="1181.7" y="1429" width="1.1" height="15.0" fill="rgb(241,136,45)" rx="2" ry="2" />
<text x="1184.70" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (435 samples, 0.02%)</title><rect x="1119.6" y="901" width="0.2" height="15.0" fill="rgb(235,18,24)" rx="2" ry="2" />
<text x="1122.63" y="911.5" ></text>
</g>
<g >
<title>mark_slice_darken (379 samples, 0.02%)</title><rect x="138.0" y="1301" width="0.2" height="15.0" fill="rgb(251,28,46)" rx="2" ry="2" />
<text x="140.99" y="1311.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,531 samples, 0.07%)</title><rect x="695.4" y="965" width="0.8" height="15.0" fill="rgb(221,51,47)" rx="2" ry="2" />
<text x="698.41" y="975.5" ></text>
</g>
<g >
<title>uECC_vli_sub (233 samples, 0.01%)</title><rect x="822.2" y="181" width="0.2" height="15.0" fill="rgb(243,151,4)" rx="2" ry="2" />
<text x="825.24" y="191.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (261 samples, 0.01%)</title><rect x="835.7" y="517" width="0.2" height="15.0" fill="rgb(243,82,50)" rx="2" ry="2" />
<text x="838.72" y="527.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (434 samples, 0.02%)</title><rect x="149.2" y="1397" width="0.3" height="15.0" fill="rgb(254,183,30)" rx="2" ry="2" />
<text x="152.23" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (778 samples, 0.03%)</title><rect x="530.1" y="1157" width="0.4" height="15.0" fill="rgb(247,141,44)" rx="2" ry="2" />
<text x="533.06" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (1,378 samples, 0.06%)</title><rect x="1001.9" y="1285" width="0.7" height="15.0" fill="rgb(232,191,6)" rx="2" ry="2" />
<text x="1004.94" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (305 samples, 0.01%)</title><rect x="707.2" y="965" width="0.1" height="15.0" fill="rgb(230,26,28)" rx="2" ry="2" />
<text x="710.15" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (353 samples, 0.02%)</title><rect x="612.9" y="1109" width="0.2" height="15.0" fill="rgb(209,68,24)" rx="2" ry="2" />
<text x="615.92" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (675 samples, 0.03%)</title><rect x="216.3" y="1285" width="0.4" height="15.0" fill="rgb(214,95,2)" rx="2" ry="2" />
<text x="219.33" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (40,686 samples, 1.76%)</title><rect x="1143.9" y="789" width="20.8" height="15.0" fill="rgb(222,99,46)" rx="2" ry="2" />
<text x="1146.89" y="799.5" ></text>
</g>
<g >
<title>caml_call_gc (810 samples, 0.04%)</title><rect x="137.9" y="1365" width="0.4" height="15.0" fill="rgb(228,21,24)" rx="2" ry="2" />
<text x="140.85" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (395 samples, 0.02%)</title><rect x="806.8" y="1045" width="0.2" height="15.0" fill="rgb(246,190,4)" rx="2" ry="2" />
<text x="809.81" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (374 samples, 0.02%)</title><rect x="328.3" y="1381" width="0.2" height="15.0" fill="rgb(247,32,2)" rx="2" ry="2" />
<text x="331.34" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__unshallow_29823 (1,622 samples, 0.07%)</title><rect x="1163.9" y="725" width="0.8" height="15.0" fill="rgb(207,178,1)" rx="2" ry="2" />
<text x="1166.86" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (404 samples, 0.02%)</title><rect x="1166.5" y="1157" width="0.2" height="15.0" fill="rgb(242,180,2)" rx="2" ry="2" />
<text x="1169.50" y="1167.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (466 samples, 0.02%)</title><rect x="370.5" y="1269" width="0.2" height="15.0" fill="rgb(227,66,10)" rx="2" ry="2" />
<text x="373.49" y="1279.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (352 samples, 0.02%)</title><rect x="918.2" y="1445" width="0.1" height="15.0" fill="rgb(238,10,4)" rx="2" ry="2" />
<text x="921.16" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (254 samples, 0.01%)</title><rect x="1164.4" y="293" width="0.1" height="15.0" fill="rgb(246,27,3)" rx="2" ry="2" />
<text x="1167.36" y="303.5" ></text>
</g>
<g >
<title>mark_slice (356 samples, 0.02%)</title><rect x="264.1" y="1349" width="0.1" height="15.0" fill="rgb(246,62,31)" rx="2" ry="2" />
<text x="267.05" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (4,890 samples, 0.21%)</title><rect x="1133.2" y="1045" width="2.5" height="15.0" fill="rgb(245,91,20)" rx="2" ry="2" />
<text x="1136.23" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (279 samples, 0.01%)</title><rect x="1077.4" y="1093" width="0.1" height="15.0" fill="rgb(244,19,34)" rx="2" ry="2" />
<text x="1080.40" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (622 samples, 0.03%)</title><rect x="681.9" y="1109" width="0.3" height="15.0" fill="rgb(210,9,32)" rx="2" ry="2" />
<text x="684.92" y="1119.5" ></text>
</g>
<g >
<title>muladd (210 samples, 0.01%)</title><rect x="828.3" y="181" width="0.1" height="15.0" fill="rgb(210,16,37)" rx="2" ry="2" />
<text x="831.30" y="191.5" ></text>
</g>
<g >
<title>mark_slice (1,010 samples, 0.04%)</title><rect x="915.3" y="1397" width="0.5" height="15.0" fill="rgb(228,11,5)" rx="2" ry="2" />
<text x="918.25" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (2,750 samples, 0.12%)</title><rect x="547.4" y="1333" width="1.4" height="15.0" fill="rgb(210,160,4)" rx="2" ry="2" />
<text x="550.39" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,360 samples, 0.06%)</title><rect x="532.0" y="1189" width="0.7" height="15.0" fill="rgb(205,150,32)" rx="2" ry="2" />
<text x="534.97" y="1199.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (945 samples, 0.04%)</title><rect x="829.9" y="229" width="0.5" height="15.0" fill="rgb(206,198,17)" rx="2" ry="2" />
<text x="832.94" y="239.5" ></text>
</g>
<g >
<title>mul2add (205 samples, 0.01%)</title><rect x="1097.5" y="37" width="0.1" height="15.0" fill="rgb(215,89,9)" rx="2" ry="2" />
<text x="1100.53" y="47.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4065 (263 samples, 0.01%)</title><rect x="1164.1" y="453" width="0.2" height="15.0" fill="rgb(250,90,51)" rx="2" ry="2" />
<text x="1167.15" y="463.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (954 samples, 0.04%)</title><rect x="572.7" y="1221" width="0.5" height="15.0" fill="rgb(217,12,7)" rx="2" ry="2" />
<text x="575.70" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (3,759 samples, 0.16%)</title><rect x="292.5" y="1397" width="1.9" height="15.0" fill="rgb(235,45,11)" rx="2" ry="2" />
<text x="295.52" y="1407.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (239 samples, 0.01%)</title><rect x="330.9" y="1365" width="0.1" height="15.0" fill="rgb(221,185,27)" rx="2" ry="2" />
<text x="333.88" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (104,021 samples, 4.51%)</title><rect x="1113.6" y="1237" width="53.2" height="15.0" fill="rgb(221,148,14)" rx="2" ry="2" />
<text x="1116.63" y="1247.5" >camlL..</text>
</g>
<g >
<title>camlLwt__map_1294 (2,130 samples, 0.09%)</title><rect x="498.7" y="1317" width="1.1" height="15.0" fill="rgb(205,6,26)" rx="2" ry="2" />
<text x="501.74" y="1327.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (960 samples, 0.04%)</title><rect x="1003.6" y="1189" width="0.5" height="15.0" fill="rgb(207,124,37)" rx="2" ry="2" />
<text x="1006.57" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (218 samples, 0.01%)</title><rect x="193.0" y="1381" width="0.1" height="15.0" fill="rgb(247,114,30)" rx="2" ry="2" />
<text x="196.00" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (6,938 samples, 0.30%)</title><rect x="802.2" y="1061" width="3.6" height="15.0" fill="rgb(208,220,37)" rx="2" ry="2" />
<text x="805.22" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (276 samples, 0.01%)</title><rect x="629.4" y="997" width="0.2" height="15.0" fill="rgb(221,175,36)" rx="2" ry="2" />
<text x="632.43" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (252 samples, 0.01%)</title><rect x="623.6" y="1013" width="0.1" height="15.0" fill="rgb(247,107,51)" rx="2" ry="2" />
<text x="626.62" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (285 samples, 0.01%)</title><rect x="619.2" y="1237" width="0.1" height="15.0" fill="rgb(208,61,40)" rx="2" ry="2" />
<text x="622.18" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_459 (259 samples, 0.01%)</title><rect x="866.3" y="869" width="0.2" height="15.0" fill="rgb(218,100,32)" rx="2" ry="2" />
<text x="869.34" y="879.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (303 samples, 0.01%)</title><rect x="1064.1" y="1093" width="0.2" height="15.0" fill="rgb(241,131,21)" rx="2" ry="2" />
<text x="1067.11" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__enter_resolution_loop_891 (433 samples, 0.02%)</title><rect x="1044.8" y="1381" width="0.2" height="15.0" fill="rgb(234,155,54)" rx="2" ry="2" />
<text x="1047.75" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (333 samples, 0.01%)</title><rect x="572.5" y="1269" width="0.2" height="15.0" fill="rgb(209,67,53)" rx="2" ry="2" />
<text x="575.48" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (646 samples, 0.03%)</title><rect x="1061.5" y="1253" width="0.3" height="15.0" fill="rgb(239,0,34)" rx="2" ry="2" />
<text x="1064.46" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (392 samples, 0.02%)</title><rect x="496.6" y="1253" width="0.2" height="15.0" fill="rgb(230,184,42)" rx="2" ry="2" />
<text x="499.56" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (2,405 samples, 0.10%)</title><rect x="726.5" y="1157" width="1.2" height="15.0" fill="rgb(230,56,51)" rx="2" ry="2" />
<text x="729.48" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (219 samples, 0.01%)</title><rect x="542.7" y="1093" width="0.2" height="15.0" fill="rgb(211,82,33)" rx="2" ry="2" />
<text x="545.74" y="1103.5" ></text>
</g>
<g >
<title>uECC_vli_mmod (489 samples, 0.02%)</title><rect x="653.8" y="149" width="0.2" height="15.0" fill="rgb(240,12,35)" rx="2" ry="2" />
<text x="656.76" y="159.5" ></text>
</g>
<g >
<title>caml_modify (402 samples, 0.02%)</title><rect x="911.6" y="1381" width="0.2" height="15.0" fill="rgb(227,115,14)" rx="2" ry="2" />
<text x="914.57" y="1391.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,205 samples, 0.05%)</title><rect x="178.0" y="1301" width="0.6" height="15.0" fill="rgb(208,218,49)" rx="2" ry="2" />
<text x="180.99" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (278 samples, 0.01%)</title><rect x="534.3" y="1029" width="0.1" height="15.0" fill="rgb(249,221,30)" rx="2" ry="2" />
<text x="537.27" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,871 samples, 0.08%)</title><rect x="835.6" y="645" width="1.0" height="15.0" fill="rgb(214,227,37)" rx="2" ry="2" />
<text x="838.64" y="655.5" ></text>
</g>
<g >
<title>caml_apply3 (599 samples, 0.03%)</title><rect x="422.5" y="1461" width="0.3" height="15.0" fill="rgb(228,93,30)" rx="2" ry="2" />
<text x="425.53" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_4546 (762 samples, 0.03%)</title><rect x="833.8" y="645" width="0.4" height="15.0" fill="rgb(210,223,53)" rx="2" ry="2" />
<text x="836.76" y="655.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (1,585,014 samples, 68.67%)</title><rect x="113.1" y="1525" width="810.2" height="15.0" fill="rgb(232,126,19)" rx="2" ry="2" />
<text x="116.05" y="1535.5" >camlLwt__run_in_resolution_loop_899</text>
</g>
<g >
<title>uECC_vli_mult (675 samples, 0.03%)</title><rect x="819.5" y="197" width="0.4" height="15.0" fill="rgb(219,126,54)" rx="2" ry="2" />
<text x="822.52" y="207.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (7,573 samples, 0.33%)</title><rect x="1063.0" y="1237" width="3.9" height="15.0" fill="rgb(245,128,25)" rx="2" ry="2" />
<text x="1066.01" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (38,382 samples, 1.66%)</title><rect x="1143.9" y="741" width="19.6" height="15.0" fill="rgb(248,186,43)" rx="2" ry="2" />
<text x="1146.89" y="751.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (369 samples, 0.02%)</title><rect x="519.6" y="1333" width="0.2" height="15.0" fill="rgb(239,220,52)" rx="2" ry="2" />
<text x="522.57" y="1343.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (1,565 samples, 0.07%)</title><rect x="656.0" y="149" width="0.8" height="15.0" fill="rgb(216,182,41)" rx="2" ry="2" />
<text x="659.00" y="159.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1312 (793 samples, 0.03%)</title><rect x="1131.8" y="1029" width="0.5" height="15.0" fill="rgb(214,79,35)" rx="2" ry="2" />
<text x="1134.85" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (251 samples, 0.01%)</title><rect x="834.4" y="677" width="0.1" height="15.0" fill="rgb(222,3,3)" rx="2" ry="2" />
<text x="837.36" y="687.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__pop_3830 (870 samples, 0.04%)</title><rect x="519.0" y="1349" width="0.4" height="15.0" fill="rgb(244,111,41)" rx="2" ry="2" />
<text x="521.99" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (387 samples, 0.02%)</title><rect x="913.2" y="1333" width="0.2" height="15.0" fill="rgb(230,24,19)" rx="2" ry="2" />
<text x="916.16" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (852 samples, 0.04%)</title><rect x="261.0" y="1333" width="0.5" height="15.0" fill="rgb(251,171,19)" rx="2" ry="2" />
<text x="264.04" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__finalize_1515 (450 samples, 0.02%)</title><rect x="791.7" y="1045" width="0.3" height="15.0" fill="rgb(241,188,41)" rx="2" ry="2" />
<text x="794.73" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,385 samples, 0.06%)</title><rect x="577.0" y="1125" width="0.7" height="15.0" fill="rgb(205,142,9)" rx="2" ry="2" />
<text x="580.00" y="1135.5" ></text>
</g>
<g >
<title>caml_tuplify2 (668 samples, 0.03%)</title><rect x="226.2" y="1365" width="0.4" height="15.0" fill="rgb(229,137,49)" rx="2" ry="2" />
<text x="229.23" y="1375.5" ></text>
</g>
<g >
<title>unix_select (1,761 samples, 0.08%)</title><rect x="971.2" y="1653" width="0.9" height="15.0" fill="rgb(236,207,48)" rx="2" ry="2" />
<text x="974.19" y="1663.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (1,343 samples, 0.06%)</title><rect x="498.9" y="1301" width="0.7" height="15.0" fill="rgb(217,25,12)" rx="2" ry="2" />
<text x="501.91" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (6,868 samples, 0.30%)</title><rect x="1055.8" y="1173" width="3.5" height="15.0" fill="rgb(249,60,35)" rx="2" ry="2" />
<text x="1058.76" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (6,435 samples, 0.28%)</title><rect x="189.3" y="1397" width="3.3" height="15.0" fill="rgb(250,122,29)" rx="2" ry="2" />
<text x="192.30" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (1,406 samples, 0.06%)</title><rect x="844.0" y="1301" width="0.7" height="15.0" fill="rgb(237,69,1)" rx="2" ry="2" />
<text x="846.97" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (294 samples, 0.01%)</title><rect x="204.4" y="1381" width="0.2" height="15.0" fill="rgb(251,163,5)" rx="2" ry="2" />
<text x="207.41" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (256 samples, 0.01%)</title><rect x="757.1" y="1029" width="0.2" height="15.0" fill="rgb(244,214,0)" rx="2" ry="2" />
<text x="760.13" y="1039.5" ></text>
</g>
<g >
<title>tezos-node (2,308,295 samples, 100.00%)</title><rect x="10.0" y="1685" width="1180.0" height="15.0" fill="rgb(230,118,44)" rx="2" ry="2" />
<text x="13.00" y="1695.5" >tezos-node</text>
</g>
<g >
<title>caml_garbage_collection (232 samples, 0.01%)</title><rect x="884.0" y="1221" width="0.2" height="15.0" fill="rgb(229,100,35)" rx="2" ry="2" />
<text x="887.04" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (227 samples, 0.01%)</title><rect x="192.1" y="1013" width="0.1" height="15.0" fill="rgb(246,51,18)" rx="2" ry="2" />
<text x="195.09" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (9,616 samples, 0.42%)</title><rect x="818.2" y="293" width="4.9" height="15.0" fill="rgb(215,48,33)" rx="2" ry="2" />
<text x="821.18" y="303.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (247 samples, 0.01%)</title><rect x="861.9" y="741" width="0.1" height="15.0" fill="rgb(223,17,38)" rx="2" ry="2" />
<text x="864.89" y="751.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (605 samples, 0.03%)</title><rect x="1058.8" y="1109" width="0.3" height="15.0" fill="rgb(206,161,53)" rx="2" ry="2" />
<text x="1061.81" y="1119.5" ></text>
</g>
<g >
<title>caml_apply2 (437 samples, 0.02%)</title><rect x="567.6" y="1221" width="0.3" height="15.0" fill="rgb(209,31,31)" rx="2" ry="2" />
<text x="570.65" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1689 (20,032 samples, 0.87%)</title><rect x="873.4" y="1173" width="10.2" height="15.0" fill="rgb(239,112,26)" rx="2" ry="2" />
<text x="876.35" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (861 samples, 0.04%)</title><rect x="601.0" y="1301" width="0.4" height="15.0" fill="rgb(234,80,10)" rx="2" ry="2" />
<text x="603.95" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (200 samples, 0.01%)</title><rect x="245.9" y="1349" width="0.1" height="15.0" fill="rgb(205,88,31)" rx="2" ry="2" />
<text x="248.86" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__merge_callbacks_728 (888 samples, 0.04%)</title><rect x="787.3" y="1141" width="0.5" height="15.0" fill="rgb(240,174,49)" rx="2" ry="2" />
<text x="790.33" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (258 samples, 0.01%)</title><rect x="805.1" y="949" width="0.1" height="15.0" fill="rgb(209,144,35)" rx="2" ry="2" />
<text x="808.09" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (1,440 samples, 0.06%)</title><rect x="1141.5" y="1077" width="0.7" height="15.0" fill="rgb(233,20,51)" rx="2" ry="2" />
<text x="1144.47" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,277 samples, 0.06%)</title><rect x="546.1" y="1285" width="0.7" height="15.0" fill="rgb(233,214,7)" rx="2" ry="2" />
<text x="549.13" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (5,246 samples, 0.23%)</title><rect x="1063.3" y="1189" width="2.7" height="15.0" fill="rgb(208,223,32)" rx="2" ry="2" />
<text x="1066.27" y="1199.5" ></text>
</g>
<g >
<title>caml_fl_allocate (2,242 samples, 0.10%)</title><rect x="35.1" y="1589" width="1.2" height="15.0" fill="rgb(225,110,6)" rx="2" ry="2" />
<text x="38.15" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (867 samples, 0.04%)</title><rect x="737.0" y="1077" width="0.4" height="15.0" fill="rgb(227,63,39)" rx="2" ry="2" />
<text x="740.00" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (594 samples, 0.03%)</title><rect x="13.8" y="1637" width="0.3" height="15.0" fill="rgb(208,39,25)" rx="2" ry="2" />
<text x="16.76" y="1647.5" ></text>
</g>
<g >
<title>caml_oldify_one (250 samples, 0.01%)</title><rect x="451.6" y="1365" width="0.1" height="15.0" fill="rgb(209,89,13)" rx="2" ry="2" />
<text x="454.61" y="1375.5" ></text>
</g>
<g >
<title>caml_modify (426 samples, 0.02%)</title><rect x="923.3" y="1525" width="0.2" height="15.0" fill="rgb(210,102,2)" rx="2" ry="2" />
<text x="926.31" y="1535.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (99,472 samples, 4.31%)</title><rect x="622.1" y="1285" width="50.8" height="15.0" fill="rgb(221,164,38)" rx="2" ry="2" />
<text x="625.08" y="1295.5" >camlL..</text>
</g>
<g >
<title>caml_garbage_collection (223 samples, 0.01%)</title><rect x="556.0" y="1285" width="0.2" height="15.0" fill="rgb(235,102,1)" rx="2" ry="2" />
<text x="559.04" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (253 samples, 0.01%)</title><rect x="616.7" y="1221" width="0.2" height="15.0" fill="rgb(222,78,23)" rx="2" ry="2" />
<text x="619.72" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (710 samples, 0.03%)</title><rect x="331.3" y="1381" width="0.3" height="15.0" fill="rgb(243,166,12)" rx="2" ry="2" />
<text x="334.28" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (342 samples, 0.01%)</title><rect x="773.7" y="1045" width="0.2" height="15.0" fill="rgb(232,1,53)" rx="2" ry="2" />
<text x="776.68" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (22,394 samples, 0.97%)</title><rect x="1168.2" y="1269" width="11.4" height="15.0" fill="rgb(223,134,18)" rx="2" ry="2" />
<text x="1171.20" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12418 (3,029 samples, 0.13%)</title><rect x="873.8" y="1077" width="1.6" height="15.0" fill="rgb(234,220,34)" rx="2" ry="2" />
<text x="876.81" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__mem_5759 (311 samples, 0.01%)</title><rect x="764.8" y="1109" width="0.2" height="15.0" fill="rgb(212,51,33)" rx="2" ry="2" />
<text x="767.84" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (776 samples, 0.03%)</title><rect x="786.7" y="1093" width="0.4" height="15.0" fill="rgb(227,15,39)" rx="2" ry="2" />
<text x="789.70" y="1103.5" ></text>
</g>
<g >
<title>uECC_vli_mult (274 samples, 0.01%)</title><rect x="831.8" y="229" width="0.1" height="15.0" fill="rgb(240,18,52)" rx="2" ry="2" />
<text x="834.79" y="239.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (259,000 samples, 11.22%)</title><rect x="1047.9" y="1349" width="132.4" height="15.0" fill="rgb(226,158,37)" rx="2" ry="2" />
<text x="1050.88" y="1359.5" >camlLwt__resolve..</text>
</g>
<g >
<title>caml_major_collection_slice (453 samples, 0.02%)</title><rect x="492.2" y="1189" width="0.2" height="15.0" fill="rgb(227,43,26)" rx="2" ry="2" />
<text x="495.21" y="1199.5" ></text>
</g>
<g >
<title>unix_lseek_64 (320 samples, 0.01%)</title><rect x="1119.9" y="869" width="0.2" height="15.0" fill="rgb(240,85,16)" rx="2" ry="2" />
<text x="1122.91" y="879.5" ></text>
</g>
<g >
<title>caml_raise_exn (344 samples, 0.01%)</title><rect x="425.1" y="1461" width="0.2" height="15.0" fill="rgb(224,23,21)" rx="2" ry="2" />
<text x="428.09" y="1471.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__unshallow_29823 (577 samples, 0.02%)</title><rect x="671.4" y="725" width="0.3" height="15.0" fill="rgb(215,120,4)" rx="2" ry="2" />
<text x="674.40" y="735.5" ></text>
</g>
<g >
<title>caml_call_gc (358 samples, 0.02%)</title><rect x="489.3" y="1253" width="0.1" height="15.0" fill="rgb(244,82,48)" rx="2" ry="2" />
<text x="492.25" y="1263.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (276 samples, 0.01%)</title><rect x="774.5" y="1141" width="0.1" height="15.0" fill="rgb(234,143,20)" rx="2" ry="2" />
<text x="777.50" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (286 samples, 0.01%)</title><rect x="1049.7" y="1221" width="0.1" height="15.0" fill="rgb(242,200,46)" rx="2" ry="2" />
<text x="1052.68" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (234 samples, 0.01%)</title><rect x="805.4" y="965" width="0.1" height="15.0" fill="rgb(233,156,47)" rx="2" ry="2" />
<text x="808.39" y="975.5" ></text>
</g>
<g >
<title>uECC_vli_add (316 samples, 0.01%)</title><rect x="642.8" y="117" width="0.2" height="15.0" fill="rgb(215,153,5)" rx="2" ry="2" />
<text x="645.84" y="127.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (367 samples, 0.02%)</title><rect x="1152.1" y="165" width="0.2" height="15.0" fill="rgb(215,152,42)" rx="2" ry="2" />
<text x="1155.08" y="175.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (80,692 samples, 3.50%)</title><rect x="631.2" y="981" width="41.3" height="15.0" fill="rgb(229,27,46)" rx="2" ry="2" />
<text x="634.22" y="991.5" >cam..</text>
</g>
<g >
<title>caml_string_equal (235 samples, 0.01%)</title><rect x="714.6" y="1061" width="0.1" height="15.0" fill="rgb(238,216,34)" rx="2" ry="2" />
<text x="717.58" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (618 samples, 0.03%)</title><rect x="987.7" y="1301" width="0.3" height="15.0" fill="rgb(205,193,20)" rx="2" ry="2" />
<text x="990.68" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (431 samples, 0.02%)</title><rect x="875.5" y="1029" width="0.2" height="15.0" fill="rgb(246,174,9)" rx="2" ry="2" />
<text x="878.47" y="1039.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (461 samples, 0.02%)</title><rect x="993.4" y="1349" width="0.2" height="15.0" fill="rgb(237,203,9)" rx="2" ry="2" />
<text x="996.38" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (1,087 samples, 0.05%)</title><rect x="798.7" y="1061" width="0.6" height="15.0" fill="rgb(211,8,12)" rx="2" ry="2" />
<text x="801.69" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (735 samples, 0.03%)</title><rect x="1067.0" y="1205" width="0.4" height="15.0" fill="rgb(235,161,36)" rx="2" ry="2" />
<text x="1070.01" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4109 (854 samples, 0.04%)</title><rect x="835.9" y="581" width="0.5" height="15.0" fill="rgb(217,209,0)" rx="2" ry="2" />
<text x="838.93" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (25,691 samples, 1.11%)</title><rect x="170.3" y="1365" width="13.1" height="15.0" fill="rgb(252,102,43)" rx="2" ry="2" />
<text x="173.27" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14806 (999 samples, 0.04%)</title><rect x="197.6" y="1413" width="0.5" height="15.0" fill="rgb(248,52,20)" rx="2" ry="2" />
<text x="200.56" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (217 samples, 0.01%)</title><rect x="708.5" y="1029" width="0.1" height="15.0" fill="rgb(247,44,18)" rx="2" ry="2" />
<text x="711.49" y="1039.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (306 samples, 0.01%)</title><rect x="1157.1" y="197" width="0.1" height="15.0" fill="rgb(232,4,38)" rx="2" ry="2" />
<text x="1160.08" y="207.5" ></text>
</g>
<g >
<title>mark_slice (1,834 samples, 0.08%)</title><rect x="597.8" y="1253" width="0.9" height="15.0" fill="rgb(233,93,18)" rx="2" ry="2" />
<text x="600.76" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (209 samples, 0.01%)</title><rect x="583.9" y="1269" width="0.2" height="15.0" fill="rgb(228,17,30)" rx="2" ry="2" />
<text x="586.94" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (35,807 samples, 1.55%)</title><rect x="1094.5" y="501" width="18.3" height="15.0" fill="rgb(241,199,32)" rx="2" ry="2" />
<text x="1097.53" y="511.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (543 samples, 0.02%)</title><rect x="1049.7" y="1269" width="0.2" height="15.0" fill="rgb(243,151,45)" rx="2" ry="2" />
<text x="1052.66" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4780 (2,555 samples, 0.11%)</title><rect x="619.4" y="1269" width="1.3" height="15.0" fill="rgb(211,88,53)" rx="2" ry="2" />
<text x="622.44" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (452 samples, 0.02%)</title><rect x="495.3" y="1205" width="0.3" height="15.0" fill="rgb(207,91,52)" rx="2" ry="2" />
<text x="498.33" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (68,820 samples, 2.98%)</title><rect x="205.0" y="1413" width="35.1" height="15.0" fill="rgb(214,161,8)" rx="2" ry="2" />
<text x="207.97" y="1423.5" >ca..</text>
</g>
<g >
<title>caml_modify (524 samples, 0.02%)</title><rect x="896.9" y="1461" width="0.2" height="15.0" fill="rgb(243,181,46)" rx="2" ry="2" />
<text x="899.87" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (259 samples, 0.01%)</title><rect x="492.3" y="1157" width="0.1" height="15.0" fill="rgb(237,90,27)" rx="2" ry="2" />
<text x="495.26" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (753 samples, 0.03%)</title><rect x="594.2" y="1333" width="0.4" height="15.0" fill="rgb(210,60,34)" rx="2" ry="2" />
<text x="597.18" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (388 samples, 0.02%)</title><rect x="518.8" y="1317" width="0.2" height="15.0" fill="rgb(248,5,23)" rx="2" ry="2" />
<text x="521.79" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (865 samples, 0.04%)</title><rect x="1080.6" y="1141" width="0.4" height="15.0" fill="rgb(234,44,11)" rx="2" ry="2" />
<text x="1083.56" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (226 samples, 0.01%)</title><rect x="575.8" y="1045" width="0.1" height="15.0" fill="rgb(223,125,34)" rx="2" ry="2" />
<text x="578.80" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_12308 (196 samples, 0.01%)</title><rect x="584.1" y="1333" width="0.1" height="15.0" fill="rgb(253,121,23)" rx="2" ry="2" />
<text x="587.13" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (364 samples, 0.02%)</title><rect x="702.0" y="981" width="0.2" height="15.0" fill="rgb(229,54,9)" rx="2" ry="2" />
<text x="704.99" y="991.5" ></text>
</g>
<g >
<title>mark_slice (226 samples, 0.01%)</title><rect x="617.3" y="1157" width="0.1" height="15.0" fill="rgb(220,85,29)" rx="2" ry="2" />
<text x="620.26" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (257 samples, 0.01%)</title><rect x="528.2" y="1221" width="0.1" height="15.0" fill="rgb(213,171,24)" rx="2" ry="2" />
<text x="531.15" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (395 samples, 0.02%)</title><rect x="504.4" y="1237" width="0.2" height="15.0" fill="rgb(207,197,26)" rx="2" ry="2" />
<text x="507.38" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,041 samples, 0.09%)</title><rect x="890.6" y="1381" width="1.1" height="15.0" fill="rgb(244,12,28)" rx="2" ry="2" />
<text x="893.64" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,408 samples, 0.06%)</title><rect x="1098.5" y="69" width="0.8" height="15.0" fill="rgb(241,40,50)" rx="2" ry="2" />
<text x="1101.53" y="79.5" ></text>
</g>
<g >
<title>mark_slice (338 samples, 0.01%)</title><rect x="704.0" y="917" width="0.2" height="15.0" fill="rgb(221,176,38)" rx="2" ry="2" />
<text x="707.01" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,445 samples, 0.06%)</title><rect x="415.9" y="1317" width="0.8" height="15.0" fill="rgb(230,105,35)" rx="2" ry="2" />
<text x="418.92" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (988 samples, 0.04%)</title><rect x="573.3" y="1269" width="0.5" height="15.0" fill="rgb(250,96,40)" rx="2" ry="2" />
<text x="576.28" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (602 samples, 0.03%)</title><rect x="413.1" y="1413" width="0.3" height="15.0" fill="rgb(220,27,8)" rx="2" ry="2" />
<text x="416.07" y="1423.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (254 samples, 0.01%)</title><rect x="1161.2" y="165" width="0.1" height="15.0" fill="rgb(244,221,25)" rx="2" ry="2" />
<text x="1164.16" y="175.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (3,174 samples, 0.14%)</title><rect x="798.6" y="1077" width="1.6" height="15.0" fill="rgb(209,125,17)" rx="2" ry="2" />
<text x="801.62" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,461 samples, 0.06%)</title><rect x="235.8" y="1365" width="0.8" height="15.0" fill="rgb(237,0,34)" rx="2" ry="2" />
<text x="238.81" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (150,880 samples, 6.54%)</title><rect x="194.5" y="1445" width="77.1" height="15.0" fill="rgb(213,201,24)" rx="2" ry="2" />
<text x="197.45" y="1455.5" >camlIrmi..</text>
</g>
<g >
<title>caml_call_gc (533 samples, 0.02%)</title><rect x="720.6" y="1045" width="0.3" height="15.0" fill="rgb(215,22,49)" rx="2" ry="2" />
<text x="723.61" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (40,696 samples, 1.76%)</title><rect x="1143.9" y="821" width="20.8" height="15.0" fill="rgb(249,190,42)" rx="2" ry="2" />
<text x="1146.88" y="831.5" ></text>
</g>
<g >
<title>uECC_vli_mult (327 samples, 0.01%)</title><rect x="639.2" y="133" width="0.2" height="15.0" fill="rgb(213,213,33)" rx="2" ry="2" />
<text x="642.23" y="143.5" ></text>
</g>
<g >
<title>caml_garbage_collection (217 samples, 0.01%)</title><rect x="762.2" y="1093" width="0.1" height="15.0" fill="rgb(241,109,34)" rx="2" ry="2" />
<text x="765.19" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (559 samples, 0.02%)</title><rect x="809.5" y="1045" width="0.3" height="15.0" fill="rgb(208,199,29)" rx="2" ry="2" />
<text x="812.54" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (334 samples, 0.01%)</title><rect x="233.9" y="1285" width="0.2" height="15.0" fill="rgb(205,201,9)" rx="2" ry="2" />
<text x="236.94" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (306 samples, 0.01%)</title><rect x="773.5" y="1061" width="0.1" height="15.0" fill="rgb(223,89,16)" rx="2" ry="2" />
<text x="776.48" y="1071.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (1,223 samples, 0.05%)</title><rect x="275.4" y="1397" width="0.7" height="15.0" fill="rgb(240,175,32)" rx="2" ry="2" />
<text x="278.45" y="1407.5" ></text>
</g>
<g >
<title>caml_string_compare (481 samples, 0.02%)</title><rect x="724.0" y="1173" width="0.2" height="15.0" fill="rgb(217,51,37)" rx="2" ry="2" />
<text x="726.98" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (258 samples, 0.01%)</title><rect x="992.5" y="1381" width="0.1" height="15.0" fill="rgb(220,194,37)" rx="2" ry="2" />
<text x="995.46" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (776 samples, 0.03%)</title><rect x="1119.2" y="949" width="0.4" height="15.0" fill="rgb(217,66,31)" rx="2" ry="2" />
<text x="1122.19" y="959.5" ></text>
</g>
<g >
<title>uECC_decompress_stub (925 samples, 0.04%)</title><rect x="671.9" y="789" width="0.5" height="15.0" fill="rgb(229,211,6)" rx="2" ry="2" />
<text x="674.90" y="799.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (868 samples, 0.04%)</title><rect x="1059.4" y="1253" width="0.5" height="15.0" fill="rgb(228,112,41)" rx="2" ry="2" />
<text x="1062.41" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (199 samples, 0.01%)</title><rect x="980.6" y="1477" width="0.1" height="15.0" fill="rgb(210,70,49)" rx="2" ry="2" />
<text x="983.58" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (1,587 samples, 0.07%)</title><rect x="585.8" y="1285" width="0.8" height="15.0" fill="rgb(248,213,19)" rx="2" ry="2" />
<text x="588.79" y="1295.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (200 samples, 0.01%)</title><rect x="686.2" y="981" width="0.1" height="15.0" fill="rgb(217,45,38)" rx="2" ry="2" />
<text x="689.23" y="991.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,404 samples, 1.58%)</title><rect x="1094.5" y="869" width="18.6" height="15.0" fill="rgb(207,166,52)" rx="2" ry="2" />
<text x="1097.53" y="879.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,165 samples, 0.05%)</title><rect x="844.1" y="1269" width="0.6" height="15.0" fill="rgb(210,183,44)" rx="2" ry="2" />
<text x="847.09" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__copy_4999 (467 samples, 0.02%)</title><rect x="1168.5" y="1205" width="0.2" height="15.0" fill="rgb(242,64,28)" rx="2" ry="2" />
<text x="1171.45" y="1215.5" ></text>
</g>
<g >
<title>unix_gettimeofday (1,078 samples, 0.05%)</title><rect x="980.7" y="1493" width="0.6" height="15.0" fill="rgb(254,201,34)" rx="2" ry="2" />
<text x="983.73" y="1503.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,993 samples, 0.09%)</title><rect x="198.2" y="1397" width="1.0" height="15.0" fill="rgb(243,178,41)" rx="2" ry="2" />
<text x="201.16" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,964 samples, 0.13%)</title><rect x="378.5" y="1381" width="1.6" height="15.0" fill="rgb(233,181,49)" rx="2" ry="2" />
<text x="381.55" y="1391.5" ></text>
</g>
<g >
<title>apply_z (604 samples, 0.03%)</title><rect x="831.8" y="261" width="0.3" height="15.0" fill="rgb(239,101,28)" rx="2" ry="2" />
<text x="834.79" y="271.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (300 samples, 0.01%)</title><rect x="873.9" y="1029" width="0.2" height="15.0" fill="rgb(226,46,0)" rx="2" ry="2" />
<text x="876.95" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (235 samples, 0.01%)</title><rect x="191.7" y="1077" width="0.1" height="15.0" fill="rgb(209,143,23)" rx="2" ry="2" />
<text x="194.66" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (204 samples, 0.01%)</title><rect x="796.0" y="981" width="0.1" height="15.0" fill="rgb(220,44,6)" rx="2" ry="2" />
<text x="798.95" y="991.5" ></text>
</g>
<g >
<title>mark_slice (253 samples, 0.01%)</title><rect x="806.8" y="997" width="0.2" height="15.0" fill="rgb(244,167,49)" rx="2" ry="2" />
<text x="809.84" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15242 (2,138 samples, 0.09%)</title><rect x="619.6" y="1237" width="1.1" height="15.0" fill="rgb(223,77,33)" rx="2" ry="2" />
<text x="622.60" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (227 samples, 0.01%)</title><rect x="700.7" y="933" width="0.1" height="15.0" fill="rgb(252,146,22)" rx="2" ry="2" />
<text x="703.69" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__hash_4868 (425 samples, 0.02%)</title><rect x="132.7" y="1381" width="0.2" height="15.0" fill="rgb(249,226,24)" rx="2" ry="2" />
<text x="135.70" y="1391.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (200 samples, 0.01%)</title><rect x="556.4" y="1269" width="0.1" height="15.0" fill="rgb(236,87,51)" rx="2" ry="2" />
<text x="559.35" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (341 samples, 0.01%)</title><rect x="242.0" y="1333" width="0.2" height="15.0" fill="rgb(212,214,41)" rx="2" ry="2" />
<text x="245.00" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (324 samples, 0.01%)</title><rect x="699.5" y="1013" width="0.1" height="15.0" fill="rgb(253,208,48)" rx="2" ry="2" />
<text x="702.46" y="1023.5" ></text>
</g>
<g >
<title>sweep_slice (466 samples, 0.02%)</title><rect x="598.7" y="1253" width="0.2" height="15.0" fill="rgb(254,25,34)" rx="2" ry="2" />
<text x="601.70" y="1263.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,087 samples, 0.05%)</title><rect x="633.4" y="133" width="0.5" height="15.0" fill="rgb(220,26,21)" rx="2" ry="2" />
<text x="636.38" y="143.5" ></text>
</g>
<g >
<title>sweep_slice (414 samples, 0.02%)</title><rect x="294.2" y="1317" width="0.2" height="15.0" fill="rgb(207,182,54)" rx="2" ry="2" />
<text x="297.23" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (249 samples, 0.01%)</title><rect x="561.1" y="1205" width="0.1" height="15.0" fill="rgb(252,186,47)" rx="2" ry="2" />
<text x="564.11" y="1215.5" ></text>
</g>
<g >
<title>XYcZ_add (3,836 samples, 0.17%)</title><rect x="1098.5" y="101" width="2.0" height="15.0" fill="rgb(230,132,18)" rx="2" ry="2" />
<text x="1101.51" y="111.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7549 (322 samples, 0.01%)</title><rect x="627.4" y="965" width="0.1" height="15.0" fill="rgb(236,171,37)" rx="2" ry="2" />
<text x="630.37" y="975.5" ></text>
</g>
<g >
<title>mark_slice_darken (570 samples, 0.02%)</title><rect x="786.8" y="1077" width="0.3" height="15.0" fill="rgb(226,106,39)" rx="2" ry="2" />
<text x="789.81" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (892 samples, 0.04%)</title><rect x="331.3" y="1397" width="0.4" height="15.0" fill="rgb(226,74,45)" rx="2" ry="2" />
<text x="334.28" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (246 samples, 0.01%)</title><rect x="1057.1" y="1077" width="0.1" height="15.0" fill="rgb(221,125,36)" rx="2" ry="2" />
<text x="1060.12" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (598 samples, 0.03%)</title><rect x="524.2" y="1285" width="0.3" height="15.0" fill="rgb(221,226,7)" rx="2" ry="2" />
<text x="527.15" y="1295.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,906 samples, 0.08%)</title><rect x="635.5" y="117" width="1.0" height="15.0" fill="rgb(227,94,24)" rx="2" ry="2" />
<text x="638.49" y="127.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (390,986 samples, 16.94%)</title><rect x="983.5" y="1461" width="199.9" height="15.0" fill="rgb(252,98,42)" rx="2" ry="2" />
<text x="986.50" y="1471.5" >camlLwt__run_in_resolution..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (8,916 samples, 0.39%)</title><rect x="1169.4" y="933" width="4.6" height="15.0" fill="rgb(244,87,53)" rx="2" ry="2" />
<text x="1172.41" y="943.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (228 samples, 0.01%)</title><rect x="766.6" y="1013" width="0.1" height="15.0" fill="rgb(242,173,39)" rx="2" ry="2" />
<text x="769.56" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (2,240 samples, 0.10%)</title><rect x="713.2" y="1093" width="1.1" height="15.0" fill="rgb(206,185,39)" rx="2" ry="2" />
<text x="716.15" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,362 samples, 0.06%)</title><rect x="267.7" y="1397" width="0.7" height="15.0" fill="rgb(238,98,34)" rx="2" ry="2" />
<text x="270.68" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_5009 (904 samples, 0.04%)</title><rect x="1060.4" y="1205" width="0.5" height="15.0" fill="rgb(205,70,10)" rx="2" ry="2" />
<text x="1063.39" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (637 samples, 0.03%)</title><rect x="135.9" y="1301" width="0.4" height="15.0" fill="rgb(223,189,16)" rx="2" ry="2" />
<text x="138.94" y="1311.5" ></text>
</g>
<g >
<title>caml_start_program (413,475 samples, 17.91%)</title><rect x="972.6" y="1573" width="211.4" height="15.0" fill="rgb(244,207,31)" rx="2" ry="2" />
<text x="975.63" y="1583.5" >caml_start_program</text>
</g>
<g >
<title>camlStdlib__list__map_212 (12,861 samples, 0.56%)</title><rect x="860.2" y="933" width="6.5" height="15.0" fill="rgb(206,94,52)" rx="2" ry="2" />
<text x="863.15" y="943.5" ></text>
</g>
<g >
<title>caml_apply2 (1,375 samples, 0.06%)</title><rect x="390.8" y="1445" width="0.7" height="15.0" fill="rgb(209,136,30)" rx="2" ry="2" />
<text x="393.77" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_457 (1,155 samples, 0.05%)</title><rect x="725.9" y="1157" width="0.6" height="15.0" fill="rgb(237,221,41)" rx="2" ry="2" />
<text x="728.89" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (569 samples, 0.02%)</title><rect x="1174.3" y="853" width="0.3" height="15.0" fill="rgb(207,149,24)" rx="2" ry="2" />
<text x="1177.33" y="863.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (364 samples, 0.02%)</title><rect x="1107.4" y="85" width="0.2" height="15.0" fill="rgb(220,189,4)" rx="2" ry="2" />
<text x="1110.39" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2345 (218 samples, 0.01%)</title><rect x="1007.6" y="1333" width="0.1" height="15.0" fill="rgb(207,102,43)" rx="2" ry="2" />
<text x="1010.60" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (260 samples, 0.01%)</title><rect x="972.3" y="1605" width="0.2" height="15.0" fill="rgb(244,99,17)" rx="2" ry="2" />
<text x="975.34" y="1615.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (418 samples, 0.02%)</title><rect x="243.3" y="1317" width="0.3" height="15.0" fill="rgb(216,146,24)" rx="2" ry="2" />
<text x="246.34" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (290 samples, 0.01%)</title><rect x="1178.7" y="901" width="0.1" height="15.0" fill="rgb(227,180,39)" rx="2" ry="2" />
<text x="1181.65" y="911.5" ></text>
</g>
<g >
<title>caml_garbage_collection (701 samples, 0.03%)</title><rect x="784.7" y="1109" width="0.4" height="15.0" fill="rgb(252,1,46)" rx="2" ry="2" />
<text x="787.75" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (405 samples, 0.02%)</title><rect x="814.1" y="1109" width="0.3" height="15.0" fill="rgb(245,15,35)" rx="2" ry="2" />
<text x="817.14" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12310 (910 samples, 0.04%)</title><rect x="884.3" y="1125" width="0.5" height="15.0" fill="rgb(217,119,43)" rx="2" ry="2" />
<text x="887.29" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (687 samples, 0.03%)</title><rect x="213.7" y="1269" width="0.4" height="15.0" fill="rgb(246,174,27)" rx="2" ry="2" />
<text x="216.73" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,333 samples, 0.06%)</title><rect x="1150.4" y="133" width="0.7" height="15.0" fill="rgb(252,52,15)" rx="2" ry="2" />
<text x="1153.39" y="143.5" ></text>
</g>
<g >
<title>worker_loop (724 samples, 0.03%)</title><rect x="972.3" y="1637" width="0.3" height="15.0" fill="rgb(212,138,36)" rx="2" ry="2" />
<text x="975.26" y="1647.5" ></text>
</g>
<g >
<title>camlLwt__attach_callback_or_resolve_immediately_1697 (699 samples, 0.03%)</title><rect x="547.0" y="1333" width="0.4" height="15.0" fill="rgb(221,144,49)" rx="2" ry="2" />
<text x="550.03" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_square (234 samples, 0.01%)</title><rect x="1148.9" y="133" width="0.1" height="15.0" fill="rgb(236,151,50)" rx="2" ry="2" />
<text x="1151.90" y="143.5" ></text>
</g>
<g >
<title>mark_slice (855 samples, 0.04%)</title><rect x="904.6" y="1365" width="0.4" height="15.0" fill="rgb(252,148,40)" rx="2" ry="2" />
<text x="907.56" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (254 samples, 0.01%)</title><rect x="700.7" y="949" width="0.1" height="15.0" fill="rgb(217,190,11)" rx="2" ry="2" />
<text x="703.69" y="959.5" ></text>
</g>
<g >
<title>mark_slice_darken (294 samples, 0.01%)</title><rect x="769.2" y="1061" width="0.1" height="15.0" fill="rgb(226,31,1)" rx="2" ry="2" />
<text x="772.16" y="1071.5" ></text>
</g>
<g >
<title>sweep_slice (280 samples, 0.01%)</title><rect x="566.3" y="1109" width="0.1" height="15.0" fill="rgb(239,130,32)" rx="2" ry="2" />
<text x="569.28" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_12018 (210 samples, 0.01%)</title><rect x="191.5" y="1109" width="0.2" height="15.0" fill="rgb(224,34,0)" rx="2" ry="2" />
<text x="194.55" y="1119.5" ></text>
</g>
<g >
<title>uECC_decompress (924 samples, 0.04%)</title><rect x="671.9" y="773" width="0.5" height="15.0" fill="rgb(205,9,50)" rx="2" ry="2" />
<text x="674.90" y="783.5" ></text>
</g>
<g >
<title>mark_slice (616 samples, 0.03%)</title><rect x="443.4" y="1365" width="0.3" height="15.0" fill="rgb(208,220,5)" rx="2" ry="2" />
<text x="446.35" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (367 samples, 0.02%)</title><rect x="431.1" y="1365" width="0.1" height="15.0" fill="rgb(219,215,11)" rx="2" ry="2" />
<text x="434.06" y="1375.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (343 samples, 0.01%)</title><rect x="189.0" y="1317" width="0.2" height="15.0" fill="rgb(208,32,40)" rx="2" ry="2" />
<text x="192.01" y="1327.5" ></text>
</g>
<g >
<title>uECC_verify_stub (29,345 samples, 1.27%)</title><rect x="639.6" y="197" width="15.0" height="15.0" fill="rgb(223,2,7)" rx="2" ry="2" />
<text x="642.59" y="207.5" ></text>
</g>
<g >
<title>vli_modInv_update (244 samples, 0.01%)</title><rect x="1112.3" y="101" width="0.1" height="15.0" fill="rgb(207,150,25)" rx="2" ry="2" />
<text x="1115.25" y="111.5" ></text>
</g>
<g >
<title>mark_slice (379 samples, 0.02%)</title><rect x="700.0" y="949" width="0.2" height="15.0" fill="rgb(217,23,5)" rx="2" ry="2" />
<text x="702.98" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (553 samples, 0.02%)</title><rect x="991.5" y="1349" width="0.3" height="15.0" fill="rgb(237,181,25)" rx="2" ry="2" />
<text x="994.52" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (254 samples, 0.01%)</title><rect x="300.8" y="1365" width="0.1" height="15.0" fill="rgb(206,84,28)" rx="2" ry="2" />
<text x="303.77" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (2,420 samples, 0.10%)</title><rect x="1002.8" y="1237" width="1.3" height="15.0" fill="rgb(208,193,13)" rx="2" ry="2" />
<text x="1005.83" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (601 samples, 0.03%)</title><rect x="470.0" y="1333" width="0.3" height="15.0" fill="rgb(222,15,44)" rx="2" ry="2" />
<text x="473.03" y="1343.5" ></text>
</g>
<g >
<title>__lseek64 (1,471 samples, 0.06%)</title><rect x="715.4" y="1029" width="0.7" height="15.0" fill="rgb(206,217,40)" rx="2" ry="2" />
<text x="718.35" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (338 samples, 0.01%)</title><rect x="733.1" y="1125" width="0.2" height="15.0" fill="rgb(236,125,29)" rx="2" ry="2" />
<text x="736.14" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (2,506 samples, 0.11%)</title><rect x="734.5" y="1141" width="1.3" height="15.0" fill="rgb(216,90,16)" rx="2" ry="2" />
<text x="737.52" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (238 samples, 0.01%)</title><rect x="578.3" y="1269" width="0.1" height="15.0" fill="rgb(218,39,25)" rx="2" ry="2" />
<text x="581.26" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,597 samples, 0.16%)</title><rect x="516.1" y="1285" width="1.8" height="15.0" fill="rgb(235,217,46)" rx="2" ry="2" />
<text x="519.07" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (448 samples, 0.02%)</title><rect x="1077.5" y="1109" width="0.3" height="15.0" fill="rgb(247,204,36)" rx="2" ry="2" />
<text x="1080.55" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (211 samples, 0.01%)</title><rect x="552.6" y="1141" width="0.1" height="15.0" fill="rgb(220,48,18)" rx="2" ry="2" />
<text x="555.61" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (602 samples, 0.03%)</title><rect x="1179.3" y="1157" width="0.3" height="15.0" fill="rgb(208,176,10)" rx="2" ry="2" />
<text x="1182.29" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (1,727 samples, 0.07%)</title><rect x="631.3" y="197" width="0.9" height="15.0" fill="rgb(214,95,25)" rx="2" ry="2" />
<text x="634.31" y="207.5" ></text>
</g>
<g >
<title>mark_slice (505 samples, 0.02%)</title><rect x="272.4" y="1365" width="0.3" height="15.0" fill="rgb(213,74,39)" rx="2" ry="2" />
<text x="275.44" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,496 samples, 0.06%)</title><rect x="1080.4" y="1205" width="0.8" height="15.0" fill="rgb(220,13,4)" rx="2" ry="2" />
<text x="1083.43" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (10,657 samples, 0.46%)</title><rect x="860.3" y="853" width="5.4" height="15.0" fill="rgb(220,218,50)" rx="2" ry="2" />
<text x="863.28" y="863.5" ></text>
</g>
<g >
<title>XYcZ_add (375 samples, 0.02%)</title><rect x="668.7" y="181" width="0.2" height="15.0" fill="rgb(214,9,31)" rx="2" ry="2" />
<text x="671.69" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (2,535 samples, 0.11%)</title><rect x="840.5" y="1221" width="1.3" height="15.0" fill="rgb(227,199,43)" rx="2" ry="2" />
<text x="843.51" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,391 samples, 0.32%)</title><rect x="173.0" y="1285" width="3.7" height="15.0" fill="rgb(220,19,39)" rx="2" ry="2" />
<text x="175.95" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (1,172 samples, 0.05%)</title><rect x="1088.2" y="869" width="0.6" height="15.0" fill="rgb(252,84,20)" rx="2" ry="2" />
<text x="1091.18" y="879.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_5748 (529 samples, 0.02%)</title><rect x="749.5" y="1077" width="0.3" height="15.0" fill="rgb(227,216,30)" rx="2" ry="2" />
<text x="752.51" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (4,279 samples, 0.19%)</title><rect x="572.4" y="1285" width="2.2" height="15.0" fill="rgb(247,73,23)" rx="2" ry="2" />
<text x="575.38" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (224 samples, 0.01%)</title><rect x="805.6" y="1045" width="0.1" height="15.0" fill="rgb(243,37,50)" rx="2" ry="2" />
<text x="808.63" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (38,253 samples, 1.66%)</title><rect x="815.7" y="789" width="19.6" height="15.0" fill="rgb(243,156,10)" rx="2" ry="2" />
<text x="818.71" y="799.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (218 samples, 0.01%)</title><rect x="274.4" y="1397" width="0.1" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="277.39" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_map_228 (1,212 samples, 0.05%)</title><rect x="839.9" y="1221" width="0.6" height="15.0" fill="rgb(239,172,2)" rx="2" ry="2" />
<text x="842.89" y="1231.5" ></text>
</g>
<g >
<title>blake2b_compress (560 samples, 0.02%)</title><rect x="1018.1" y="1301" width="0.3" height="15.0" fill="rgb(217,50,50)" rx="2" ry="2" />
<text x="1021.08" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (233 samples, 0.01%)</title><rect x="190.7" y="1205" width="0.2" height="15.0" fill="rgb(229,124,36)" rx="2" ry="2" />
<text x="193.73" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (224 samples, 0.01%)</title><rect x="1171.0" y="885" width="0.1" height="15.0" fill="rgb(242,52,33)" rx="2" ry="2" />
<text x="1174.02" y="895.5" ></text>
</g>
<g >
<title>mark_slice (766 samples, 0.03%)</title><rect x="487.7" y="1285" width="0.4" height="15.0" fill="rgb(206,229,16)" rx="2" ry="2" />
<text x="490.71" y="1295.5" ></text>
</g>
<g >
<title>camlData_encoding__Binary_reader__read_rec_564 (2,600 samples, 0.11%)</title><rect x="1164.9" y="837" width="1.3" height="15.0" fill="rgb(218,120,2)" rx="2" ry="2" />
<text x="1167.88" y="847.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (290 samples, 0.01%)</title><rect x="265.6" y="1349" width="0.1" height="15.0" fill="rgb(218,105,8)" rx="2" ry="2" />
<text x="268.60" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (204 samples, 0.01%)</title><rect x="214.1" y="1285" width="0.1" height="15.0" fill="rgb(205,172,14)" rx="2" ry="2" />
<text x="217.08" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (608 samples, 0.03%)</title><rect x="544.9" y="1285" width="0.3" height="15.0" fill="rgb(206,146,34)" rx="2" ry="2" />
<text x="547.86" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__fill_132 (300 samples, 0.01%)</title><rect x="304.6" y="1413" width="0.1" height="15.0" fill="rgb(236,164,17)" rx="2" ry="2" />
<text x="307.58" y="1423.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (264 samples, 0.01%)</title><rect x="817.9" y="213" width="0.2" height="15.0" fill="rgb(235,63,13)" rx="2" ry="2" />
<text x="820.93" y="223.5" ></text>
</g>
<g >
<title>sweep_slice (364 samples, 0.02%)</title><rect x="103.4" y="1509" width="0.2" height="15.0" fill="rgb(231,83,16)" rx="2" ry="2" />
<text x="106.44" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_454 (351 samples, 0.02%)</title><rect x="1129.0" y="1141" width="0.2" height="15.0" fill="rgb(226,14,18)" rx="2" ry="2" />
<text x="1132.01" y="1151.5" ></text>
</g>
<g >
<title>sweep_slice (223 samples, 0.01%)</title><rect x="720.3" y="949" width="0.1" height="15.0" fill="rgb(249,208,7)" rx="2" ry="2" />
<text x="723.27" y="959.5" ></text>
</g>
<g >
<title>caml_call_gc (1,080 samples, 0.05%)</title><rect x="442.6" y="1381" width="0.5" height="15.0" fill="rgb(207,136,8)" rx="2" ry="2" />
<text x="445.59" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,805 samples, 0.08%)</title><rect x="713.4" y="1061" width="0.9" height="15.0" fill="rgb(227,201,6)" rx="2" ry="2" />
<text x="716.37" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (377 samples, 0.02%)</title><rect x="691.5" y="1013" width="0.2" height="15.0" fill="rgb(231,45,38)" rx="2" ry="2" />
<text x="694.51" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (455 samples, 0.02%)</title><rect x="515.0" y="1237" width="0.2" height="15.0" fill="rgb(248,33,9)" rx="2" ry="2" />
<text x="517.95" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (852 samples, 0.04%)</title><rect x="553.3" y="1253" width="0.5" height="15.0" fill="rgb(221,121,1)" rx="2" ry="2" />
<text x="556.32" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12310 (577 samples, 0.02%)</title><rect x="1179.3" y="1061" width="0.3" height="15.0" fill="rgb(223,66,53)" rx="2" ry="2" />
<text x="1182.29" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (254 samples, 0.01%)</title><rect x="583.9" y="1285" width="0.2" height="15.0" fill="rgb(227,191,16)" rx="2" ry="2" />
<text x="586.92" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,393 samples, 0.06%)</title><rect x="143.1" y="1365" width="0.7" height="15.0" fill="rgb(248,199,26)" rx="2" ry="2" />
<text x="146.10" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (2,329 samples, 0.10%)</title><rect x="218.7" y="1365" width="1.2" height="15.0" fill="rgb(241,217,28)" rx="2" ry="2" />
<text x="221.72" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (218 samples, 0.01%)</title><rect x="1163.9" y="389" width="0.2" height="15.0" fill="rgb(208,1,16)" rx="2" ry="2" />
<text x="1166.95" y="399.5" ></text>
</g>
<g >
<title>caml_apply2 (289 samples, 0.01%)</title><rect x="782.4" y="1125" width="0.2" height="15.0" fill="rgb(214,188,42)" rx="2" ry="2" />
<text x="785.44" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (605 samples, 0.03%)</title><rect x="747.6" y="1029" width="0.3" height="15.0" fill="rgb(218,140,35)" rx="2" ry="2" />
<text x="750.63" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (618 samples, 0.03%)</title><rect x="712.6" y="1029" width="0.3" height="15.0" fill="rgb(214,115,41)" rx="2" ry="2" />
<text x="715.62" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (2,006 samples, 0.09%)</title><rect x="1060.3" y="1253" width="1.0" height="15.0" fill="rgb(233,225,2)" rx="2" ry="2" />
<text x="1063.27" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (416 samples, 0.02%)</title><rect x="1060.5" y="1173" width="0.2" height="15.0" fill="rgb(245,134,31)" rx="2" ry="2" />
<text x="1063.54" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (424 samples, 0.02%)</title><rect x="606.0" y="1285" width="0.2" height="15.0" fill="rgb(206,183,30)" rx="2" ry="2" />
<text x="609.02" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (254 samples, 0.01%)</title><rect x="1055.9" y="1109" width="0.1" height="15.0" fill="rgb(245,185,45)" rx="2" ry="2" />
<text x="1058.91" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (1,628 samples, 0.07%)</title><rect x="623.0" y="1141" width="0.8" height="15.0" fill="rgb(234,70,34)" rx="2" ry="2" />
<text x="625.98" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (491 samples, 0.02%)</title><rect x="441.1" y="1333" width="0.2" height="15.0" fill="rgb(248,157,41)" rx="2" ry="2" />
<text x="444.07" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (649 samples, 0.03%)</title><rect x="570.7" y="1285" width="0.3" height="15.0" fill="rgb(251,177,6)" rx="2" ry="2" />
<text x="573.66" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (491 samples, 0.02%)</title><rect x="1042.5" y="1349" width="0.3" height="15.0" fill="rgb(230,121,21)" rx="2" ry="2" />
<text x="1045.54" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (562 samples, 0.02%)</title><rect x="222.8" y="1317" width="0.2" height="15.0" fill="rgb(251,7,11)" rx="2" ry="2" />
<text x="225.75" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (212 samples, 0.01%)</title><rect x="1010.2" y="1333" width="0.1" height="15.0" fill="rgb(249,84,42)" rx="2" ry="2" />
<text x="1013.20" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (5,607 samples, 0.24%)</title><rect x="201.0" y="1381" width="2.9" height="15.0" fill="rgb(240,151,51)" rx="2" ry="2" />
<text x="204.04" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,632 samples, 0.07%)</title><rect x="397.4" y="1429" width="0.8" height="15.0" fill="rgb(225,67,51)" rx="2" ry="2" />
<text x="400.35" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,465 samples, 0.06%)</title><rect x="997.3" y="1237" width="0.8" height="15.0" fill="rgb(249,129,6)" rx="2" ry="2" />
<text x="1000.30" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (61,241 samples, 2.65%)</title><rect x="852.9" y="1269" width="31.3" height="15.0" fill="rgb(208,2,36)" rx="2" ry="2" />
<text x="855.86" y="1279.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (10,765 samples, 0.47%)</title><rect x="405.9" y="1413" width="5.5" height="15.0" fill="rgb(214,71,27)" rx="2" ry="2" />
<text x="408.93" y="1423.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (313 samples, 0.01%)</title><rect x="415.5" y="1317" width="0.1" height="15.0" fill="rgb(226,115,25)" rx="2" ry="2" />
<text x="418.48" y="1327.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (552 samples, 0.02%)</title><rect x="1105.7" y="101" width="0.2" height="15.0" fill="rgb(208,204,52)" rx="2" ry="2" />
<text x="1108.66" y="111.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (1,022 samples, 0.04%)</title><rect x="659.7" y="165" width="0.5" height="15.0" fill="rgb(230,178,44)" rx="2" ry="2" />
<text x="662.68" y="175.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (198 samples, 0.01%)</title><rect x="786.6" y="1093" width="0.1" height="15.0" fill="rgb(251,150,22)" rx="2" ry="2" />
<text x="789.60" y="1103.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (399 samples, 0.02%)</title><rect x="820.1" y="213" width="0.2" height="15.0" fill="rgb(233,158,40)" rx="2" ry="2" />
<text x="823.07" y="223.5" ></text>
</g>
<g >
<title>mark_slice (1,481 samples, 0.06%)</title><rect x="367.7" y="1285" width="0.8" height="15.0" fill="rgb(206,79,11)" rx="2" ry="2" />
<text x="370.74" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_map_228 (437 samples, 0.02%)</title><rect x="549.3" y="1317" width="0.2" height="15.0" fill="rgb(232,122,46)" rx="2" ry="2" />
<text x="552.25" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (280 samples, 0.01%)</title><rect x="568.5" y="1205" width="0.1" height="15.0" fill="rgb(208,178,12)" rx="2" ry="2" />
<text x="571.46" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,430 samples, 0.06%)</title><rect x="1072.5" y="1093" width="0.8" height="15.0" fill="rgb(243,61,11)" rx="2" ry="2" />
<text x="1075.53" y="1103.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_851 (3,756 samples, 0.16%)</title><rect x="302.9" y="1429" width="2.0" height="15.0" fill="rgb(246,186,1)" rx="2" ry="2" />
<text x="305.94" y="1439.5" ></text>
</g>
<g >
<title>unix_lseek_64 (859 samples, 0.04%)</title><rect x="188.7" y="1333" width="0.5" height="15.0" fill="rgb(242,61,27)" rx="2" ry="2" />
<text x="191.74" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (2,215 samples, 0.10%)</title><rect x="1087.9" y="949" width="1.1" height="15.0" fill="rgb(253,63,14)" rx="2" ry="2" />
<text x="1090.91" y="959.5" ></text>
</g>
<g >
<title>caml_garbage_collection (780 samples, 0.03%)</title><rect x="207.1" y="1349" width="0.4" height="15.0" fill="rgb(238,31,30)" rx="2" ry="2" />
<text x="210.11" y="1359.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (457 samples, 0.02%)</title><rect x="695.9" y="933" width="0.2" height="15.0" fill="rgb(234,206,30)" rx="2" ry="2" />
<text x="698.86" y="943.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (1,674 samples, 0.07%)</title><rect x="493.6" y="1253" width="0.8" height="15.0" fill="rgb(223,156,31)" rx="2" ry="2" />
<text x="496.56" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (386,268 samples, 16.73%)</title><rect x="983.9" y="1445" width="197.5" height="15.0" fill="rgb(240,167,39)" rx="2" ry="2" />
<text x="986.95" y="1455.5" >camlLwt__iter_callback_li..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (267 samples, 0.01%)</title><rect x="1089.1" y="917" width="0.2" height="15.0" fill="rgb(236,158,26)" rx="2" ry="2" />
<text x="1092.11" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_mult (287 samples, 0.01%)</title><rect x="1158.7" y="149" width="0.2" height="15.0" fill="rgb(226,80,17)" rx="2" ry="2" />
<text x="1161.70" y="159.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (11,227 samples, 0.49%)</title><rect x="1169.2" y="1029" width="5.7" height="15.0" fill="rgb(211,126,11)" rx="2" ry="2" />
<text x="1172.17" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (469 samples, 0.02%)</title><rect x="184.1" y="1333" width="0.3" height="15.0" fill="rgb(219,119,15)" rx="2" ry="2" />
<text x="187.12" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (813 samples, 0.04%)</title><rect x="1010.6" y="1349" width="0.4" height="15.0" fill="rgb(232,213,38)" rx="2" ry="2" />
<text x="1013.63" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (236 samples, 0.01%)</title><rect x="1057.1" y="1061" width="0.1" height="15.0" fill="rgb(214,173,14)" rx="2" ry="2" />
<text x="1060.13" y="1071.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,415 samples, 0.06%)</title><rect x="619.9" y="1077" width="0.7" height="15.0" fill="rgb(247,209,37)" rx="2" ry="2" />
<text x="622.88" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2414 (535 samples, 0.02%)</title><rect x="704.3" y="981" width="0.2" height="15.0" fill="rgb(210,62,24)" rx="2" ry="2" />
<text x="707.27" y="991.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (212 samples, 0.01%)</title><rect x="534.5" y="1045" width="0.1" height="15.0" fill="rgb(222,43,35)" rx="2" ry="2" />
<text x="537.48" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (426 samples, 0.02%)</title><rect x="813.9" y="1109" width="0.2" height="15.0" fill="rgb(236,222,7)" rx="2" ry="2" />
<text x="816.91" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (196 samples, 0.01%)</title><rect x="805.1" y="933" width="0.1" height="15.0" fill="rgb(213,132,19)" rx="2" ry="2" />
<text x="808.12" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (603 samples, 0.03%)</title><rect x="1164.3" y="421" width="0.3" height="15.0" fill="rgb(207,3,24)" rx="2" ry="2" />
<text x="1167.28" y="431.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (696 samples, 0.03%)</title><rect x="770.0" y="1125" width="0.4" height="15.0" fill="rgb(243,9,23)" rx="2" ry="2" />
<text x="773.02" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (56,102 samples, 2.43%)</title><rect x="1084.9" y="1221" width="28.7" height="15.0" fill="rgb(242,52,45)" rx="2" ry="2" />
<text x="1087.90" y="1231.5" >ca..</text>
</g>
<g >
<title>mark_slice_darken (659 samples, 0.03%)</title><rect x="261.1" y="1317" width="0.4" height="15.0" fill="rgb(214,172,4)" rx="2" ry="2" />
<text x="264.14" y="1327.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (236 samples, 0.01%)</title><rect x="139.4" y="1397" width="0.2" height="15.0" fill="rgb(236,199,1)" rx="2" ry="2" />
<text x="142.43" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (310 samples, 0.01%)</title><rect x="504.4" y="1221" width="0.2" height="15.0" fill="rgb(210,33,26)" rx="2" ry="2" />
<text x="507.42" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (320 samples, 0.01%)</title><rect x="583.9" y="1301" width="0.2" height="15.0" fill="rgb(233,120,27)" rx="2" ry="2" />
<text x="586.92" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (1,120 samples, 0.05%)</title><rect x="793.0" y="1029" width="0.6" height="15.0" fill="rgb(241,132,32)" rx="2" ry="2" />
<text x="795.99" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (223 samples, 0.01%)</title><rect x="1017.5" y="1349" width="0.2" height="15.0" fill="rgb(205,192,44)" rx="2" ry="2" />
<text x="1020.54" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (76,158 samples, 3.30%)</title><rect x="631.2" y="677" width="39.0" height="15.0" fill="rgb(206,206,48)" rx="2" ry="2" />
<text x="634.24" y="687.5" >cam..</text>
</g>
<g >
<title>caml_garbage_collection (332 samples, 0.01%)</title><rect x="1064.1" y="1109" width="0.2" height="15.0" fill="rgb(239,214,9)" rx="2" ry="2" />
<text x="1067.09" y="1119.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (265 samples, 0.01%)</title><rect x="819.2" y="197" width="0.2" height="15.0" fill="rgb(237,21,40)" rx="2" ry="2" />
<text x="822.24" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15415 (8,709 samples, 0.38%)</title><rect x="673.8" y="1285" width="4.4" height="15.0" fill="rgb(222,9,6)" rx="2" ry="2" />
<text x="676.80" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (1,218 samples, 0.05%)</title><rect x="211.5" y="1349" width="0.7" height="15.0" fill="rgb(223,30,19)" rx="2" ry="2" />
<text x="214.53" y="1359.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_1971 (206 samples, 0.01%)</title><rect x="98.4" y="1525" width="0.1" height="15.0" fill="rgb(222,73,24)" rx="2" ry="2" />
<text x="101.42" y="1535.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (739 samples, 0.03%)</title><rect x="1155.9" y="149" width="0.4" height="15.0" fill="rgb(223,117,36)" rx="2" ry="2" />
<text x="1158.94" y="159.5" ></text>
</g>
<g >
<title>caml_garbage_collection (342 samples, 0.01%)</title><rect x="792.3" y="949" width="0.2" height="15.0" fill="rgb(212,88,2)" rx="2" ry="2" />
<text x="795.35" y="959.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (632 samples, 0.03%)</title><rect x="272.4" y="1381" width="0.4" height="15.0" fill="rgb(241,21,47)" rx="2" ry="2" />
<text x="275.44" y="1391.5" ></text>
</g>
<g >
<title>caml_hash (210 samples, 0.01%)</title><rect x="583.0" y="1205" width="0.1" height="15.0" fill="rgb(250,218,14)" rx="2" ry="2" />
<text x="585.98" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (6,413 samples, 0.28%)</title><rect x="880.0" y="1061" width="3.3" height="15.0" fill="rgb(215,105,42)" rx="2" ry="2" />
<text x="883.05" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,937 samples, 0.13%)</title><rect x="229.0" y="1285" width="1.5" height="15.0" fill="rgb(231,19,35)" rx="2" ry="2" />
<text x="232.02" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (496 samples, 0.02%)</title><rect x="494.5" y="1237" width="0.3" height="15.0" fill="rgb(234,4,51)" rx="2" ry="2" />
<text x="497.50" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (432 samples, 0.02%)</title><rect x="1008.3" y="1333" width="0.2" height="15.0" fill="rgb(227,134,50)" rx="2" ry="2" />
<text x="1011.25" y="1343.5" ></text>
</g>
<g >
<title>apply_z (542 samples, 0.02%)</title><rect x="1160.6" y="197" width="0.3" height="15.0" fill="rgb(244,28,32)" rx="2" ry="2" />
<text x="1163.62" y="207.5" ></text>
</g>
<g >
<title>muladd (224 samples, 0.01%)</title><rect x="639.3" y="117" width="0.1" height="15.0" fill="rgb(254,104,0)" rx="2" ry="2" />
<text x="642.29" y="127.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (760 samples, 0.03%)</title><rect x="668.3" y="213" width="0.4" height="15.0" fill="rgb(249,149,32)" rx="2" ry="2" />
<text x="671.29" y="223.5" ></text>
</g>
<g >
<title>muladd (275 samples, 0.01%)</title><rect x="816.2" y="165" width="0.1" height="15.0" fill="rgb(252,72,9)" rx="2" ry="2" />
<text x="819.16" y="175.5" ></text>
</g>
<g >
<title>caml_garbage_collection (375 samples, 0.02%)</title><rect x="221.9" y="1285" width="0.2" height="15.0" fill="rgb(233,150,6)" rx="2" ry="2" />
<text x="224.94" y="1295.5" ></text>
</g>
<g >
<title>caml_oldify_one (204 samples, 0.01%)</title><rect x="291.3" y="1301" width="0.1" height="15.0" fill="rgb(248,82,1)" rx="2" ry="2" />
<text x="294.32" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (28,290 samples, 1.23%)</title><rect x="529.5" y="1237" width="14.4" height="15.0" fill="rgb(250,198,29)" rx="2" ry="2" />
<text x="532.47" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,150 samples, 0.05%)</title><rect x="273.5" y="1397" width="0.6" height="15.0" fill="rgb(220,143,24)" rx="2" ry="2" />
<text x="276.52" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (396 samples, 0.02%)</title><rect x="594.3" y="1269" width="0.2" height="15.0" fill="rgb(249,162,23)" rx="2" ry="2" />
<text x="597.31" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,335 samples, 0.06%)</title><rect x="795.6" y="1061" width="0.7" height="15.0" fill="rgb(232,209,11)" rx="2" ry="2" />
<text x="798.58" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (198 samples, 0.01%)</title><rect x="866.2" y="869" width="0.1" height="15.0" fill="rgb(211,136,1)" rx="2" ry="2" />
<text x="869.20" y="879.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4070 (1,871 samples, 0.08%)</title><rect x="835.6" y="677" width="1.0" height="15.0" fill="rgb(214,56,6)" rx="2" ry="2" />
<text x="838.64" y="687.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (993 samples, 0.04%)</title><rect x="577.2" y="629" width="0.5" height="15.0" fill="rgb(243,130,38)" rx="2" ry="2" />
<text x="580.19" y="639.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (19,837 samples, 0.86%)</title><rect x="873.4" y="1157" width="10.2" height="15.0" fill="rgb(228,207,49)" rx="2" ry="2" />
<text x="876.45" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (491 samples, 0.02%)</title><rect x="533.3" y="1045" width="0.3" height="15.0" fill="rgb(226,44,52)" rx="2" ry="2" />
<text x="536.32" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (876 samples, 0.04%)</title><rect x="209.0" y="1381" width="0.5" height="15.0" fill="rgb(206,5,31)" rx="2" ry="2" />
<text x="212.02" y="1391.5" ></text>
</g>
<g >
<title>sweep_slice (1,359 samples, 0.06%)</title><rect x="466.0" y="1349" width="0.7" height="15.0" fill="rgb(218,103,25)" rx="2" ry="2" />
<text x="469.00" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (429 samples, 0.02%)</title><rect x="797.1" y="1029" width="0.2" height="15.0" fill="rgb(239,194,19)" rx="2" ry="2" />
<text x="800.10" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (400 samples, 0.02%)</title><rect x="1167.4" y="1253" width="0.2" height="15.0" fill="rgb(214,183,49)" rx="2" ry="2" />
<text x="1170.39" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (818 samples, 0.04%)</title><rect x="225.1" y="1285" width="0.4" height="15.0" fill="rgb(225,159,48)" rx="2" ry="2" />
<text x="228.09" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (32,022 samples, 1.39%)</title><rect x="281.1" y="1445" width="16.3" height="15.0" fill="rgb(212,81,19)" rx="2" ry="2" />
<text x="284.07" y="1455.5" ></text>
</g>
<g >
<title>caml_alloc_string (236 samples, 0.01%)</title><rect x="695.0" y="1013" width="0.1" height="15.0" fill="rgb(217,64,27)" rx="2" ry="2" />
<text x="697.98" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (289 samples, 0.01%)</title><rect x="522.0" y="1269" width="0.2" height="15.0" fill="rgb(253,116,38)" rx="2" ry="2" />
<text x="525.03" y="1279.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (3,526 samples, 0.15%)</title><rect x="396.4" y="1461" width="1.8" height="15.0" fill="rgb(246,228,39)" rx="2" ry="2" />
<text x="399.38" y="1471.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (1,444 samples, 0.06%)</title><rect x="430.3" y="1365" width="0.8" height="15.0" fill="rgb(215,228,13)" rx="2" ry="2" />
<text x="433.32" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (209 samples, 0.01%)</title><rect x="870.5" y="869" width="0.1" height="15.0" fill="rgb(222,224,16)" rx="2" ry="2" />
<text x="873.50" y="879.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (240 samples, 0.01%)</title><rect x="225.0" y="1285" width="0.1" height="15.0" fill="rgb(218,181,31)" rx="2" ry="2" />
<text x="227.96" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (204 samples, 0.01%)</title><rect x="767.3" y="1061" width="0.1" height="15.0" fill="rgb(208,193,39)" rx="2" ry="2" />
<text x="770.34" y="1071.5" ></text>
</g>
<g >
<title>caml_modify (353 samples, 0.02%)</title><rect x="493.2" y="1189" width="0.2" height="15.0" fill="rgb(239,115,14)" rx="2" ry="2" />
<text x="496.25" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (502 samples, 0.02%)</title><rect x="1127.3" y="1141" width="0.3" height="15.0" fill="rgb(217,89,9)" rx="2" ry="2" />
<text x="1130.32" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (368 samples, 0.02%)</title><rect x="762.7" y="1109" width="0.1" height="15.0" fill="rgb(254,198,43)" rx="2" ry="2" />
<text x="765.66" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (418 samples, 0.02%)</title><rect x="545.5" y="1253" width="0.2" height="15.0" fill="rgb(250,49,34)" rx="2" ry="2" />
<text x="548.48" y="1263.5" ></text>
</g>
<g >
<title>camlData_encoding__Binary_reader__of_bytes_exn_822 (2,602 samples, 0.11%)</title><rect x="1164.9" y="853" width="1.3" height="15.0" fill="rgb(212,143,7)" rx="2" ry="2" />
<text x="1167.88" y="863.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (389 samples, 0.02%)</title><rect x="795.7" y="1029" width="0.2" height="15.0" fill="rgb(243,70,38)" rx="2" ry="2" />
<text x="798.72" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (525 samples, 0.02%)</title><rect x="220.5" y="1333" width="0.3" height="15.0" fill="rgb(246,199,34)" rx="2" ry="2" />
<text x="223.52" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_5009 (6,635 samples, 0.29%)</title><rect x="550.5" y="1269" width="3.4" height="15.0" fill="rgb(225,102,40)" rx="2" ry="2" />
<text x="553.51" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (1,980 samples, 0.09%)</title><rect x="533.1" y="1157" width="1.0" height="15.0" fill="rgb(243,210,26)" rx="2" ry="2" />
<text x="536.11" y="1167.5" ></text>
</g>
<g >
<title>caml_hash (697 samples, 0.03%)</title><rect x="1132.3" y="997" width="0.4" height="15.0" fill="rgb(235,176,31)" rx="2" ry="2" />
<text x="1135.30" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (266 samples, 0.01%)</title><rect x="204.6" y="1365" width="0.1" height="15.0" fill="rgb(238,69,22)" rx="2" ry="2" />
<text x="207.56" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (2,884 samples, 0.12%)</title><rect x="525.6" y="1333" width="1.5" height="15.0" fill="rgb(244,96,2)" rx="2" ry="2" />
<text x="528.59" y="1343.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (10,777 samples, 0.47%)</title><rect x="299.8" y="1445" width="5.5" height="15.0" fill="rgb(231,50,43)" rx="2" ry="2" />
<text x="302.81" y="1455.5" ></text>
</g>
<g >
<title>mark_slice (224 samples, 0.01%)</title><rect x="147.0" y="1397" width="0.1" height="15.0" fill="rgb(223,135,26)" rx="2" ry="2" />
<text x="149.99" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,132 samples, 0.05%)</title><rect x="137.2" y="1317" width="0.6" height="15.0" fill="rgb(241,190,23)" rx="2" ry="2" />
<text x="140.21" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (605 samples, 0.03%)</title><rect x="432.9" y="1349" width="0.3" height="15.0" fill="rgb(225,26,40)" rx="2" ry="2" />
<text x="435.92" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2173 (1,043 samples, 0.05%)</title><rect x="240.9" y="1413" width="0.6" height="15.0" fill="rgb(243,11,21)" rx="2" ry="2" />
<text x="243.92" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (760 samples, 0.03%)</title><rect x="147.5" y="1413" width="0.4" height="15.0" fill="rgb(212,139,2)" rx="2" ry="2" />
<text x="150.47" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (217 samples, 0.01%)</title><rect x="217.3" y="1237" width="0.1" height="15.0" fill="rgb(250,23,32)" rx="2" ry="2" />
<text x="220.32" y="1247.5" ></text>
</g>
<g >
<title>caml_curry3_1 (1,312 samples, 0.06%)</title><rect x="273.4" y="1429" width="0.7" height="15.0" fill="rgb(233,112,18)" rx="2" ry="2" />
<text x="276.43" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (362 samples, 0.02%)</title><rect x="708.1" y="981" width="0.2" height="15.0" fill="rgb(230,168,29)" rx="2" ry="2" />
<text x="711.11" y="991.5" ></text>
</g>
<g >
<title>mark_slice (260 samples, 0.01%)</title><rect x="616.3" y="1141" width="0.1" height="15.0" fill="rgb(232,10,26)" rx="2" ry="2" />
<text x="619.29" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (1,254 samples, 0.05%)</title><rect x="411.9" y="1349" width="0.7" height="15.0" fill="rgb(205,223,1)" rx="2" ry="2" />
<text x="414.93" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (483 samples, 0.02%)</title><rect x="522.0" y="1301" width="0.2" height="15.0" fill="rgb(209,39,8)" rx="2" ry="2" />
<text x="524.99" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (251 samples, 0.01%)</title><rect x="1118.7" y="853" width="0.1" height="15.0" fill="rgb(237,213,12)" rx="2" ry="2" />
<text x="1121.72" y="863.5" ></text>
</g>
<g >
<title>caml_call_gc (2,425 samples, 0.11%)</title><rect x="111.8" y="1509" width="1.3" height="15.0" fill="rgb(231,12,31)" rx="2" ry="2" />
<text x="114.81" y="1519.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (235 samples, 0.01%)</title><rect x="561.3" y="1205" width="0.1" height="15.0" fill="rgb(248,68,32)" rx="2" ry="2" />
<text x="564.30" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (367 samples, 0.02%)</title><rect x="581.3" y="1221" width="0.2" height="15.0" fill="rgb(237,182,22)" rx="2" ry="2" />
<text x="584.33" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (655 samples, 0.03%)</title><rect x="1117.8" y="981" width="0.3" height="15.0" fill="rgb(233,157,49)" rx="2" ry="2" />
<text x="1120.78" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_886 (600 samples, 0.03%)</title><rect x="724.7" y="1173" width="0.3" height="15.0" fill="rgb(211,21,43)" rx="2" ry="2" />
<text x="727.73" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (59,386 samples, 2.57%)</title><rect x="162.8" y="1445" width="30.3" height="15.0" fill="rgb(207,77,38)" rx="2" ry="2" />
<text x="165.78" y="1455.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (221 samples, 0.01%)</title><rect x="558.5" y="1205" width="0.1" height="15.0" fill="rgb(228,20,10)" rx="2" ry="2" />
<text x="561.46" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (694 samples, 0.03%)</title><rect x="334.5" y="1397" width="0.3" height="15.0" fill="rgb(224,146,15)" rx="2" ry="2" />
<text x="337.49" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__fun_3247 (2,348 samples, 0.10%)</title><rect x="377.3" y="1381" width="1.2" height="15.0" fill="rgb(237,154,7)" rx="2" ry="2" />
<text x="380.35" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12887 (72,319 samples, 3.13%)</title><rect x="631.3" y="373" width="36.9" height="15.0" fill="rgb(208,144,26)" rx="2" ry="2" />
<text x="634.27" y="383.5" >cam..</text>
</g>
<g >
<title>caml_major_collection_slice (530 samples, 0.02%)</title><rect x="497.6" y="1221" width="0.3" height="15.0" fill="rgb(210,70,53)" rx="2" ry="2" />
<text x="500.59" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (248 samples, 0.01%)</title><rect x="698.8" y="1077" width="0.1" height="15.0" fill="rgb(209,172,28)" rx="2" ry="2" />
<text x="701.76" y="1087.5" ></text>
</g>
<g >
<title>uECC_vli_mult (969 samples, 0.04%)</title><rect x="1146.9" y="133" width="0.5" height="15.0" fill="rgb(214,81,0)" rx="2" ry="2" />
<text x="1149.92" y="143.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (438 samples, 0.02%)</title><rect x="777.1" y="1045" width="0.3" height="15.0" fill="rgb(240,175,28)" rx="2" ry="2" />
<text x="780.13" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (383 samples, 0.02%)</title><rect x="877.9" y="1013" width="0.2" height="15.0" fill="rgb(249,47,44)" rx="2" ry="2" />
<text x="880.87" y="1023.5" ></text>
</g>
<g >
<title>mark_slice_darken (249 samples, 0.01%)</title><rect x="704.1" y="901" width="0.1" height="15.0" fill="rgb(215,124,31)" rx="2" ry="2" />
<text x="707.06" y="911.5" ></text>
</g>
<g >
<title>mark_slice (324 samples, 0.01%)</title><rect x="1122.3" y="869" width="0.2" height="15.0" fill="rgb(212,36,18)" rx="2" ry="2" />
<text x="1125.31" y="879.5" ></text>
</g>
<g >
<title>uECC_vli_mult (940 samples, 0.04%)</title><rect x="818.2" y="197" width="0.5" height="15.0" fill="rgb(220,185,40)" rx="2" ry="2" />
<text x="821.23" y="207.5" ></text>
</g>
<g >
<title>mark_slice_darken (643 samples, 0.03%)</title><rect x="215.4" y="1285" width="0.3" height="15.0" fill="rgb(252,35,54)" rx="2" ry="2" />
<text x="218.40" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (383 samples, 0.02%)</title><rect x="799.0" y="1013" width="0.1" height="15.0" fill="rgb(254,20,31)" rx="2" ry="2" />
<text x="801.95" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__decode_bin_17791 (339 samples, 0.01%)</title><rect x="1033.5" y="1397" width="0.2" height="15.0" fill="rgb(248,43,29)" rx="2" ry="2" />
<text x="1036.50" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (599 samples, 0.03%)</title><rect x="1164.3" y="389" width="0.3" height="15.0" fill="rgb(207,88,33)" rx="2" ry="2" />
<text x="1167.28" y="399.5" ></text>
</g>
<g >
<title>camlLwt__enter_resolution_loop_891 (932 samples, 0.04%)</title><rect x="481.1" y="1381" width="0.5" height="15.0" fill="rgb(211,224,36)" rx="2" ry="2" />
<text x="484.12" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (764 samples, 0.03%)</title><rect x="668.3" y="229" width="0.4" height="15.0" fill="rgb(246,87,52)" rx="2" ry="2" />
<text x="671.29" y="239.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (458 samples, 0.02%)</title><rect x="1177.7" y="853" width="0.3" height="15.0" fill="rgb(231,82,15)" rx="2" ry="2" />
<text x="1180.73" y="863.5" ></text>
</g>
<g >
<title>camlLwt_mutex__unlock_126 (707 samples, 0.03%)</title><rect x="1047.2" y="1317" width="0.4" height="15.0" fill="rgb(209,64,44)" rx="2" ry="2" />
<text x="1050.24" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (44,589 samples, 1.93%)</title><rect x="815.7" y="1061" width="22.8" height="15.0" fill="rgb(251,62,41)" rx="2" ry="2" />
<text x="818.69" y="1071.5" >c..</text>
</g>
<g >
<title>muladd (226 samples, 0.01%)</title><rect x="1160.2" y="149" width="0.1" height="15.0" fill="rgb(205,150,35)" rx="2" ry="2" />
<text x="1163.23" y="159.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (43,882 samples, 1.90%)</title><rect x="1143.9" y="917" width="22.4" height="15.0" fill="rgb(241,79,42)" rx="2" ry="2" />
<text x="1146.88" y="927.5" >c..</text>
</g>
<g >
<title>caml_call_gc (513 samples, 0.02%)</title><rect x="786.3" y="1125" width="0.3" height="15.0" fill="rgb(225,13,1)" rx="2" ry="2" />
<text x="789.34" y="1135.5" ></text>
</g>
<g >
<title>caml_call_gc (231 samples, 0.01%)</title><rect x="868.8" y="869" width="0.1" height="15.0" fill="rgb(233,217,25)" rx="2" ry="2" />
<text x="871.82" y="879.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (243 samples, 0.01%)</title><rect x="824.2" y="229" width="0.1" height="15.0" fill="rgb(237,168,15)" rx="2" ry="2" />
<text x="827.18" y="239.5" ></text>
</g>
<g >
<title>uECC_vli_mult (233 samples, 0.01%)</title><rect x="822.9" y="213" width="0.1" height="15.0" fill="rgb(249,87,17)" rx="2" ry="2" />
<text x="825.89" y="223.5" ></text>
</g>
<g >
<title>caml_call_gc (338 samples, 0.01%)</title><rect x="795.9" y="1029" width="0.2" height="15.0" fill="rgb(230,187,47)" rx="2" ry="2" />
<text x="798.92" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (332 samples, 0.01%)</title><rect x="1064.1" y="1125" width="0.2" height="15.0" fill="rgb(210,6,52)" rx="2" ry="2" />
<text x="1067.09" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (363 samples, 0.02%)</title><rect x="499.1" y="1237" width="0.1" height="15.0" fill="rgb(220,55,30)" rx="2" ry="2" />
<text x="502.06" y="1247.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (415 samples, 0.02%)</title><rect x="716.1" y="1029" width="0.2" height="15.0" fill="rgb(240,182,21)" rx="2" ry="2" />
<text x="719.10" y="1039.5" ></text>
</g>
<g >
<title>camlEnvironment_V0__apply_operation_31284 (3,600 samples, 0.16%)</title><rect x="668.2" y="373" width="1.9" height="15.0" fill="rgb(205,154,41)" rx="2" ry="2" />
<text x="671.24" y="383.5" ></text>
</g>
<g >
<title>double_jacobian_default (13,689 samples, 0.59%)</title><rect x="645.9" y="165" width="7.0" height="15.0" fill="rgb(243,71,31)" rx="2" ry="2" />
<text x="648.89" y="175.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (102,279 samples, 4.43%)</title><rect x="1114.4" y="1173" width="52.3" height="15.0" fill="rgb(247,85,25)" rx="2" ry="2" />
<text x="1117.42" y="1183.5" >camlL..</text>
</g>
<g >
<title>mark_slice_darken (210 samples, 0.01%)</title><rect x="707.4" y="949" width="0.1" height="15.0" fill="rgb(229,92,2)" rx="2" ry="2" />
<text x="710.38" y="959.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (1,248 samples, 0.05%)</title><rect x="439.1" y="1381" width="0.7" height="15.0" fill="rgb(209,211,47)" rx="2" ry="2" />
<text x="442.12" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (295 samples, 0.01%)</title><rect x="904.8" y="1333" width="0.2" height="15.0" fill="rgb(230,21,0)" rx="2" ry="2" />
<text x="907.85" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (8,652 samples, 0.37%)</title><rect x="1039.5" y="1413" width="4.4" height="15.0" fill="rgb(248,120,46)" rx="2" ry="2" />
<text x="1042.50" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (480 samples, 0.02%)</title><rect x="469.3" y="1301" width="0.2" height="15.0" fill="rgb(229,215,50)" rx="2" ry="2" />
<text x="472.28" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (220 samples, 0.01%)</title><rect x="792.4" y="917" width="0.1" height="15.0" fill="rgb(210,159,54)" rx="2" ry="2" />
<text x="795.38" y="927.5" ></text>
</g>
<g >
<title>mark_slice (749 samples, 0.03%)</title><rect x="137.3" y="1285" width="0.4" height="15.0" fill="rgb(231,22,45)" rx="2" ry="2" />
<text x="140.31" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,742 samples, 0.08%)</title><rect x="1091.8" y="949" width="0.9" height="15.0" fill="rgb(225,63,13)" rx="2" ry="2" />
<text x="1094.80" y="959.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_7512 (25,675 samples, 1.11%)</title><rect x="1143.9" y="309" width="13.1" height="15.0" fill="rgb(226,45,12)" rx="2" ry="2" />
<text x="1146.91" y="319.5" ></text>
</g>
<g >
<title>mark_slice (356 samples, 0.02%)</title><rect x="258.1" y="1333" width="0.1" height="15.0" fill="rgb(252,156,37)" rx="2" ry="2" />
<text x="261.07" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,501 samples, 0.07%)</title><rect x="1140.7" y="1061" width="0.7" height="15.0" fill="rgb(242,5,34)" rx="2" ry="2" />
<text x="1143.67" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,198 samples, 0.05%)</title><rect x="235.9" y="1349" width="0.7" height="15.0" fill="rgb(241,184,27)" rx="2" ry="2" />
<text x="238.95" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (336 samples, 0.01%)</title><rect x="875.5" y="1013" width="0.1" height="15.0" fill="rgb(246,143,53)" rx="2" ry="2" />
<text x="878.48" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (205 samples, 0.01%)</title><rect x="555.6" y="1237" width="0.1" height="15.0" fill="rgb(209,43,12)" rx="2" ry="2" />
<text x="558.62" y="1247.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (203 samples, 0.01%)</title><rect x="1167.5" y="1221" width="0.1" height="15.0" fill="rgb(238,199,45)" rx="2" ry="2" />
<text x="1170.48" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,150 samples, 0.05%)</title><rect x="522.3" y="1333" width="0.6" height="15.0" fill="rgb(248,210,33)" rx="2" ry="2" />
<text x="525.27" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (1,334 samples, 0.06%)</title><rect x="533.3" y="1109" width="0.6" height="15.0" fill="rgb(210,187,24)" rx="2" ry="2" />
<text x="536.26" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__length_aux_83 (218 samples, 0.01%)</title><rect x="728.2" y="1189" width="0.1" height="15.0" fill="rgb(210,187,48)" rx="2" ry="2" />
<text x="731.19" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (609 samples, 0.03%)</title><rect x="446.3" y="1445" width="0.3" height="15.0" fill="rgb(234,162,42)" rx="2" ry="2" />
<text x="449.25" y="1455.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (199 samples, 0.01%)</title><rect x="443.3" y="1381" width="0.1" height="15.0" fill="rgb(228,142,37)" rx="2" ry="2" />
<text x="446.25" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (318,331 samples, 13.79%)</title><rect x="679.1" y="1253" width="162.7" height="15.0" fill="rgb(224,5,33)" rx="2" ry="2" />
<text x="682.08" y="1263.5" >camlLwt__iter_callba..</text>
</g>
<g >
<title>camlLwt__pause_2050 (5,756 samples, 0.25%)</title><rect x="909.1" y="1429" width="3.0" height="15.0" fill="rgb(208,78,46)" rx="2" ry="2" />
<text x="912.12" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (220 samples, 0.01%)</title><rect x="519.0" y="1317" width="0.1" height="15.0" fill="rgb(215,31,16)" rx="2" ry="2" />
<text x="522.02" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (269 samples, 0.01%)</title><rect x="1117.9" y="949" width="0.1" height="15.0" fill="rgb(215,176,32)" rx="2" ry="2" />
<text x="1120.86" y="959.5" ></text>
</g>
<g >
<title>mark_slice_darken (761 samples, 0.03%)</title><rect x="915.4" y="1381" width="0.4" height="15.0" fill="rgb(234,225,33)" rx="2" ry="2" />
<text x="918.38" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (425 samples, 0.02%)</title><rect x="535.1" y="1061" width="0.3" height="15.0" fill="rgb(210,159,0)" rx="2" ry="2" />
<text x="538.14" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (80,681 samples, 3.50%)</title><rect x="631.2" y="949" width="41.3" height="15.0" fill="rgb(234,38,13)" rx="2" ry="2" />
<text x="634.22" y="959.5" >cam..</text>
</g>
<g >
<title>caml_process_pending_signals (300 samples, 0.01%)</title><rect x="533.7" y="1061" width="0.1" height="15.0" fill="rgb(229,183,24)" rx="2" ry="2" />
<text x="536.70" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (1,182 samples, 0.05%)</title><rect x="697.5" y="981" width="0.6" height="15.0" fill="rgb(216,120,2)" rx="2" ry="2" />
<text x="700.49" y="991.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (303 samples, 0.01%)</title><rect x="817.3" y="181" width="0.1" height="15.0" fill="rgb(209,179,20)" rx="2" ry="2" />
<text x="820.29" y="191.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (979 samples, 0.04%)</title><rect x="617.2" y="1237" width="0.5" height="15.0" fill="rgb(228,196,0)" rx="2" ry="2" />
<text x="620.15" y="1247.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (244 samples, 0.01%)</title><rect x="697.8" y="901" width="0.1" height="15.0" fill="rgb(254,161,16)" rx="2" ry="2" />
<text x="700.80" y="911.5" ></text>
</g>
<g >
<title>uECC_vli_add (246 samples, 0.01%)</title><rect x="1155.1" y="133" width="0.1" height="15.0" fill="rgb(241,218,35)" rx="2" ry="2" />
<text x="1158.11" y="143.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (236 samples, 0.01%)</title><rect x="1024.0" y="1333" width="0.1" height="15.0" fill="rgb(249,151,47)" rx="2" ry="2" />
<text x="1026.99" y="1343.5" ></text>
</g>
<g >
<title>caml_modify (196 samples, 0.01%)</title><rect x="772.4" y="1061" width="0.1" height="15.0" fill="rgb(214,41,47)" rx="2" ry="2" />
<text x="775.43" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (539 samples, 0.02%)</title><rect x="265.3" y="1333" width="0.3" height="15.0" fill="rgb(250,185,31)" rx="2" ry="2" />
<text x="268.32" y="1343.5" ></text>
</g>
<g >
<title>camlUecc__pk_of_bytes_738 (946 samples, 0.04%)</title><rect x="671.9" y="805" width="0.5" height="15.0" fill="rgb(214,8,25)" rx="2" ry="2" />
<text x="674.89" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (261 samples, 0.01%)</title><rect x="539.3" y="1157" width="0.2" height="15.0" fill="rgb(244,101,45)" rx="2" ry="2" />
<text x="542.33" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (641 samples, 0.03%)</title><rect x="379.5" y="1317" width="0.3" height="15.0" fill="rgb(235,153,8)" rx="2" ry="2" />
<text x="382.50" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (201 samples, 0.01%)</title><rect x="997.9" y="1173" width="0.2" height="15.0" fill="rgb(220,51,45)" rx="2" ry="2" />
<text x="1000.95" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (918 samples, 0.04%)</title><rect x="676.5" y="1221" width="0.4" height="15.0" fill="rgb(246,74,49)" rx="2" ry="2" />
<text x="679.45" y="1231.5" ></text>
</g>
<g >
<title>uECC_vli_sub (663 samples, 0.03%)</title><rect x="652.1" y="117" width="0.3" height="15.0" fill="rgb(228,113,50)" rx="2" ry="2" />
<text x="655.09" y="127.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,268 samples, 0.05%)</title><rect x="577.1" y="1029" width="0.6" height="15.0" fill="rgb(212,128,28)" rx="2" ry="2" />
<text x="580.06" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_current_7621 (1,083 samples, 0.05%)</title><rect x="1060.4" y="1221" width="0.5" height="15.0" fill="rgb(206,183,20)" rx="2" ry="2" />
<text x="1063.35" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (604 samples, 0.03%)</title><rect x="242.7" y="1349" width="0.3" height="15.0" fill="rgb(217,202,47)" rx="2" ry="2" />
<text x="245.69" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (793 samples, 0.03%)</title><rect x="125.2" y="1365" width="0.4" height="15.0" fill="rgb(246,50,1)" rx="2" ry="2" />
<text x="128.23" y="1375.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,415 samples, 0.06%)</title><rect x="619.9" y="1061" width="0.7" height="15.0" fill="rgb(230,26,47)" rx="2" ry="2" />
<text x="622.88" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (198 samples, 0.01%)</title><rect x="877.0" y="1013" width="0.1" height="15.0" fill="rgb(220,20,50)" rx="2" ry="2" />
<text x="880.00" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (284 samples, 0.01%)</title><rect x="526.9" y="1269" width="0.1" height="15.0" fill="rgb(236,26,0)" rx="2" ry="2" />
<text x="529.87" y="1279.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (217 samples, 0.01%)</title><rect x="243.6" y="1349" width="0.1" height="15.0" fill="rgb(227,192,29)" rx="2" ry="2" />
<text x="246.56" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_mult (1,400 samples, 0.06%)</title><rect x="1149.3" y="133" width="0.7" height="15.0" fill="rgb(210,35,53)" rx="2" ry="2" />
<text x="1152.27" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (440 samples, 0.02%)</title><rect x="810.8" y="1077" width="0.2" height="15.0" fill="rgb(248,176,23)" rx="2" ry="2" />
<text x="813.81" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_value_4128 (1,621 samples, 0.07%)</title><rect x="1163.9" y="693" width="0.8" height="15.0" fill="rgb(241,85,36)" rx="2" ry="2" />
<text x="1166.86" y="703.5" ></text>
</g>
<g >
<title>caml_call_gc (244 samples, 0.01%)</title><rect x="554.0" y="1221" width="0.1" height="15.0" fill="rgb(227,115,17)" rx="2" ry="2" />
<text x="557.02" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (43,902 samples, 1.90%)</title><rect x="1143.9" y="981" width="22.4" height="15.0" fill="rgb(218,104,18)" rx="2" ry="2" />
<text x="1146.87" y="991.5" >c..</text>
</g>
<g >
<title>caml_major_collection_slice (1,074 samples, 0.05%)</title><rect x="99.0" y="1525" width="0.6" height="15.0" fill="rgb(233,41,44)" rx="2" ry="2" />
<text x="102.05" y="1535.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,095 samples, 0.05%)</title><rect x="842.3" y="1221" width="0.6" height="15.0" fill="rgb(210,227,45)" rx="2" ry="2" />
<text x="845.31" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (4,610 samples, 0.20%)</title><rect x="828.9" y="309" width="2.4" height="15.0" fill="rgb(229,75,10)" rx="2" ry="2" />
<text x="831.89" y="319.5" ></text>
</g>
<g >
<title>mark_slice (253 samples, 0.01%)</title><rect x="203.3" y="1301" width="0.1" height="15.0" fill="rgb(228,74,33)" rx="2" ry="2" />
<text x="206.31" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (988 samples, 0.04%)</title><rect x="186.9" y="1365" width="0.5" height="15.0" fill="rgb(228,200,7)" rx="2" ry="2" />
<text x="189.86" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (211 samples, 0.01%)</title><rect x="772.6" y="1109" width="0.1" height="15.0" fill="rgb(253,163,50)" rx="2" ry="2" />
<text x="775.58" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (223 samples, 0.01%)</title><rect x="799.8" y="1013" width="0.1" height="15.0" fill="rgb(247,199,44)" rx="2" ry="2" />
<text x="802.76" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,539 samples, 0.11%)</title><rect x="690.7" y="1061" width="1.3" height="15.0" fill="rgb(244,73,40)" rx="2" ry="2" />
<text x="693.66" y="1071.5" ></text>
</g>
<g >
<title>apply_z (724 samples, 0.03%)</title><rect x="1145.1" y="149" width="0.3" height="15.0" fill="rgb(223,229,32)" rx="2" ry="2" />
<text x="1148.05" y="159.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (330 samples, 0.01%)</title><rect x="478.7" y="1317" width="0.2" height="15.0" fill="rgb(238,208,32)" rx="2" ry="2" />
<text x="481.72" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (2,404 samples, 0.10%)</title><rect x="907.1" y="1397" width="1.2" height="15.0" fill="rgb(226,134,32)" rx="2" ry="2" />
<text x="910.07" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15580 (1,329 samples, 0.06%)</title><rect x="584.1" y="1349" width="0.7" height="15.0" fill="rgb(224,189,21)" rx="2" ry="2" />
<text x="587.08" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (455 samples, 0.02%)</title><rect x="615.8" y="1189" width="0.2" height="15.0" fill="rgb(219,186,23)" rx="2" ry="2" />
<text x="618.77" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (243 samples, 0.01%)</title><rect x="797.7" y="981" width="0.1" height="15.0" fill="rgb(241,78,32)" rx="2" ry="2" />
<text x="800.71" y="991.5" ></text>
</g>
<g >
<title>mark_slice_darken (794 samples, 0.03%)</title><rect x="329.8" y="1397" width="0.4" height="15.0" fill="rgb(225,72,47)" rx="2" ry="2" />
<text x="332.79" y="1407.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (4,111 samples, 0.18%)</title><rect x="816.1" y="261" width="2.1" height="15.0" fill="rgb(227,76,1)" rx="2" ry="2" />
<text x="819.08" y="271.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (421 samples, 0.02%)</title><rect x="856.3" y="949" width="0.3" height="15.0" fill="rgb(227,73,49)" rx="2" ry="2" />
<text x="859.34" y="959.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (11,330 samples, 0.49%)</title><rect x="1169.1" y="1061" width="5.8" height="15.0" fill="rgb(206,173,49)" rx="2" ry="2" />
<text x="1172.12" y="1071.5" ></text>
</g>
<g >
<title>muladd (326 samples, 0.01%)</title><rect x="1096.0" y="37" width="0.2" height="15.0" fill="rgb(226,143,18)" rx="2" ry="2" />
<text x="1099.02" y="47.5" ></text>
</g>
<g >
<title>caml_call_gc (776 samples, 0.03%)</title><rect x="272.4" y="1413" width="0.4" height="15.0" fill="rgb(228,5,19)" rx="2" ry="2" />
<text x="275.36" y="1423.5" ></text>
</g>
<g >
<title>caml_garbage_collection (648 samples, 0.03%)</title><rect x="809.5" y="1061" width="0.3" height="15.0" fill="rgb(223,177,46)" rx="2" ry="2" />
<text x="812.50" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (7,896 samples, 0.34%)</title><rect x="1175.0" y="1045" width="4.0" height="15.0" fill="rgb(213,50,9)" rx="2" ry="2" />
<text x="1177.97" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (422 samples, 0.02%)</title><rect x="1056.6" y="1125" width="0.2" height="15.0" fill="rgb(249,221,35)" rx="2" ry="2" />
<text x="1059.60" y="1135.5" ></text>
</g>
<g >
<title>uECC_vli_mult (2,830 samples, 0.12%)</title><rect x="639.7" y="133" width="1.5" height="15.0" fill="rgb(249,82,27)" rx="2" ry="2" />
<text x="642.72" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (1,566 samples, 0.07%)</title><rect x="901.1" y="1445" width="0.8" height="15.0" fill="rgb(252,31,1)" rx="2" ry="2" />
<text x="904.09" y="1455.5" ></text>
</g>
<g >
<title>double_jacobian_default (2,127 samples, 0.09%)</title><rect x="829.9" y="245" width="1.1" height="15.0" fill="rgb(213,155,54)" rx="2" ry="2" />
<text x="832.88" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__case_v_619 (811 samples, 0.04%)</title><rect x="754.1" y="1093" width="0.4" height="15.0" fill="rgb(206,18,47)" rx="2" ry="2" />
<text x="757.11" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,001 samples, 0.04%)</title><rect x="432.3" y="1349" width="0.5" height="15.0" fill="rgb(215,198,16)" rx="2" ry="2" />
<text x="435.27" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (723 samples, 0.03%)</title><rect x="547.7" y="1301" width="0.4" height="15.0" fill="rgb(230,74,0)" rx="2" ry="2" />
<text x="550.73" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (901 samples, 0.04%)</title><rect x="192.1" y="1045" width="0.4" height="15.0" fill="rgb(241,140,16)" rx="2" ry="2" />
<text x="195.09" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (9,278 samples, 0.40%)</title><rect x="1152.3" y="261" width="4.7" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="1155.29" y="271.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (243 samples, 0.01%)</title><rect x="1164.4" y="229" width="0.1" height="15.0" fill="rgb(246,51,9)" rx="2" ry="2" />
<text x="1167.36" y="239.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (275 samples, 0.01%)</title><rect x="1187.0" y="1653" width="0.1" height="15.0" fill="rgb(245,229,39)" rx="2" ry="2" />
<text x="1189.97" y="1663.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (419 samples, 0.02%)</title><rect x="293.1" y="1333" width="0.2" height="15.0" fill="rgb(232,145,36)" rx="2" ry="2" />
<text x="296.12" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (928 samples, 0.04%)</title><rect x="200.1" y="1349" width="0.5" height="15.0" fill="rgb(207,98,47)" rx="2" ry="2" />
<text x="203.11" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (340 samples, 0.01%)</title><rect x="1178.2" y="869" width="0.2" height="15.0" fill="rgb(212,210,37)" rx="2" ry="2" />
<text x="1181.18" y="879.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (41,018 samples, 1.78%)</title><rect x="1143.9" y="869" width="20.9" height="15.0" fill="rgb(223,221,35)" rx="2" ry="2" />
<text x="1146.88" y="879.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (253 samples, 0.01%)</title><rect x="489.5" y="1269" width="0.1" height="15.0" fill="rgb(242,219,42)" rx="2" ry="2" />
<text x="492.50" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (205 samples, 0.01%)</title><rect x="845.9" y="1333" width="0.1" height="15.0" fill="rgb(228,10,31)" rx="2" ry="2" />
<text x="848.91" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (353 samples, 0.02%)</title><rect x="915.6" y="1365" width="0.2" height="15.0" fill="rgb(222,105,45)" rx="2" ry="2" />
<text x="918.59" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (402 samples, 0.02%)</title><rect x="836.4" y="485" width="0.2" height="15.0" fill="rgb(218,105,11)" rx="2" ry="2" />
<text x="839.39" y="495.5" ></text>
</g>
<g >
<title>caml_modify (222 samples, 0.01%)</title><rect x="839.6" y="1205" width="0.1" height="15.0" fill="rgb(239,165,17)" rx="2" ry="2" />
<text x="842.55" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (1,253 samples, 0.05%)</title><rect x="723.7" y="1205" width="0.6" height="15.0" fill="rgb(223,167,15)" rx="2" ry="2" />
<text x="726.69" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (36,411 samples, 1.58%)</title><rect x="1094.5" y="981" width="18.6" height="15.0" fill="rgb(236,166,42)" rx="2" ry="2" />
<text x="1097.53" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (224 samples, 0.01%)</title><rect x="855.6" y="917" width="0.1" height="15.0" fill="rgb(207,25,1)" rx="2" ry="2" />
<text x="858.63" y="927.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (2,708 samples, 0.12%)</title><rect x="93.2" y="1525" width="1.3" height="15.0" fill="rgb(252,84,3)" rx="2" ry="2" />
<text x="96.16" y="1535.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,350 samples, 0.15%)</title><rect x="598.9" y="1301" width="1.8" height="15.0" fill="rgb(214,137,44)" rx="2" ry="2" />
<text x="601.94" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (603 samples, 0.03%)</title><rect x="1179.3" y="1173" width="0.3" height="15.0" fill="rgb(234,0,39)" rx="2" ry="2" />
<text x="1182.29" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (196 samples, 0.01%)</title><rect x="192.0" y="1029" width="0.1" height="15.0" fill="rgb(215,53,43)" rx="2" ry="2" />
<text x="194.98" y="1039.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (3,248 samples, 0.14%)</title><rect x="288.9" y="1365" width="1.6" height="15.0" fill="rgb(239,54,42)" rx="2" ry="2" />
<text x="291.87" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (341 samples, 0.01%)</title><rect x="218.5" y="1333" width="0.2" height="15.0" fill="rgb(208,144,51)" rx="2" ry="2" />
<text x="221.55" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (653 samples, 0.03%)</title><rect x="986.8" y="1333" width="0.3" height="15.0" fill="rgb(221,172,35)" rx="2" ry="2" />
<text x="989.77" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (2,689 samples, 0.12%)</title><rect x="260.2" y="1397" width="1.4" height="15.0" fill="rgb(217,91,17)" rx="2" ry="2" />
<text x="263.22" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (669 samples, 0.03%)</title><rect x="267.9" y="1349" width="0.4" height="15.0" fill="rgb(217,181,36)" rx="2" ry="2" />
<text x="270.92" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,038 samples, 0.04%)</title><rect x="924.1" y="1509" width="0.5" height="15.0" fill="rgb(233,44,27)" rx="2" ry="2" />
<text x="927.08" y="1519.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (336 samples, 0.01%)</title><rect x="244.0" y="1301" width="0.2" height="15.0" fill="rgb(251,160,49)" rx="2" ry="2" />
<text x="247.00" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_string (266 samples, 0.01%)</title><rect x="1022.4" y="1381" width="0.1" height="15.0" fill="rgb(226,39,23)" rx="2" ry="2" />
<text x="1025.38" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (211 samples, 0.01%)</title><rect x="618.8" y="1173" width="0.1" height="15.0" fill="rgb(249,20,27)" rx="2" ry="2" />
<text x="621.78" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (252 samples, 0.01%)</title><rect x="1122.3" y="853" width="0.2" height="15.0" fill="rgb(213,21,38)" rx="2" ry="2" />
<text x="1125.34" y="863.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (388 samples, 0.02%)</title><rect x="884.4" y="1093" width="0.2" height="15.0" fill="rgb(210,33,10)" rx="2" ry="2" />
<text x="887.43" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (437 samples, 0.02%)</title><rect x="795.0" y="1013" width="0.3" height="15.0" fill="rgb(215,41,54)" rx="2" ry="2" />
<text x="798.03" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (249 samples, 0.01%)</title><rect x="799.3" y="1045" width="0.1" height="15.0" fill="rgb(233,131,26)" rx="2" ry="2" />
<text x="802.32" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (398 samples, 0.02%)</title><rect x="613.9" y="1141" width="0.2" height="15.0" fill="rgb(219,81,1)" rx="2" ry="2" />
<text x="616.93" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (253 samples, 0.01%)</title><rect x="1175.2" y="917" width="0.2" height="15.0" fill="rgb(224,215,43)" rx="2" ry="2" />
<text x="1178.23" y="927.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_471 (293 samples, 0.01%)</title><rect x="1001.0" y="1349" width="0.2" height="15.0" fill="rgb(222,12,9)" rx="2" ry="2" />
<text x="1004.01" y="1359.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (1,414 samples, 0.06%)</title><rect x="462.5" y="1365" width="0.7" height="15.0" fill="rgb(251,85,12)" rx="2" ry="2" />
<text x="465.52" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (516 samples, 0.02%)</title><rect x="590.3" y="1285" width="0.3" height="15.0" fill="rgb(235,12,21)" rx="2" ry="2" />
<text x="593.30" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (295 samples, 0.01%)</title><rect x="556.2" y="1285" width="0.1" height="15.0" fill="rgb(236,8,33)" rx="2" ry="2" />
<text x="559.19" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (25,955 samples, 1.12%)</title><rect x="698.9" y="1077" width="13.3" height="15.0" fill="rgb(250,57,22)" rx="2" ry="2" />
<text x="701.89" y="1087.5" ></text>
</g>
<g >
<title>caml_apply2 (417 samples, 0.02%)</title><rect x="566.8" y="1205" width="0.2" height="15.0" fill="rgb(220,98,32)" rx="2" ry="2" />
<text x="569.77" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (253 samples, 0.01%)</title><rect x="782.7" y="1141" width="0.1" height="15.0" fill="rgb(223,226,40)" rx="2" ry="2" />
<text x="785.71" y="1151.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (7,196 samples, 0.31%)</title><rect x="1063.2" y="1221" width="3.6" height="15.0" fill="rgb(211,218,0)" rx="2" ry="2" />
<text x="1066.16" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (260 samples, 0.01%)</title><rect x="392.2" y="1381" width="0.1" height="15.0" fill="rgb(234,150,1)" rx="2" ry="2" />
<text x="395.19" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (1,140 samples, 0.05%)</title><rect x="613.6" y="1189" width="0.5" height="15.0" fill="rgb(253,49,10)" rx="2" ry="2" />
<text x="616.55" y="1199.5" ></text>
</g>
<g >
<title>caml_modify (213 samples, 0.01%)</title><rect x="1081.8" y="1253" width="0.1" height="15.0" fill="rgb(226,62,38)" rx="2" ry="2" />
<text x="1084.83" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (98,081 samples, 4.25%)</title><rect x="622.7" y="1205" width="50.1" height="15.0" fill="rgb(232,220,9)" rx="2" ry="2" />
<text x="625.71" y="1215.5" >camlL..</text>
</g>
<g >
<title>caml_garbage_collection (242 samples, 0.01%)</title><rect x="988.9" y="1349" width="0.1" height="15.0" fill="rgb(223,164,35)" rx="2" ry="2" />
<text x="991.90" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (1,237 samples, 0.05%)</title><rect x="625.4" y="1013" width="0.6" height="15.0" fill="rgb(234,26,27)" rx="2" ry="2" />
<text x="628.35" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (312 samples, 0.01%)</title><rect x="523.4" y="1253" width="0.1" height="15.0" fill="rgb(228,211,50)" rx="2" ry="2" />
<text x="526.38" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (994 samples, 0.04%)</title><rect x="577.2" y="693" width="0.5" height="15.0" fill="rgb(229,212,24)" rx="2" ry="2" />
<text x="580.19" y="703.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (297 samples, 0.01%)</title><rect x="612.9" y="1093" width="0.2" height="15.0" fill="rgb(224,49,31)" rx="2" ry="2" />
<text x="615.95" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_825 (474 samples, 0.02%)</title><rect x="884.9" y="1317" width="0.2" height="15.0" fill="rgb(229,223,13)" rx="2" ry="2" />
<text x="887.89" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (516 samples, 0.02%)</title><rect x="812.5" y="1109" width="0.2" height="15.0" fill="rgb(249,199,35)" rx="2" ry="2" />
<text x="815.46" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (431 samples, 0.02%)</title><rect x="526.8" y="1317" width="0.2" height="15.0" fill="rgb(216,207,17)" rx="2" ry="2" />
<text x="529.83" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (583 samples, 0.03%)</title><rect x="225.8" y="1301" width="0.3" height="15.0" fill="rgb(244,209,21)" rx="2" ry="2" />
<text x="228.83" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (970 samples, 0.04%)</title><rect x="773.4" y="1109" width="0.5" height="15.0" fill="rgb(208,32,15)" rx="2" ry="2" />
<text x="776.39" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (968 samples, 0.04%)</title><rect x="884.3" y="1221" width="0.5" height="15.0" fill="rgb(212,92,1)" rx="2" ry="2" />
<text x="887.29" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (654 samples, 0.03%)</title><rect x="541.1" y="1109" width="0.4" height="15.0" fill="rgb(242,107,32)" rx="2" ry="2" />
<text x="544.14" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (773 samples, 0.03%)</title><rect x="610.5" y="1205" width="0.4" height="15.0" fill="rgb(218,17,13)" rx="2" ry="2" />
<text x="613.51" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (261 samples, 0.01%)</title><rect x="799.5" y="1013" width="0.1" height="15.0" fill="rgb(210,142,15)" rx="2" ry="2" />
<text x="802.47" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (321 samples, 0.01%)</title><rect x="702.7" y="965" width="0.2" height="15.0" fill="rgb(216,149,20)" rx="2" ry="2" />
<text x="705.75" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (493 samples, 0.02%)</title><rect x="1077.1" y="1093" width="0.3" height="15.0" fill="rgb(229,86,41)" rx="2" ry="2" />
<text x="1080.12" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (371 samples, 0.02%)</title><rect x="707.1" y="997" width="0.2" height="15.0" fill="rgb(230,67,12)" rx="2" ry="2" />
<text x="710.12" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (201 samples, 0.01%)</title><rect x="505.3" y="1285" width="0.1" height="15.0" fill="rgb(248,161,0)" rx="2" ry="2" />
<text x="508.33" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (383 samples, 0.02%)</title><rect x="907.1" y="1349" width="0.2" height="15.0" fill="rgb(243,137,23)" rx="2" ry="2" />
<text x="910.07" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (222 samples, 0.01%)</title><rect x="552.0" y="1173" width="0.2" height="15.0" fill="rgb(215,181,33)" rx="2" ry="2" />
<text x="555.04" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (78,876 samples, 3.42%)</title><rect x="682.7" y="1173" width="40.3" height="15.0" fill="rgb(237,155,14)" rx="2" ry="2" />
<text x="685.73" y="1183.5" >cam..</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (261 samples, 0.01%)</title><rect x="1131.0" y="1029" width="0.1" height="15.0" fill="rgb(224,11,20)" rx="2" ry="2" />
<text x="1134.00" y="1039.5" ></text>
</g>
<g >
<title>caml_apply2 (2,291 samples, 0.10%)</title><rect x="373.9" y="1365" width="1.2" height="15.0" fill="rgb(230,174,15)" rx="2" ry="2" />
<text x="376.93" y="1375.5" ></text>
</g>
<g >
<title>caml_next_frame_descriptor (4,612 samples, 0.20%)</title><rect x="1187.6" y="1637" width="2.4" height="15.0" fill="rgb(216,4,4)" rx="2" ry="2" />
<text x="1190.64" y="1647.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,120 samples, 0.05%)</title><rect x="213.6" y="1301" width="0.6" height="15.0" fill="rgb(250,224,26)" rx="2" ry="2" />
<text x="216.61" y="1311.5" ></text>
</g>
<g >
<title>caml_blit_bytes (277 samples, 0.01%)</title><rect x="587.3" y="1269" width="0.2" height="15.0" fill="rgb(244,207,14)" rx="2" ry="2" />
<text x="590.32" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (706 samples, 0.03%)</title><rect x="856.7" y="981" width="0.4" height="15.0" fill="rgb(216,15,36)" rx="2" ry="2" />
<text x="859.72" y="991.5" ></text>
</g>
<g >
<title>uECC_verify_stub (6,617 samples, 0.29%)</title><rect x="1095.1" y="117" width="3.4" height="15.0" fill="rgb(215,127,35)" rx="2" ry="2" />
<text x="1098.07" y="127.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (3,790 samples, 0.16%)</title><rect x="1118.5" y="997" width="1.9" height="15.0" fill="rgb(244,150,53)" rx="2" ry="2" />
<text x="1121.50" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,643 samples, 0.07%)</title><rect x="372.2" y="1317" width="0.8" height="15.0" fill="rgb(240,105,22)" rx="2" ry="2" />
<text x="375.17" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (1,100 samples, 0.05%)</title><rect x="1056.9" y="1125" width="0.6" height="15.0" fill="rgb(205,81,23)" rx="2" ry="2" />
<text x="1059.91" y="1135.5" ></text>
</g>
<g >
<title>caml_call_gc (206 samples, 0.01%)</title><rect x="1032.2" y="1349" width="0.1" height="15.0" fill="rgb(227,100,10)" rx="2" ry="2" />
<text x="1035.16" y="1359.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (500 samples, 0.02%)</title><rect x="728.3" y="1157" width="0.3" height="15.0" fill="rgb(228,143,27)" rx="2" ry="2" />
<text x="731.30" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (728 samples, 0.03%)</title><rect x="677.2" y="1253" width="0.4" height="15.0" fill="rgb(237,177,20)" rx="2" ry="2" />
<text x="680.22" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (1,339 samples, 0.06%)</title><rect x="1077.1" y="1157" width="0.7" height="15.0" fill="rgb(217,210,25)" rx="2" ry="2" />
<text x="1080.09" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_8138 (580 samples, 0.03%)</title><rect x="670.6" y="709" width="0.3" height="15.0" fill="rgb(230,68,17)" rx="2" ry="2" />
<text x="673.58" y="719.5" ></text>
</g>
<g >
<title>mark_slice_darken (551 samples, 0.02%)</title><rect x="911.2" y="1317" width="0.3" height="15.0" fill="rgb(249,98,37)" rx="2" ry="2" />
<text x="914.21" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (328 samples, 0.01%)</title><rect x="1079.4" y="1253" width="0.2" height="15.0" fill="rgb(211,70,18)" rx="2" ry="2" />
<text x="1082.39" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (469 samples, 0.02%)</title><rect x="807.0" y="1061" width="0.3" height="15.0" fill="rgb(218,227,9)" rx="2" ry="2" />
<text x="810.01" y="1071.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (857 samples, 0.04%)</title><rect x="250.2" y="1333" width="0.5" height="15.0" fill="rgb(248,46,5)" rx="2" ry="2" />
<text x="253.22" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (4,324 samples, 0.19%)</title><rect x="894.7" y="1429" width="2.2" height="15.0" fill="rgb(248,26,4)" rx="2" ry="2" />
<text x="897.66" y="1439.5" ></text>
</g>
<g >
<title>mark_slice_darken (265 samples, 0.01%)</title><rect x="615.8" y="1157" width="0.2" height="15.0" fill="rgb(223,38,0)" rx="2" ry="2" />
<text x="618.82" y="1167.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (286 samples, 0.01%)</title><rect x="705.0" y="917" width="0.2" height="15.0" fill="rgb(220,122,1)" rx="2" ry="2" />
<text x="708.03" y="927.5" ></text>
</g>
<g >
<title>caml_apply2 (747 samples, 0.03%)</title><rect x="309.2" y="1445" width="0.4" height="15.0" fill="rgb(217,32,27)" rx="2" ry="2" />
<text x="312.19" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (1,268 samples, 0.05%)</title><rect x="1174.2" y="917" width="0.7" height="15.0" fill="rgb(237,170,43)" rx="2" ry="2" />
<text x="1177.22" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (286 samples, 0.01%)</title><rect x="722.2" y="1045" width="0.1" height="15.0" fill="rgb(250,176,5)" rx="2" ry="2" />
<text x="725.16" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (874 samples, 0.04%)</title><rect x="301.4" y="1413" width="0.4" height="15.0" fill="rgb(253,189,0)" rx="2" ry="2" />
<text x="304.39" y="1423.5" ></text>
</g>
<g >
<title>mark_slice_darken (241 samples, 0.01%)</title><rect x="797.9" y="981" width="0.2" height="15.0" fill="rgb(246,66,23)" rx="2" ry="2" />
<text x="800.94" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (2,157 samples, 0.09%)</title><rect x="575.2" y="1189" width="1.1" height="15.0" fill="rgb(253,71,0)" rx="2" ry="2" />
<text x="578.19" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (717 samples, 0.03%)</title><rect x="922.9" y="1445" width="0.4" height="15.0" fill="rgb(219,189,9)" rx="2" ry="2" />
<text x="925.94" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (339 samples, 0.01%)</title><rect x="141.6" y="1413" width="0.2" height="15.0" fill="rgb(254,17,48)" rx="2" ry="2" />
<text x="144.63" y="1423.5" ></text>
</g>
<g >
<title>uECC_vli_sub (260 samples, 0.01%)</title><rect x="643.0" y="117" width="0.2" height="15.0" fill="rgb(218,167,21)" rx="2" ry="2" />
<text x="646.02" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (572 samples, 0.02%)</title><rect x="1119.6" y="949" width="0.3" height="15.0" fill="rgb(241,115,52)" rx="2" ry="2" />
<text x="1122.60" y="959.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (556 samples, 0.02%)</title><rect x="312.2" y="1397" width="0.3" height="15.0" fill="rgb(220,109,18)" rx="2" ry="2" />
<text x="315.18" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (22,304 samples, 0.97%)</title><rect x="739.2" y="1109" width="11.4" height="15.0" fill="rgb(244,52,17)" rx="2" ry="2" />
<text x="742.19" y="1119.5" ></text>
</g>
<g >
<title>caml_string_equal (324 samples, 0.01%)</title><rect x="755.1" y="1061" width="0.1" height="15.0" fill="rgb(247,155,47)" rx="2" ry="2" />
<text x="758.08" y="1071.5" ></text>
</g>
<g >
<title>apply_z (704 samples, 0.03%)</title><rect x="829.5" y="245" width="0.4" height="15.0" fill="rgb(249,214,26)" rx="2" ry="2" />
<text x="832.52" y="255.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (593 samples, 0.03%)</title><rect x="598.9" y="1269" width="0.3" height="15.0" fill="rgb(216,219,40)" rx="2" ry="2" />
<text x="601.94" y="1279.5" ></text>
</g>
<g >
<title>camlLwt_mutex__unlock_126 (6,249 samples, 0.27%)</title><rect x="471.9" y="1381" width="3.2" height="15.0" fill="rgb(239,122,14)" rx="2" ry="2" />
<text x="474.93" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (1,443 samples, 0.06%)</title><rect x="102.7" y="1509" width="0.7" height="15.0" fill="rgb(247,32,32)" rx="2" ry="2" />
<text x="105.70" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (343 samples, 0.01%)</title><rect x="1074.1" y="1045" width="0.2" height="15.0" fill="rgb(227,57,21)" rx="2" ry="2" />
<text x="1077.10" y="1055.5" ></text>
</g>
<g >
<title>muladd (393 samples, 0.02%)</title><rect x="667.7" y="149" width="0.2" height="15.0" fill="rgb(218,101,30)" rx="2" ry="2" />
<text x="670.70" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (7,527 samples, 0.33%)</title><rect x="1055.5" y="1237" width="3.8" height="15.0" fill="rgb(221,70,30)" rx="2" ry="2" />
<text x="1058.48" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,739 samples, 0.08%)</title><rect x="542.2" y="1141" width="0.9" height="15.0" fill="rgb(238,96,32)" rx="2" ry="2" />
<text x="545.17" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (268 samples, 0.01%)</title><rect x="876.0" y="965" width="0.2" height="15.0" fill="rgb(221,98,18)" rx="2" ry="2" />
<text x="879.03" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (6,044 samples, 0.26%)</title><rect x="1157.1" y="277" width="3.1" height="15.0" fill="rgb(248,209,13)" rx="2" ry="2" />
<text x="1160.08" y="287.5" ></text>
</g>
<g >
<title>caml_garbage_collection (287 samples, 0.01%)</title><rect x="621.5" y="1253" width="0.2" height="15.0" fill="rgb(223,185,10)" rx="2" ry="2" />
<text x="624.51" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (1,502 samples, 0.07%)</title><rect x="557.9" y="1269" width="0.7" height="15.0" fill="rgb(229,28,5)" rx="2" ry="2" />
<text x="560.85" y="1279.5" ></text>
</g>
<g >
<title>caml_modify (327 samples, 0.01%)</title><rect x="903.1" y="1445" width="0.2" height="15.0" fill="rgb(245,51,0)" rx="2" ry="2" />
<text x="906.11" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__poll_1983 (1,047 samples, 0.05%)</title><rect x="76.8" y="1573" width="0.5" height="15.0" fill="rgb(236,144,38)" rx="2" ry="2" />
<text x="79.80" y="1583.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (215 samples, 0.01%)</title><rect x="877.0" y="1029" width="0.1" height="15.0" fill="rgb(239,155,50)" rx="2" ry="2" />
<text x="879.99" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (278 samples, 0.01%)</title><rect x="883.7" y="1173" width="0.2" height="15.0" fill="rgb(236,18,53)" rx="2" ry="2" />
<text x="886.71" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (281 samples, 0.01%)</title><rect x="1060.0" y="1269" width="0.2" height="15.0" fill="rgb(215,63,48)" rx="2" ry="2" />
<text x="1063.04" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (231 samples, 0.01%)</title><rect x="619.2" y="1221" width="0.1" height="15.0" fill="rgb(208,219,5)" rx="2" ry="2" />
<text x="622.20" y="1231.5" ></text>
</g>
<g >
<title>mul2add (464 samples, 0.02%)</title><rect x="1110.9" y="69" width="0.3" height="15.0" fill="rgb(210,94,18)" rx="2" ry="2" />
<text x="1113.94" y="79.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (23,942 samples, 1.04%)</title><rect x="1114.9" y="1093" width="12.2" height="15.0" fill="rgb(246,204,24)" rx="2" ry="2" />
<text x="1117.88" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (34,488 samples, 1.49%)</title><rect x="815.7" y="629" width="17.6" height="15.0" fill="rgb(235,26,38)" rx="2" ry="2" />
<text x="818.72" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (876 samples, 0.04%)</title><rect x="1118.6" y="933" width="0.5" height="15.0" fill="rgb(229,113,5)" rx="2" ry="2" />
<text x="1121.63" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,593 samples, 0.07%)</title><rect x="997.2" y="1253" width="0.9" height="15.0" fill="rgb(233,57,52)" rx="2" ry="2" />
<text x="1000.24" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (251 samples, 0.01%)</title><rect x="553.5" y="1189" width="0.2" height="15.0" fill="rgb(218,25,31)" rx="2" ry="2" />
<text x="556.54" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (34,482 samples, 1.49%)</title><rect x="815.7" y="533" width="17.6" height="15.0" fill="rgb(224,225,18)" rx="2" ry="2" />
<text x="818.72" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_993 (226 samples, 0.01%)</title><rect x="723.8" y="1189" width="0.1" height="15.0" fill="rgb(219,42,24)" rx="2" ry="2" />
<text x="726.83" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (777 samples, 0.03%)</title><rect x="185.8" y="1269" width="0.4" height="15.0" fill="rgb(235,104,7)" rx="2" ry="2" />
<text x="188.82" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (312 samples, 0.01%)</title><rect x="794.2" y="1013" width="0.2" height="15.0" fill="rgb(242,118,32)" rx="2" ry="2" />
<text x="797.23" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (271 samples, 0.01%)</title><rect x="212.5" y="1349" width="0.1" height="15.0" fill="rgb(242,21,47)" rx="2" ry="2" />
<text x="215.46" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (631 samples, 0.03%)</title><rect x="265.3" y="1349" width="0.3" height="15.0" fill="rgb(214,227,33)" rx="2" ry="2" />
<text x="268.27" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (294 samples, 0.01%)</title><rect x="875.2" y="981" width="0.1" height="15.0" fill="rgb(223,7,21)" rx="2" ry="2" />
<text x="878.16" y="991.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (79,481 samples, 3.44%)</title><rect x="631.2" y="853" width="40.7" height="15.0" fill="rgb(220,169,54)" rx="2" ry="2" />
<text x="634.23" y="863.5" >cam..</text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (539 samples, 0.02%)</title><rect x="1164.3" y="357" width="0.3" height="15.0" fill="rgb(221,141,39)" rx="2" ry="2" />
<text x="1167.28" y="367.5" ></text>
</g>
<g >
<title>mark_slice (1,539 samples, 0.07%)</title><rect x="112.1" y="1461" width="0.7" height="15.0" fill="rgb(219,191,6)" rx="2" ry="2" />
<text x="115.05" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (339 samples, 0.01%)</title><rect x="520.9" y="1285" width="0.2" height="15.0" fill="rgb(222,24,26)" rx="2" ry="2" />
<text x="523.89" y="1295.5" ></text>
</g>
<g >
<title>uECC_verify (10,601 samples, 0.46%)</title><rect x="1146.9" y="181" width="5.4" height="15.0" fill="rgb(217,26,14)" rx="2" ry="2" />
<text x="1149.87" y="191.5" ></text>
</g>
<g >
<title>caml_call_gc (252 samples, 0.01%)</title><rect x="762.4" y="1109" width="0.1" height="15.0" fill="rgb(252,166,27)" rx="2" ry="2" />
<text x="765.39" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (993 samples, 0.04%)</title><rect x="577.2" y="661" width="0.5" height="15.0" fill="rgb(254,27,46)" rx="2" ry="2" />
<text x="580.19" y="671.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__pop_3830 (1,506 samples, 0.07%)</title><rect x="1051.5" y="1285" width="0.8" height="15.0" fill="rgb(206,186,18)" rx="2" ry="2" />
<text x="1054.55" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,458 samples, 0.06%)</title><rect x="1091.9" y="933" width="0.8" height="15.0" fill="rgb(228,144,41)" rx="2" ry="2" />
<text x="1094.93" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (856 samples, 0.04%)</title><rect x="241.8" y="1397" width="0.4" height="15.0" fill="rgb(214,94,28)" rx="2" ry="2" />
<text x="244.79" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (298 samples, 0.01%)</title><rect x="84.2" y="1525" width="0.2" height="15.0" fill="rgb(247,176,51)" rx="2" ry="2" />
<text x="87.21" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (391 samples, 0.02%)</title><rect x="558.4" y="1237" width="0.2" height="15.0" fill="rgb(250,72,22)" rx="2" ry="2" />
<text x="561.38" y="1247.5" ></text>
</g>
<g >
<title>camlEnvironment_V0__apply_operation_31284 (23,196 samples, 1.00%)</title><rect x="815.7" y="421" width="11.9" height="15.0" fill="rgb(226,192,54)" rx="2" ry="2" />
<text x="818.73" y="431.5" ></text>
</g>
<g >
<title>camlStdlib__$40_177 (310 samples, 0.01%)</title><rect x="528.3" y="1301" width="0.2" height="15.0" fill="rgb(237,198,36)" rx="2" ry="2" />
<text x="531.32" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (315 samples, 0.01%)</title><rect x="392.2" y="1413" width="0.1" height="15.0" fill="rgb(232,225,37)" rx="2" ry="2" />
<text x="395.16" y="1423.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (387 samples, 0.02%)</title><rect x="247.3" y="1349" width="0.2" height="15.0" fill="rgb(211,47,3)" rx="2" ry="2" />
<text x="250.26" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (241 samples, 0.01%)</title><rect x="833.1" y="261" width="0.1" height="15.0" fill="rgb(220,175,6)" rx="2" ry="2" />
<text x="836.08" y="271.5" ></text>
</g>
<g >
<title>sweep_slice (299 samples, 0.01%)</title><rect x="910.7" y="1333" width="0.1" height="15.0" fill="rgb(242,92,30)" rx="2" ry="2" />
<text x="913.68" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (250 samples, 0.01%)</title><rect x="848.5" y="1301" width="0.1" height="15.0" fill="rgb(210,2,48)" rx="2" ry="2" />
<text x="851.45" y="1311.5" ></text>
</g>
<g >
<title>muladd (461 samples, 0.02%)</title><rect x="1145.6" y="101" width="0.2" height="15.0" fill="rgb(247,101,34)" rx="2" ry="2" />
<text x="1148.60" y="111.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (289 samples, 0.01%)</title><rect x="702.6" y="981" width="0.1" height="15.0" fill="rgb(235,47,37)" rx="2" ry="2" />
<text x="705.56" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (599 samples, 0.03%)</title><rect x="712.2" y="1077" width="0.3" height="15.0" fill="rgb(206,138,21)" rx="2" ry="2" />
<text x="715.16" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (615 samples, 0.03%)</title><rect x="1051.6" y="1253" width="0.4" height="15.0" fill="rgb(231,109,54)" rx="2" ry="2" />
<text x="1054.65" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (199 samples, 0.01%)</title><rect x="1182.5" y="1365" width="0.1" height="15.0" fill="rgb(227,9,52)" rx="2" ry="2" />
<text x="1185.50" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (353 samples, 0.02%)</title><rect x="988.8" y="1381" width="0.2" height="15.0" fill="rgb(251,1,32)" rx="2" ry="2" />
<text x="991.84" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (332 samples, 0.01%)</title><rect x="852.2" y="1285" width="0.2" height="15.0" fill="rgb(221,194,14)" rx="2" ry="2" />
<text x="855.20" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2116 (1,149 samples, 0.05%)</title><rect x="266.3" y="1413" width="0.6" height="15.0" fill="rgb(213,72,48)" rx="2" ry="2" />
<text x="269.34" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217 samples, 0.01%)</title><rect x="716.0" y="933" width="0.1" height="15.0" fill="rgb(210,135,19)" rx="2" ry="2" />
<text x="718.99" y="943.5" ></text>
</g>
<g >
<title>mark_slice_darken (532 samples, 0.02%)</title><rect x="330.7" y="1381" width="0.3" height="15.0" fill="rgb(228,61,32)" rx="2" ry="2" />
<text x="333.73" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4578 (280 samples, 0.01%)</title><rect x="625.1" y="1029" width="0.1" height="15.0" fill="rgb(231,152,31)" rx="2" ry="2" />
<text x="628.10" y="1039.5" ></text>
</g>
<g >
<title>caml_apply2 (353 samples, 0.02%)</title><rect x="882.5" y="997" width="0.2" height="15.0" fill="rgb(230,121,8)" rx="2" ry="2" />
<text x="885.52" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2434 (501 samples, 0.02%)</title><rect x="219.9" y="1365" width="0.3" height="15.0" fill="rgb(217,201,11)" rx="2" ry="2" />
<text x="222.91" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14908 (7,399 samples, 0.32%)</title><rect x="1055.5" y="1221" width="3.8" height="15.0" fill="rgb(227,228,29)" rx="2" ry="2" />
<text x="1058.50" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,050 samples, 0.05%)</title><rect x="183.5" y="1317" width="0.6" height="15.0" fill="rgb(217,123,15)" rx="2" ry="2" />
<text x="186.51" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (249 samples, 0.01%)</title><rect x="189.7" y="1333" width="0.1" height="15.0" fill="rgb(241,108,6)" rx="2" ry="2" />
<text x="192.71" y="1343.5" ></text>
</g>
<g >
<title>apply_z (300 samples, 0.01%)</title><rect x="1157.5" y="165" width="0.1" height="15.0" fill="rgb(234,139,37)" rx="2" ry="2" />
<text x="1160.49" y="175.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4559 (3,060 samples, 0.13%)</title><rect x="1082.6" y="1221" width="1.6" height="15.0" fill="rgb(236,159,33)" rx="2" ry="2" />
<text x="1085.62" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (207 samples, 0.01%)</title><rect x="582.1" y="1093" width="0.1" height="15.0" fill="rgb(240,167,5)" rx="2" ry="2" />
<text x="585.12" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (309 samples, 0.01%)</title><rect x="1078.6" y="1221" width="0.2" height="15.0" fill="rgb(248,79,50)" rx="2" ry="2" />
<text x="1081.62" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (276 samples, 0.01%)</title><rect x="1039.3" y="1397" width="0.2" height="15.0" fill="rgb(216,103,9)" rx="2" ry="2" />
<text x="1042.34" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,345 samples, 0.06%)</title><rect x="577.0" y="1093" width="0.7" height="15.0" fill="rgb(254,91,17)" rx="2" ry="2" />
<text x="580.02" y="1103.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (311 samples, 0.01%)</title><rect x="672.2" y="725" width="0.2" height="15.0" fill="rgb(254,156,13)" rx="2" ry="2" />
<text x="675.20" y="735.5" ></text>
</g>
<g >
<title>mark_slice (246 samples, 0.01%)</title><rect x="781.4" y="1045" width="0.1" height="15.0" fill="rgb(226,9,49)" rx="2" ry="2" />
<text x="784.42" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (4,550 samples, 0.20%)</title><rect x="190.2" y="1301" width="2.4" height="15.0" fill="rgb(215,101,11)" rx="2" ry="2" />
<text x="193.25" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__poll_1983 (381 samples, 0.02%)</title><rect x="973.2" y="1509" width="0.2" height="15.0" fill="rgb(253,40,15)" rx="2" ry="2" />
<text x="976.25" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (419 samples, 0.02%)</title><rect x="287.2" y="1397" width="0.2" height="15.0" fill="rgb(247,51,7)" rx="2" ry="2" />
<text x="290.17" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (796 samples, 0.03%)</title><rect x="556.5" y="1285" width="0.4" height="15.0" fill="rgb(230,208,35)" rx="2" ry="2" />
<text x="559.48" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (538 samples, 0.02%)</title><rect x="169.7" y="1349" width="0.3" height="15.0" fill="rgb(248,68,18)" rx="2" ry="2" />
<text x="172.72" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,976 samples, 0.09%)</title><rect x="411.7" y="1381" width="1.0" height="15.0" fill="rgb(242,193,10)" rx="2" ry="2" />
<text x="414.72" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (197 samples, 0.01%)</title><rect x="1044.4" y="1365" width="0.1" height="15.0" fill="rgb(210,97,29)" rx="2" ry="2" />
<text x="1047.41" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11923 (1,039 samples, 0.05%)</title><rect x="576.3" y="1221" width="0.5" height="15.0" fill="rgb(205,106,51)" rx="2" ry="2" />
<text x="579.32" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (1,034 samples, 0.04%)</title><rect x="185.7" y="1285" width="0.5" height="15.0" fill="rgb(236,6,28)" rx="2" ry="2" />
<text x="188.69" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (515 samples, 0.02%)</title><rect x="812.5" y="1093" width="0.2" height="15.0" fill="rgb(244,54,9)" rx="2" ry="2" />
<text x="815.46" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (5,315 samples, 0.23%)</title><rect x="337.2" y="1381" width="2.8" height="15.0" fill="rgb(213,66,6)" rx="2" ry="2" />
<text x="340.23" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (2,449 samples, 0.11%)</title><rect x="1002.8" y="1253" width="1.3" height="15.0" fill="rgb(236,2,8)" rx="2" ry="2" />
<text x="1005.82" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (2,541 samples, 0.11%)</title><rect x="411.4" y="1413" width="1.3" height="15.0" fill="rgb(236,210,23)" rx="2" ry="2" />
<text x="414.43" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (508 samples, 0.02%)</title><rect x="698.1" y="981" width="0.3" height="15.0" fill="rgb(240,76,5)" rx="2" ry="2" />
<text x="701.12" y="991.5" ></text>
</g>
<g >
<title>mark_slice_darken (269 samples, 0.01%)</title><rect x="797.1" y="997" width="0.2" height="15.0" fill="rgb(221,158,21)" rx="2" ry="2" />
<text x="800.15" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (696 samples, 0.03%)</title><rect x="586.6" y="1285" width="0.4" height="15.0" fill="rgb(206,30,29)" rx="2" ry="2" />
<text x="589.60" y="1295.5" ></text>
</g>
<g >
<title>XYcZ_add (1,235 samples, 0.05%)</title><rect x="1144.4" y="149" width="0.7" height="15.0" fill="rgb(251,12,23)" rx="2" ry="2" />
<text x="1147.42" y="159.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (310 samples, 0.01%)</title><rect x="183.8" y="1269" width="0.2" height="15.0" fill="rgb(236,5,25)" rx="2" ry="2" />
<text x="186.79" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (539 samples, 0.02%)</title><rect x="606.0" y="1301" width="0.3" height="15.0" fill="rgb(214,138,53)" rx="2" ry="2" />
<text x="609.02" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (624 samples, 0.03%)</title><rect x="869.6" y="853" width="0.3" height="15.0" fill="rgb(231,140,42)" rx="2" ry="2" />
<text x="872.56" y="863.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (253 samples, 0.01%)</title><rect x="235.6" y="1285" width="0.1" height="15.0" fill="rgb(209,212,39)" rx="2" ry="2" />
<text x="238.59" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (514 samples, 0.02%)</title><rect x="704.0" y="965" width="0.2" height="15.0" fill="rgb(210,137,1)" rx="2" ry="2" />
<text x="706.96" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (576 samples, 0.02%)</title><rect x="266.6" y="1365" width="0.3" height="15.0" fill="rgb(223,34,7)" rx="2" ry="2" />
<text x="269.63" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (75,969 samples, 3.29%)</title><rect x="631.2" y="469" width="38.9" height="15.0" fill="rgb(225,37,34)" rx="2" ry="2" />
<text x="634.25" y="479.5" >cam..</text>
</g>
<g >
<title>sweep_slice (203 samples, 0.01%)</title><rect x="839.4" y="1125" width="0.2" height="15.0" fill="rgb(231,14,3)" rx="2" ry="2" />
<text x="842.45" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (247 samples, 0.01%)</title><rect x="793.8" y="917" width="0.2" height="15.0" fill="rgb(215,134,18)" rx="2" ry="2" />
<text x="796.84" y="927.5" ></text>
</g>
<g >
<title>uECC_vli_rshift1 (232 samples, 0.01%)</title><rect x="653.6" y="133" width="0.2" height="15.0" fill="rgb(238,172,24)" rx="2" ry="2" />
<text x="656.64" y="143.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (43,935 samples, 1.90%)</title><rect x="1143.9" y="1109" width="22.4" height="15.0" fill="rgb(243,16,20)" rx="2" ry="2" />
<text x="1146.86" y="1119.5" >c..</text>
</g>
<g >
<title>uECC_vli_modMult_fast (4,570 samples, 0.20%)</title><rect x="639.7" y="149" width="2.3" height="15.0" fill="rgb(254,58,32)" rx="2" ry="2" />
<text x="642.69" y="159.5" ></text>
</g>
<g >
<title>caml_garbage_collection (315 samples, 0.01%)</title><rect x="392.2" y="1397" width="0.1" height="15.0" fill="rgb(226,95,33)" rx="2" ry="2" />
<text x="395.16" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (229 samples, 0.01%)</title><rect x="991.6" y="1317" width="0.1" height="15.0" fill="rgb(221,187,23)" rx="2" ry="2" />
<text x="994.57" y="1327.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (744 samples, 0.03%)</title><rect x="146.8" y="1461" width="0.3" height="15.0" fill="rgb(245,163,34)" rx="2" ry="2" />
<text x="149.75" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (765 samples, 0.03%)</title><rect x="782.9" y="1093" width="0.4" height="15.0" fill="rgb(205,146,9)" rx="2" ry="2" />
<text x="785.93" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4145 (574 samples, 0.02%)</title><rect x="1178.6" y="949" width="0.3" height="15.0" fill="rgb(251,181,54)" rx="2" ry="2" />
<text x="1181.62" y="959.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4109 (564 samples, 0.02%)</title><rect x="836.0" y="501" width="0.3" height="15.0" fill="rgb(228,215,20)" rx="2" ry="2" />
<text x="839.04" y="511.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (242 samples, 0.01%)</title><rect x="1162.4" y="469" width="0.1" height="15.0" fill="rgb(242,3,10)" rx="2" ry="2" />
<text x="1165.39" y="479.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (1,075 samples, 0.05%)</title><rect x="545.4" y="1269" width="0.6" height="15.0" fill="rgb(232,180,11)" rx="2" ry="2" />
<text x="548.44" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (256,284 samples, 11.10%)</title><rect x="1048.6" y="1317" width="131.1" height="15.0" fill="rgb(239,165,0)" rx="2" ry="2" />
<text x="1051.64" y="1327.5" >camlLwt__iter_ca..</text>
</g>
<g >
<title>caml_major_collection_slice (239 samples, 0.01%)</title><rect x="981.7" y="1461" width="0.1" height="15.0" fill="rgb(224,180,17)" rx="2" ry="2" />
<text x="984.66" y="1471.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (43,882 samples, 1.90%)</title><rect x="1143.9" y="933" width="22.4" height="15.0" fill="rgb(228,137,43)" rx="2" ry="2" />
<text x="1146.88" y="943.5" >c..</text>
</g>
<g >
<title>caml_garbage_collection (838 samples, 0.04%)</title><rect x="140.6" y="1397" width="0.4" height="15.0" fill="rgb(243,51,45)" rx="2" ry="2" />
<text x="143.59" y="1407.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (196 samples, 0.01%)</title><rect x="566.2" y="1077" width="0.1" height="15.0" fill="rgb(227,42,34)" rx="2" ry="2" />
<text x="569.18" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (35,300 samples, 1.53%)</title><rect x="1143.9" y="709" width="18.0" height="15.0" fill="rgb(242,118,17)" rx="2" ry="2" />
<text x="1146.90" y="719.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (292 samples, 0.01%)</title><rect x="1158.5" y="165" width="0.2" height="15.0" fill="rgb(246,224,32)" rx="2" ry="2" />
<text x="1161.50" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (6,834 samples, 0.30%)</title><rect x="989.9" y="1413" width="3.4" height="15.0" fill="rgb(207,215,22)" rx="2" ry="2" />
<text x="992.86" y="1423.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (9,249 samples, 0.40%)</title><rect x="1152.3" y="229" width="4.7" height="15.0" fill="rgb(230,51,25)" rx="2" ry="2" />
<text x="1155.31" y="239.5" ></text>
</g>
<g >
<title>uECC_vli_square (424 samples, 0.02%)</title><rect x="823.8" y="213" width="0.3" height="15.0" fill="rgb(234,57,29)" rx="2" ry="2" />
<text x="826.84" y="223.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (9,589 samples, 0.42%)</title><rect x="818.2" y="277" width="4.9" height="15.0" fill="rgb(219,200,27)" rx="2" ry="2" />
<text x="821.19" y="287.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (1,124 samples, 0.05%)</title><rect x="223.8" y="1349" width="0.6" height="15.0" fill="rgb(228,184,33)" rx="2" ry="2" />
<text x="226.79" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (484 samples, 0.02%)</title><rect x="1021.5" y="1237" width="0.2" height="15.0" fill="rgb(234,187,31)" rx="2" ry="2" />
<text x="1024.47" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (578 samples, 0.03%)</title><rect x="137.4" y="1269" width="0.3" height="15.0" fill="rgb(233,28,11)" rx="2" ry="2" />
<text x="140.40" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (9,429 samples, 0.41%)</title><rect x="1157.1" y="293" width="4.8" height="15.0" fill="rgb(240,197,48)" rx="2" ry="2" />
<text x="1160.08" y="303.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,405 samples, 0.06%)</title><rect x="844.0" y="1285" width="0.7" height="15.0" fill="rgb(228,154,16)" rx="2" ry="2" />
<text x="846.97" y="1295.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (1,103 samples, 0.05%)</title><rect x="1104.3" y="69" width="0.6" height="15.0" fill="rgb(247,25,24)" rx="2" ry="2" />
<text x="1107.30" y="79.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (1,236 samples, 0.05%)</title><rect x="669.4" y="261" width="0.7" height="15.0" fill="rgb(221,214,4)" rx="2" ry="2" />
<text x="672.44" y="271.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,282 samples, 0.06%)</title><rect x="1165.1" y="725" width="0.7" height="15.0" fill="rgb(245,97,34)" rx="2" ry="2" />
<text x="1168.10" y="735.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (1,366 samples, 0.06%)</title><rect x="612.8" y="1157" width="0.7" height="15.0" fill="rgb(250,183,48)" rx="2" ry="2" />
<text x="615.83" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (334 samples, 0.01%)</title><rect x="574.4" y="1269" width="0.1" height="15.0" fill="rgb(219,123,50)" rx="2" ry="2" />
<text x="577.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (200 samples, 0.01%)</title><rect x="1123.8" y="997" width="0.1" height="15.0" fill="rgb(217,146,13)" rx="2" ry="2" />
<text x="1126.82" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (481 samples, 0.02%)</title><rect x="1140.9" y="1029" width="0.2" height="15.0" fill="rgb(239,110,43)" rx="2" ry="2" />
<text x="1143.90" y="1039.5" ></text>
</g>
<g >
<title>caml_string_equal (1,552 samples, 0.07%)</title><rect x="130.3" y="1381" width="0.8" height="15.0" fill="rgb(225,139,30)" rx="2" ry="2" />
<text x="133.27" y="1391.5" ></text>
</g>
<g >
<title>sweep_slice (418 samples, 0.02%)</title><rect x="112.8" y="1461" width="0.3" height="15.0" fill="rgb(232,117,17)" rx="2" ry="2" />
<text x="115.84" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,933 samples, 0.13%)</title><rect x="321.8" y="1301" width="1.5" height="15.0" fill="rgb(233,122,43)" rx="2" ry="2" />
<text x="324.76" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (392 samples, 0.02%)</title><rect x="1051.1" y="1093" width="0.2" height="15.0" fill="rgb(239,94,7)" rx="2" ry="2" />
<text x="1054.07" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (268 samples, 0.01%)</title><rect x="1056.1" y="1109" width="0.1" height="15.0" fill="rgb(217,180,15)" rx="2" ry="2" />
<text x="1059.06" y="1119.5" ></text>
</g>
<g >
<title>caml_stash_backtrace (5,480 samples, 0.24%)</title><rect x="1187.2" y="1653" width="2.8" height="15.0" fill="rgb(234,33,15)" rx="2" ry="2" />
<text x="1190.19" y="1663.5" ></text>
</g>
<g >
<title>caml_garbage_collection (809 samples, 0.04%)</title><rect x="137.9" y="1349" width="0.4" height="15.0" fill="rgb(212,110,49)" rx="2" ry="2" />
<text x="140.85" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (395 samples, 0.02%)</title><rect x="990.0" y="1333" width="0.2" height="15.0" fill="rgb(251,179,27)" rx="2" ry="2" />
<text x="993.00" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5778 (2,005 samples, 0.09%)</title><rect x="1055.8" y="1141" width="1.0" height="15.0" fill="rgb(240,129,49)" rx="2" ry="2" />
<text x="1058.80" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (36,411 samples, 1.58%)</title><rect x="1094.5" y="949" width="18.6" height="15.0" fill="rgb(240,126,26)" rx="2" ry="2" />
<text x="1097.53" y="959.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,625 samples, 0.07%)</title><rect x="906.2" y="1349" width="0.9" height="15.0" fill="rgb(248,203,23)" rx="2" ry="2" />
<text x="909.24" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (219 samples, 0.01%)</title><rect x="493.1" y="1157" width="0.1" height="15.0" fill="rgb(228,85,52)" rx="2" ry="2" />
<text x="496.13" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (274 samples, 0.01%)</title><rect x="1050.4" y="1205" width="0.1" height="15.0" fill="rgb(249,32,5)" rx="2" ry="2" />
<text x="1053.37" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (405 samples, 0.02%)</title><rect x="714.7" y="1077" width="0.2" height="15.0" fill="rgb(230,84,20)" rx="2" ry="2" />
<text x="717.70" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_values_11648 (850 samples, 0.04%)</title><rect x="723.0" y="1173" width="0.5" height="15.0" fill="rgb(244,56,27)" rx="2" ry="2" />
<text x="726.05" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (883 samples, 0.04%)</title><rect x="528.9" y="1205" width="0.5" height="15.0" fill="rgb(245,97,49)" rx="2" ry="2" />
<text x="531.90" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1312 (285 samples, 0.01%)</title><rect x="626.5" y="965" width="0.1" height="15.0" fill="rgb(220,120,39)" rx="2" ry="2" />
<text x="629.49" y="975.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (36,405 samples, 1.58%)</title><rect x="1094.5" y="885" width="18.6" height="15.0" fill="rgb(207,221,21)" rx="2" ry="2" />
<text x="1097.53" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__really_read_331 (1,265 samples, 0.05%)</title><rect x="183.4" y="1365" width="0.7" height="15.0" fill="rgb(219,165,25)" rx="2" ry="2" />
<text x="186.40" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_853 (374 samples, 0.02%)</title><rect x="373.0" y="1365" width="0.2" height="15.0" fill="rgb(209,61,50)" rx="2" ry="2" />
<text x="376.01" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (374 samples, 0.02%)</title><rect x="748.8" y="965" width="0.2" height="15.0" fill="rgb(235,88,0)" rx="2" ry="2" />
<text x="751.82" y="975.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (214,170 samples, 9.28%)</title><rect x="730.2" y="1221" width="109.5" height="15.0" fill="rgb(253,168,31)" rx="2" ry="2" />
<text x="733.18" y="1231.5" >camlLwt__reso..</text>
</g>
<g >
<title>uECC_vli_square (574 samples, 0.02%)</title><rect x="1146.0" y="117" width="0.3" height="15.0" fill="rgb(247,160,36)" rx="2" ry="2" />
<text x="1149.02" y="127.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (203 samples, 0.01%)</title><rect x="245.2" y="1301" width="0.1" height="15.0" fill="rgb(221,102,21)" rx="2" ry="2" />
<text x="248.18" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_values_11648 (593 samples, 0.03%)</title><rect x="528.0" y="1301" width="0.3" height="15.0" fill="rgb(235,200,45)" rx="2" ry="2" />
<text x="531.02" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (199 samples, 0.01%)</title><rect x="798.8" y="997" width="0.2" height="15.0" fill="rgb(241,152,48)" rx="2" ry="2" />
<text x="801.85" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (390 samples, 0.02%)</title><rect x="584.5" y="1333" width="0.2" height="15.0" fill="rgb(247,29,2)" rx="2" ry="2" />
<text x="587.48" y="1343.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (251 samples, 0.01%)</title><rect x="831.5" y="229" width="0.1" height="15.0" fill="rgb(212,107,8)" rx="2" ry="2" />
<text x="834.46" y="239.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (512 samples, 0.02%)</title><rect x="112.6" y="1429" width="0.2" height="15.0" fill="rgb(211,1,50)" rx="2" ry="2" />
<text x="115.58" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (848 samples, 0.04%)</title><rect x="1021.3" y="1253" width="0.4" height="15.0" fill="rgb(219,61,50)" rx="2" ry="2" />
<text x="1024.28" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (10,059 samples, 0.44%)</title><rect x="406.3" y="1397" width="5.1" height="15.0" fill="rgb(229,165,2)" rx="2" ry="2" />
<text x="409.29" y="1407.5" ></text>
</g>
<g >
<title>sweep_slice (1,308 samples, 0.06%)</title><rect x="340.0" y="1381" width="0.6" height="15.0" fill="rgb(229,89,36)" rx="2" ry="2" />
<text x="342.95" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (610 samples, 0.03%)</title><rect x="534.8" y="1077" width="0.3" height="15.0" fill="rgb(247,23,40)" rx="2" ry="2" />
<text x="537.75" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (371 samples, 0.02%)</title><rect x="685.4" y="1077" width="0.2" height="15.0" fill="rgb(219,6,45)" rx="2" ry="2" />
<text x="688.44" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,162 samples, 0.05%)</title><rect x="265.7" y="1365" width="0.6" height="15.0" fill="rgb(226,204,21)" rx="2" ry="2" />
<text x="268.74" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (207 samples, 0.01%)</title><rect x="794.5" y="965" width="0.1" height="15.0" fill="rgb(216,188,25)" rx="2" ry="2" />
<text x="797.50" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,432 samples, 0.06%)</title><rect x="705.2" y="949" width="0.7" height="15.0" fill="rgb(205,138,24)" rx="2" ry="2" />
<text x="708.19" y="959.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (565 samples, 0.02%)</title><rect x="689.7" y="1045" width="0.3" height="15.0" fill="rgb(254,30,4)" rx="2" ry="2" />
<text x="692.73" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,363 samples, 0.19%)</title><rect x="976.2" y="1429" width="2.2" height="15.0" fill="rgb(221,175,3)" rx="2" ry="2" />
<text x="979.21" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (235 samples, 0.01%)</title><rect x="616.9" y="1237" width="0.1" height="15.0" fill="rgb(245,5,27)" rx="2" ry="2" />
<text x="619.92" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14217 (619 samples, 0.03%)</title><rect x="1079.7" y="1285" width="0.3" height="15.0" fill="rgb(226,85,26)" rx="2" ry="2" />
<text x="1082.69" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (1,067 samples, 0.05%)</title><rect x="756.7" y="1093" width="0.6" height="15.0" fill="rgb(212,24,5)" rx="2" ry="2" />
<text x="759.71" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (696 samples, 0.03%)</title><rect x="266.6" y="1381" width="0.3" height="15.0" fill="rgb(216,223,11)" rx="2" ry="2" />
<text x="269.57" y="1391.5" ></text>
</g>
<g >
<title>caml_hash (208 samples, 0.01%)</title><rect x="530.2" y="1109" width="0.1" height="15.0" fill="rgb(232,66,31)" rx="2" ry="2" />
<text x="533.22" y="1119.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (327 samples, 0.01%)</title><rect x="193.6" y="1381" width="0.2" height="15.0" fill="rgb(247,137,17)" rx="2" ry="2" />
<text x="196.64" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__already_in_dst_4971 (5,454 samples, 0.24%)</title><rect x="550.5" y="1253" width="2.8" height="15.0" fill="rgb(205,88,54)" rx="2" ry="2" />
<text x="553.54" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (1,602 samples, 0.07%)</title><rect x="785.2" y="1141" width="0.8" height="15.0" fill="rgb(251,181,25)" rx="2" ry="2" />
<text x="788.22" y="1151.5" ></text>
</g>
<g >
<title>uECC_vli_add (869 samples, 0.04%)</title><rect x="648.6" y="117" width="0.5" height="15.0" fill="rgb(233,55,53)" rx="2" ry="2" />
<text x="651.62" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (372 samples, 0.02%)</title><rect x="1070.7" y="1189" width="0.2" height="15.0" fill="rgb(223,9,36)" rx="2" ry="2" />
<text x="1073.69" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Roll_storage__fun_3933 (265 samples, 0.01%)</title><rect x="833.4" y="741" width="0.1" height="15.0" fill="rgb(253,162,0)" rx="2" ry="2" />
<text x="836.38" y="751.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,009 samples, 0.04%)</title><rect x="1076.5" y="1173" width="0.5" height="15.0" fill="rgb(222,115,44)" rx="2" ry="2" />
<text x="1079.51" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (240 samples, 0.01%)</title><rect x="615.2" y="1141" width="0.1" height="15.0" fill="rgb(211,123,41)" rx="2" ry="2" />
<text x="618.19" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (4,806 samples, 0.21%)</title><rect x="1144.4" y="213" width="2.5" height="15.0" fill="rgb(205,84,22)" rx="2" ry="2" />
<text x="1147.40" y="223.5" ></text>
</g>
<g >
<title>sweep_slice (305 samples, 0.01%)</title><rect x="145.0" y="1381" width="0.2" height="15.0" fill="rgb(233,111,23)" rx="2" ry="2" />
<text x="148.00" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (216 samples, 0.01%)</title><rect x="1085.9" y="981" width="0.1" height="15.0" fill="rgb(252,141,35)" rx="2" ry="2" />
<text x="1088.87" y="991.5" ></text>
</g>
<g >
<title>uECC_verify (4,596 samples, 0.20%)</title><rect x="828.9" y="261" width="2.4" height="15.0" fill="rgb(242,4,3)" rx="2" ry="2" />
<text x="831.90" y="271.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (453 samples, 0.02%)</title><rect x="385.9" y="1349" width="0.2" height="15.0" fill="rgb(244,0,25)" rx="2" ry="2" />
<text x="388.89" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (406 samples, 0.02%)</title><rect x="777.7" y="1013" width="0.2" height="15.0" fill="rgb(240,206,40)" rx="2" ry="2" />
<text x="780.73" y="1023.5" ></text>
</g>
<g >
<title>caml_apply2 (788 samples, 0.03%)</title><rect x="422.1" y="1461" width="0.4" height="15.0" fill="rgb(247,140,0)" rx="2" ry="2" />
<text x="425.12" y="1471.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (399 samples, 0.02%)</title><rect x="291.3" y="1349" width="0.2" height="15.0" fill="rgb(211,204,31)" rx="2" ry="2" />
<text x="294.26" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,005 samples, 0.04%)</title><rect x="247.6" y="1333" width="0.5" height="15.0" fill="rgb(210,78,32)" rx="2" ry="2" />
<text x="250.62" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (2,501 samples, 0.11%)</title><rect x="249.4" y="1365" width="1.3" height="15.0" fill="rgb(251,60,7)" rx="2" ry="2" />
<text x="252.38" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (298 samples, 0.01%)</title><rect x="612.3" y="1093" width="0.2" height="15.0" fill="rgb(244,2,29)" rx="2" ry="2" />
<text x="615.35" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,881 samples, 0.17%)</title><rect x="269.3" y="1397" width="2.0" height="15.0" fill="rgb(235,128,36)" rx="2" ry="2" />
<text x="272.34" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (509 samples, 0.02%)</title><rect x="865.7" y="821" width="0.3" height="15.0" fill="rgb(253,192,10)" rx="2" ry="2" />
<text x="868.75" y="831.5" ></text>
</g>
<g >
<title>caml_call_gc (1,076 samples, 0.05%)</title><rect x="147.4" y="1461" width="0.5" height="15.0" fill="rgb(238,54,50)" rx="2" ry="2" />
<text x="150.39" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__find_4634 (821 samples, 0.04%)</title><rect x="833.8" y="693" width="0.4" height="15.0" fill="rgb(236,105,25)" rx="2" ry="2" />
<text x="836.76" y="703.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (831 samples, 0.04%)</title><rect x="1117.8" y="997" width="0.4" height="15.0" fill="rgb(217,141,26)" rx="2" ry="2" />
<text x="1120.76" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (320 samples, 0.01%)</title><rect x="1074.1" y="1013" width="0.2" height="15.0" fill="rgb(209,197,0)" rx="2" ry="2" />
<text x="1077.11" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (308 samples, 0.01%)</title><rect x="1071.2" y="1205" width="0.2" height="15.0" fill="rgb(254,220,15)" rx="2" ry="2" />
<text x="1074.20" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (346 samples, 0.01%)</title><rect x="1179.1" y="1173" width="0.2" height="15.0" fill="rgb(240,145,20)" rx="2" ry="2" />
<text x="1182.11" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (747 samples, 0.03%)</title><rect x="18.2" y="1605" width="0.3" height="15.0" fill="rgb(227,157,17)" rx="2" ry="2" />
<text x="21.16" y="1615.5" ></text>
</g>
<g >
<title>sweep_slice (362 samples, 0.02%)</title><rect x="248.1" y="1349" width="0.2" height="15.0" fill="rgb(230,189,52)" rx="2" ry="2" />
<text x="251.13" y="1359.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (224 samples, 0.01%)</title><rect x="240.2" y="1365" width="0.1" height="15.0" fill="rgb(223,15,29)" rx="2" ry="2" />
<text x="243.22" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (880 samples, 0.04%)</title><rect x="393.3" y="1429" width="0.5" height="15.0" fill="rgb(235,200,18)" rx="2" ry="2" />
<text x="396.32" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (165,864 samples, 7.19%)</title><rect x="1082.2" y="1269" width="84.8" height="15.0" fill="rgb(233,47,24)" rx="2" ry="2" />
<text x="1085.23" y="1279.5" >camlLwt__..</text>
</g>
<g >
<title>blake2b_compress (1,912 samples, 0.08%)</title><rect x="588.0" y="1237" width="1.0" height="15.0" fill="rgb(222,109,52)" rx="2" ry="2" />
<text x="591.04" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (345 samples, 0.01%)</title><rect x="397.9" y="1365" width="0.2" height="15.0" fill="rgb(238,219,46)" rx="2" ry="2" />
<text x="400.88" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (415 samples, 0.02%)</title><rect x="313.3" y="1349" width="0.2" height="15.0" fill="rgb(225,86,10)" rx="2" ry="2" />
<text x="316.32" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (994 samples, 0.04%)</title><rect x="749.8" y="1077" width="0.5" height="15.0" fill="rgb(234,102,41)" rx="2" ry="2" />
<text x="752.78" y="1087.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (718 samples, 0.03%)</title><rect x="657.4" y="149" width="0.4" height="15.0" fill="rgb(243,143,1)" rx="2" ry="2" />
<text x="660.42" y="159.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__hash_3272 (345 samples, 0.01%)</title><rect x="305.3" y="1445" width="0.2" height="15.0" fill="rgb(236,3,53)" rx="2" ry="2" />
<text x="308.32" y="1455.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,034 samples, 0.04%)</title><rect x="1145.5" y="133" width="0.5" height="15.0" fill="rgb(248,170,54)" rx="2" ry="2" />
<text x="1148.49" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7381 (361 samples, 0.02%)</title><rect x="1162.4" y="501" width="0.1" height="15.0" fill="rgb(227,148,25)" rx="2" ry="2" />
<text x="1165.36" y="511.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (613 samples, 0.03%)</title><rect x="371.3" y="1237" width="0.3" height="15.0" fill="rgb(244,60,53)" rx="2" ry="2" />
<text x="374.30" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (230 samples, 0.01%)</title><rect x="218.6" y="1301" width="0.1" height="15.0" fill="rgb(206,225,45)" rx="2" ry="2" />
<text x="221.57" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (1,675 samples, 0.07%)</title><rect x="652.9" y="165" width="0.9" height="15.0" fill="rgb(212,77,46)" rx="2" ry="2" />
<text x="655.90" y="175.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (690 samples, 0.03%)</title><rect x="140.2" y="1349" width="0.4" height="15.0" fill="rgb(240,143,50)" rx="2" ry="2" />
<text x="143.23" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (602 samples, 0.03%)</title><rect x="241.1" y="1397" width="0.4" height="15.0" fill="rgb(220,184,10)" rx="2" ry="2" />
<text x="244.14" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,573 samples, 0.15%)</title><rect x="895.0" y="1397" width="1.9" height="15.0" fill="rgb(205,4,35)" rx="2" ry="2" />
<text x="898.05" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (265 samples, 0.01%)</title><rect x="1012.0" y="1349" width="0.1" height="15.0" fill="rgb(220,94,10)" rx="2" ry="2" />
<text x="1014.97" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (513 samples, 0.02%)</title><rect x="203.6" y="1333" width="0.2" height="15.0" fill="rgb(211,224,54)" rx="2" ry="2" />
<text x="206.58" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (340 samples, 0.01%)</title><rect x="616.3" y="1157" width="0.2" height="15.0" fill="rgb(226,220,20)" rx="2" ry="2" />
<text x="619.29" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (1,111 samples, 0.05%)</title><rect x="1057.5" y="1093" width="0.6" height="15.0" fill="rgb(217,224,54)" rx="2" ry="2" />
<text x="1060.55" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__fun_7512 (3,582 samples, 0.16%)</title><rect x="668.2" y="325" width="1.9" height="15.0" fill="rgb(241,228,20)" rx="2" ry="2" />
<text x="671.24" y="335.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (282 samples, 0.01%)</title><rect x="875.5" y="981" width="0.1" height="15.0" fill="rgb(222,72,45)" rx="2" ry="2" />
<text x="878.49" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (17,154 samples, 0.74%)</title><rect x="699.6" y="1045" width="8.8" height="15.0" fill="rgb(205,141,51)" rx="2" ry="2" />
<text x="702.63" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (77,727 samples, 3.37%)</title><rect x="631.2" y="725" width="39.8" height="15.0" fill="rgb(250,77,4)" rx="2" ry="2" />
<text x="634.24" y="735.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (392 samples, 0.02%)</title><rect x="496.6" y="1269" width="0.2" height="15.0" fill="rgb(209,21,42)" rx="2" ry="2" />
<text x="499.56" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (361 samples, 0.02%)</title><rect x="501.7" y="1285" width="0.2" height="15.0" fill="rgb(254,97,22)" rx="2" ry="2" />
<text x="504.75" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (48,632 samples, 2.11%)</title><rect x="123.1" y="1477" width="24.8" height="15.0" fill="rgb(245,227,53)" rx="2" ry="2" />
<text x="126.08" y="1487.5" >c..</text>
</g>
<g >
<title>caml_alloc_string (1,002 samples, 0.04%)</title><rect x="572.7" y="1237" width="0.5" height="15.0" fill="rgb(233,185,9)" rx="2" ry="2" />
<text x="575.68" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (210 samples, 0.01%)</title><rect x="1077.9" y="1205" width="0.1" height="15.0" fill="rgb(249,194,40)" rx="2" ry="2" />
<text x="1080.86" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__aux_28323 (39,067 samples, 1.69%)</title><rect x="527.1" y="1333" width="19.9" height="15.0" fill="rgb(207,54,27)" rx="2" ry="2" />
<text x="530.06" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (44,616 samples, 1.93%)</title><rect x="815.7" y="1173" width="22.8" height="15.0" fill="rgb(250,66,26)" rx="2" ry="2" />
<text x="818.67" y="1183.5" >c..</text>
</g>
<g >
<title>mark_slice (342 samples, 0.01%)</title><rect x="493.8" y="1173" width="0.2" height="15.0" fill="rgb(245,64,47)" rx="2" ry="2" />
<text x="496.78" y="1183.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (341 samples, 0.01%)</title><rect x="111.8" y="1445" width="0.2" height="15.0" fill="rgb(210,40,8)" rx="2" ry="2" />
<text x="114.83" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5755 (1,629 samples, 0.07%)</title><rect x="582.6" y="1285" width="0.9" height="15.0" fill="rgb(231,127,26)" rx="2" ry="2" />
<text x="585.64" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (201 samples, 0.01%)</title><rect x="1067.1" y="1157" width="0.1" height="15.0" fill="rgb(230,78,54)" rx="2" ry="2" />
<text x="1070.14" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (493 samples, 0.02%)</title><rect x="137.9" y="1317" width="0.3" height="15.0" fill="rgb(246,187,15)" rx="2" ry="2" />
<text x="140.93" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (357 samples, 0.02%)</title><rect x="797.7" y="1029" width="0.2" height="15.0" fill="rgb(241,7,44)" rx="2" ry="2" />
<text x="800.68" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__finalize_1515 (450 samples, 0.02%)</title><rect x="610.9" y="1205" width="0.2" height="15.0" fill="rgb(233,122,40)" rx="2" ry="2" />
<text x="613.90" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (1,111 samples, 0.05%)</title><rect x="782.8" y="1141" width="0.6" height="15.0" fill="rgb(239,151,36)" rx="2" ry="2" />
<text x="785.84" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11900 (10,957 samples, 0.47%)</title><rect x="578.0" y="1333" width="5.6" height="15.0" fill="rgb(213,153,50)" rx="2" ry="2" />
<text x="580.99" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (16,394 samples, 0.71%)</title><rect x="1143.9" y="261" width="8.4" height="15.0" fill="rgb(251,25,31)" rx="2" ry="2" />
<text x="1146.91" y="271.5" ></text>
</g>
<g >
<title>caml_hash (200 samples, 0.01%)</title><rect x="564.3" y="1173" width="0.1" height="15.0" fill="rgb(235,85,21)" rx="2" ry="2" />
<text x="567.30" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,308 samples, 0.06%)</title><rect x="1172.1" y="901" width="0.6" height="15.0" fill="rgb(213,155,16)" rx="2" ry="2" />
<text x="1175.07" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (585 samples, 0.03%)</title><rect x="536.3" y="1125" width="0.3" height="15.0" fill="rgb(253,96,24)" rx="2" ry="2" />
<text x="539.26" y="1135.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (331 samples, 0.01%)</title><rect x="830.7" y="213" width="0.2" height="15.0" fill="rgb(227,224,39)" rx="2" ry="2" />
<text x="833.72" y="223.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (452 samples, 0.02%)</title><rect x="990.0" y="1349" width="0.2" height="15.0" fill="rgb(220,18,5)" rx="2" ry="2" />
<text x="992.98" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (275 samples, 0.01%)</title><rect x="870.7" y="885" width="0.2" height="15.0" fill="rgb(205,74,15)" rx="2" ry="2" />
<text x="873.74" y="895.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,411 samples, 1.58%)</title><rect x="1094.5" y="997" width="18.6" height="15.0" fill="rgb(222,136,47)" rx="2" ry="2" />
<text x="1097.53" y="1007.5" ></text>
</g>
<g >
<title>caml_call_gc (460 samples, 0.02%)</title><rect x="616.5" y="1205" width="0.2" height="15.0" fill="rgb(221,84,5)" rx="2" ry="2" />
<text x="619.46" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_541 (526 samples, 0.02%)</title><rect x="571.8" y="1285" width="0.2" height="15.0" fill="rgb(207,41,54)" rx="2" ry="2" />
<text x="574.77" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (336 samples, 0.01%)</title><rect x="537.7" y="1061" width="0.1" height="15.0" fill="rgb(214,128,50)" rx="2" ry="2" />
<text x="540.65" y="1071.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (386 samples, 0.02%)</title><rect x="581.9" y="1125" width="0.2" height="15.0" fill="rgb(253,203,45)" rx="2" ry="2" />
<text x="584.86" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (202 samples, 0.01%)</title><rect x="722.8" y="1077" width="0.1" height="15.0" fill="rgb(237,108,41)" rx="2" ry="2" />
<text x="725.82" y="1087.5" ></text>
</g>
<g >
<title>caml_curry13_12 (222 samples, 0.01%)</title><rect x="859.8" y="933" width="0.1" height="15.0" fill="rgb(208,11,8)" rx="2" ry="2" />
<text x="862.83" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (5,582 samples, 0.24%)</title><rect x="559.0" y="1285" width="2.8" height="15.0" fill="rgb(233,134,50)" rx="2" ry="2" />
<text x="561.97" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (245 samples, 0.01%)</title><rect x="614.2" y="1157" width="0.2" height="15.0" fill="rgb(239,122,10)" rx="2" ry="2" />
<text x="617.23" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Storage_functors__get_option_2282 (683 samples, 0.03%)</title><rect x="1162.2" y="661" width="0.4" height="15.0" fill="rgb(217,147,8)" rx="2" ry="2" />
<text x="1165.23" y="671.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (650 samples, 0.03%)</title><rect x="998.5" y="1253" width="0.3" height="15.0" fill="rgb(209,78,48)" rx="2" ry="2" />
<text x="1001.46" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (1,379 samples, 0.06%)</title><rect x="475.3" y="1349" width="0.7" height="15.0" fill="rgb(218,127,9)" rx="2" ry="2" />
<text x="478.32" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (542 samples, 0.02%)</title><rect x="1122.2" y="933" width="0.3" height="15.0" fill="rgb(235,161,30)" rx="2" ry="2" />
<text x="1125.22" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (999 samples, 0.04%)</title><rect x="577.2" y="757" width="0.5" height="15.0" fill="rgb(220,0,3)" rx="2" ry="2" />
<text x="580.19" y="767.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (776 samples, 0.03%)</title><rect x="443.4" y="1381" width="0.4" height="15.0" fill="rgb(227,92,26)" rx="2" ry="2" />
<text x="446.35" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4607 (12,555 samples, 0.54%)</title><rect x="1133.0" y="1093" width="6.4" height="15.0" fill="rgb(228,14,30)" rx="2" ry="2" />
<text x="1135.98" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (1,260 samples, 0.05%)</title><rect x="1118.5" y="981" width="0.7" height="15.0" fill="rgb(225,102,50)" rx="2" ry="2" />
<text x="1121.52" y="991.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (22,232 samples, 0.96%)</title><rect x="1168.2" y="1253" width="11.4" height="15.0" fill="rgb(219,57,35)" rx="2" ry="2" />
<text x="1171.23" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (447 samples, 0.02%)</title><rect x="700.0" y="965" width="0.2" height="15.0" fill="rgb(206,107,35)" rx="2" ry="2" />
<text x="702.98" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (766 samples, 0.03%)</title><rect x="1113.9" y="1205" width="0.4" height="15.0" fill="rgb(249,184,27)" rx="2" ry="2" />
<text x="1116.87" y="1215.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (228 samples, 0.01%)</title><rect x="989.2" y="1365" width="0.1" height="15.0" fill="rgb(229,73,40)" rx="2" ry="2" />
<text x="992.22" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (345 samples, 0.01%)</title><rect x="244.5" y="1317" width="0.1" height="15.0" fill="rgb(242,64,19)" rx="2" ry="2" />
<text x="247.47" y="1327.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (2,224 samples, 0.10%)</title><rect x="389.6" y="1429" width="1.1" height="15.0" fill="rgb(232,105,26)" rx="2" ry="2" />
<text x="392.58" y="1439.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,495 samples, 0.06%)</title><rect x="384.0" y="1333" width="0.8" height="15.0" fill="rgb(234,103,9)" rx="2" ry="2" />
<text x="387.00" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (499 samples, 0.02%)</title><rect x="475.8" y="1317" width="0.2" height="15.0" fill="rgb(215,79,5)" rx="2" ry="2" />
<text x="478.77" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,458 samples, 0.28%)</title><rect x="10.5" y="1669" width="3.3" height="15.0" fill="rgb(215,92,14)" rx="2" ry="2" />
<text x="13.46" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__aux_28323 (9,393 samples, 0.41%)</title><rect x="1055.2" y="1269" width="4.8" height="15.0" fill="rgb(253,142,9)" rx="2" ry="2" />
<text x="1058.16" y="1279.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (7,957 samples, 0.34%)</title><rect x="585.7" y="1317" width="4.0" height="15.0" fill="rgb(230,223,13)" rx="2" ry="2" />
<text x="588.65" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (645 samples, 0.03%)</title><rect x="497.5" y="1237" width="0.4" height="15.0" fill="rgb(248,84,43)" rx="2" ry="2" />
<text x="500.53" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (351 samples, 0.02%)</title><rect x="690.1" y="1013" width="0.1" height="15.0" fill="rgb(214,122,34)" rx="2" ry="2" />
<text x="693.07" y="1023.5" ></text>
</g>
<g >
<title>mark_slice_darken (457 samples, 0.02%)</title><rect x="712.7" y="1013" width="0.2" height="15.0" fill="rgb(213,75,44)" rx="2" ry="2" />
<text x="715.70" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (235 samples, 0.01%)</title><rect x="766.3" y="1045" width="0.1" height="15.0" fill="rgb(224,18,17)" rx="2" ry="2" />
<text x="769.26" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (843 samples, 0.04%)</title><rect x="238.5" y="1317" width="0.4" height="15.0" fill="rgb(252,121,24)" rx="2" ry="2" />
<text x="241.50" y="1327.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (313 samples, 0.01%)</title><rect x="834.9" y="677" width="0.2" height="15.0" fill="rgb(250,104,39)" rx="2" ry="2" />
<text x="837.90" y="687.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (238 samples, 0.01%)</title><rect x="1071.8" y="1189" width="0.1" height="15.0" fill="rgb(241,65,19)" rx="2" ry="2" />
<text x="1074.78" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (218 samples, 0.01%)</title><rect x="201.5" y="1349" width="0.2" height="15.0" fill="rgb(214,214,15)" rx="2" ry="2" />
<text x="204.54" y="1359.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (325 samples, 0.01%)</title><rect x="1021.9" y="1317" width="0.2" height="15.0" fill="rgb(235,213,21)" rx="2" ry="2" />
<text x="1024.91" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7384 (2,084 samples, 0.09%)</title><rect x="1055.8" y="1157" width="1.0" height="15.0" fill="rgb(208,9,41)" rx="2" ry="2" />
<text x="1058.78" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (3,159 samples, 0.14%)</title><rect x="1070.1" y="1221" width="1.6" height="15.0" fill="rgb(205,6,5)" rx="2" ry="2" />
<text x="1073.11" y="1231.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (326 samples, 0.01%)</title><rect x="836.9" y="805" width="0.1" height="15.0" fill="rgb(250,183,49)" rx="2" ry="2" />
<text x="839.85" y="815.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (326 samples, 0.01%)</title><rect x="268.1" y="1333" width="0.2" height="15.0" fill="rgb(245,147,41)" rx="2" ry="2" />
<text x="271.09" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_mult (299 samples, 0.01%)</title><rect x="816.6" y="181" width="0.2" height="15.0" fill="rgb(243,52,36)" rx="2" ry="2" />
<text x="819.64" y="191.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (329 samples, 0.01%)</title><rect x="728.3" y="1125" width="0.2" height="15.0" fill="rgb(224,108,33)" rx="2" ry="2" />
<text x="731.33" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2186 (752 samples, 0.03%)</title><rect x="209.7" y="1365" width="0.4" height="15.0" fill="rgb(254,18,16)" rx="2" ry="2" />
<text x="212.72" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11900 (7,103 samples, 0.31%)</title><rect x="1074.5" y="1269" width="3.6" height="15.0" fill="rgb(253,41,1)" rx="2" ry="2" />
<text x="1077.52" y="1279.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (279 samples, 0.01%)</title><rect x="811.3" y="1029" width="0.2" height="15.0" fill="rgb(224,216,33)" rx="2" ry="2" />
<text x="814.34" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (262 samples, 0.01%)</title><rect x="1174.4" y="821" width="0.2" height="15.0" fill="rgb(219,120,45)" rx="2" ry="2" />
<text x="1177.43" y="831.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (5,074 samples, 0.22%)</title><rect x="391.9" y="1445" width="2.5" height="15.0" fill="rgb(207,69,13)" rx="2" ry="2" />
<text x="394.86" y="1455.5" ></text>
</g>
<g >
<title>double_jacobian_default (817 samples, 0.04%)</title><rect x="631.7" y="133" width="0.4" height="15.0" fill="rgb(250,169,14)" rx="2" ry="2" />
<text x="634.67" y="143.5" ></text>
</g>
<g >
<title>mark_slice (926 samples, 0.04%)</title><rect x="548.2" y="1269" width="0.5" height="15.0" fill="rgb(252,165,18)" rx="2" ry="2" />
<text x="551.23" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (1,577 samples, 0.07%)</title><rect x="417.3" y="1365" width="0.8" height="15.0" fill="rgb(240,66,26)" rx="2" ry="2" />
<text x="420.26" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (204 samples, 0.01%)</title><rect x="535.4" y="1077" width="0.1" height="15.0" fill="rgb(239,22,4)" rx="2" ry="2" />
<text x="538.38" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_5748 (569 samples, 0.02%)</title><rect x="433.6" y="1413" width="0.3" height="15.0" fill="rgb(245,31,34)" rx="2" ry="2" />
<text x="436.58" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (971 samples, 0.04%)</title><rect x="884.3" y="1269" width="0.5" height="15.0" fill="rgb(237,51,41)" rx="2" ry="2" />
<text x="887.29" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (728 samples, 0.03%)</title><rect x="765.6" y="1061" width="0.3" height="15.0" fill="rgb(237,161,53)" rx="2" ry="2" />
<text x="768.56" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (9,463 samples, 0.41%)</title><rect x="1157.1" y="405" width="4.8" height="15.0" fill="rgb(239,125,24)" rx="2" ry="2" />
<text x="1160.07" y="415.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (1,399 samples, 0.06%)</title><rect x="915.9" y="1461" width="0.7" height="15.0" fill="rgb(248,135,19)" rx="2" ry="2" />
<text x="918.89" y="1471.5" ></text>
</g>
<g >
<title>caml_call_gc (388 samples, 0.02%)</title><rect x="490.9" y="1221" width="0.2" height="15.0" fill="rgb(250,78,30)" rx="2" ry="2" />
<text x="493.87" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1312 (243 samples, 0.01%)</title><rect x="1089.5" y="901" width="0.1" height="15.0" fill="rgb(214,128,39)" rx="2" ry="2" />
<text x="1092.49" y="911.5" ></text>
</g>
<g >
<title>camlUecc__pk_of_bytes_738 (2,999 samples, 0.13%)</title><rect x="836.8" y="869" width="1.6" height="15.0" fill="rgb(215,28,11)" rx="2" ry="2" />
<text x="839.83" y="879.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (340 samples, 0.01%)</title><rect x="908.8" y="1333" width="0.2" height="15.0" fill="rgb(240,78,43)" rx="2" ry="2" />
<text x="911.82" y="1343.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (295 samples, 0.01%)</title><rect x="293.1" y="1301" width="0.2" height="15.0" fill="rgb(223,77,41)" rx="2" ry="2" />
<text x="296.14" y="1311.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (357 samples, 0.02%)</title><rect x="294.6" y="1365" width="0.2" height="15.0" fill="rgb(212,59,43)" rx="2" ry="2" />
<text x="297.58" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (35,232 samples, 1.53%)</title><rect x="1143.9" y="469" width="18.0" height="15.0" fill="rgb(220,165,17)" rx="2" ry="2" />
<text x="1146.90" y="479.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (250 samples, 0.01%)</title><rect x="799.7" y="1029" width="0.2" height="15.0" fill="rgb(228,160,43)" rx="2" ry="2" />
<text x="802.74" y="1039.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (199 samples, 0.01%)</title><rect x="330.5" y="1397" width="0.1" height="15.0" fill="rgb(238,47,25)" rx="2" ry="2" />
<text x="333.55" y="1407.5" ></text>
</g>
<g >
<title>unix_lseek_64 (416 samples, 0.02%)</title><rect x="535.1" y="1045" width="0.3" height="15.0" fill="rgb(246,157,16)" rx="2" ry="2" />
<text x="538.14" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (350 samples, 0.02%)</title><rect x="870.5" y="885" width="0.2" height="15.0" fill="rgb(245,111,6)" rx="2" ry="2" />
<text x="873.48" y="895.5" ></text>
</g>
<g >
<title>mark_slice (367 samples, 0.02%)</title><rect x="621.3" y="1205" width="0.1" height="15.0" fill="rgb(241,195,8)" rx="2" ry="2" />
<text x="624.26" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (898 samples, 0.04%)</title><rect x="304.9" y="1429" width="0.4" height="15.0" fill="rgb(206,135,12)" rx="2" ry="2" />
<text x="307.86" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__return_1073 (819 samples, 0.04%)</title><rect x="844.9" y="1349" width="0.4" height="15.0" fill="rgb(253,19,20)" rx="2" ry="2" />
<text x="847.88" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (2,203 samples, 0.10%)</title><rect x="857.1" y="965" width="1.1" height="15.0" fill="rgb(234,42,46)" rx="2" ry="2" />
<text x="860.12" y="975.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (8,728 samples, 0.38%)</title><rect x="823.1" y="309" width="4.5" height="15.0" fill="rgb(247,181,31)" rx="2" ry="2" />
<text x="826.10" y="319.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_paused_2053 (10,760 samples, 0.47%)</title><rect x="77.3" y="1573" width="5.5" height="15.0" fill="rgb(229,123,49)" rx="2" ry="2" />
<text x="80.33" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,622 samples, 0.68%)</title><rect x="315.3" y="1365" width="8.0" height="15.0" fill="rgb(239,0,28)" rx="2" ry="2" />
<text x="318.27" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (739 samples, 0.03%)</title><rect x="607.2" y="1285" width="0.3" height="15.0" fill="rgb(205,168,39)" rx="2" ry="2" />
<text x="610.17" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (77,727 samples, 3.37%)</title><rect x="631.2" y="741" width="39.8" height="15.0" fill="rgb(209,39,49)" rx="2" ry="2" />
<text x="634.24" y="751.5" >cam..</text>
</g>
<g >
<title>mark_slice_darken (2,165 samples, 0.09%)</title><rect x="888.1" y="1301" width="1.2" height="15.0" fill="rgb(254,16,33)" rx="2" ry="2" />
<text x="891.15" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (360 samples, 0.02%)</title><rect x="1010.0" y="1333" width="0.2" height="15.0" fill="rgb(235,49,41)" rx="2" ry="2" />
<text x="1013.02" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (616 samples, 0.03%)</title><rect x="521.7" y="1269" width="0.3" height="15.0" fill="rgb(254,72,23)" rx="2" ry="2" />
<text x="524.66" y="1279.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (260 samples, 0.01%)</title><rect x="247.3" y="1333" width="0.1" height="15.0" fill="rgb(227,203,9)" rx="2" ry="2" />
<text x="250.27" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (22,456 samples, 0.97%)</title><rect x="1168.2" y="1285" width="11.4" height="15.0" fill="rgb(208,175,36)" rx="2" ry="2" />
<text x="1171.17" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (337 samples, 0.01%)</title><rect x="497.6" y="1189" width="0.2" height="15.0" fill="rgb(224,13,39)" rx="2" ry="2" />
<text x="500.64" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,153 samples, 0.05%)</title><rect x="719.9" y="1013" width="0.6" height="15.0" fill="rgb(219,97,51)" rx="2" ry="2" />
<text x="722.92" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (324 samples, 0.01%)</title><rect x="147.0" y="1445" width="0.1" height="15.0" fill="rgb(243,123,49)" rx="2" ry="2" />
<text x="149.96" y="1455.5" ></text>
</g>
<g >
<title>uECC_vli_mult (349 samples, 0.02%)</title><rect x="829.5" y="213" width="0.2" height="15.0" fill="rgb(215,91,24)" rx="2" ry="2" />
<text x="832.53" y="223.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (1,143 samples, 0.05%)</title><rect x="767.8" y="1125" width="0.6" height="15.0" fill="rgb(217,212,46)" rx="2" ry="2" />
<text x="770.79" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,602 samples, 0.07%)</title><rect x="1163.9" y="581" width="0.8" height="15.0" fill="rgb(206,60,7)" rx="2" ry="2" />
<text x="1166.87" y="591.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (559 samples, 0.02%)</title><rect x="18.7" y="1653" width="0.3" height="15.0" fill="rgb(226,139,9)" rx="2" ry="2" />
<text x="21.68" y="1663.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (273 samples, 0.01%)</title><rect x="556.3" y="1301" width="0.2" height="15.0" fill="rgb(223,49,5)" rx="2" ry="2" />
<text x="559.34" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (200 samples, 0.01%)</title><rect x="725.1" y="1173" width="0.1" height="15.0" fill="rgb(245,4,17)" rx="2" ry="2" />
<text x="728.05" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (298 samples, 0.01%)</title><rect x="491.5" y="1125" width="0.2" height="15.0" fill="rgb(253,33,10)" rx="2" ry="2" />
<text x="494.54" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__save_11896 (407 samples, 0.02%)</title><rect x="583.7" y="1333" width="0.2" height="15.0" fill="rgb(206,91,52)" rx="2" ry="2" />
<text x="586.66" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3994 (25,674 samples, 1.11%)</title><rect x="1143.9" y="293" width="13.1" height="15.0" fill="rgb(213,36,54)" rx="2" ry="2" />
<text x="1146.91" y="303.5" ></text>
</g>
<g >
<title>sweep_slice (203 samples, 0.01%)</title><rect x="443.0" y="1333" width="0.1" height="15.0" fill="rgb(213,117,42)" rx="2" ry="2" />
<text x="446.04" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (586 samples, 0.03%)</title><rect x="600.7" y="1333" width="0.3" height="15.0" fill="rgb(218,168,11)" rx="2" ry="2" />
<text x="603.65" y="1343.5" ></text>
</g>
<g >
<title>__lseek64 (1,805 samples, 0.08%)</title><rect x="997.1" y="1269" width="1.0" height="15.0" fill="rgb(238,194,8)" rx="2" ry="2" />
<text x="1000.13" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (515 samples, 0.02%)</title><rect x="245.6" y="1333" width="0.3" height="15.0" fill="rgb(236,191,27)" rx="2" ry="2" />
<text x="248.60" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (283 samples, 0.01%)</title><rect x="985.5" y="1365" width="0.1" height="15.0" fill="rgb(226,81,32)" rx="2" ry="2" />
<text x="988.50" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (1,859 samples, 0.08%)</title><rect x="1087.9" y="917" width="1.0" height="15.0" fill="rgb(220,53,45)" rx="2" ry="2" />
<text x="1090.94" y="927.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (553 samples, 0.02%)</title><rect x="521.3" y="1301" width="0.3" height="15.0" fill="rgb(220,202,54)" rx="2" ry="2" />
<text x="524.31" y="1311.5" ></text>
</g>
<g >
<title>caml_string_equal (221 samples, 0.01%)</title><rect x="542.4" y="1109" width="0.1" height="15.0" fill="rgb(218,99,26)" rx="2" ry="2" />
<text x="545.43" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (500 samples, 0.02%)</title><rect x="629.8" y="997" width="0.3" height="15.0" fill="rgb(235,144,45)" rx="2" ry="2" />
<text x="632.82" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2079 (279 samples, 0.01%)</title><rect x="571.6" y="1285" width="0.2" height="15.0" fill="rgb(238,112,2)" rx="2" ry="2" />
<text x="574.63" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (328 samples, 0.01%)</title><rect x="198.2" y="1381" width="0.1" height="15.0" fill="rgb(218,157,1)" rx="2" ry="2" />
<text x="201.16" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (506 samples, 0.02%)</title><rect x="1046.5" y="1317" width="0.3" height="15.0" fill="rgb(247,141,44)" rx="2" ry="2" />
<text x="1049.50" y="1327.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (278 samples, 0.01%)</title><rect x="411.7" y="1333" width="0.2" height="15.0" fill="rgb(227,71,41)" rx="2" ry="2" />
<text x="414.75" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (811 samples, 0.04%)</title><rect x="534.2" y="1093" width="0.4" height="15.0" fill="rgb(214,86,4)" rx="2" ry="2" />
<text x="537.22" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (461 samples, 0.02%)</title><rect x="499.0" y="1269" width="0.2" height="15.0" fill="rgb(252,155,19)" rx="2" ry="2" />
<text x="502.01" y="1279.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (648 samples, 0.03%)</title><rect x="124.2" y="1397" width="0.3" height="15.0" fill="rgb(248,44,48)" rx="2" ry="2" />
<text x="127.18" y="1407.5" ></text>
</g>
<g >
<title>uECC_vli_mult (575 samples, 0.02%)</title><rect x="830.0" y="213" width="0.2" height="15.0" fill="rgb(225,158,22)" rx="2" ry="2" />
<text x="832.95" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (4,320 samples, 0.19%)</title><rect x="693.0" y="1045" width="2.2" height="15.0" fill="rgb(241,143,10)" rx="2" ry="2" />
<text x="695.98" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (591 samples, 0.03%)</title><rect x="870.4" y="901" width="0.3" height="15.0" fill="rgb(211,38,22)" rx="2" ry="2" />
<text x="873.44" y="911.5" ></text>
</g>
<g >
<title>mark_slice (245 samples, 0.01%)</title><rect x="699.5" y="981" width="0.1" height="15.0" fill="rgb(248,201,26)" rx="2" ry="2" />
<text x="702.48" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (1,189 samples, 0.05%)</title><rect x="626.3" y="1013" width="0.6" height="15.0" fill="rgb(207,75,48)" rx="2" ry="2" />
<text x="629.31" y="1023.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (1,875 samples, 0.08%)</title><rect x="324.8" y="1381" width="1.0" height="15.0" fill="rgb(251,117,38)" rx="2" ry="2" />
<text x="327.82" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,928 samples, 0.08%)</title><rect x="151.8" y="1429" width="1.0" height="15.0" fill="rgb(214,204,38)" rx="2" ry="2" />
<text x="154.82" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_211 (431 samples, 0.02%)</title><rect x="780.1" y="1109" width="0.2" height="15.0" fill="rgb(208,1,5)" rx="2" ry="2" />
<text x="783.08" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5068 (248 samples, 0.01%)</title><rect x="1077.4" y="1061" width="0.1" height="15.0" fill="rgb(235,170,31)" rx="2" ry="2" />
<text x="1080.41" y="1071.5" ></text>
</g>
<g >
<title>caml_apply2 (2,430 samples, 0.11%)</title><rect x="224.4" y="1365" width="1.2" height="15.0" fill="rgb(226,196,51)" rx="2" ry="2" />
<text x="227.37" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (285 samples, 0.01%)</title><rect x="794.0" y="949" width="0.2" height="15.0" fill="rgb(220,80,4)" rx="2" ry="2" />
<text x="797.03" y="959.5" ></text>
</g>
<g >
<title>caml_hash (538 samples, 0.02%)</title><rect x="1040.5" y="1317" width="0.3" height="15.0" fill="rgb(212,168,29)" rx="2" ry="2" />
<text x="1043.50" y="1327.5" ></text>
</g>
<g >
<title>camlEnvironment_V0__apply_operation_31284 (11,272 samples, 0.49%)</title><rect x="827.6" y="437" width="5.7" height="15.0" fill="rgb(220,159,14)" rx="2" ry="2" />
<text x="830.58" y="447.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (687 samples, 0.03%)</title><rect x="695.8" y="949" width="0.4" height="15.0" fill="rgb(207,143,10)" rx="2" ry="2" />
<text x="698.84" y="959.5" ></text>
</g>
<g >
<title>apply_z (4,613 samples, 0.20%)</title><rect x="643.5" y="165" width="2.4" height="15.0" fill="rgb(252,54,19)" rx="2" ry="2" />
<text x="646.54" y="175.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (517 samples, 0.02%)</title><rect x="550.8" y="1237" width="0.3" height="15.0" fill="rgb(224,135,21)" rx="2" ry="2" />
<text x="553.83" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,174 samples, 0.09%)</title><rect x="293.3" y="1333" width="1.1" height="15.0" fill="rgb(243,169,23)" rx="2" ry="2" />
<text x="296.33" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__find_5807 (331 samples, 0.01%)</title><rect x="868.6" y="885" width="0.1" height="15.0" fill="rgb(223,175,32)" rx="2" ry="2" />
<text x="871.57" y="895.5" ></text>
</g>
<g >
<title>caml_garbage_collection (507 samples, 0.02%)</title><rect x="722.5" y="1077" width="0.3" height="15.0" fill="rgb(207,19,20)" rx="2" ry="2" />
<text x="725.53" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13852 (425 samples, 0.02%)</title><rect x="592.1" y="1349" width="0.2" height="15.0" fill="rgb(246,107,35)" rx="2" ry="2" />
<text x="595.13" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (236 samples, 0.01%)</title><rect x="189.3" y="1365" width="0.1" height="15.0" fill="rgb(209,226,10)" rx="2" ry="2" />
<text x="192.30" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (417 samples, 0.02%)</title><rect x="372.0" y="1301" width="0.2" height="15.0" fill="rgb(238,187,35)" rx="2" ry="2" />
<text x="374.96" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (995 samples, 0.04%)</title><rect x="372.3" y="1285" width="0.5" height="15.0" fill="rgb(206,74,30)" rx="2" ry="2" />
<text x="375.32" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (3,415 samples, 0.15%)</title><rect x="687.6" y="1013" width="1.8" height="15.0" fill="rgb(218,112,36)" rx="2" ry="2" />
<text x="690.61" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (203 samples, 0.01%)</title><rect x="865.9" y="773" width="0.1" height="15.0" fill="rgb(240,123,26)" rx="2" ry="2" />
<text x="868.86" y="783.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_825 (200 samples, 0.01%)</title><rect x="1166.9" y="1253" width="0.1" height="15.0" fill="rgb(223,134,42)" rx="2" ry="2" />
<text x="1169.92" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__commit_30907 (579 samples, 0.03%)</title><rect x="671.4" y="757" width="0.3" height="15.0" fill="rgb(232,217,36)" rx="2" ry="2" />
<text x="674.40" y="767.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (927 samples, 0.04%)</title><rect x="1164.1" y="469" width="0.5" height="15.0" fill="rgb(214,160,47)" rx="2" ry="2" />
<text x="1167.15" y="479.5" ></text>
</g>
<g >
<title>caml_garbage_collection (197 samples, 0.01%)</title><rect x="881.6" y="933" width="0.1" height="15.0" fill="rgb(231,143,45)" rx="2" ry="2" />
<text x="884.60" y="943.5" ></text>
</g>
<g >
<title>caml_string_length (315 samples, 0.01%)</title><rect x="290.4" y="1349" width="0.1" height="15.0" fill="rgb(217,115,3)" rx="2" ry="2" />
<text x="293.37" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (245 samples, 0.01%)</title><rect x="579.4" y="1221" width="0.2" height="15.0" fill="rgb(232,153,14)" rx="2" ry="2" />
<text x="582.45" y="1231.5" ></text>
</g>
<g >
<title>caml_apply5 (847 samples, 0.04%)</title><rect x="563.0" y="1301" width="0.5" height="15.0" fill="rgb(245,58,28)" rx="2" ry="2" />
<text x="566.03" y="1311.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (237 samples, 0.01%)</title><rect x="828.0" y="213" width="0.2" height="15.0" fill="rgb(226,75,25)" rx="2" ry="2" />
<text x="831.05" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (722 samples, 0.03%)</title><rect x="1007.8" y="1333" width="0.4" height="15.0" fill="rgb(211,72,1)" rx="2" ry="2" />
<text x="1010.79" y="1343.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (303 samples, 0.01%)</title><rect x="144.3" y="1381" width="0.2" height="15.0" fill="rgb(238,206,52)" rx="2" ry="2" />
<text x="147.32" y="1391.5" ></text>
</g>
<g >
<title>memmove (273 samples, 0.01%)</title><rect x="587.3" y="1253" width="0.2" height="15.0" fill="rgb(205,111,54)" rx="2" ry="2" />
<text x="590.32" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (10,065 samples, 0.44%)</title><rect x="263.4" y="1429" width="5.2" height="15.0" fill="rgb(237,219,44)" rx="2" ry="2" />
<text x="266.45" y="1439.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (241 samples, 0.01%)</title><rect x="463.0" y="1285" width="0.1" height="15.0" fill="rgb(248,208,50)" rx="2" ry="2" />
<text x="465.97" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (228 samples, 0.01%)</title><rect x="864.3" y="677" width="0.1" height="15.0" fill="rgb(206,166,22)" rx="2" ry="2" />
<text x="867.26" y="687.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (348 samples, 0.02%)</title><rect x="144.8" y="1349" width="0.2" height="15.0" fill="rgb(213,219,12)" rx="2" ry="2" />
<text x="147.82" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (7,837 samples, 0.34%)</title><rect x="1004.6" y="1349" width="4.0" height="15.0" fill="rgb(218,17,28)" rx="2" ry="2" />
<text x="1007.55" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (233 samples, 0.01%)</title><rect x="556.9" y="1285" width="0.1" height="15.0" fill="rgb(247,204,54)" rx="2" ry="2" />
<text x="559.89" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (610 samples, 0.03%)</title><rect x="730.4" y="1173" width="0.3" height="15.0" fill="rgb(237,108,17)" rx="2" ry="2" />
<text x="733.43" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (690 samples, 0.03%)</title><rect x="691.0" y="1029" width="0.3" height="15.0" fill="rgb(243,156,4)" rx="2" ry="2" />
<text x="693.98" y="1039.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (12,581 samples, 0.55%)</title><rect x="1087.6" y="997" width="6.4" height="15.0" fill="rgb(251,139,38)" rx="2" ry="2" />
<text x="1090.57" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (301 samples, 0.01%)</title><rect x="1007.4" y="1269" width="0.2" height="15.0" fill="rgb(243,206,27)" rx="2" ry="2" />
<text x="1010.41" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (360 samples, 0.02%)</title><rect x="794.0" y="965" width="0.2" height="15.0" fill="rgb(234,69,6)" rx="2" ry="2" />
<text x="797.03" y="975.5" ></text>
</g>
<g >
<title>caml_stash_backtrace (47,840 samples, 2.07%)</title><rect x="50.4" y="1637" width="24.4" height="15.0" fill="rgb(249,10,40)" rx="2" ry="2" />
<text x="53.37" y="1647.5" >c..</text>
</g>
<g >
<title>caml_call_gc (1,418 samples, 0.06%)</title><rect x="619.9" y="1125" width="0.7" height="15.0" fill="rgb(239,195,22)" rx="2" ry="2" />
<text x="622.88" y="1135.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (236 samples, 0.01%)</title><rect x="845.8" y="1285" width="0.1" height="15.0" fill="rgb(233,206,47)" rx="2" ry="2" />
<text x="848.77" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (1,896 samples, 0.08%)</title><rect x="415.7" y="1333" width="1.0" height="15.0" fill="rgb(220,152,31)" rx="2" ry="2" />
<text x="418.69" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (974 samples, 0.04%)</title><rect x="611.8" y="1141" width="0.5" height="15.0" fill="rgb(243,6,38)" rx="2" ry="2" />
<text x="614.81" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (238 samples, 0.01%)</title><rect x="496.6" y="1221" width="0.1" height="15.0" fill="rgb(226,169,43)" rx="2" ry="2" />
<text x="499.61" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4559 (5,556 samples, 0.24%)</title><rect x="880.1" y="1029" width="2.9" height="15.0" fill="rgb(250,224,42)" rx="2" ry="2" />
<text x="883.15" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (582 samples, 0.03%)</title><rect x="192.7" y="1381" width="0.3" height="15.0" fill="rgb(232,119,2)" rx="2" ry="2" />
<text x="195.66" y="1391.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (383 samples, 0.02%)</title><rect x="614.5" y="1205" width="0.1" height="15.0" fill="rgb(214,14,39)" rx="2" ry="2" />
<text x="617.45" y="1215.5" ></text>
</g>
<g >
<title>sweep_slice (241 samples, 0.01%)</title><rect x="612.0" y="1045" width="0.1" height="15.0" fill="rgb(252,85,38)" rx="2" ry="2" />
<text x="615.01" y="1055.5" ></text>
</g>
<g >
<title>uECC_vli_add (268 samples, 0.01%)</title><rect x="826.7" y="197" width="0.1" height="15.0" fill="rgb(207,172,47)" rx="2" ry="2" />
<text x="829.65" y="207.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (3,546 samples, 0.15%)</title><rect x="142.2" y="1445" width="1.8" height="15.0" fill="rgb(239,224,24)" rx="2" ry="2" />
<text x="145.23" y="1455.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (661 samples, 0.03%)</title><rect x="452.4" y="1365" width="0.4" height="15.0" fill="rgb(205,126,32)" rx="2" ry="2" />
<text x="455.44" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (248 samples, 0.01%)</title><rect x="710.1" y="1029" width="0.2" height="15.0" fill="rgb(235,156,45)" rx="2" ry="2" />
<text x="713.12" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,558 samples, 0.07%)</title><rect x="855.1" y="949" width="0.8" height="15.0" fill="rgb(243,116,26)" rx="2" ry="2" />
<text x="858.11" y="959.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (212 samples, 0.01%)</title><rect x="1052.4" y="1269" width="0.1" height="15.0" fill="rgb(232,170,6)" rx="2" ry="2" />
<text x="1055.41" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (1,320 samples, 0.06%)</title><rect x="1075.3" y="1189" width="0.7" height="15.0" fill="rgb(229,127,36)" rx="2" ry="2" />
<text x="1078.29" y="1199.5" ></text>
</g>
<g >
<title>uECC_vli_add (254 samples, 0.01%)</title><rect x="660.3" y="149" width="0.2" height="15.0" fill="rgb(207,225,21)" rx="2" ry="2" />
<text x="663.33" y="159.5" ></text>
</g>
<g >
<title>mark_slice (199 samples, 0.01%)</title><rect x="594.1" y="1269" width="0.1" height="15.0" fill="rgb(237,51,19)" rx="2" ry="2" />
<text x="597.05" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (346 samples, 0.01%)</title><rect x="815.5" y="1125" width="0.2" height="15.0" fill="rgb(218,179,24)" rx="2" ry="2" />
<text x="818.50" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (1,132 samples, 0.05%)</title><rect x="875.9" y="981" width="0.6" height="15.0" fill="rgb(218,221,32)" rx="2" ry="2" />
<text x="878.91" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (1,978 samples, 0.09%)</title><rect x="1172.9" y="853" width="1.0" height="15.0" fill="rgb(241,58,6)" rx="2" ry="2" />
<text x="1175.87" y="863.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (267 samples, 0.01%)</title><rect x="865.8" y="789" width="0.2" height="15.0" fill="rgb(234,127,25)" rx="2" ry="2" />
<text x="868.85" y="799.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (202 samples, 0.01%)</title><rect x="432.3" y="1317" width="0.1" height="15.0" fill="rgb(254,216,51)" rx="2" ry="2" />
<text x="435.27" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (545 samples, 0.02%)</title><rect x="777.1" y="1061" width="0.3" height="15.0" fill="rgb(214,53,46)" rx="2" ry="2" />
<text x="780.08" y="1071.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (250 samples, 0.01%)</title><rect x="225.6" y="1333" width="0.1" height="15.0" fill="rgb(232,140,44)" rx="2" ry="2" />
<text x="228.61" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4602 (60,275 samples, 2.61%)</title><rect x="488.2" y="1349" width="30.8" height="15.0" fill="rgb(243,64,48)" rx="2" ry="2" />
<text x="491.18" y="1359.5" >ca..</text>
</g>
<g >
<title>caml_oldify_mopup (372 samples, 0.02%)</title><rect x="378.6" y="1333" width="0.2" height="15.0" fill="rgb(214,125,36)" rx="2" ry="2" />
<text x="381.58" y="1343.5" ></text>
</g>
<g >
<title>caml_oldify_one (220 samples, 0.01%)</title><rect x="415.5" y="1301" width="0.1" height="15.0" fill="rgb(247,192,32)" rx="2" ry="2" />
<text x="418.52" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (269 samples, 0.01%)</title><rect x="1142.0" y="1061" width="0.1" height="15.0" fill="rgb(213,88,44)" rx="2" ry="2" />
<text x="1145.00" y="1071.5" ></text>
</g>
<g >
<title>muladd (303 samples, 0.01%)</title><rect x="1161.0" y="149" width="0.2" height="15.0" fill="rgb(210,78,17)" rx="2" ry="2" />
<text x="1164.01" y="159.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (375 samples, 0.02%)</title><rect x="862.6" y="725" width="0.2" height="15.0" fill="rgb(221,87,44)" rx="2" ry="2" />
<text x="865.65" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (2,241 samples, 0.10%)</title><rect x="814.4" y="1141" width="1.1" height="15.0" fill="rgb(249,18,33)" rx="2" ry="2" />
<text x="817.35" y="1151.5" ></text>
</g>
<g >
<title>mul2add (503 samples, 0.02%)</title><rect x="1103.9" y="53" width="0.3" height="15.0" fill="rgb(213,172,47)" rx="2" ry="2" />
<text x="1106.93" y="63.5" ></text>
</g>
<g >
<title>caml_call_gc (211 samples, 0.01%)</title><rect x="706.4" y="981" width="0.1" height="15.0" fill="rgb(250,133,22)" rx="2" ry="2" />
<text x="709.42" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,363 samples, 0.06%)</title><rect x="577.0" y="1109" width="0.7" height="15.0" fill="rgb(232,87,7)" rx="2" ry="2" />
<text x="580.01" y="1119.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6465 (2,401 samples, 0.10%)</title><rect x="587.9" y="1285" width="1.3" height="15.0" fill="rgb(254,61,19)" rx="2" ry="2" />
<text x="590.93" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (13,151 samples, 0.57%)</title><rect x="743.6" y="1093" width="6.7" height="15.0" fill="rgb(230,48,45)" rx="2" ry="2" />
<text x="746.60" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_string (574 samples, 0.02%)</title><rect x="302.0" y="1397" width="0.3" height="15.0" fill="rgb(209,10,21)" rx="2" ry="2" />
<text x="304.98" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (34,806 samples, 1.51%)</title><rect x="995.2" y="1397" width="17.8" height="15.0" fill="rgb(211,158,42)" rx="2" ry="2" />
<text x="998.24" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (544 samples, 0.02%)</title><rect x="708.1" y="1013" width="0.2" height="15.0" fill="rgb(233,161,12)" rx="2" ry="2" />
<text x="711.06" y="1023.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (1,351 samples, 0.06%)</title><rect x="998.4" y="1269" width="0.7" height="15.0" fill="rgb(237,100,30)" rx="2" ry="2" />
<text x="1001.39" y="1279.5" ></text>
</g>
<g >
<title>uECC_verify (4,110 samples, 0.18%)</title><rect x="816.1" y="229" width="2.1" height="15.0" fill="rgb(248,81,35)" rx="2" ry="2" />
<text x="819.08" y="239.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (654 samples, 0.03%)</title><rect x="1073.9" y="1173" width="0.4" height="15.0" fill="rgb(246,216,18)" rx="2" ry="2" />
<text x="1076.94" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (4,205 samples, 0.18%)</title><rect x="246.2" y="1413" width="2.1" height="15.0" fill="rgb(245,189,27)" rx="2" ry="2" />
<text x="249.17" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (437 samples, 0.02%)</title><rect x="312.2" y="1381" width="0.2" height="15.0" fill="rgb(251,224,42)" rx="2" ry="2" />
<text x="315.18" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (217 samples, 0.01%)</title><rect x="267.5" y="1317" width="0.1" height="15.0" fill="rgb(253,189,40)" rx="2" ry="2" />
<text x="270.48" y="1327.5" ></text>
</g>
<g >
<title>caml_obj_make_forward (200 samples, 0.01%)</title><rect x="1016.9" y="1365" width="0.1" height="15.0" fill="rgb(233,13,41)" rx="2" ry="2" />
<text x="1019.86" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (254 samples, 0.01%)</title><rect x="615.6" y="1189" width="0.1" height="15.0" fill="rgb(254,213,18)" rx="2" ry="2" />
<text x="618.58" y="1199.5" ></text>
</g>
<g >
<title>uECC_vli_add (264 samples, 0.01%)</title><rect x="646.0" y="133" width="0.2" height="15.0" fill="rgb(217,109,4)" rx="2" ry="2" />
<text x="649.03" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (242 samples, 0.01%)</title><rect x="722.8" y="1109" width="0.1" height="15.0" fill="rgb(222,88,43)" rx="2" ry="2" />
<text x="725.80" y="1119.5" ></text>
</g>
<g >
<title>uECC_verify_stub (26,409 samples, 1.14%)</title><rect x="654.6" y="213" width="13.5" height="15.0" fill="rgb(228,177,36)" rx="2" ry="2" />
<text x="657.64" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5837 (11,501 samples, 0.50%)</title><rect x="860.2" y="885" width="5.9" height="15.0" fill="rgb(247,127,21)" rx="2" ry="2" />
<text x="863.21" y="895.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (284 samples, 0.01%)</title><rect x="915.1" y="1397" width="0.2" height="15.0" fill="rgb(251,25,35)" rx="2" ry="2" />
<text x="918.11" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12032 (4,923 samples, 0.21%)</title><rect x="533.1" y="1189" width="2.5" height="15.0" fill="rgb(227,9,17)" rx="2" ry="2" />
<text x="536.07" y="1199.5" ></text>
</g>
<g >
<title>uECC_vli_modAdd (201 samples, 0.01%)</title><rect x="825.0" y="229" width="0.1" height="15.0" fill="rgb(216,151,22)" rx="2" ry="2" />
<text x="828.01" y="239.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Storage_functors__of_bytes_876 (2,607 samples, 0.11%)</title><rect x="1164.9" y="885" width="1.3" height="15.0" fill="rgb(220,27,46)" rx="2" ry="2" />
<text x="1167.88" y="895.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (283 samples, 0.01%)</title><rect x="874.8" y="1029" width="0.1" height="15.0" fill="rgb(247,195,13)" rx="2" ry="2" />
<text x="877.77" y="1039.5" ></text>
</g>
<g >
<title>uECC_verify_stub (1,822 samples, 0.08%)</title><rect x="1157.2" y="197" width="1.0" height="15.0" fill="rgb(207,118,51)" rx="2" ry="2" />
<text x="1160.24" y="207.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (386 samples, 0.02%)</title><rect x="239.0" y="1365" width="0.2" height="15.0" fill="rgb(250,28,24)" rx="2" ry="2" />
<text x="242.04" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (440 samples, 0.02%)</title><rect x="772.8" y="1109" width="0.2" height="15.0" fill="rgb(205,151,30)" rx="2" ry="2" />
<text x="775.79" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (5,066 samples, 0.22%)</title><rect x="909.5" y="1413" width="2.6" height="15.0" fill="rgb(253,182,20)" rx="2" ry="2" />
<text x="912.47" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (197 samples, 0.01%)</title><rect x="876.6" y="981" width="0.1" height="15.0" fill="rgb(229,50,12)" rx="2" ry="2" />
<text x="879.61" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (746 samples, 0.03%)</title><rect x="693.6" y="917" width="0.4" height="15.0" fill="rgb(232,45,12)" rx="2" ry="2" />
<text x="696.59" y="927.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_471 (361 samples, 0.02%)</title><rect x="184.5" y="1365" width="0.2" height="15.0" fill="rgb(234,68,32)" rx="2" ry="2" />
<text x="187.53" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (319 samples, 0.01%)</title><rect x="522.4" y="1301" width="0.1" height="15.0" fill="rgb(220,225,53)" rx="2" ry="2" />
<text x="525.39" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (667 samples, 0.03%)</title><rect x="1052.8" y="1253" width="0.4" height="15.0" fill="rgb(254,121,16)" rx="2" ry="2" />
<text x="1055.82" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (7,177 samples, 0.31%)</title><rect x="501.9" y="1333" width="3.7" height="15.0" fill="rgb(228,49,36)" rx="2" ry="2" />
<text x="504.93" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (292 samples, 0.01%)</title><rect x="718.7" y="1013" width="0.1" height="15.0" fill="rgb(227,101,29)" rx="2" ry="2" />
<text x="721.67" y="1023.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (422 samples, 0.02%)</title><rect x="124.2" y="1381" width="0.2" height="15.0" fill="rgb(226,7,26)" rx="2" ry="2" />
<text x="127.21" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,850 samples, 0.08%)</title><rect x="1036.5" y="1349" width="0.9" height="15.0" fill="rgb(231,204,43)" rx="2" ry="2" />
<text x="1039.48" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (14,707 samples, 0.64%)</title><rect x="1098.5" y="165" width="7.5" height="15.0" fill="rgb(246,29,50)" rx="2" ry="2" />
<text x="1101.46" y="175.5" ></text>
</g>
<g >
<title>caml_apply2 (355 samples, 0.02%)</title><rect x="1071.7" y="1221" width="0.2" height="15.0" fill="rgb(207,146,39)" rx="2" ry="2" />
<text x="1074.72" y="1231.5" ></text>
</g>
<g >
<title>caml_string_equal (360 samples, 0.02%)</title><rect x="688.1" y="981" width="0.1" height="15.0" fill="rgb(207,45,11)" rx="2" ry="2" />
<text x="691.06" y="991.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3818 (1,505 samples, 0.07%)</title><rect x="1139.6" y="1077" width="0.8" height="15.0" fill="rgb(237,107,39)" rx="2" ry="2" />
<text x="1142.62" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,364 samples, 0.10%)</title><rect x="1050.2" y="1237" width="1.2" height="15.0" fill="rgb(214,65,30)" rx="2" ry="2" />
<text x="1053.20" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (259 samples, 0.01%)</title><rect x="768.2" y="1109" width="0.2" height="15.0" fill="rgb(246,220,22)" rx="2" ry="2" />
<text x="771.24" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (570 samples, 0.02%)</title><rect x="237.2" y="1381" width="0.3" height="15.0" fill="rgb(232,226,52)" rx="2" ry="2" />
<text x="240.22" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (655 samples, 0.03%)</title><rect x="80.3" y="1525" width="0.3" height="15.0" fill="rgb(237,104,43)" rx="2" ry="2" />
<text x="83.26" y="1535.5" ></text>
</g>
<g >
<title>caml_garbage_collection (291 samples, 0.01%)</title><rect x="805.8" y="1045" width="0.1" height="15.0" fill="rgb(242,228,6)" rx="2" ry="2" />
<text x="808.76" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (209 samples, 0.01%)</title><rect x="190.4" y="1253" width="0.1" height="15.0" fill="rgb(218,89,14)" rx="2" ry="2" />
<text x="193.37" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (348 samples, 0.02%)</title><rect x="795.7" y="1013" width="0.2" height="15.0" fill="rgb(241,200,12)" rx="2" ry="2" />
<text x="798.74" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (286 samples, 0.01%)</title><rect x="616.5" y="1157" width="0.2" height="15.0" fill="rgb(243,73,41)" rx="2" ry="2" />
<text x="619.51" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (246 samples, 0.01%)</title><rect x="794.9" y="1045" width="0.1" height="15.0" fill="rgb(209,196,36)" rx="2" ry="2" />
<text x="797.87" y="1055.5" ></text>
</g>
<g >
<title>caml_tuplify2 (643 samples, 0.03%)</title><rect x="248.3" y="1413" width="0.3" height="15.0" fill="rgb(228,155,36)" rx="2" ry="2" />
<text x="251.32" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (648 samples, 0.03%)</title><rect x="434.5" y="1397" width="0.4" height="15.0" fill="rgb(211,102,46)" rx="2" ry="2" />
<text x="437.54" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (1,042 samples, 0.05%)</title><rect x="433.9" y="1413" width="0.5" height="15.0" fill="rgb(230,33,28)" rx="2" ry="2" />
<text x="436.87" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (253 samples, 0.01%)</title><rect x="804.3" y="981" width="0.2" height="15.0" fill="rgb(238,41,0)" rx="2" ry="2" />
<text x="807.33" y="991.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (300 samples, 0.01%)</title><rect x="901.1" y="1397" width="0.1" height="15.0" fill="rgb(249,170,32)" rx="2" ry="2" />
<text x="904.09" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (703 samples, 0.03%)</title><rect x="1012.2" y="1381" width="0.3" height="15.0" fill="rgb(223,61,53)" rx="2" ry="2" />
<text x="1015.16" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (355 samples, 0.02%)</title><rect x="192.7" y="1349" width="0.2" height="15.0" fill="rgb(239,120,2)" rx="2" ry="2" />
<text x="195.72" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (256 samples, 0.01%)</title><rect x="137.6" y="1253" width="0.1" height="15.0" fill="rgb(243,24,1)" rx="2" ry="2" />
<text x="140.56" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11981 (539 samples, 0.02%)</title><rect x="1077.1" y="1125" width="0.3" height="15.0" fill="rgb(206,53,19)" rx="2" ry="2" />
<text x="1080.11" y="1135.5" ></text>
</g>
<g >
<title>unix_lseek_64 (279 samples, 0.01%)</title><rect x="1058.6" y="1093" width="0.1" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text x="1061.60" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,366 samples, 0.06%)</title><rect x="176.0" y="1237" width="0.7" height="15.0" fill="rgb(236,166,0)" rx="2" ry="2" />
<text x="179.03" y="1247.5" ></text>
</g>
<g >
<title>uECC_verify_stub (1,232 samples, 0.05%)</title><rect x="669.4" y="229" width="0.7" height="15.0" fill="rgb(219,126,5)" rx="2" ry="2" />
<text x="672.44" y="239.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (502 samples, 0.02%)</title><rect x="747.7" y="1013" width="0.2" height="15.0" fill="rgb(222,130,54)" rx="2" ry="2" />
<text x="750.68" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (203 samples, 0.01%)</title><rect x="843.1" y="1221" width="0.1" height="15.0" fill="rgb(206,214,1)" rx="2" ry="2" />
<text x="846.11" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (281 samples, 0.01%)</title><rect x="556.7" y="1253" width="0.2" height="15.0" fill="rgb(218,46,12)" rx="2" ry="2" />
<text x="559.74" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (931 samples, 0.04%)</title><rect x="18.1" y="1653" width="0.4" height="15.0" fill="rgb(221,141,8)" rx="2" ry="2" />
<text x="21.06" y="1663.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (283 samples, 0.01%)</title><rect x="1090.8" y="757" width="0.2" height="15.0" fill="rgb(246,30,18)" rx="2" ry="2" />
<text x="1093.84" y="767.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4780 (913 samples, 0.04%)</title><rect x="884.3" y="1141" width="0.5" height="15.0" fill="rgb(248,146,6)" rx="2" ry="2" />
<text x="887.29" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (284 samples, 0.01%)</title><rect x="612.6" y="1157" width="0.1" height="15.0" fill="rgb(251,204,14)" rx="2" ry="2" />
<text x="615.55" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,039 samples, 0.05%)</title><rect x="1062.2" y="1173" width="0.6" height="15.0" fill="rgb(208,75,11)" rx="2" ry="2" />
<text x="1065.24" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (233 samples, 0.01%)</title><rect x="805.8" y="1029" width="0.1" height="15.0" fill="rgb(244,67,48)" rx="2" ry="2" />
<text x="808.79" y="1039.5" ></text>
</g>
<g >
<title>mark_slice_darken (810 samples, 0.04%)</title><rect x="1050.7" y="1077" width="0.4" height="15.0" fill="rgb(236,126,36)" rx="2" ry="2" />
<text x="1053.65" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (419 samples, 0.02%)</title><rect x="786.4" y="1093" width="0.2" height="15.0" fill="rgb(227,209,20)" rx="2" ry="2" />
<text x="789.39" y="1103.5" ></text>
</g>
<g >
<title>memmove (218 samples, 0.01%)</title><rect x="589.6" y="1269" width="0.1" height="15.0" fill="rgb(209,76,6)" rx="2" ry="2" />
<text x="592.61" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (266 samples, 0.01%)</title><rect x="612.1" y="1077" width="0.2" height="15.0" fill="rgb(238,15,2)" rx="2" ry="2" />
<text x="615.13" y="1087.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (13,692 samples, 0.59%)</title><rect x="42.9" y="1653" width="7.0" height="15.0" fill="rgb(254,222,24)" rx="2" ry="2" />
<text x="45.92" y="1663.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="505.3" y="1317" width="0.1" height="15.0" fill="rgb(237,72,6)" rx="2" ry="2" />
<text x="508.30" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (439 samples, 0.02%)</title><rect x="1140.9" y="1013" width="0.2" height="15.0" fill="rgb(249,16,42)" rx="2" ry="2" />
<text x="1143.92" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_853 (1,791 samples, 0.08%)</title><rect x="418.3" y="1429" width="0.9" height="15.0" fill="rgb(210,158,51)" rx="2" ry="2" />
<text x="421.27" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (1,530 samples, 0.07%)</title><rect x="857.1" y="933" width="0.8" height="15.0" fill="rgb(219,202,50)" rx="2" ry="2" />
<text x="860.14" y="943.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1422 (1,399 samples, 0.06%)</title><rect x="1090.4" y="901" width="0.7" height="15.0" fill="rgb(231,133,43)" rx="2" ry="2" />
<text x="1093.42" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (297 samples, 0.01%)</title><rect x="1115.3" y="997" width="0.1" height="15.0" fill="rgb(228,57,4)" rx="2" ry="2" />
<text x="1118.30" y="1007.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (1,071 samples, 0.05%)</title><rect x="326.6" y="1381" width="0.6" height="15.0" fill="rgb(211,29,39)" rx="2" ry="2" />
<text x="329.64" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,629 samples, 0.20%)</title><rect x="976.1" y="1445" width="2.3" height="15.0" fill="rgb(235,146,8)" rx="2" ry="2" />
<text x="979.08" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (2,266 samples, 0.10%)</title><rect x="869.0" y="885" width="1.2" height="15.0" fill="rgb(234,17,21)" rx="2" ry="2" />
<text x="872.03" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (376 samples, 0.02%)</title><rect x="523.3" y="1285" width="0.2" height="15.0" fill="rgb(220,135,14)" rx="2" ry="2" />
<text x="526.35" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,137 samples, 0.05%)</title><rect x="200.1" y="1365" width="0.6" height="15.0" fill="rgb(225,99,10)" rx="2" ry="2" />
<text x="203.11" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (361 samples, 0.02%)</title><rect x="612.3" y="1109" width="0.2" height="15.0" fill="rgb(222,14,10)" rx="2" ry="2" />
<text x="615.35" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (203 samples, 0.01%)</title><rect x="256.0" y="1365" width="0.1" height="15.0" fill="rgb(209,175,40)" rx="2" ry="2" />
<text x="259.00" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (507 samples, 0.02%)</title><rect x="233.3" y="1317" width="0.3" height="15.0" fill="rgb(219,216,12)" rx="2" ry="2" />
<text x="236.33" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (1,392 samples, 0.06%)</title><rect x="446.6" y="1445" width="0.7" height="15.0" fill="rgb(250,228,22)" rx="2" ry="2" />
<text x="449.56" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (1,082 samples, 0.05%)</title><rect x="572.7" y="1253" width="0.5" height="15.0" fill="rgb(215,126,22)" rx="2" ry="2" />
<text x="575.66" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (450 samples, 0.02%)</title><rect x="92.9" y="1509" width="0.3" height="15.0" fill="rgb(237,131,15)" rx="2" ry="2" />
<text x="95.93" y="1519.5" ></text>
</g>
<g >
<title>uECC_vli_mult (618 samples, 0.03%)</title><rect x="654.0" y="149" width="0.3" height="15.0" fill="rgb(218,93,17)" rx="2" ry="2" />
<text x="657.02" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (995 samples, 0.04%)</title><rect x="877.7" y="1029" width="0.5" height="15.0" fill="rgb(214,200,36)" rx="2" ry="2" />
<text x="880.73" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (258 samples, 0.01%)</title><rect x="770.1" y="1061" width="0.1" height="15.0" fill="rgb(220,216,26)" rx="2" ry="2" />
<text x="773.11" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (40,873 samples, 1.77%)</title><rect x="815.7" y="869" width="20.9" height="15.0" fill="rgb(241,84,33)" rx="2" ry="2" />
<text x="818.70" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5769 (42,566 samples, 1.84%)</title><rect x="310.0" y="1461" width="21.7" height="15.0" fill="rgb(242,5,9)" rx="2" ry="2" />
<text x="312.98" y="1471.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,118 samples, 0.05%)</title><rect x="1067.4" y="1221" width="0.6" height="15.0" fill="rgb(242,160,19)" rx="2" ry="2" />
<text x="1070.41" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (6,672 samples, 0.29%)</title><rect x="195.8" y="1429" width="3.4" height="15.0" fill="rgb(246,151,36)" rx="2" ry="2" />
<text x="198.77" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (54,833 samples, 2.38%)</title><rect x="1085.5" y="1141" width="28.0" height="15.0" fill="rgb(236,80,10)" rx="2" ry="2" />
<text x="1088.46" y="1151.5" >c..</text>
</g>
<g >
<title>XYcZ_add (2,297 samples, 0.10%)</title><rect x="823.1" y="245" width="1.2" height="15.0" fill="rgb(215,102,47)" rx="2" ry="2" />
<text x="826.13" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (238 samples, 0.01%)</title><rect x="368.9" y="1349" width="0.1" height="15.0" fill="rgb(250,93,14)" rx="2" ry="2" />
<text x="371.92" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__fun_3276 (4,687 samples, 0.20%)</title><rect x="385.5" y="1429" width="2.4" height="15.0" fill="rgb(246,98,19)" rx="2" ry="2" />
<text x="388.48" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (2,906 samples, 0.13%)</title><rect x="847.1" y="1333" width="1.5" height="15.0" fill="rgb(222,49,34)" rx="2" ry="2" />
<text x="850.12" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (1,923 samples, 0.08%)</title><rect x="846.1" y="1349" width="0.9" height="15.0" fill="rgb(225,102,1)" rx="2" ry="2" />
<text x="849.07" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (322 samples, 0.01%)</title><rect x="981.6" y="1477" width="0.2" height="15.0" fill="rgb(231,83,12)" rx="2" ry="2" />
<text x="984.62" y="1487.5" ></text>
</g>
<g >
<title>caml_call_gc (567 samples, 0.02%)</title><rect x="687.1" y="1045" width="0.3" height="15.0" fill="rgb(222,181,33)" rx="2" ry="2" />
<text x="690.12" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (366 samples, 0.02%)</title><rect x="615.4" y="1157" width="0.1" height="15.0" fill="rgb(233,227,24)" rx="2" ry="2" />
<text x="618.36" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (295 samples, 0.01%)</title><rect x="493.1" y="1173" width="0.1" height="15.0" fill="rgb(241,148,38)" rx="2" ry="2" />
<text x="496.10" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (8,363 samples, 0.36%)</title><rect x="200.7" y="1413" width="4.3" height="15.0" fill="rgb(254,89,30)" rx="2" ry="2" />
<text x="203.69" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (1,760 samples, 0.08%)</title><rect x="728.6" y="1141" width="0.9" height="15.0" fill="rgb(206,20,2)" rx="2" ry="2" />
<text x="731.55" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (25,767 samples, 1.12%)</title><rect x="1143.9" y="437" width="13.2" height="15.0" fill="rgb(249,35,10)" rx="2" ry="2" />
<text x="1146.90" y="447.5" ></text>
</g>
<g >
<title>caml_call_gc (409 samples, 0.02%)</title><rect x="197.9" y="1397" width="0.2" height="15.0" fill="rgb(226,134,50)" rx="2" ry="2" />
<text x="200.86" y="1407.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (500 samples, 0.02%)</title><rect x="1108.6" y="101" width="0.2" height="15.0" fill="rgb(224,159,51)" rx="2" ry="2" />
<text x="1111.57" y="111.5" ></text>
</g>
<g >
<title>caml_call_gc (309 samples, 0.01%)</title><rect x="219.7" y="1349" width="0.2" height="15.0" fill="rgb(251,79,14)" rx="2" ry="2" />
<text x="222.75" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (23,654 samples, 1.02%)</title><rect x="127.5" y="1413" width="12.1" height="15.0" fill="rgb(243,227,43)" rx="2" ry="2" />
<text x="130.50" y="1423.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (14,365 samples, 0.62%)</title><rect x="632.2" y="229" width="7.3" height="15.0" fill="rgb(254,111,28)" rx="2" ry="2" />
<text x="635.19" y="239.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (500 samples, 0.02%)</title><rect x="728.3" y="1141" width="0.3" height="15.0" fill="rgb(219,101,52)" rx="2" ry="2" />
<text x="731.30" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,612 samples, 1.59%)</title><rect x="854.3" y="1061" width="18.8" height="15.0" fill="rgb(238,0,30)" rx="2" ry="2" />
<text x="857.35" y="1071.5" ></text>
</g>
<g >
<title>__lseek64 (7,546 samples, 0.33%)</title><rect x="14.1" y="1653" width="3.8" height="15.0" fill="rgb(214,217,43)" rx="2" ry="2" />
<text x="17.07" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (367 samples, 0.02%)</title><rect x="1124.3" y="981" width="0.2" height="15.0" fill="rgb(218,28,14)" rx="2" ry="2" />
<text x="1127.32" y="991.5" ></text>
</g>
<g >
<title>caml_call_gc (259 samples, 0.01%)</title><rect x="500.6" y="1317" width="0.1" height="15.0" fill="rgb(209,170,42)" rx="2" ry="2" />
<text x="503.60" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (1,443 samples, 0.06%)</title><rect x="787.2" y="1157" width="0.8" height="15.0" fill="rgb(214,15,47)" rx="2" ry="2" />
<text x="790.22" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (920 samples, 0.04%)</title><rect x="264.5" y="1397" width="0.5" height="15.0" fill="rgb(211,171,28)" rx="2" ry="2" />
<text x="267.53" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (466,116 samples, 20.19%)</title><rect x="606.6" y="1349" width="238.3" height="15.0" fill="rgb(245,121,51)" rx="2" ry="2" />
<text x="609.60" y="1359.5" >camlLwt__resolve_916</text>
</g>
<g >
<title>uECC_vli_modMult_fast (221 samples, 0.01%)</title><rect x="1162.7" y="613" width="0.1" height="15.0" fill="rgb(210,95,17)" rx="2" ry="2" />
<text x="1165.74" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (204 samples, 0.01%)</title><rect x="1120.1" y="901" width="0.1" height="15.0" fill="rgb(249,209,30)" rx="2" ry="2" />
<text x="1123.11" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_5009 (1,020 samples, 0.04%)</title><rect x="549.9" y="1269" width="0.5" height="15.0" fill="rgb(223,32,5)" rx="2" ry="2" />
<text x="552.85" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (340 samples, 0.01%)</title><rect x="618.7" y="1205" width="0.2" height="15.0" fill="rgb(223,14,15)" rx="2" ry="2" />
<text x="621.75" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (267,393 samples, 11.58%)</title><rect x="1044.5" y="1397" width="136.7" height="15.0" fill="rgb(206,208,35)" rx="2" ry="2" />
<text x="1047.51" y="1407.5" >camlLwt__run_in_r..</text>
</g>
<g >
<title>caml_empty_minor_heap (310 samples, 0.01%)</title><rect x="377.6" y="1317" width="0.2" height="15.0" fill="rgb(216,124,25)" rx="2" ry="2" />
<text x="380.61" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (265 samples, 0.01%)</title><rect x="97.1" y="1557" width="0.1" height="15.0" fill="rgb(240,219,50)" rx="2" ry="2" />
<text x="100.08" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,784 samples, 0.08%)</title><rect x="685.9" y="1045" width="0.9" height="15.0" fill="rgb(252,148,17)" rx="2" ry="2" />
<text x="688.88" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (312 samples, 0.01%)</title><rect x="732.6" y="1141" width="0.2" height="15.0" fill="rgb(237,45,48)" rx="2" ry="2" />
<text x="735.63" y="1151.5" ></text>
</g>
<g >
<title>sweep_slice (221 samples, 0.01%)</title><rect x="905.0" y="1365" width="0.1" height="15.0" fill="rgb(249,62,11)" rx="2" ry="2" />
<text x="908.00" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (201 samples, 0.01%)</title><rect x="807.3" y="1061" width="0.1" height="15.0" fill="rgb(251,4,50)" rx="2" ry="2" />
<text x="810.25" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__fun_3551 (292 samples, 0.01%)</title><rect x="873.9" y="1013" width="0.2" height="15.0" fill="rgb(205,55,43)" rx="2" ry="2" />
<text x="876.95" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,110 samples, 0.05%)</title><rect x="245.4" y="1381" width="0.6" height="15.0" fill="rgb(228,140,10)" rx="2" ry="2" />
<text x="248.39" y="1391.5" ></text>
</g>
<g >
<title>caml_oldify_one (314 samples, 0.01%)</title><rect x="337.1" y="1365" width="0.1" height="15.0" fill="rgb(246,61,45)" rx="2" ry="2" />
<text x="340.07" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (58,161 samples, 2.52%)</title><rect x="163.2" y="1429" width="29.8" height="15.0" fill="rgb(209,71,26)" rx="2" ry="2" />
<text x="166.22" y="1439.5" >ca..</text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,062 samples, 0.05%)</title><rect x="1153.6" y="165" width="0.5" height="15.0" fill="rgb(250,192,25)" rx="2" ry="2" />
<text x="1156.55" y="175.5" ></text>
</g>
<g >
<title>uECC_verify_stub (1,656 samples, 0.07%)</title><rect x="834.4" y="725" width="0.8" height="15.0" fill="rgb(235,195,9)" rx="2" ry="2" />
<text x="837.35" y="735.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (299 samples, 0.01%)</title><rect x="882.0" y="965" width="0.2" height="15.0" fill="rgb(210,80,3)" rx="2" ry="2" />
<text x="885.04" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (2,637 samples, 0.11%)</title><rect x="755.4" y="1093" width="1.3" height="15.0" fill="rgb(209,23,26)" rx="2" ry="2" />
<text x="758.37" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,000 samples, 0.95%)</title><rect x="959.2" y="1493" width="11.3" height="15.0" fill="rgb(245,109,28)" rx="2" ry="2" />
<text x="962.24" y="1503.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (207 samples, 0.01%)</title><rect x="796.8" y="997" width="0.1" height="15.0" fill="rgb(234,142,7)" rx="2" ry="2" />
<text x="799.78" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (747 samples, 0.03%)</title><rect x="232.0" y="1397" width="0.4" height="15.0" fill="rgb(233,49,25)" rx="2" ry="2" />
<text x="235.00" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (198 samples, 0.01%)</title><rect x="1087.4" y="1029" width="0.1" height="15.0" fill="rgb(252,45,0)" rx="2" ry="2" />
<text x="1090.37" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (365 samples, 0.02%)</title><rect x="574.2" y="1253" width="0.2" height="15.0" fill="rgb(222,75,45)" rx="2" ry="2" />
<text x="577.18" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (388 samples, 0.02%)</title><rect x="490.9" y="1237" width="0.2" height="15.0" fill="rgb(214,109,30)" rx="2" ry="2" />
<text x="493.87" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (1,688 samples, 0.07%)</title><rect x="878.3" y="1029" width="0.9" height="15.0" fill="rgb(219,198,38)" rx="2" ry="2" />
<text x="881.32" y="1039.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,497 samples, 0.06%)</title><rect x="837.0" y="789" width="0.8" height="15.0" fill="rgb(217,223,12)" rx="2" ry="2" />
<text x="840.03" y="799.5" ></text>
</g>
<g >
<title>mark_slice_darken (339 samples, 0.01%)</title><rect x="79.7" y="1493" width="0.1" height="15.0" fill="rgb(222,118,37)" rx="2" ry="2" />
<text x="82.66" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (1,124 samples, 0.05%)</title><rect x="866.1" y="885" width="0.6" height="15.0" fill="rgb(239,88,34)" rx="2" ry="2" />
<text x="869.13" y="895.5" ></text>
</g>
<g >
<title>uECC_verify (29,342 samples, 1.27%)</title><rect x="639.6" y="181" width="15.0" height="15.0" fill="rgb(206,146,4)" rx="2" ry="2" />
<text x="642.59" y="191.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (517 samples, 0.02%)</title><rect x="1079.0" y="1205" width="0.2" height="15.0" fill="rgb(237,188,51)" rx="2" ry="2" />
<text x="1081.97" y="1215.5" ></text>
</g>
<g >
<title>uECC_verify (910 samples, 0.04%)</title><rect x="1143.9" y="149" width="0.5" height="15.0" fill="rgb(219,21,41)" rx="2" ry="2" />
<text x="1146.93" y="159.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (23,205 samples, 1.01%)</title><rect x="815.7" y="485" width="11.9" height="15.0" fill="rgb(229,93,2)" rx="2" ry="2" />
<text x="818.72" y="495.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (1,430 samples, 0.06%)</title><rect x="1078.6" y="1253" width="0.7" height="15.0" fill="rgb(215,204,50)" rx="2" ry="2" />
<text x="1081.59" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (1,006 samples, 0.04%)</title><rect x="793.7" y="1013" width="0.5" height="15.0" fill="rgb(253,34,19)" rx="2" ry="2" />
<text x="796.70" y="1023.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (247 samples, 0.01%)</title><rect x="267.7" y="1365" width="0.1" height="15.0" fill="rgb(227,209,23)" rx="2" ry="2" />
<text x="270.68" y="1375.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (3,429 samples, 0.15%)</title><rect x="643.5" y="149" width="1.8" height="15.0" fill="rgb(240,37,53)" rx="2" ry="2" />
<text x="646.54" y="159.5" ></text>
</g>
<g >
<title>caml_hash (860 samples, 0.04%)</title><rect x="737.0" y="1061" width="0.4" height="15.0" fill="rgb(251,180,3)" rx="2" ry="2" />
<text x="740.01" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (650 samples, 0.03%)</title><rect x="1000.2" y="1141" width="0.3" height="15.0" fill="rgb(223,152,40)" rx="2" ry="2" />
<text x="1003.18" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (325 samples, 0.01%)</title><rect x="240.6" y="1317" width="0.2" height="15.0" fill="rgb(205,194,15)" rx="2" ry="2" />
<text x="243.63" y="1327.5" ></text>
</g>
<g >
<title>camlLwt_sequence__take_l_118 (3,152 samples, 0.14%)</title><rect x="473.5" y="1365" width="1.6" height="15.0" fill="rgb(229,34,17)" rx="2" ry="2" />
<text x="476.51" y="1375.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (5,795 samples, 0.25%)</title><rect x="862.0" y="773" width="3.0" height="15.0" fill="rgb(210,186,32)" rx="2" ry="2" />
<text x="865.02" y="783.5" ></text>
</g>
<g >
<title>caml_garbage_collection (211 samples, 0.01%)</title><rect x="703.3" y="949" width="0.1" height="15.0" fill="rgb(206,88,27)" rx="2" ry="2" />
<text x="706.31" y="959.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (339 samples, 0.01%)</title><rect x="912.6" y="1365" width="0.2" height="15.0" fill="rgb(236,91,38)" rx="2" ry="2" />
<text x="915.61" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (553 samples, 0.02%)</title><rect x="499.3" y="1253" width="0.3" height="15.0" fill="rgb(214,14,25)" rx="2" ry="2" />
<text x="502.31" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (1,766 samples, 0.08%)</title><rect x="695.4" y="997" width="0.9" height="15.0" fill="rgb(245,135,2)" rx="2" ry="2" />
<text x="698.36" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,209 samples, 0.05%)</title><rect x="992.6" y="1397" width="0.6" height="15.0" fill="rgb(226,80,11)" rx="2" ry="2" />
<text x="995.60" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (771 samples, 0.03%)</title><rect x="901.4" y="1381" width="0.3" height="15.0" fill="rgb(211,46,50)" rx="2" ry="2" />
<text x="904.35" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (1,600 samples, 0.07%)</title><rect x="545.2" y="1285" width="0.8" height="15.0" fill="rgb(219,160,43)" rx="2" ry="2" />
<text x="548.17" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (211 samples, 0.01%)</title><rect x="1187.0" y="1605" width="0.1" height="15.0" fill="rgb(212,205,17)" rx="2" ry="2" />
<text x="1190.00" y="1615.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,337 samples, 0.06%)</title><rect x="715.4" y="1013" width="0.7" height="15.0" fill="rgb(230,9,5)" rx="2" ry="2" />
<text x="718.42" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (360 samples, 0.02%)</title><rect x="617.2" y="1205" width="0.2" height="15.0" fill="rgb(234,24,10)" rx="2" ry="2" />
<text x="620.23" y="1215.5" ></text>
</g>
<g >
<title>caml_modify (1,530 samples, 0.07%)</title><rect x="518.0" y="1317" width="0.8" height="15.0" fill="rgb(229,118,6)" rx="2" ry="2" />
<text x="520.99" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12310 (2,555 samples, 0.11%)</title><rect x="619.4" y="1253" width="1.3" height="15.0" fill="rgb(233,7,39)" rx="2" ry="2" />
<text x="622.44" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_379 (222 samples, 0.01%)</title><rect x="300.9" y="1381" width="0.1" height="15.0" fill="rgb(243,155,19)" rx="2" ry="2" />
<text x="303.90" y="1391.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (510 samples, 0.02%)</title><rect x="1016.7" y="1381" width="0.3" height="15.0" fill="rgb(213,214,53)" rx="2" ry="2" />
<text x="1019.70" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__callback_1689 (37,427 samples, 1.62%)</title><rect x="854.1" y="1109" width="19.1" height="15.0" fill="rgb(209,131,19)" rx="2" ry="2" />
<text x="857.09" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (275 samples, 0.01%)</title><rect x="220.6" y="1285" width="0.1" height="15.0" fill="rgb(241,224,25)" rx="2" ry="2" />
<text x="223.60" y="1295.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (3,687 samples, 0.16%)</title><rect x="176.7" y="1333" width="1.9" height="15.0" fill="rgb(218,116,38)" rx="2" ry="2" />
<text x="179.73" y="1343.5" ></text>
</g>
<g >
<title>uECC_verify_stub (3,884 samples, 0.17%)</title><rect x="1158.2" y="213" width="2.0" height="15.0" fill="rgb(234,223,38)" rx="2" ry="2" />
<text x="1161.18" y="223.5" ></text>
</g>
<g >
<title>mark_slice_darken (505 samples, 0.02%)</title><rect x="720.0" y="933" width="0.3" height="15.0" fill="rgb(243,224,53)" rx="2" ry="2" />
<text x="723.02" y="943.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (300 samples, 0.01%)</title><rect x="522.6" y="1285" width="0.1" height="15.0" fill="rgb(252,214,25)" rx="2" ry="2" />
<text x="525.58" y="1295.5" ></text>
</g>
<g >
<title>uECC_vli_square (1,073 samples, 0.05%)</title><rect x="826.0" y="213" width="0.6" height="15.0" fill="rgb(207,97,36)" rx="2" ry="2" />
<text x="829.01" y="223.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (351 samples, 0.02%)</title><rect x="1177.7" y="837" width="0.2" height="15.0" fill="rgb(219,190,39)" rx="2" ry="2" />
<text x="1180.74" y="847.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (610 samples, 0.03%)</title><rect x="141.9" y="1397" width="0.3" height="15.0" fill="rgb(222,13,13)" rx="2" ry="2" />
<text x="144.88" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (4,091 samples, 0.18%)</title><rect x="1063.7" y="1173" width="2.1" height="15.0" fill="rgb(249,29,42)" rx="2" ry="2" />
<text x="1066.70" y="1183.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (447 samples, 0.02%)</title><rect x="828.3" y="213" width="0.2" height="15.0" fill="rgb(246,49,1)" rx="2" ry="2" />
<text x="831.26" y="223.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (512 samples, 0.02%)</title><rect x="499.0" y="1285" width="0.2" height="15.0" fill="rgb(211,91,32)" rx="2" ry="2" />
<text x="501.98" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (794 samples, 0.03%)</title><rect x="1073.5" y="1141" width="0.4" height="15.0" fill="rgb(212,212,50)" rx="2" ry="2" />
<text x="1076.51" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (249 samples, 0.01%)</title><rect x="561.1" y="1189" width="0.1" height="15.0" fill="rgb(223,73,30)" rx="2" ry="2" />
<text x="564.11" y="1199.5" ></text>
</g>
<g >
<title>caml_string_compare (289 samples, 0.01%)</title><rect x="726.8" y="1109" width="0.1" height="15.0" fill="rgb(253,146,42)" rx="2" ry="2" />
<text x="729.79" y="1119.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (520 samples, 0.02%)</title><rect x="597.5" y="1269" width="0.3" height="15.0" fill="rgb(240,73,27)" rx="2" ry="2" />
<text x="600.50" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_454 (3,861 samples, 0.17%)</title><rect x="727.7" y="1205" width="2.0" height="15.0" fill="rgb(209,194,36)" rx="2" ry="2" />
<text x="730.73" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (331 samples, 0.01%)</title><rect x="435.5" y="1429" width="0.2" height="15.0" fill="rgb(212,170,30)" rx="2" ry="2" />
<text x="438.52" y="1439.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (1,523 samples, 0.07%)</title><rect x="818.2" y="213" width="0.8" height="15.0" fill="rgb(206,124,26)" rx="2" ry="2" />
<text x="821.22" y="223.5" ></text>
</g>
<g >
<title>caml_garbage_collection (534 samples, 0.02%)</title><rect x="614.7" y="1189" width="0.2" height="15.0" fill="rgb(243,112,11)" rx="2" ry="2" />
<text x="617.65" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (413 samples, 0.02%)</title><rect x="1126.7" y="997" width="0.3" height="15.0" fill="rgb(252,107,3)" rx="2" ry="2" />
<text x="1129.74" y="1007.5" ></text>
</g>
<g >
<title>caml_modify (423 samples, 0.02%)</title><rect x="471.0" y="1349" width="0.2" height="15.0" fill="rgb(212,47,45)" rx="2" ry="2" />
<text x="473.96" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (315 samples, 0.01%)</title><rect x="999.2" y="1317" width="0.2" height="15.0" fill="rgb(227,47,19)" rx="2" ry="2" />
<text x="1002.23" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,064 samples, 0.05%)</title><rect x="238.5" y="1333" width="0.5" height="15.0" fill="rgb(251,161,18)" rx="2" ry="2" />
<text x="241.50" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (2,242 samples, 0.10%)</title><rect x="35.1" y="1605" width="1.2" height="15.0" fill="rgb(242,54,37)" rx="2" ry="2" />
<text x="38.15" y="1615.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,279 samples, 0.06%)</title><rect x="577.0" y="1045" width="0.7" height="15.0" fill="rgb(217,163,45)" rx="2" ry="2" />
<text x="580.05" y="1055.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (278 samples, 0.01%)</title><rect x="226.0" y="1285" width="0.1" height="15.0" fill="rgb(236,212,47)" rx="2" ry="2" />
<text x="228.98" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (198 samples, 0.01%)</title><rect x="677.6" y="1237" width="0.1" height="15.0" fill="rgb(235,40,50)" rx="2" ry="2" />
<text x="680.64" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (405 samples, 0.02%)</title><rect x="514.7" y="1173" width="0.2" height="15.0" fill="rgb(244,30,32)" rx="2" ry="2" />
<text x="517.69" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4102 (1,885 samples, 0.08%)</title><rect x="835.6" y="693" width="1.0" height="15.0" fill="rgb(240,174,3)" rx="2" ry="2" />
<text x="838.63" y="703.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (466 samples, 0.02%)</title><rect x="370.5" y="1285" width="0.2" height="15.0" fill="rgb(252,56,22)" rx="2" ry="2" />
<text x="373.49" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (321 samples, 0.01%)</title><rect x="153.8" y="1445" width="0.1" height="15.0" fill="rgb(245,131,2)" rx="2" ry="2" />
<text x="156.77" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (385 samples, 0.02%)</title><rect x="521.4" y="1253" width="0.2" height="15.0" fill="rgb(237,181,27)" rx="2" ry="2" />
<text x="524.40" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11900 (842 samples, 0.04%)</title><rect x="866.8" y="1013" width="0.4" height="15.0" fill="rgb(230,87,7)" rx="2" ry="2" />
<text x="869.82" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (41,473 samples, 1.80%)</title><rect x="400.7" y="1445" width="21.2" height="15.0" fill="rgb(218,174,13)" rx="2" ry="2" />
<text x="403.75" y="1455.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (197 samples, 0.01%)</title><rect x="1143.8" y="1093" width="0.1" height="15.0" fill="rgb(254,190,38)" rx="2" ry="2" />
<text x="1146.76" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (267 samples, 0.01%)</title><rect x="163.8" y="1397" width="0.1" height="15.0" fill="rgb(235,118,24)" rx="2" ry="2" />
<text x="166.77" y="1407.5" ></text>
</g>
<g >
<title>uECC_vli_mult (750 samples, 0.03%)</title><rect x="1148.3" y="133" width="0.3" height="15.0" fill="rgb(222,10,8)" rx="2" ry="2" />
<text x="1151.26" y="143.5" ></text>
</g>
<g >
<title>unix_lseek_64 (26,565 samples, 1.15%)</title><rect x="313.6" y="1413" width="13.6" height="15.0" fill="rgb(217,72,43)" rx="2" ry="2" />
<text x="316.60" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (292 samples, 0.01%)</title><rect x="1113.3" y="1093" width="0.1" height="15.0" fill="rgb(224,29,42)" rx="2" ry="2" />
<text x="1116.28" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (295 samples, 0.01%)</title><rect x="610.2" y="1189" width="0.1" height="15.0" fill="rgb(246,68,42)" rx="2" ry="2" />
<text x="613.18" y="1199.5" ></text>
</g>
<g >
<title>muladd (1,318 samples, 0.06%)</title><rect x="658.4" y="133" width="0.7" height="15.0" fill="rgb(226,18,53)" rx="2" ry="2" />
<text x="661.42" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (1,111 samples, 0.05%)</title><rect x="911.0" y="1381" width="0.6" height="15.0" fill="rgb(238,15,11)" rx="2" ry="2" />
<text x="914.00" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (1,110 samples, 0.05%)</title><rect x="772.0" y="1093" width="0.6" height="15.0" fill="rgb(242,58,21)" rx="2" ry="2" />
<text x="775.01" y="1103.5" ></text>
</g>
<g >
<title>caml_oldify_one (225 samples, 0.01%)</title><rect x="913.6" y="1349" width="0.1" height="15.0" fill="rgb(249,166,6)" rx="2" ry="2" />
<text x="916.55" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,030 samples, 0.09%)</title><rect x="734.6" y="1125" width="1.0" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" />
<text x="737.57" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (785 samples, 0.03%)</title><rect x="144.6" y="1365" width="0.4" height="15.0" fill="rgb(232,141,47)" rx="2" ry="2" />
<text x="147.60" y="1375.5" ></text>
</g>
<g >
<title>caml_tuplify2 (230 samples, 0.01%)</title><rect x="555.8" y="1269" width="0.1" height="15.0" fill="rgb(233,160,2)" rx="2" ry="2" />
<text x="558.83" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (411 samples, 0.02%)</title><rect x="31.0" y="1573" width="0.3" height="15.0" fill="rgb(209,94,0)" rx="2" ry="2" />
<text x="34.04" y="1583.5" ></text>
</g>
<g >
<title>caml_call_gc (280 samples, 0.01%)</title><rect x="555.0" y="1253" width="0.2" height="15.0" fill="rgb(247,166,6)" rx="2" ry="2" />
<text x="558.05" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__inode_11978 (999 samples, 0.04%)</title><rect x="577.2" y="789" width="0.5" height="15.0" fill="rgb(232,125,28)" rx="2" ry="2" />
<text x="580.19" y="799.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1222 (700 samples, 0.03%)</title><rect x="767.9" y="1109" width="0.3" height="15.0" fill="rgb(208,102,11)" rx="2" ry="2" />
<text x="770.86" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (15,534 samples, 0.67%)</title><rect x="904.1" y="1445" width="8.0" height="15.0" fill="rgb(252,127,1)" rx="2" ry="2" />
<text x="907.12" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__find_1611 (479 samples, 0.02%)</title><rect x="686.8" y="1061" width="0.3" height="15.0" fill="rgb(214,190,52)" rx="2" ry="2" />
<text x="689.85" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (13,252 samples, 0.57%)</title><rect x="624.4" y="1109" width="6.8" height="15.0" fill="rgb(252,49,27)" rx="2" ry="2" />
<text x="627.43" y="1119.5" ></text>
</g>
<g >
<title>uECC_vli_modInv (225 samples, 0.01%)</title><rect x="1159.9" y="181" width="0.2" height="15.0" fill="rgb(239,84,43)" rx="2" ry="2" />
<text x="1162.94" y="191.5" ></text>
</g>
<g >
<title>mark_slice_darken (559 samples, 0.02%)</title><rect x="677.8" y="1205" width="0.3" height="15.0" fill="rgb(213,72,29)" rx="2" ry="2" />
<text x="680.84" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (23,197 samples, 1.00%)</title><rect x="815.7" y="453" width="11.9" height="15.0" fill="rgb(238,137,38)" rx="2" ry="2" />
<text x="818.72" y="463.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Monad_maker__fold_left_s_1061 (72,321 samples, 3.13%)</title><rect x="631.3" y="389" width="36.9" height="15.0" fill="rgb(252,139,44)" rx="2" ry="2" />
<text x="634.27" y="399.5" >cam..</text>
</g>
<g >
<title>uECC_vli_modSquare_fast (805 samples, 0.03%)</title><rect x="817.4" y="197" width="0.5" height="15.0" fill="rgb(252,195,31)" rx="2" ry="2" />
<text x="820.45" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12273 (23,811 samples, 1.03%)</title><rect x="1114.9" y="1077" width="12.2" height="15.0" fill="rgb(211,125,7)" rx="2" ry="2" />
<text x="1117.92" y="1087.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (223 samples, 0.01%)</title><rect x="911.0" y="1349" width="0.1" height="15.0" fill="rgb(248,227,26)" rx="2" ry="2" />
<text x="914.00" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5832 (24,678 samples, 1.07%)</title><rect x="1061.9" y="1253" width="12.6" height="15.0" fill="rgb(232,9,10)" rx="2" ry="2" />
<text x="1064.88" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (959 samples, 0.04%)</title><rect x="424.2" y="1381" width="0.5" height="15.0" fill="rgb(216,54,54)" rx="2" ry="2" />
<text x="427.22" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (38,267 samples, 1.66%)</title><rect x="815.7" y="837" width="19.6" height="15.0" fill="rgb(235,60,1)" rx="2" ry="2" />
<text x="818.71" y="847.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (37,169 samples, 1.61%)</title><rect x="854.2" y="1093" width="19.0" height="15.0" fill="rgb(244,9,28)" rx="2" ry="2" />
<text x="857.21" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (308 samples, 0.01%)</title><rect x="797.7" y="997" width="0.2" height="15.0" fill="rgb(213,215,34)" rx="2" ry="2" />
<text x="800.71" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11923 (1,134 samples, 0.05%)</title><rect x="1173.3" y="837" width="0.6" height="15.0" fill="rgb(209,144,4)" rx="2" ry="2" />
<text x="1176.30" y="847.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_get_30924 (240 samples, 0.01%)</title><rect x="670.4" y="645" width="0.1" height="15.0" fill="rgb(216,8,18)" rx="2" ry="2" />
<text x="673.36" y="655.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (98,149 samples, 4.25%)</title><rect x="622.7" y="1221" width="50.1" height="15.0" fill="rgb(241,4,54)" rx="2" ry="2" />
<text x="625.67" y="1231.5" >camlL..</text>
</g>
<g >
<title>caml_mutex_unlock (202 samples, 0.01%)</title><rect x="989.3" y="1381" width="0.1" height="15.0" fill="rgb(245,128,45)" rx="2" ry="2" />
<text x="992.34" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_3994 (35,672 samples, 1.55%)</title><rect x="1094.6" y="229" width="18.2" height="15.0" fill="rgb(240,159,36)" rx="2" ry="2" />
<text x="1097.56" y="239.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (72,367 samples, 3.14%)</title><rect x="631.2" y="421" width="37.0" height="15.0" fill="rgb(220,157,26)" rx="2" ry="2" />
<text x="634.25" y="431.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15415 (673 samples, 0.03%)</title><rect x="1085.1" y="1157" width="0.3" height="15.0" fill="rgb(229,216,45)" rx="2" ry="2" />
<text x="1088.09" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (6,057 samples, 0.26%)</title><rect x="535.8" y="1173" width="3.1" height="15.0" fill="rgb(229,151,47)" rx="2" ry="2" />
<text x="538.81" y="1183.5" ></text>
</g>
<g >
<title>caml_apply5 (264 samples, 0.01%)</title><rect x="1140.2" y="1061" width="0.2" height="15.0" fill="rgb(244,16,0)" rx="2" ry="2" />
<text x="1143.23" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (4,610 samples, 0.20%)</title><rect x="828.9" y="325" width="2.4" height="15.0" fill="rgb(237,87,13)" rx="2" ry="2" />
<text x="831.89" y="335.5" ></text>
</g>
<g >
<title>uECC_vli_sub (250 samples, 0.01%)</title><rect x="1099.6" y="53" width="0.1" height="15.0" fill="rgb(234,186,33)" rx="2" ry="2" />
<text x="1102.58" y="63.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (1,320 samples, 0.06%)</title><rect x="1143.0" y="1093" width="0.7" height="15.0" fill="rgb(249,68,18)" rx="2" ry="2" />
<text x="1145.98" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (1,345 samples, 0.06%)</title><rect x="748.4" y="1045" width="0.7" height="15.0" fill="rgb(208,191,3)" rx="2" ry="2" />
<text x="751.38" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (213 samples, 0.01%)</title><rect x="201.5" y="1333" width="0.2" height="15.0" fill="rgb(247,3,46)" rx="2" ry="2" />
<text x="204.54" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (405 samples, 0.02%)</title><rect x="814.1" y="1125" width="0.3" height="15.0" fill="rgb(254,50,44)" rx="2" ry="2" />
<text x="817.14" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (433 samples, 0.02%)</title><rect x="993.4" y="1317" width="0.2" height="15.0" fill="rgb(242,92,8)" rx="2" ry="2" />
<text x="996.38" y="1327.5" ></text>
</g>
<g >
<title>caml_oldify_one (13,692 samples, 0.59%)</title><rect x="42.9" y="1637" width="7.0" height="15.0" fill="rgb(232,2,23)" rx="2" ry="2" />
<text x="45.92" y="1647.5" ></text>
</g>
<g >
<title>uECC_vli_add (393 samples, 0.02%)</title><rect x="1110.0" y="69" width="0.2" height="15.0" fill="rgb(247,126,22)" rx="2" ry="2" />
<text x="1113.04" y="79.5" ></text>
</g>
<g >
<title>caml_modify (337 samples, 0.01%)</title><rect x="505.4" y="1317" width="0.2" height="15.0" fill="rgb(252,207,34)" rx="2" ry="2" />
<text x="508.43" y="1327.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (533 samples, 0.02%)</title><rect x="1029.8" y="1253" width="0.3" height="15.0" fill="rgb(230,0,3)" rx="2" ry="2" />
<text x="1032.83" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,468 samples, 0.06%)</title><rect x="1040.3" y="1349" width="0.7" height="15.0" fill="rgb(209,61,13)" rx="2" ry="2" />
<text x="1043.27" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (323 samples, 0.01%)</title><rect x="1071.4" y="1189" width="0.1" height="15.0" fill="rgb(227,39,0)" rx="2" ry="2" />
<text x="1074.38" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (231 samples, 0.01%)</title><rect x="141.7" y="1365" width="0.1" height="15.0" fill="rgb(208,106,54)" rx="2" ry="2" />
<text x="144.65" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (544 samples, 0.02%)</title><rect x="703.9" y="981" width="0.3" height="15.0" fill="rgb(232,163,39)" rx="2" ry="2" />
<text x="706.95" y="991.5" ></text>
</g>
<g >
<title>camlLwt__add_task_r_1142 (422 samples, 0.02%)</title><rect x="590.3" y="1269" width="0.3" height="15.0" fill="rgb(241,24,24)" rx="2" ry="2" />
<text x="593.35" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (212 samples, 0.01%)</title><rect x="590.0" y="1285" width="0.1" height="15.0" fill="rgb(253,49,35)" rx="2" ry="2" />
<text x="592.99" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,710 samples, 0.07%)</title><rect x="918.2" y="1461" width="0.8" height="15.0" fill="rgb(242,75,14)" rx="2" ry="2" />
<text x="921.16" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (198 samples, 0.01%)</title><rect x="619.0" y="1173" width="0.1" height="15.0" fill="rgb(247,159,46)" rx="2" ry="2" />
<text x="622.00" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (243 samples, 0.01%)</title><rect x="535.7" y="1173" width="0.1" height="15.0" fill="rgb(253,113,43)" rx="2" ry="2" />
<text x="538.69" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (643 samples, 0.03%)</title><rect x="678.4" y="1253" width="0.4" height="15.0" fill="rgb(223,10,52)" rx="2" ry="2" />
<text x="681.43" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,138 samples, 0.05%)</title><rect x="569.7" y="1285" width="0.6" height="15.0" fill="rgb(235,159,0)" rx="2" ry="2" />
<text x="572.68" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4070 (403 samples, 0.02%)</title><rect x="836.4" y="549" width="0.2" height="15.0" fill="rgb(219,193,40)" rx="2" ry="2" />
<text x="839.39" y="559.5" ></text>
</g>
<g >
<title>caml_modify (2,050 samples, 0.09%)</title><rect x="1184.2" y="1653" width="1.1" height="15.0" fill="rgb(223,172,5)" rx="2" ry="2" />
<text x="1187.25" y="1663.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,791 samples, 0.08%)</title><rect x="721.6" y="1077" width="0.9" height="15.0" fill="rgb(238,98,30)" rx="2" ry="2" />
<text x="724.56" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (1,976 samples, 0.09%)</title><rect x="411.7" y="1397" width="1.0" height="15.0" fill="rgb(230,157,31)" rx="2" ry="2" />
<text x="414.72" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,031 samples, 0.04%)</title><rect x="577.2" y="853" width="0.5" height="15.0" fill="rgb(208,72,46)" rx="2" ry="2" />
<text x="580.18" y="863.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (452 samples, 0.02%)</title><rect x="716.3" y="1029" width="0.2" height="15.0" fill="rgb(250,40,7)" rx="2" ry="2" />
<text x="719.32" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (507 samples, 0.02%)</title><rect x="798.2" y="1013" width="0.2" height="15.0" fill="rgb(252,5,54)" rx="2" ry="2" />
<text x="801.19" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (681 samples, 0.03%)</title><rect x="442.7" y="1333" width="0.3" height="15.0" fill="rgb(219,15,37)" rx="2" ry="2" />
<text x="445.69" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (209 samples, 0.01%)</title><rect x="691.3" y="1029" width="0.1" height="15.0" fill="rgb(237,108,48)" rx="2" ry="2" />
<text x="694.33" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (567 samples, 0.02%)</title><rect x="841.1" y="1157" width="0.3" height="15.0" fill="rgb(252,108,0)" rx="2" ry="2" />
<text x="844.11" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (1,339 samples, 0.06%)</title><rect x="234.1" y="1365" width="0.7" height="15.0" fill="rgb(254,187,18)" rx="2" ry="2" />
<text x="237.15" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (587 samples, 0.03%)</title><rect x="693.7" y="901" width="0.3" height="15.0" fill="rgb(229,176,27)" rx="2" ry="2" />
<text x="696.67" y="911.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (509 samples, 0.02%)</title><rect x="503.4" y="1253" width="0.2" height="15.0" fill="rgb(253,55,0)" rx="2" ry="2" />
<text x="506.37" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (654 samples, 0.03%)</title><rect x="779.6" y="1093" width="0.3" height="15.0" fill="rgb(219,9,9)" rx="2" ry="2" />
<text x="782.61" y="1103.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_128 (2,232 samples, 0.10%)</title><rect x="522.9" y="1333" width="1.1" height="15.0" fill="rgb(251,223,46)" rx="2" ry="2" />
<text x="525.87" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (475 samples, 0.02%)</title><rect x="266.6" y="1349" width="0.3" height="15.0" fill="rgb(238,161,14)" rx="2" ry="2" />
<text x="269.63" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (79,155 samples, 3.43%)</title><rect x="631.2" y="821" width="40.5" height="15.0" fill="rgb(247,12,46)" rx="2" ry="2" />
<text x="634.23" y="831.5" >cam..</text>
</g>
<g >
<title>caml_raise_exn (5,626 samples, 0.24%)</title><rect x="1187.1" y="1669" width="2.9" height="15.0" fill="rgb(231,189,33)" rx="2" ry="2" />
<text x="1190.12" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__add_to_dst_4787 (12,566 samples, 0.54%)</title><rect x="585.5" y="1349" width="6.4" height="15.0" fill="rgb(240,53,35)" rx="2" ry="2" />
<text x="588.48" y="1359.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (242 samples, 0.01%)</title><rect x="189.0" y="1301" width="0.1" height="15.0" fill="rgb(254,34,18)" rx="2" ry="2" />
<text x="192.01" y="1311.5" ></text>
</g>
<g >
<title>caml_apply5 (2,263 samples, 0.10%)</title><rect x="1172.8" y="917" width="1.2" height="15.0" fill="rgb(234,201,11)" rx="2" ry="2" />
<text x="1175.80" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (387 samples, 0.02%)</title><rect x="445.1" y="1381" width="0.2" height="15.0" fill="rgb(209,49,44)" rx="2" ry="2" />
<text x="448.10" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (240 samples, 0.01%)</title><rect x="169.8" y="1301" width="0.1" height="15.0" fill="rgb(236,165,50)" rx="2" ry="2" />
<text x="172.82" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (753 samples, 0.03%)</title><rect x="565.9" y="1109" width="0.4" height="15.0" fill="rgb(232,79,7)" rx="2" ry="2" />
<text x="568.89" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (204 samples, 0.01%)</title><rect x="880.5" y="933" width="0.1" height="15.0" fill="rgb(239,74,53)" rx="2" ry="2" />
<text x="883.54" y="943.5" ></text>
</g>
<g >
<title>camlData_encoding__Binary_reader__of_bytes_opt_832 (2,603 samples, 0.11%)</title><rect x="1164.9" y="869" width="1.3" height="15.0" fill="rgb(244,16,14)" rx="2" ry="2" />
<text x="1167.88" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1519 (199 samples, 0.01%)</title><rect x="1064.3" y="1141" width="0.1" height="15.0" fill="rgb(251,105,48)" rx="2" ry="2" />
<text x="1067.29" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__add_610 (333 samples, 0.01%)</title><rect x="1013.0" y="1397" width="0.2" height="15.0" fill="rgb(252,35,46)" rx="2" ry="2" />
<text x="1016.03" y="1407.5" ></text>
</g>
<g >
<title>mod_sqrt_default (2,842 samples, 0.12%)</title><rect x="836.8" y="821" width="1.5" height="15.0" fill="rgb(218,173,9)" rx="2" ry="2" />
<text x="839.85" y="831.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (209 samples, 0.01%)</title><rect x="189.4" y="1365" width="0.1" height="15.0" fill="rgb(239,110,39)" rx="2" ry="2" />
<text x="192.44" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (213 samples, 0.01%)</title><rect x="798.8" y="1013" width="0.2" height="15.0" fill="rgb(236,77,13)" rx="2" ry="2" />
<text x="801.84" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_commit_inner_35083 (579 samples, 0.03%)</title><rect x="671.4" y="741" width="0.3" height="15.0" fill="rgb(237,180,17)" rx="2" ry="2" />
<text x="674.40" y="751.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (293 samples, 0.01%)</title><rect x="885.0" y="1269" width="0.1" height="15.0" fill="rgb(248,42,48)" rx="2" ry="2" />
<text x="887.98" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (1,001 samples, 0.04%)</title><rect x="440.9" y="1397" width="0.5" height="15.0" fill="rgb(247,65,13)" rx="2" ry="2" />
<text x="443.91" y="1407.5" ></text>
</g>
<g >
<title>caml_hash (273 samples, 0.01%)</title><rect x="1050.4" y="1189" width="0.1" height="15.0" fill="rgb(233,127,53)" rx="2" ry="2" />
<text x="1053.37" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (668 samples, 0.03%)</title><rect x="552.4" y="1205" width="0.3" height="15.0" fill="rgb(222,65,50)" rx="2" ry="2" />
<text x="555.40" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (761 samples, 0.03%)</title><rect x="522.9" y="1301" width="0.4" height="15.0" fill="rgb(253,174,9)" rx="2" ry="2" />
<text x="525.94" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11749 (1,417 samples, 0.06%)</title><rect x="1115.0" y="1061" width="0.7" height="15.0" fill="rgb(210,72,7)" rx="2" ry="2" />
<text x="1118.00" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (456 samples, 0.02%)</title><rect x="797.9" y="1045" width="0.2" height="15.0" fill="rgb(243,47,51)" rx="2" ry="2" />
<text x="800.87" y="1055.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (5,103 samples, 0.22%)</title><rect x="771.7" y="1141" width="2.6" height="15.0" fill="rgb(236,221,10)" rx="2" ry="2" />
<text x="774.66" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (3,498 samples, 0.15%)</title><rect x="276.7" y="1381" width="1.8" height="15.0" fill="rgb(252,100,9)" rx="2" ry="2" />
<text x="279.67" y="1391.5" ></text>
</g>
<g >
<title>camlMain__entry (413,475 samples, 17.91%)</title><rect x="972.6" y="1541" width="211.4" height="15.0" fill="rgb(240,212,21)" rx="2" ry="2" />
<text x="975.63" y="1551.5" >camlMain__entry</text>
</g>
<g >
<title>caml_major_collection_slice (360 samples, 0.02%)</title><rect x="616.5" y="1173" width="0.2" height="15.0" fill="rgb(213,6,47)" rx="2" ry="2" />
<text x="619.51" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,577 samples, 0.07%)</title><rect x="910.0" y="1349" width="0.8" height="15.0" fill="rgb(234,216,37)" rx="2" ry="2" />
<text x="913.03" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (719 samples, 0.03%)</title><rect x="675.7" y="1237" width="0.4" height="15.0" fill="rgb(214,155,39)" rx="2" ry="2" />
<text x="678.72" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,437 samples, 0.06%)</title><rect x="999.8" y="1333" width="0.7" height="15.0" fill="rgb(241,55,25)" rx="2" ry="2" />
<text x="1002.78" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (374 samples, 0.02%)</title><rect x="703.1" y="949" width="0.2" height="15.0" fill="rgb(228,213,34)" rx="2" ry="2" />
<text x="706.10" y="959.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (678 samples, 0.03%)</title><rect x="591.5" y="1333" width="0.3" height="15.0" fill="rgb(229,158,54)" rx="2" ry="2" />
<text x="594.47" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (413 samples, 0.02%)</title><rect x="391.5" y="1429" width="0.2" height="15.0" fill="rgb(224,197,35)" rx="2" ry="2" />
<text x="394.47" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (7,367 samples, 0.32%)</title><rect x="571.0" y="1301" width="3.8" height="15.0" fill="rgb(217,120,0)" rx="2" ry="2" />
<text x="574.04" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (266 samples, 0.01%)</title><rect x="153.3" y="1445" width="0.1" height="15.0" fill="rgb(211,223,5)" rx="2" ry="2" />
<text x="156.28" y="1455.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (1,823 samples, 0.08%)</title><rect x="1157.2" y="213" width="1.0" height="15.0" fill="rgb(230,147,8)" rx="2" ry="2" />
<text x="1160.24" y="223.5" ></text>
</g>
<g >
<title>mark_slice_darken (244 samples, 0.01%)</title><rect x="614.0" y="1109" width="0.1" height="15.0" fill="rgb(215,30,28)" rx="2" ry="2" />
<text x="616.96" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (199 samples, 0.01%)</title><rect x="800.1" y="1045" width="0.1" height="15.0" fill="rgb(213,161,33)" rx="2" ry="2" />
<text x="803.14" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (404 samples, 0.02%)</title><rect x="704.3" y="949" width="0.2" height="15.0" fill="rgb(240,176,51)" rx="2" ry="2" />
<text x="707.34" y="959.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (213 samples, 0.01%)</title><rect x="1042.1" y="1317" width="0.1" height="15.0" fill="rgb(253,149,42)" rx="2" ry="2" />
<text x="1045.11" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (3,770 samples, 0.16%)</title><rect x="880.3" y="997" width="2.0" height="15.0" fill="rgb(207,218,12)" rx="2" ry="2" />
<text x="883.35" y="1007.5" ></text>
</g>
<g >
<title>sweep_slice (4,192 samples, 0.18%)</title><rect x="862.8" y="757" width="2.2" height="15.0" fill="rgb(240,171,16)" rx="2" ry="2" />
<text x="865.84" y="767.5" ></text>
</g>
<g >
<title>mark_slice_darken (290 samples, 0.01%)</title><rect x="749.3" y="997" width="0.1" height="15.0" fill="rgb(209,186,20)" rx="2" ry="2" />
<text x="752.25" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,817 samples, 1.55%)</title><rect x="1094.5" y="549" width="18.3" height="15.0" fill="rgb(218,72,52)" rx="2" ry="2" />
<text x="1097.53" y="559.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4131 (2,828 samples, 0.12%)</title><rect x="622.8" y="1157" width="1.5" height="15.0" fill="rgb(243,201,45)" rx="2" ry="2" />
<text x="625.83" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (393 samples, 0.02%)</title><rect x="707.9" y="997" width="0.2" height="15.0" fill="rgb(242,128,54)" rx="2" ry="2" />
<text x="710.86" y="1007.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,374 samples, 0.06%)</title><rect x="912.8" y="1381" width="0.7" height="15.0" fill="rgb(217,109,36)" rx="2" ry="2" />
<text x="915.78" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (312 samples, 0.01%)</title><rect x="732.6" y="1125" width="0.2" height="15.0" fill="rgb(231,228,25)" rx="2" ry="2" />
<text x="735.63" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__node_28327 (262 samples, 0.01%)</title><rect x="795.3" y="1061" width="0.1" height="15.0" fill="rgb(249,12,1)" rx="2" ry="2" />
<text x="798.29" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7633 (1,546 samples, 0.07%)</title><rect x="869.1" y="869" width="0.8" height="15.0" fill="rgb(221,176,34)" rx="2" ry="2" />
<text x="872.08" y="879.5" ></text>
</g>
<g >
<title>caml_garbage_collection (602 samples, 0.03%)</title><rect x="241.1" y="1381" width="0.4" height="15.0" fill="rgb(236,31,35)" rx="2" ry="2" />
<text x="244.14" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (233 samples, 0.01%)</title><rect x="617.5" y="1157" width="0.1" height="15.0" fill="rgb(221,78,11)" rx="2" ry="2" />
<text x="620.50" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (1,967 samples, 0.09%)</title><rect x="209.5" y="1381" width="1.0" height="15.0" fill="rgb(228,136,45)" rx="2" ry="2" />
<text x="212.46" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (79,155 samples, 3.43%)</title><rect x="631.2" y="837" width="40.5" height="15.0" fill="rgb(215,20,13)" rx="2" ry="2" />
<text x="634.23" y="847.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (808 samples, 0.04%)</title><rect x="563.0" y="1285" width="0.4" height="15.0" fill="rgb(210,168,16)" rx="2" ry="2" />
<text x="566.03" y="1295.5" ></text>
</g>
<g >
<title>caml_modify (2,467 samples, 0.11%)</title><rect x="81.6" y="1541" width="1.2" height="15.0" fill="rgb(211,38,31)" rx="2" ry="2" />
<text x="84.57" y="1551.5" ></text>
</g>
<g >
<title>caml_garbage_collection (213 samples, 0.01%)</title><rect x="702.8" y="933" width="0.1" height="15.0" fill="rgb(247,192,10)" rx="2" ry="2" />
<text x="705.80" y="943.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (9,705 samples, 0.42%)</title><rect x="868.0" y="1013" width="5.0" height="15.0" fill="rgb(209,183,42)" rx="2" ry="2" />
<text x="871.01" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (326 samples, 0.01%)</title><rect x="707.9" y="965" width="0.2" height="15.0" fill="rgb(241,164,54)" rx="2" ry="2" />
<text x="710.90" y="975.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (5,955 samples, 0.26%)</title><rect x="985.7" y="1381" width="3.1" height="15.0" fill="rgb(213,40,31)" rx="2" ry="2" />
<text x="988.73" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_349 (1,325 samples, 0.06%)</title><rect x="696.6" y="981" width="0.7" height="15.0" fill="rgb(244,204,19)" rx="2" ry="2" />
<text x="699.64" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_values_11648 (1,181 samples, 0.05%)</title><rect x="681.7" y="1189" width="0.6" height="15.0" fill="rgb(205,104,43)" rx="2" ry="2" />
<text x="684.71" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (285 samples, 0.01%)</title><rect x="141.7" y="1381" width="0.1" height="15.0" fill="rgb(233,138,2)" rx="2" ry="2" />
<text x="144.65" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (381 samples, 0.02%)</title><rect x="1173.0" y="741" width="0.2" height="15.0" fill="rgb(231,35,14)" rx="2" ry="2" />
<text x="1176.03" y="751.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (835 samples, 0.04%)</title><rect x="205.5" y="1397" width="0.4" height="15.0" fill="rgb(233,214,28)" rx="2" ry="2" />
<text x="208.49" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (537 samples, 0.02%)</title><rect x="503.7" y="1285" width="0.3" height="15.0" fill="rgb(215,104,23)" rx="2" ry="2" />
<text x="506.72" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (368 samples, 0.02%)</title><rect x="474.9" y="1301" width="0.2" height="15.0" fill="rgb(248,74,24)" rx="2" ry="2" />
<text x="477.93" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (275 samples, 0.01%)</title><rect x="851.7" y="1237" width="0.2" height="15.0" fill="rgb(209,207,42)" rx="2" ry="2" />
<text x="854.75" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (296 samples, 0.01%)</title><rect x="554.1" y="1237" width="0.2" height="15.0" fill="rgb(241,156,29)" rx="2" ry="2" />
<text x="557.14" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (594 samples, 0.03%)</title><rect x="253.2" y="1381" width="0.3" height="15.0" fill="rgb(208,144,47)" rx="2" ry="2" />
<text x="256.16" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Node__fun_6254 (934 samples, 0.04%)</title><rect x="729.7" y="1221" width="0.5" height="15.0" fill="rgb(231,175,0)" rx="2" ry="2" />
<text x="732.70" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_969 (559 samples, 0.02%)</title><rect x="709.5" y="1061" width="0.3" height="15.0" fill="rgb(225,30,15)" rx="2" ry="2" />
<text x="712.52" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (1,255 samples, 0.05%)</title><rect x="1129.8" y="1045" width="0.7" height="15.0" fill="rgb(254,68,15)" rx="2" ry="2" />
<text x="1132.81" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (995 samples, 0.04%)</title><rect x="233.1" y="1365" width="0.5" height="15.0" fill="rgb(231,161,6)" rx="2" ry="2" />
<text x="236.08" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (266 samples, 0.01%)</title><rect x="682.5" y="1141" width="0.1" height="15.0" fill="rgb(235,177,23)" rx="2" ry="2" />
<text x="685.47" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (431 samples, 0.02%)</title><rect x="805.3" y="1029" width="0.2" height="15.0" fill="rgb(225,49,26)" rx="2" ry="2" />
<text x="808.32" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (276 samples, 0.01%)</title><rect x="553.8" y="1237" width="0.1" height="15.0" fill="rgb(214,43,14)" rx="2" ry="2" />
<text x="556.76" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (4,104 samples, 0.18%)</title><rect x="687.5" y="1029" width="2.1" height="15.0" fill="rgb(222,11,35)" rx="2" ry="2" />
<text x="690.46" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (4,673 samples, 0.20%)</title><rect x="512.0" y="1269" width="2.4" height="15.0" fill="rgb(252,78,45)" rx="2" ry="2" />
<text x="515.04" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (586 samples, 0.03%)</title><rect x="810.1" y="1045" width="0.3" height="15.0" fill="rgb(228,196,11)" rx="2" ry="2" />
<text x="813.13" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,522 samples, 0.07%)</title><rect x="1050.6" y="1157" width="0.7" height="15.0" fill="rgb(252,16,42)" rx="2" ry="2" />
<text x="1053.57" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (912 samples, 0.04%)</title><rect x="562.6" y="1301" width="0.4" height="15.0" fill="rgb(205,45,42)" rx="2" ry="2" />
<text x="565.56" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,183 samples, 0.05%)</title><rect x="272.8" y="1413" width="0.6" height="15.0" fill="rgb(221,209,20)" rx="2" ry="2" />
<text x="275.83" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,235 samples, 0.05%)</title><rect x="859.4" y="965" width="0.6" height="15.0" fill="rgb(239,88,5)" rx="2" ry="2" />
<text x="862.39" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (231 samples, 0.01%)</title><rect x="190.1" y="1285" width="0.1" height="15.0" fill="rgb(240,158,11)" rx="2" ry="2" />
<text x="193.11" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (237 samples, 0.01%)</title><rect x="735.2" y="1093" width="0.2" height="15.0" fill="rgb(212,80,15)" rx="2" ry="2" />
<text x="738.25" y="1103.5" ></text>
</g>
<g >
<title>sweep_slice (248 samples, 0.01%)</title><rect x="909.0" y="1365" width="0.1" height="15.0" fill="rgb(243,106,18)" rx="2" ry="2" />
<text x="911.99" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (404 samples, 0.02%)</title><rect x="704.3" y="965" width="0.2" height="15.0" fill="rgb(254,149,16)" rx="2" ry="2" />
<text x="707.34" y="975.5" ></text>
</g>
<g >
<title>mark_slice (407 samples, 0.02%)</title><rect x="747.7" y="997" width="0.2" height="15.0" fill="rgb(236,191,33)" rx="2" ry="2" />
<text x="750.68" y="1007.5" ></text>
</g>
<g >
<title>muladd (620 samples, 0.03%)</title><rect x="1152.5" y="133" width="0.3" height="15.0" fill="rgb(254,17,32)" rx="2" ry="2" />
<text x="1155.49" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (2,596 samples, 0.11%)</title><rect x="293.1" y="1365" width="1.3" height="15.0" fill="rgb(211,10,31)" rx="2" ry="2" />
<text x="296.12" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (2,433 samples, 0.11%)</title><rect x="695.2" y="1013" width="1.3" height="15.0" fill="rgb(243,125,18)" rx="2" ry="2" />
<text x="698.25" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,265 samples, 0.05%)</title><rect x="901.2" y="1413" width="0.7" height="15.0" fill="rgb(214,123,19)" rx="2" ry="2" />
<text x="904.24" y="1423.5" ></text>
</g>
<g >
<title>caml_oldify_one (222 samples, 0.01%)</title><rect x="370.6" y="1237" width="0.1" height="15.0" fill="rgb(245,43,51)" rx="2" ry="2" />
<text x="373.57" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_1611 (6,550 samples, 0.28%)</title><rect x="332.5" y="1445" width="3.4" height="15.0" fill="rgb(218,146,14)" rx="2" ry="2" />
<text x="335.54" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (551 samples, 0.02%)</title><rect x="222.2" y="1301" width="0.3" height="15.0" fill="rgb(205,171,15)" rx="2" ry="2" />
<text x="225.20" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (240 samples, 0.01%)</title><rect x="328.1" y="1365" width="0.2" height="15.0" fill="rgb(230,223,18)" rx="2" ry="2" />
<text x="331.14" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (2,549 samples, 0.11%)</title><rect x="1002.8" y="1285" width="1.3" height="15.0" fill="rgb(222,96,38)" rx="2" ry="2" />
<text x="1005.79" y="1295.5" ></text>
</g>
<g >
<title>caml_string_equal (2,455 samples, 0.11%)</title><rect x="755.5" y="1077" width="1.2" height="15.0" fill="rgb(228,142,43)" rx="2" ry="2" />
<text x="758.46" y="1087.5" ></text>
</g>
<g >
<title>caml_apply5 (1,345 samples, 0.06%)</title><rect x="768.4" y="1125" width="0.7" height="15.0" fill="rgb(239,123,52)" rx="2" ry="2" />
<text x="771.38" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (36,403 samples, 1.58%)</title><rect x="1094.5" y="853" width="18.6" height="15.0" fill="rgb(226,124,13)" rx="2" ry="2" />
<text x="1097.53" y="863.5" ></text>
</g>
<g >
<title>mark_slice_darken (617 samples, 0.03%)</title><rect x="273.7" y="1349" width="0.3" height="15.0" fill="rgb(252,61,39)" rx="2" ry="2" />
<text x="276.69" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (392 samples, 0.02%)</title><rect x="1023.2" y="1349" width="0.2" height="15.0" fill="rgb(208,96,5)" rx="2" ry="2" />
<text x="1026.23" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (291 samples, 0.01%)</title><rect x="810.8" y="1029" width="0.2" height="15.0" fill="rgb(241,11,37)" rx="2" ry="2" />
<text x="813.85" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (223 samples, 0.01%)</title><rect x="204.6" y="1349" width="0.1" height="15.0" fill="rgb(225,81,44)" rx="2" ry="2" />
<text x="207.59" y="1359.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (233 samples, 0.01%)</title><rect x="669.8" y="181" width="0.2" height="15.0" fill="rgb(208,51,31)" rx="2" ry="2" />
<text x="672.85" y="191.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (678 samples, 0.03%)</title><rect x="141.5" y="1429" width="0.3" height="15.0" fill="rgb(222,106,34)" rx="2" ry="2" />
<text x="144.45" y="1439.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (856 samples, 0.04%)</title><rect x="839.1" y="1141" width="0.5" height="15.0" fill="rgb(254,192,26)" rx="2" ry="2" />
<text x="842.11" y="1151.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (534 samples, 0.02%)</title><rect x="829.5" y="229" width="0.3" height="15.0" fill="rgb(217,107,20)" rx="2" ry="2" />
<text x="832.52" y="239.5" ></text>
</g>
<g >
<title>mark_slice_darken (267 samples, 0.01%)</title><rect x="494.6" y="1189" width="0.1" height="15.0" fill="rgb(239,143,47)" rx="2" ry="2" />
<text x="497.58" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (969 samples, 0.04%)</title><rect x="1050.6" y="1093" width="0.5" height="15.0" fill="rgb(229,121,42)" rx="2" ry="2" />
<text x="1053.57" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (640 samples, 0.03%)</title><rect x="494.1" y="1205" width="0.3" height="15.0" fill="rgb(236,1,46)" rx="2" ry="2" />
<text x="497.09" y="1215.5" ></text>
</g>
<g >
<title>caml_hash (235 samples, 0.01%)</title><rect x="1131.0" y="1013" width="0.1" height="15.0" fill="rgb(234,159,27)" rx="2" ry="2" />
<text x="1134.02" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (196 samples, 0.01%)</title><rect x="1017.7" y="1333" width="0.1" height="15.0" fill="rgb(242,212,27)" rx="2" ry="2" />
<text x="1020.74" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (856 samples, 0.04%)</title><rect x="234.3" y="1317" width="0.4" height="15.0" fill="rgb(222,119,10)" rx="2" ry="2" />
<text x="237.28" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_993 (247 samples, 0.01%)</title><rect x="724.6" y="1173" width="0.1" height="15.0" fill="rgb(223,201,4)" rx="2" ry="2" />
<text x="727.60" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,518 samples, 0.07%)</title><rect x="1050.6" y="1141" width="0.7" height="15.0" fill="rgb(236,76,49)" rx="2" ry="2" />
<text x="1053.57" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (276 samples, 0.01%)</title><rect x="252.7" y="1333" width="0.2" height="15.0" fill="rgb(230,114,12)" rx="2" ry="2" />
<text x="255.72" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (476 samples, 0.02%)</title><rect x="749.2" y="1029" width="0.3" height="15.0" fill="rgb(224,12,26)" rx="2" ry="2" />
<text x="752.21" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (687 samples, 0.03%)</title><rect x="495.3" y="1237" width="0.3" height="15.0" fill="rgb(248,41,53)" rx="2" ry="2" />
<text x="498.26" y="1247.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (204 samples, 0.01%)</title><rect x="186.8" y="1349" width="0.1" height="15.0" fill="rgb(249,222,26)" rx="2" ry="2" />
<text x="189.75" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (245 samples, 0.01%)</title><rect x="768.1" y="1061" width="0.1" height="15.0" fill="rgb(237,62,28)" rx="2" ry="2" />
<text x="771.10" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (250 samples, 0.01%)</title><rect x="560.6" y="1237" width="0.1" height="15.0" fill="rgb(212,13,30)" rx="2" ry="2" />
<text x="563.60" y="1247.5" ></text>
</g>
<g >
<title>uECC_vli_add (251 samples, 0.01%)</title><rect x="666.1" y="149" width="0.2" height="15.0" fill="rgb(231,205,12)" rx="2" ry="2" />
<text x="669.13" y="159.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (494 samples, 0.02%)</title><rect x="1173.0" y="773" width="0.2" height="15.0" fill="rgb(224,110,36)" rx="2" ry="2" />
<text x="1175.99" y="783.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (617 samples, 0.03%)</title><rect x="1173.0" y="789" width="0.3" height="15.0" fill="rgb(233,47,5)" rx="2" ry="2" />
<text x="1175.97" y="799.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Operation_repr__check_signature_sync_3917 (9,276 samples, 0.40%)</title><rect x="1152.3" y="245" width="4.7" height="15.0" fill="rgb(242,5,20)" rx="2" ry="2" />
<text x="1155.29" y="255.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (360 samples, 0.02%)</title><rect x="694.5" y="949" width="0.2" height="15.0" fill="rgb(243,88,11)" rx="2" ry="2" />
<text x="697.48" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (424 samples, 0.02%)</title><rect x="696.7" y="917" width="0.2" height="15.0" fill="rgb(233,222,32)" rx="2" ry="2" />
<text x="699.71" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (319 samples, 0.01%)</title><rect x="987.1" y="1333" width="0.2" height="15.0" fill="rgb(243,229,43)" rx="2" ry="2" />
<text x="990.11" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (323 samples, 0.01%)</title><rect x="856.0" y="965" width="0.1" height="15.0" fill="rgb(229,17,45)" rx="2" ry="2" />
<text x="858.96" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (242 samples, 0.01%)</title><rect x="722.8" y="1093" width="0.1" height="15.0" fill="rgb(215,210,42)" rx="2" ry="2" />
<text x="725.80" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (279 samples, 0.01%)</title><rect x="1077.2" y="1013" width="0.1" height="15.0" fill="rgb(205,170,12)" rx="2" ry="2" />
<text x="1080.19" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (485 samples, 0.02%)</title><rect x="494.1" y="1189" width="0.2" height="15.0" fill="rgb(245,223,8)" rx="2" ry="2" />
<text x="497.09" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (35,998 samples, 1.56%)</title><rect x="1094.5" y="677" width="18.4" height="15.0" fill="rgb(245,191,38)" rx="2" ry="2" />
<text x="1097.53" y="687.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (362 samples, 0.02%)</title><rect x="194.1" y="1349" width="0.2" height="15.0" fill="rgb(211,23,6)" rx="2" ry="2" />
<text x="197.13" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (934 samples, 0.04%)</title><rect x="628.5" y="981" width="0.5" height="15.0" fill="rgb(242,61,20)" rx="2" ry="2" />
<text x="631.53" y="991.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (848 samples, 0.04%)</title><rect x="776.4" y="1061" width="0.4" height="15.0" fill="rgb(251,87,7)" rx="2" ry="2" />
<text x="779.38" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3831 (1,159 samples, 0.05%)</title><rect x="519.4" y="1349" width="0.6" height="15.0" fill="rgb(252,157,15)" rx="2" ry="2" />
<text x="522.43" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11992 (4,285 samples, 0.19%)</title><rect x="1072.1" y="1205" width="2.2" height="15.0" fill="rgb(241,33,53)" rx="2" ry="2" />
<text x="1075.10" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,462 samples, 0.06%)</title><rect x="577.0" y="1189" width="0.7" height="15.0" fill="rgb(231,114,52)" rx="2" ry="2" />
<text x="579.96" y="1199.5" ></text>
</g>
<g >
<title>camlLogs__msg_1273 (432 samples, 0.02%)</title><rect x="487.4" y="1333" width="0.2" height="15.0" fill="rgb(234,193,23)" rx="2" ry="2" />
<text x="490.39" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (2,112 samples, 0.09%)</title><rect x="559.5" y="1221" width="1.1" height="15.0" fill="rgb(241,198,50)" rx="2" ry="2" />
<text x="562.52" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (961 samples, 0.04%)</title><rect x="135.9" y="1349" width="0.4" height="15.0" fill="rgb(244,114,29)" rx="2" ry="2" />
<text x="138.85" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (974 samples, 0.04%)</title><rect x="1037.7" y="1349" width="0.5" height="15.0" fill="rgb(230,53,12)" rx="2" ry="2" />
<text x="1040.69" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (46,780 samples, 2.03%)</title><rect x="398.2" y="1461" width="23.9" height="15.0" fill="rgb(228,177,8)" rx="2" ry="2" />
<text x="401.19" y="1471.5" >c..</text>
</g>
<g >
<title>vli_modInv_update (531 samples, 0.02%)</title><rect x="653.5" y="149" width="0.3" height="15.0" fill="rgb(229,171,12)" rx="2" ry="2" />
<text x="656.48" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (5,167 samples, 0.22%)</title><rect x="559.1" y="1269" width="2.6" height="15.0" fill="rgb(213,228,29)" rx="2" ry="2" />
<text x="562.09" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,781 samples, 0.08%)</title><rect x="1175.5" y="965" width="0.9" height="15.0" fill="rgb(232,132,26)" rx="2" ry="2" />
<text x="1178.45" y="975.5" ></text>
</g>
<g >
<title>caml_call_gc (1,714 samples, 0.07%)</title><rect x="912.6" y="1413" width="0.9" height="15.0" fill="rgb(211,144,51)" rx="2" ry="2" />
<text x="915.61" y="1423.5" ></text>
</g>
<g >
<title>caml_blit_bytes (231 samples, 0.01%)</title><rect x="302.3" y="1397" width="0.1" height="15.0" fill="rgb(233,148,53)" rx="2" ry="2" />
<text x="305.28" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (30,100 samples, 1.30%)</title><rect x="528.6" y="1269" width="15.4" height="15.0" fill="rgb(234,31,27)" rx="2" ry="2" />
<text x="531.59" y="1279.5" ></text>
</g>
<g >
<title>__lseek64 (3,094 samples, 0.13%)</title><rect x="1020.1" y="1333" width="1.6" height="15.0" fill="rgb(245,66,22)" rx="2" ry="2" />
<text x="1023.14" y="1343.5" ></text>
</g>
<g >
<title>uECC_vli_modSquare_fast (347 samples, 0.02%)</title><rect x="1144.8" y="133" width="0.2" height="15.0" fill="rgb(232,9,52)" rx="2" ry="2" />
<text x="1147.81" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (199 samples, 0.01%)</title><rect x="540.3" y="1141" width="0.1" height="15.0" fill="rgb(229,51,52)" rx="2" ry="2" />
<text x="543.33" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (976 samples, 0.04%)</title><rect x="443.3" y="1413" width="0.5" height="15.0" fill="rgb(237,113,30)" rx="2" ry="2" />
<text x="446.25" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (528 samples, 0.02%)</title><rect x="699.9" y="997" width="0.3" height="15.0" fill="rgb(219,138,6)" rx="2" ry="2" />
<text x="702.94" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (215 samples, 0.01%)</title><rect x="1119.3" y="853" width="0.1" height="15.0" fill="rgb(231,39,7)" rx="2" ry="2" />
<text x="1122.27" y="863.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (576 samples, 0.02%)</title><rect x="835.6" y="565" width="0.3" height="15.0" fill="rgb(250,138,50)" rx="2" ry="2" />
<text x="838.64" y="575.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (3,385 samples, 0.15%)</title><rect x="1160.2" y="277" width="1.7" height="15.0" fill="rgb(225,161,39)" rx="2" ry="2" />
<text x="1163.17" y="287.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (7,431 samples, 0.32%)</title><rect x="985.6" y="1397" width="3.8" height="15.0" fill="rgb(221,82,33)" rx="2" ry="2" />
<text x="988.65" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (833 samples, 0.04%)</title><rect x="140.2" y="1365" width="0.4" height="15.0" fill="rgb(220,216,11)" rx="2" ry="2" />
<text x="143.16" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (450 samples, 0.02%)</title><rect x="913.5" y="1381" width="0.2" height="15.0" fill="rgb(248,219,46)" rx="2" ry="2" />
<text x="916.49" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (395 samples, 0.02%)</title><rect x="1142.3" y="1061" width="0.2" height="15.0" fill="rgb(224,88,9)" rx="2" ry="2" />
<text x="1145.28" y="1071.5" ></text>
</g>
<g >
<title>muladd (331 samples, 0.01%)</title><rect x="817.1" y="165" width="0.2" height="15.0" fill="rgb(254,0,44)" rx="2" ry="2" />
<text x="820.12" y="175.5" ></text>
</g>
<g >
<title>caml_call_gc (1,455 samples, 0.06%)</title><rect x="265.6" y="1397" width="0.7" height="15.0" fill="rgb(235,35,30)" rx="2" ry="2" />
<text x="268.59" y="1407.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Apply__apply_operation_5609 (23,181 samples, 1.00%)</title><rect x="815.7" y="389" width="11.9" height="15.0" fill="rgb(229,131,43)" rx="2" ry="2" />
<text x="818.73" y="399.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (1,658 samples, 0.07%)</title><rect x="130.2" y="1397" width="0.9" height="15.0" fill="rgb(212,124,45)" rx="2" ry="2" />
<text x="133.22" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (80,720 samples, 3.50%)</title><rect x="631.2" y="1109" width="41.3" height="15.0" fill="rgb(226,118,8)" rx="2" ry="2" />
<text x="634.21" y="1119.5" >cam..</text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (352 samples, 0.02%)</title><rect x="1179.1" y="1205" width="0.2" height="15.0" fill="rgb(247,122,34)" rx="2" ry="2" />
<text x="1182.11" y="1215.5" ></text>
</g>
<g >
<title>unix_lseek_64 (425 samples, 0.02%)</title><rect x="1119.6" y="885" width="0.2" height="15.0" fill="rgb(239,187,26)" rx="2" ry="2" />
<text x="1122.63" y="895.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__of_value_4230 (618 samples, 0.03%)</title><rect x="833.8" y="629" width="0.3" height="15.0" fill="rgb(219,96,47)" rx="2" ry="2" />
<text x="836.83" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11918 (2,174 samples, 0.09%)</title><rect x="1172.8" y="901" width="1.1" height="15.0" fill="rgb(249,45,36)" rx="2" ry="2" />
<text x="1175.81" y="911.5" ></text>
</g>
<g >
<title>camlLwt__create_result_promise_and_callback_if_deferred_1301 (597 samples, 0.03%)</title><rect x="799.7" y="1045" width="0.3" height="15.0" fill="rgb(218,59,33)" rx="2" ry="2" />
<text x="802.70" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,140 samples, 0.05%)</title><rect x="240.3" y="1365" width="0.6" height="15.0" fill="rgb(244,182,35)" rx="2" ry="2" />
<text x="243.33" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (432 samples, 0.02%)</title><rect x="169.8" y="1333" width="0.2" height="15.0" fill="rgb(241,163,38)" rx="2" ry="2" />
<text x="172.78" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5664 (210 samples, 0.01%)</title><rect x="191.5" y="1093" width="0.2" height="15.0" fill="rgb(223,7,26)" rx="2" ry="2" />
<text x="194.55" y="1103.5" ></text>
</g>
<g >
<title>XYcZ_add (2,541 samples, 0.11%)</title><rect x="818.2" y="229" width="1.3" height="15.0" fill="rgb(228,15,0)" rx="2" ry="2" />
<text x="821.22" y="239.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_477 (323 samples, 0.01%)</title><rect x="624.0" y="1109" width="0.2" height="15.0" fill="rgb(215,98,23)" rx="2" ry="2" />
<text x="627.01" y="1119.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (211 samples, 0.01%)</title><rect x="586.0" y="1221" width="0.1" height="15.0" fill="rgb(235,152,36)" rx="2" ry="2" />
<text x="589.03" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (36,411 samples, 1.58%)</title><rect x="1094.5" y="933" width="18.6" height="15.0" fill="rgb(251,55,26)" rx="2" ry="2" />
<text x="1097.53" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (1,093 samples, 0.05%)</title><rect x="233.6" y="1365" width="0.5" height="15.0" fill="rgb(254,157,30)" rx="2" ry="2" />
<text x="236.59" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (213 samples, 0.01%)</title><rect x="702.8" y="949" width="0.1" height="15.0" fill="rgb(218,43,19)" rx="2" ry="2" />
<text x="705.80" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11806 (570 samples, 0.02%)</title><rect x="783.5" y="1141" width="0.2" height="15.0" fill="rgb(238,77,29)" rx="2" ry="2" />
<text x="786.46" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (421 samples, 0.02%)</title><rect x="722.6" y="1061" width="0.2" height="15.0" fill="rgb(247,108,15)" rx="2" ry="2" />
<text x="725.57" y="1071.5" ></text>
</g>
<g >
<title>sweep_slice (291 samples, 0.01%)</title><rect x="620.5" y="1045" width="0.1" height="15.0" fill="rgb(240,227,29)" rx="2" ry="2" />
<text x="623.46" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (11,027 samples, 0.48%)</title><rect x="700.3" y="1029" width="5.7" height="15.0" fill="rgb(252,145,10)" rx="2" ry="2" />
<text x="703.33" y="1039.5" ></text>
</g>
<g >
<title>caml_curry13_12 (273 samples, 0.01%)</title><rect x="574.0" y="1253" width="0.2" height="15.0" fill="rgb(244,95,32)" rx="2" ry="2" />
<text x="577.02" y="1263.5" ></text>
</g>
<g >
<title>uECC_vli_add (373 samples, 0.02%)</title><rect x="1111.4" y="69" width="0.2" height="15.0" fill="rgb(219,17,24)" rx="2" ry="2" />
<text x="1114.40" y="79.5" ></text>
</g>
<g >
<title>uECC_vli_add (202 samples, 0.01%)</title><rect x="818.8" y="181" width="0.1" height="15.0" fill="rgb(233,151,0)" rx="2" ry="2" />
<text x="821.79" y="191.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (866 samples, 0.04%)</title><rect x="1178.6" y="1029" width="0.4" height="15.0" fill="rgb(223,36,51)" rx="2" ry="2" />
<text x="1181.56" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (214 samples, 0.01%)</title><rect x="869.4" y="821" width="0.1" height="15.0" fill="rgb(219,187,14)" rx="2" ry="2" />
<text x="872.38" y="831.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (332 samples, 0.01%)</title><rect x="780.5" y="1125" width="0.2" height="15.0" fill="rgb(254,22,33)" rx="2" ry="2" />
<text x="783.52" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (35,807 samples, 1.55%)</title><rect x="1094.5" y="517" width="18.3" height="15.0" fill="rgb(241,28,2)" rx="2" ry="2" />
<text x="1097.53" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (428 samples, 0.02%)</title><rect x="695.5" y="901" width="0.2" height="15.0" fill="rgb(234,43,28)" rx="2" ry="2" />
<text x="698.53" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (1,613 samples, 0.07%)</title><rect x="619.8" y="1189" width="0.8" height="15.0" fill="rgb(224,115,24)" rx="2" ry="2" />
<text x="622.79" y="1199.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (350 samples, 0.02%)</title><rect x="906.1" y="1333" width="0.1" height="15.0" fill="rgb(205,200,53)" rx="2" ry="2" />
<text x="909.06" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (791 samples, 0.03%)</title><rect x="397.6" y="1381" width="0.5" height="15.0" fill="rgb(227,1,31)" rx="2" ry="2" />
<text x="400.65" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (255 samples, 0.01%)</title><rect x="704.4" y="917" width="0.1" height="15.0" fill="rgb(250,45,28)" rx="2" ry="2" />
<text x="707.38" y="927.5" ></text>
</g>
<g >
<title>mark_slice (675 samples, 0.03%)</title><rect x="245.5" y="1349" width="0.4" height="15.0" fill="rgb(226,10,42)" rx="2" ry="2" />
<text x="248.51" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_get_30924 (830 samples, 0.04%)</title><rect x="833.8" y="709" width="0.4" height="15.0" fill="rgb(234,205,3)" rx="2" ry="2" />
<text x="836.75" y="719.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,671 samples, 0.07%)</title><rect x="335.0" y="1397" width="0.9" height="15.0" fill="rgb(250,182,21)" rx="2" ry="2" />
<text x="338.04" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (617 samples, 0.03%)</title><rect x="1018.9" y="1381" width="0.4" height="15.0" fill="rgb(254,43,4)" rx="2" ry="2" />
<text x="1021.95" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,099 samples, 0.05%)</title><rect x="577.1" y="901" width="0.6" height="15.0" fill="rgb(250,0,36)" rx="2" ry="2" />
<text x="580.14" y="911.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,973 samples, 0.09%)</title><rect x="417.3" y="1381" width="1.0" height="15.0" fill="rgb(253,225,1)" rx="2" ry="2" />
<text x="420.26" y="1391.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (513 samples, 0.02%)</title><rect x="376.3" y="1381" width="0.3" height="15.0" fill="rgb(234,168,11)" rx="2" ry="2" />
<text x="379.33" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (40,872 samples, 1.77%)</title><rect x="815.7" y="853" width="20.9" height="15.0" fill="rgb(228,11,54)" rx="2" ry="2" />
<text x="818.70" y="863.5" ></text>
</g>
<g >
<title>caml_update_dummy (419 samples, 0.02%)</title><rect x="974.4" y="1477" width="0.2" height="15.0" fill="rgb(246,88,13)" rx="2" ry="2" />
<text x="977.35" y="1487.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (29,352 samples, 1.27%)</title><rect x="639.6" y="213" width="15.0" height="15.0" fill="rgb(226,68,50)" rx="2" ry="2" />
<text x="642.59" y="223.5" ></text>
</g>
<g >
<title>uECC_vli_modMult (502 samples, 0.02%)</title><rect x="653.8" y="165" width="0.2" height="15.0" fill="rgb(243,210,54)" rx="2" ry="2" />
<text x="656.76" y="175.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (993 samples, 0.04%)</title><rect x="1111.3" y="85" width="0.5" height="15.0" fill="rgb(234,164,34)" rx="2" ry="2" />
<text x="1114.28" y="95.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4559 (8,030 samples, 0.35%)</title><rect x="868.2" y="965" width="4.1" height="15.0" fill="rgb(228,85,16)" rx="2" ry="2" />
<text x="871.17" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (4,024 samples, 0.17%)</title><rect x="264.3" y="1413" width="2.0" height="15.0" fill="rgb(221,222,29)" rx="2" ry="2" />
<text x="267.28" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (213 samples, 0.01%)</title><rect x="688.2" y="997" width="0.2" height="15.0" fill="rgb(210,34,34)" rx="2" ry="2" />
<text x="691.24" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__new_pending_1121 (365 samples, 0.02%)</title><rect x="792.3" y="981" width="0.2" height="15.0" fill="rgb(249,9,41)" rx="2" ry="2" />
<text x="795.33" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (837 samples, 0.04%)</title><rect x="495.2" y="1253" width="0.4" height="15.0" fill="rgb(239,72,13)" rx="2" ry="2" />
<text x="498.18" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (460 samples, 0.02%)</title><rect x="616.5" y="1189" width="0.2" height="15.0" fill="rgb(211,115,3)" rx="2" ry="2" />
<text x="619.46" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (4,358 samples, 0.19%)</title><rect x="559.2" y="1253" width="2.2" height="15.0" fill="rgb(216,30,0)" rx="2" ry="2" />
<text x="562.19" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (35,999 samples, 1.56%)</title><rect x="1094.5" y="709" width="18.4" height="15.0" fill="rgb(247,78,9)" rx="2" ry="2" />
<text x="1097.53" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13868 (564 samples, 0.02%)</title><rect x="1168.4" y="1221" width="0.3" height="15.0" fill="rgb(237,4,46)" rx="2" ry="2" />
<text x="1171.43" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5216 (4,234 samples, 0.18%)</title><rect x="165.3" y="1381" width="2.1" height="15.0" fill="rgb(230,161,29)" rx="2" ry="2" />
<text x="168.27" y="1391.5" ></text>
</g>
<g >
<title>uECC_vli_sub (455 samples, 0.02%)</title><rect x="656.6" y="133" width="0.2" height="15.0" fill="rgb(216,16,14)" rx="2" ry="2" />
<text x="659.57" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12295 (703 samples, 0.03%)</title><rect x="1174.3" y="869" width="0.4" height="15.0" fill="rgb(246,132,42)" rx="2" ry="2" />
<text x="1177.31" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11614 (246 samples, 0.01%)</title><rect x="1164.4" y="245" width="0.1" height="15.0" fill="rgb(219,222,51)" rx="2" ry="2" />
<text x="1167.36" y="255.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (764 samples, 0.03%)</title><rect x="668.3" y="245" width="0.4" height="15.0" fill="rgb(216,40,17)" rx="2" ry="2" />
<text x="671.29" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5212 (812 samples, 0.04%)</title><rect x="878.7" y="949" width="0.5" height="15.0" fill="rgb(246,133,19)" rx="2" ry="2" />
<text x="881.74" y="959.5" ></text>
</g>
<g >
<title>caml_garbage_collection (526 samples, 0.02%)</title><rect x="750.3" y="1077" width="0.3" height="15.0" fill="rgb(240,19,36)" rx="2" ry="2" />
<text x="753.32" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (561 samples, 0.02%)</title><rect x="855.2" y="917" width="0.3" height="15.0" fill="rgb(222,188,49)" rx="2" ry="2" />
<text x="858.24" y="927.5" ></text>
</g>
<g >
<title>caml_call_gc (302 samples, 0.01%)</title><rect x="615.2" y="1173" width="0.1" height="15.0" fill="rgb(254,152,12)" rx="2" ry="2" />
<text x="618.16" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (716 samples, 0.03%)</title><rect x="842.4" y="1189" width="0.4" height="15.0" fill="rgb(229,113,32)" rx="2" ry="2" />
<text x="845.41" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (303 samples, 0.01%)</title><rect x="701.5" y="933" width="0.1" height="15.0" fill="rgb(218,171,7)" rx="2" ry="2" />
<text x="704.48" y="943.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (595 samples, 0.03%)</title><rect x="601.0" y="1269" width="0.3" height="15.0" fill="rgb(253,178,25)" rx="2" ry="2" />
<text x="604.00" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (459 samples, 0.02%)</title><rect x="856.7" y="949" width="0.3" height="15.0" fill="rgb(214,181,30)" rx="2" ry="2" />
<text x="859.75" y="959.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (783 samples, 0.03%)</title><rect x="798.8" y="1045" width="0.4" height="15.0" fill="rgb(215,215,32)" rx="2" ry="2" />
<text x="801.78" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_869 (1,471 samples, 0.06%)</title><rect x="266.9" y="1413" width="0.8" height="15.0" fill="rgb(236,68,5)" rx="2" ry="2" />
<text x="269.93" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (598 samples, 0.03%)</title><rect x="749.1" y="1061" width="0.4" height="15.0" fill="rgb(205,210,16)" rx="2" ry="2" />
<text x="752.15" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (34,483 samples, 1.49%)</title><rect x="815.7" y="565" width="17.6" height="15.0" fill="rgb(216,192,44)" rx="2" ry="2" />
<text x="818.72" y="575.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (598 samples, 0.03%)</title><rect x="711.8" y="1029" width="0.3" height="15.0" fill="rgb(222,73,8)" rx="2" ry="2" />
<text x="714.82" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (890 samples, 0.04%)</title><rect x="1032.9" y="1381" width="0.5" height="15.0" fill="rgb(240,42,7)" rx="2" ry="2" />
<text x="1035.93" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (20,150 samples, 0.87%)</title><rect x="1168.8" y="1221" width="10.3" height="15.0" fill="rgb(233,54,45)" rx="2" ry="2" />
<text x="1171.78" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (22,718 samples, 0.98%)</title><rect x="1168.0" y="1301" width="11.7" height="15.0" fill="rgb(239,35,11)" rx="2" ry="2" />
<text x="1171.04" y="1311.5" ></text>
</g>
<g >
<title>caml_make_vect (502 samples, 0.02%)</title><rect x="993.4" y="1365" width="0.2" height="15.0" fill="rgb(218,74,26)" rx="2" ry="2" />
<text x="996.37" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (580 samples, 0.03%)</title><rect x="223.1" y="1349" width="0.3" height="15.0" fill="rgb(254,14,33)" rx="2" ry="2" />
<text x="226.07" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (569 samples, 0.02%)</title><rect x="769.1" y="1109" width="0.3" height="15.0" fill="rgb(210,68,26)" rx="2" ry="2" />
<text x="772.06" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (355 samples, 0.02%)</title><rect x="795.0" y="997" width="0.2" height="15.0" fill="rgb(229,219,21)" rx="2" ry="2" />
<text x="798.03" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12021 (1,238 samples, 0.05%)</title><rect x="697.5" y="997" width="0.6" height="15.0" fill="rgb(251,158,40)" rx="2" ry="2" />
<text x="700.49" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11975 (307 samples, 0.01%)</title><rect x="582.1" y="1157" width="0.1" height="15.0" fill="rgb(234,52,54)" rx="2" ry="2" />
<text x="585.08" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12243 (7,771 samples, 0.34%)</title><rect x="1055.4" y="1253" width="3.9" height="15.0" fill="rgb(246,126,6)" rx="2" ry="2" />
<text x="1058.36" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (227 samples, 0.01%)</title><rect x="528.4" y="1269" width="0.1" height="15.0" fill="rgb(222,102,6)" rx="2" ry="2" />
<text x="531.36" y="1279.5" ></text>
</g>
<g >
<title>caml_tuplify2 (288 samples, 0.01%)</title><rect x="271.4" y="1429" width="0.2" height="15.0" fill="rgb(217,141,47)" rx="2" ry="2" />
<text x="274.44" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (947 samples, 0.04%)</title><rect x="489.7" y="1237" width="0.5" height="15.0" fill="rgb(213,87,30)" rx="2" ry="2" />
<text x="492.67" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (1,560 samples, 0.07%)</title><rect x="185.5" y="1333" width="0.8" height="15.0" fill="rgb(230,31,21)" rx="2" ry="2" />
<text x="188.55" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (241 samples, 0.01%)</title><rect x="504.7" y="1253" width="0.1" height="15.0" fill="rgb(227,147,19)" rx="2" ry="2" />
<text x="507.65" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (2,250 samples, 0.10%)</title><rect x="544.8" y="1301" width="1.2" height="15.0" fill="rgb(233,206,32)" rx="2" ry="2" />
<text x="547.84" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (34,537 samples, 1.50%)</title><rect x="815.7" y="741" width="17.7" height="15.0" fill="rgb(240,139,28)" rx="2" ry="2" />
<text x="818.72" y="751.5" ></text>
</g>
<g >
<title>mark_slice (2,720 samples, 0.12%)</title><rect x="921.6" y="1445" width="1.3" height="15.0" fill="rgb(210,115,5)" rx="2" ry="2" />
<text x="924.55" y="1455.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (363 samples, 0.02%)</title><rect x="660.0" y="149" width="0.2" height="15.0" fill="rgb(227,4,12)" rx="2" ry="2" />
<text x="663.02" y="159.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (3,869 samples, 0.17%)</title><rect x="124.0" y="1461" width="1.9" height="15.0" fill="rgb(253,14,17)" rx="2" ry="2" />
<text x="126.96" y="1471.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (602 samples, 0.03%)</title><rect x="811.8" y="1077" width="0.3" height="15.0" fill="rgb(240,114,47)" rx="2" ry="2" />
<text x="814.83" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (264 samples, 0.01%)</title><rect x="471.5" y="1301" width="0.1" height="15.0" fill="rgb(205,163,26)" rx="2" ry="2" />
<text x="474.50" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (350 samples, 0.02%)</title><rect x="710.8" y="1029" width="0.2" height="15.0" fill="rgb(215,180,6)" rx="2" ry="2" />
<text x="713.79" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (211 samples, 0.01%)</title><rect x="706.4" y="965" width="0.1" height="15.0" fill="rgb(205,15,15)" rx="2" ry="2" />
<text x="709.42" y="975.5" ></text>
</g>
<g >
<title>caml_oldify_one (222 samples, 0.01%)</title><rect x="382.5" y="1349" width="0.1" height="15.0" fill="rgb(223,157,51)" rx="2" ry="2" />
<text x="385.45" y="1359.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (1,778 samples, 0.08%)</title><rect x="323.9" y="1381" width="0.9" height="15.0" fill="rgb(209,46,39)" rx="2" ry="2" />
<text x="326.89" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (463 samples, 0.02%)</title><rect x="301.6" y="1365" width="0.2" height="15.0" fill="rgb(219,61,42)" rx="2" ry="2" />
<text x="304.60" y="1375.5" ></text>
</g>
<g >
<title>camlLwt_sequence__add_r_114 (883 samples, 0.04%)</title><rect x="493.0" y="1205" width="0.4" height="15.0" fill="rgb(216,52,11)" rx="2" ry="2" />
<text x="495.98" y="1215.5" ></text>
</g>
<g >
<title>caml_string_equal (2,873 samples, 0.12%)</title><rect x="1027.0" y="1301" width="1.5" height="15.0" fill="rgb(233,94,22)" rx="2" ry="2" />
<text x="1030.04" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (6,484 samples, 0.28%)</title><rect x="1013.2" y="1397" width="3.3" height="15.0" fill="rgb(225,221,41)" rx="2" ry="2" />
<text x="1016.20" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (1,200 samples, 0.05%)</title><rect x="786.6" y="1141" width="0.6" height="15.0" fill="rgb(206,155,25)" rx="2" ry="2" />
<text x="789.60" y="1151.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,804 samples, 0.08%)</title><rect x="1072.5" y="1109" width="0.9" height="15.0" fill="rgb(208,65,1)" rx="2" ry="2" />
<text x="1075.49" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,415 samples, 0.06%)</title><rect x="577.0" y="1141" width="0.7" height="15.0" fill="rgb(206,97,2)" rx="2" ry="2" />
<text x="579.98" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,576 samples, 0.07%)</title><rect x="1125.6" y="965" width="0.8" height="15.0" fill="rgb(208,151,36)" rx="2" ry="2" />
<text x="1128.58" y="975.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (842 samples, 0.04%)</title><rect x="275.5" y="1381" width="0.4" height="15.0" fill="rgb(253,72,19)" rx="2" ry="2" />
<text x="278.51" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (15,769 samples, 0.68%)</title><rect x="1023.6" y="1365" width="8.1" height="15.0" fill="rgb(213,147,30)" rx="2" ry="2" />
<text x="1026.64" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (249 samples, 0.01%)</title><rect x="225.6" y="1317" width="0.1" height="15.0" fill="rgb(210,111,23)" rx="2" ry="2" />
<text x="228.61" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (474 samples, 0.02%)</title><rect x="154.4" y="1397" width="0.3" height="15.0" fill="rgb(224,43,46)" rx="2" ry="2" />
<text x="157.43" y="1407.5" ></text>
</g>
<g >
<title>unix_write (320 samples, 0.01%)</title><rect x="972.1" y="1653" width="0.2" height="15.0" fill="rgb(226,170,15)" rx="2" ry="2" />
<text x="975.09" y="1663.5" ></text>
</g>
<g >
<title>uECC_vli_modSub (644 samples, 0.03%)</title><rect x="652.4" y="149" width="0.4" height="15.0" fill="rgb(221,77,3)" rx="2" ry="2" />
<text x="655.43" y="159.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (413 samples, 0.02%)</title><rect x="411.7" y="1349" width="0.2" height="15.0" fill="rgb(225,217,27)" rx="2" ry="2" />
<text x="414.72" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (242 samples, 0.01%)</title><rect x="988.9" y="1365" width="0.1" height="15.0" fill="rgb(243,46,27)" rx="2" ry="2" />
<text x="991.90" y="1375.5" ></text>
</g>
<g >
<title>uECC_verify_stub (2,237 samples, 0.10%)</title><rect x="827.8" y="261" width="1.1" height="15.0" fill="rgb(219,166,25)" rx="2" ry="2" />
<text x="830.75" y="271.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (468 samples, 0.02%)</title><rect x="111.8" y="1477" width="0.3" height="15.0" fill="rgb(216,13,24)" rx="2" ry="2" />
<text x="114.81" y="1487.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,320 samples, 0.06%)</title><rect x="533.3" y="1093" width="0.6" height="15.0" fill="rgb(240,195,47)" rx="2" ry="2" />
<text x="536.27" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (201 samples, 0.01%)</title><rect x="553.5" y="1173" width="0.1" height="15.0" fill="rgb(253,83,33)" rx="2" ry="2" />
<text x="556.54" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (434 samples, 0.02%)</title><rect x="1000.3" y="1061" width="0.2" height="15.0" fill="rgb(222,45,16)" rx="2" ry="2" />
<text x="1003.29" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (1,378 samples, 0.06%)</title><rect x="1174.2" y="965" width="0.7" height="15.0" fill="rgb(227,207,16)" rx="2" ry="2" />
<text x="1177.18" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (316 samples, 0.01%)</title><rect x="794.5" y="997" width="0.1" height="15.0" fill="rgb(218,159,15)" rx="2" ry="2" />
<text x="797.47" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (209 samples, 0.01%)</title><rect x="1171.2" y="869" width="0.1" height="15.0" fill="rgb(240,155,20)" rx="2" ry="2" />
<text x="1174.16" y="879.5" ></text>
</g>
<g >
<title>uECC_verify (9,588 samples, 0.42%)</title><rect x="818.2" y="245" width="4.9" height="15.0" fill="rgb(236,85,34)" rx="2" ry="2" />
<text x="821.19" y="255.5" ></text>
</g>
<g >
<title>mark_slice (244 samples, 0.01%)</title><rect x="772.9" y="1045" width="0.1" height="15.0" fill="rgb(240,170,22)" rx="2" ry="2" />
<text x="775.86" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7366 (16,157 samples, 0.70%)</title><rect x="489.0" y="1301" width="8.2" height="15.0" fill="rgb(253,15,53)" rx="2" ry="2" />
<text x="491.97" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (252 samples, 0.01%)</title><rect x="594.1" y="1285" width="0.1" height="15.0" fill="rgb(210,161,36)" rx="2" ry="2" />
<text x="597.05" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (380 samples, 0.02%)</title><rect x="730.5" y="1141" width="0.2" height="15.0" fill="rgb(219,208,48)" rx="2" ry="2" />
<text x="733.49" y="1151.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (196 samples, 0.01%)</title><rect x="533.6" y="1077" width="0.1" height="15.0" fill="rgb(209,156,2)" rx="2" ry="2" />
<text x="536.58" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (990 samples, 0.04%)</title><rect x="770.6" y="1093" width="0.5" height="15.0" fill="rgb(226,184,18)" rx="2" ry="2" />
<text x="773.55" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_467 (522 samples, 0.02%)</title><rect x="1127.9" y="1109" width="0.3" height="15.0" fill="rgb(205,19,32)" rx="2" ry="2" />
<text x="1130.89" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (744 samples, 0.03%)</title><rect x="781.7" y="1077" width="0.4" height="15.0" fill="rgb(254,104,27)" rx="2" ry="2" />
<text x="784.75" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_12885 (11,273 samples, 0.49%)</title><rect x="827.6" y="485" width="5.7" height="15.0" fill="rgb(234,161,2)" rx="2" ry="2" />
<text x="830.58" y="495.5" ></text>
</g>
<g >
<title>camlLwt__pause_2050 (2,117 samples, 0.09%)</title><rect x="492.4" y="1237" width="1.1" height="15.0" fill="rgb(231,25,31)" rx="2" ry="2" />
<text x="495.44" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (436 samples, 0.02%)</title><rect x="205.7" y="1349" width="0.2" height="15.0" fill="rgb(229,151,44)" rx="2" ry="2" />
<text x="208.69" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12001 (430 samples, 0.02%)</title><rect x="1115.9" y="1013" width="0.2" height="15.0" fill="rgb(207,93,54)" rx="2" ry="2" />
<text x="1118.93" y="1023.5" ></text>
</g>
<g >
<title>caml_garbage_collection (435 samples, 0.02%)</title><rect x="707.3" y="997" width="0.2" height="15.0" fill="rgb(251,183,17)" rx="2" ry="2" />
<text x="710.31" y="1007.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (488 samples, 0.02%)</title><rect x="451.5" y="1413" width="0.3" height="15.0" fill="rgb(226,80,45)" rx="2" ry="2" />
<text x="454.54" y="1423.5" ></text>
</g>
<g >
<title>caml_hash (463 samples, 0.02%)</title><rect x="1067.5" y="1157" width="0.3" height="15.0" fill="rgb(233,12,41)" rx="2" ry="2" />
<text x="1070.55" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (199 samples, 0.01%)</title><rect x="716.8" y="1045" width="0.1" height="15.0" fill="rgb(231,228,18)" rx="2" ry="2" />
<text x="719.76" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (252 samples, 0.01%)</title><rect x="151.6" y="1413" width="0.1" height="15.0" fill="rgb(207,183,18)" rx="2" ry="2" />
<text x="154.56" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__run_callbacks_or_defer_them_inner_2665 (377 samples, 0.02%)</title><rect x="788.0" y="1141" width="0.2" height="15.0" fill="rgb(243,138,33)" rx="2" ry="2" />
<text x="791.01" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,376 samples, 0.06%)</title><rect x="598.0" y="1237" width="0.7" height="15.0" fill="rgb(217,125,54)" rx="2" ry="2" />
<text x="601.00" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Baking__fun_4000 (8,728 samples, 0.38%)</title><rect x="823.1" y="325" width="4.5" height="15.0" fill="rgb(205,151,9)" rx="2" ry="2" />
<text x="826.10" y="335.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (79,487 samples, 3.44%)</title><rect x="631.2" y="901" width="40.7" height="15.0" fill="rgb(225,153,17)" rx="2" ry="2" />
<text x="634.23" y="911.5" >cam..</text>
</g>
<g >
<title>camlStdlib__list__rev_sort_478 (347 samples, 0.02%)</title><rect x="1059.7" y="1205" width="0.1" height="15.0" fill="rgb(232,168,4)" rx="2" ry="2" />
<text x="1062.67" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (967 samples, 0.04%)</title><rect x="884.3" y="1205" width="0.5" height="15.0" fill="rgb(209,189,42)" rx="2" ry="2" />
<text x="887.29" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (1,418 samples, 0.06%)</title><rect x="623.1" y="1125" width="0.7" height="15.0" fill="rgb(247,105,40)" rx="2" ry="2" />
<text x="626.08" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_14721 (492 samples, 0.02%)</title><rect x="302.6" y="1397" width="0.3" height="15.0" fill="rgb(235,31,46)" rx="2" ry="2" />
<text x="305.62" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (23,211 samples, 1.01%)</title><rect x="19.4" y="1653" width="11.9" height="15.0" fill="rgb(212,166,43)" rx="2" ry="2" />
<text x="22.39" y="1663.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (528 samples, 0.02%)</title><rect x="778.1" y="1061" width="0.3" height="15.0" fill="rgb(236,19,49)" rx="2" ry="2" />
<text x="781.10" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (447 samples, 0.02%)</title><rect x="1074.7" y="1173" width="0.2" height="15.0" fill="rgb(244,19,48)" rx="2" ry="2" />
<text x="1077.70" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (40,690 samples, 1.76%)</title><rect x="1143.9" y="805" width="20.8" height="15.0" fill="rgb(219,145,4)" rx="2" ry="2" />
<text x="1146.89" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (251 samples, 0.01%)</title><rect x="1066.3" y="1141" width="0.1" height="15.0" fill="rgb(253,87,49)" rx="2" ry="2" />
<text x="1069.25" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_894 (43,414 samples, 1.88%)</title><rect x="898.0" y="1509" width="22.2" height="15.0" fill="rgb(208,197,37)" rx="2" ry="2" />
<text x="900.97" y="1519.5" >c..</text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_569 (552 samples, 0.02%)</title><rect x="528.0" y="1285" width="0.3" height="15.0" fill="rgb(227,10,8)" rx="2" ry="2" />
<text x="531.04" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_5748 (236 samples, 0.01%)</title><rect x="778.5" y="1109" width="0.1" height="15.0" fill="rgb(239,87,34)" rx="2" ry="2" />
<text x="781.51" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (224 samples, 0.01%)</title><rect x="543.5" y="1157" width="0.2" height="15.0" fill="rgb(245,213,25)" rx="2" ry="2" />
<text x="546.54" y="1167.5" ></text>
</g>
<g >
<title>uECC_vli_mult (375 samples, 0.02%)</title><rect x="831.3" y="229" width="0.2" height="15.0" fill="rgb(248,197,12)" rx="2" ry="2" />
<text x="834.27" y="239.5" ></text>
</g>
<g >
<title>uECC_vli_modAdd (533 samples, 0.02%)</title><rect x="660.3" y="165" width="0.3" height="15.0" fill="rgb(208,120,32)" rx="2" ry="2" />
<text x="663.31" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (1,379 samples, 0.06%)</title><rect x="1043.2" y="1397" width="0.7" height="15.0" fill="rgb(229,115,24)" rx="2" ry="2" />
<text x="1046.17" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_188 (458 samples, 0.02%)</title><rect x="683.9" y="1061" width="0.2" height="15.0" fill="rgb(244,129,47)" rx="2" ry="2" />
<text x="686.90" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7369 (1,066 samples, 0.05%)</title><rect x="733.5" y="1093" width="0.5" height="15.0" fill="rgb(209,60,4)" rx="2" ry="2" />
<text x="736.49" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__make_into_proxy_1205 (196 samples, 0.01%)</title><rect x="1181.8" y="1397" width="0.1" height="15.0" fill="rgb(219,162,15)" rx="2" ry="2" />
<text x="1184.83" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,305 samples, 0.06%)</title><rect x="556.3" y="1317" width="0.7" height="15.0" fill="rgb(241,91,25)" rx="2" ry="2" />
<text x="559.34" y="1327.5" ></text>
</g>
<g >
<title>caml_modify (317 samples, 0.01%)</title><rect x="613.3" y="1125" width="0.2" height="15.0" fill="rgb(210,42,52)" rx="2" ry="2" />
<text x="616.32" y="1135.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (545 samples, 0.02%)</title><rect x="1015.5" y="1301" width="0.3" height="15.0" fill="rgb(216,143,31)" rx="2" ry="2" />
<text x="1018.52" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (443 samples, 0.02%)</title><rect x="612.3" y="1125" width="0.2" height="15.0" fill="rgb(207,52,39)" rx="2" ry="2" />
<text x="615.30" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (314 samples, 0.01%)</title><rect x="765.1" y="1061" width="0.2" height="15.0" fill="rgb(210,157,30)" rx="2" ry="2" />
<text x="768.09" y="1071.5" ></text>
</g>
<g >
<title>sweep_slice (206 samples, 0.01%)</title><rect x="573.1" y="1173" width="0.1" height="15.0" fill="rgb(252,212,10)" rx="2" ry="2" />
<text x="576.08" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,092 samples, 0.05%)</title><rect x="1056.9" y="1109" width="0.6" height="15.0" fill="rgb(206,53,25)" rx="2" ry="2" />
<text x="1059.91" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (440 samples, 0.02%)</title><rect x="492.8" y="1157" width="0.2" height="15.0" fill="rgb(228,98,22)" rx="2" ry="2" />
<text x="495.75" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_850 (2,449 samples, 0.11%)</title><rect x="1002.8" y="1269" width="1.3" height="15.0" fill="rgb(214,205,32)" rx="2" ry="2" />
<text x="1005.82" y="1279.5" ></text>
</g>
<g >
<title>uECC_vli_modMult_fast (2,188 samples, 0.09%)</title><rect x="632.3" y="133" width="1.1" height="15.0" fill="rgb(210,221,49)" rx="2" ry="2" />
<text x="635.26" y="143.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3831 (39,253 samples, 1.70%)</title><rect x="789.8" y="1093" width="20.0" height="15.0" fill="rgb(211,137,23)" rx="2" ry="2" />
<text x="792.76" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (1,364 samples, 0.06%)</title><rect x="240.2" y="1397" width="0.7" height="15.0" fill="rgb(215,81,18)" rx="2" ry="2" />
<text x="243.22" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4918 (481 samples, 0.02%)</title><rect x="571.0" y="1285" width="0.3" height="15.0" fill="rgb(248,113,37)" rx="2" ry="2" />
<text x="574.05" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (2,262 samples, 0.10%)</title><rect x="875.7" y="1045" width="1.2" height="15.0" fill="rgb(227,204,23)" rx="2" ry="2" />
<text x="878.70" y="1055.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (220 samples, 0.01%)</title><rect x="193.7" y="1365" width="0.1" height="15.0" fill="rgb(250,116,26)" rx="2" ry="2" />
<text x="196.66" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (263 samples, 0.01%)</title><rect x="701.6" y="997" width="0.2" height="15.0" fill="rgb(246,87,2)" rx="2" ry="2" />
<text x="704.63" y="1007.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (433 samples, 0.02%)</title><rect x="93.9" y="1493" width="0.2" height="15.0" fill="rgb(244,189,12)" rx="2" ry="2" />
<text x="96.93" y="1503.5" ></text>
</g>
<g >
<title>muladd (201 samples, 0.01%)</title><rect x="1112.6" y="85" width="0.1" height="15.0" fill="rgb(207,173,15)" rx="2" ry="2" />
<text x="1115.56" y="95.5" ></text>
</g>
<g >
<title>camlUecc__verify_813 (13,293 samples, 0.58%)</title><rect x="1106.0" y="165" width="6.8" height="15.0" fill="rgb(249,136,47)" rx="2" ry="2" />
<text x="1109.00" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (806 samples, 0.03%)</title><rect x="1116.1" y="1013" width="0.5" height="15.0" fill="rgb(206,147,7)" rx="2" ry="2" />
<text x="1119.15" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (560 samples, 0.02%)</title><rect x="1000.2" y="1109" width="0.3" height="15.0" fill="rgb(229,196,28)" rx="2" ry="2" />
<text x="1003.22" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (236 samples, 0.01%)</title><rect x="240.8" y="1349" width="0.1" height="15.0" fill="rgb(223,191,39)" rx="2" ry="2" />
<text x="243.80" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__enter_resolution_loop_891 (998 samples, 0.04%)</title><rect x="115.0" y="1509" width="0.5" height="15.0" fill="rgb(206,122,27)" rx="2" ry="2" />
<text x="118.01" y="1519.5" ></text>
</g>
<g >
<title>mark_slice (4,299 samples, 0.19%)</title><rect x="382.6" y="1365" width="2.2" height="15.0" fill="rgb(208,37,3)" rx="2" ry="2" />
<text x="385.57" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (252 samples, 0.01%)</title><rect x="773.5" y="1045" width="0.1" height="15.0" fill="rgb(242,150,36)" rx="2" ry="2" />
<text x="776.50" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_374 (664 samples, 0.03%)</title><rect x="98.3" y="1541" width="0.3" height="15.0" fill="rgb(234,110,38)" rx="2" ry="2" />
<text x="101.26" y="1551.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (2,409 samples, 0.10%)</title><rect x="769.8" y="1141" width="1.3" height="15.0" fill="rgb(219,167,15)" rx="2" ry="2" />
<text x="772.83" y="1151.5" ></text>
</g>
<g >
<title>vli_mmod_fast_secp256r1 (264 samples, 0.01%)</title><rect x="829.2" y="213" width="0.1" height="15.0" fill="rgb(221,86,27)" rx="2" ry="2" />
<text x="832.15" y="223.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,219 samples, 0.05%)</title><rect x="243.7" y="1349" width="0.6" height="15.0" fill="rgb(217,212,18)" rx="2" ry="2" />
<text x="246.67" y="1359.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (474 samples, 0.02%)</title><rect x="154.4" y="1413" width="0.3" height="15.0" fill="rgb(214,100,20)" rx="2" ry="2" />
<text x="157.43" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (473 samples, 0.02%)</title><rect x="1067.5" y="1173" width="0.3" height="15.0" fill="rgb(234,138,7)" rx="2" ry="2" />
<text x="1070.54" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,172 samples, 0.57%)</title><rect x="85.9" y="1509" width="6.7" height="15.0" fill="rgb(237,24,27)" rx="2" ry="2" />
<text x="88.86" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (218 samples, 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment