Skip to content

Instantly share code, notes, and snippets.

@icristescu
Created April 8, 2020 10:24
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/a6ae6e583e217e4af7ce875f2776e606 to your computer and use it in GitHub Desktop.
Save icristescu/a6ae6e583e217e4af7ce875f2776e606 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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </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="2117" > </text>
<g id="frames">
<g >
<title>camlIndex__find_if_exists_2838 (521 samples, 0.03%)</title><rect x="902.7" y="1349" width="0.3" height="15.0" fill="rgb(220,101,13)" rx="2" ry="2" />
<text x="905.67" y="1359.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (4,361 samples, 0.23%)</title><rect x="569.8" y="1877" width="2.8" height="15.0" fill="rgb(227,108,34)" rx="2" ry="2" />
<text x="572.84" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (384 samples, 0.02%)</title><rect x="818.9" y="1269" width="0.3" height="15.0" fill="rgb(221,177,0)" rx="2" ry="2" />
<text x="821.94" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (1,081 samples, 0.06%)</title><rect x="1112.7" y="1525" width="0.7" height="15.0" fill="rgb(216,58,22)" rx="2" ry="2" />
<text x="1115.73" y="1535.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (4,896 samples, 0.26%)</title><rect x="1183.9" y="1285" width="3.1" height="15.0" fill="rgb(234,100,5)" rx="2" ry="2" />
<text x="1186.86" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (197 samples, 0.01%)</title><rect x="1011.9" y="1285" width="0.1" height="15.0" fill="rgb(216,216,49)" rx="2" ry="2" />
<text x="1014.89" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1333" width="0.3" height="15.0" fill="rgb(215,41,2)" rx="2" ry="2" />
<text x="1192.12" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (791 samples, 0.04%)</title><rect x="1038.7" y="1317" width="0.5" height="15.0" fill="rgb(253,116,20)" rx="2" ry="2" />
<text x="1041.69" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4848 (124,218 samples, 6.68%)</title><rect x="823.0" y="1477" width="78.8" height="15.0" fill="rgb(208,91,5)" rx="2" ry="2" />
<text x="826.01" y="1487.5" >camlIrmin..</text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (464 samples, 0.02%)</title><rect x="692.9" y="1381" width="0.2" height="15.0" fill="rgb(242,176,5)" rx="2" ry="2" />
<text x="695.85" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (8,064 samples, 0.43%)</title><rect x="1008.7" y="1381" width="5.1" height="15.0" fill="rgb(220,161,31)" rx="2" ry="2" />
<text x="1011.73" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="629" width="0.2" height="15.0" fill="rgb(219,83,43)" rx="2" ry="2" />
<text x="1191.57" y="639.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,685 samples, 0.09%)</title><rect x="295.5" y="1829" width="1.1" height="15.0" fill="rgb(215,71,0)" rx="2" ry="2" />
<text x="298.52" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="693" width="0.3" height="15.0" fill="rgb(238,192,14)" rx="2" ry="2" />
<text x="1192.12" y="703.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__append_string_1428 (218 samples, 0.01%)</title><rect x="922.5" y="1301" width="0.2" height="15.0" fill="rgb(216,49,44)" rx="2" ry="2" />
<text x="925.52" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (349 samples, 0.02%)</title><rect x="862.3" y="1189" width="0.2" height="15.0" fill="rgb(224,44,4)" rx="2" ry="2" />
<text x="865.32" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (250 samples, 0.01%)</title><rect x="817.4" y="1285" width="0.2" height="15.0" fill="rgb(240,89,7)" rx="2" ry="2" />
<text x="820.40" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (632 samples, 0.03%)</title><rect x="912.0" y="1109" width="0.4" height="15.0" fill="rgb(242,204,24)" rx="2" ry="2" />
<text x="914.99" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3138 (184 samples, 0.01%)</title><rect x="669.8" y="1829" width="0.1" height="15.0" fill="rgb(229,63,40)" rx="2" ry="2" />
<text x="672.80" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (416 samples, 0.02%)</title><rect x="1061.0" y="1285" width="0.2" height="15.0" fill="rgb(253,8,13)" rx="2" ry="2" />
<text x="1063.98" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (7,150 samples, 0.38%)</title><rect x="337.0" y="1829" width="4.5" height="15.0" fill="rgb(245,141,31)" rx="2" ry="2" />
<text x="340.00" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (1,038 samples, 0.06%)</title><rect x="1145.3" y="1429" width="0.6" height="15.0" fill="rgb(250,182,49)" rx="2" ry="2" />
<text x="1148.26" y="1439.5" ></text>
</g>
<g >
<title>caml_string_length (185 samples, 0.01%)</title><rect x="1010.1" y="1301" width="0.1" height="15.0" fill="rgb(227,222,17)" rx="2" ry="2" />
<text x="1013.08" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1157" width="0.3" height="15.0" fill="rgb(231,223,19)" rx="2" ry="2" />
<text x="1191.82" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (287 samples, 0.02%)</title><rect x="1132.7" y="1237" width="0.1" height="15.0" fill="rgb(209,182,33)" rx="2" ry="2" />
<text x="1135.67" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,873 samples, 0.21%)</title><rect x="842.2" y="1269" width="2.5" height="15.0" fill="rgb(230,229,19)" rx="2" ry="2" />
<text x="845.23" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,039 samples, 0.11%)</title><rect x="936.3" y="1093" width="1.3" height="15.0" fill="rgb(208,162,41)" rx="2" ry="2" />
<text x="939.29" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (955 samples, 0.05%)</title><rect x="1150.9" y="1381" width="0.6" height="15.0" fill="rgb(246,89,22)" rx="2" ry="2" />
<text x="1153.88" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,295 samples, 0.07%)</title><rect x="1168.7" y="1253" width="0.8" height="15.0" fill="rgb(221,208,50)" rx="2" ry="2" />
<text x="1171.68" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (313 samples, 0.02%)</title><rect x="878.8" y="1189" width="0.2" height="15.0" fill="rgb(232,82,31)" rx="2" ry="2" />
<text x="881.79" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1797" width="0.5" height="15.0" fill="rgb(208,61,1)" rx="2" ry="2" />
<text x="1192.48" y="1807.5" ></text>
</g>
<g >
<title>caml_garbage_collection (168 samples, 0.01%)</title><rect x="876.8" y="1157" width="0.1" height="15.0" fill="rgb(254,29,1)" rx="2" ry="2" />
<text x="879.76" y="1167.5" ></text>
</g>
<g >
<title>unix_lseek_64 (532 samples, 0.03%)</title><rect x="1102.2" y="1333" width="0.3" height="15.0" fill="rgb(211,220,12)" rx="2" ry="2" />
<text x="1105.21" y="1343.5" ></text>
</g>
<g >
<title>caml_thread_scan_roots (331 samples, 0.02%)</title><rect x="295.3" y="1813" width="0.2" height="15.0" fill="rgb(228,124,11)" rx="2" ry="2" />
<text x="298.29" y="1823.5" ></text>
</g>
<g >
<title>caml_string_compare (647 samples, 0.03%)</title><rect x="894.5" y="1413" width="0.4" height="15.0" fill="rgb(217,225,32)" rx="2" ry="2" />
<text x="897.50" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (264 samples, 0.01%)</title><rect x="820.1" y="1269" width="0.1" height="15.0" fill="rgb(216,152,35)" rx="2" ry="2" />
<text x="823.08" y="1279.5" ></text>
</g>
<g >
<title>__condvar_get_private (2,841 samples, 0.15%)</title><rect x="605.0" y="1829" width="1.8" height="15.0" fill="rgb(254,39,54)" rx="2" ry="2" />
<text x="608.00" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (391 samples, 0.02%)</title><rect x="724.5" y="1365" width="0.3" height="15.0" fill="rgb(227,133,5)" rx="2" ry="2" />
<text x="727.52" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1493" width="0.2" height="15.0" fill="rgb(217,28,50)" rx="2" ry="2" />
<text x="1191.57" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (993 samples, 0.05%)</title><rect x="694.1" y="1301" width="0.6" height="15.0" fill="rgb(209,145,50)" rx="2" ry="2" />
<text x="697.08" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1109" width="0.3" height="15.0" fill="rgb(252,75,48)" rx="2" ry="2" />
<text x="1191.32" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (805 samples, 0.04%)</title><rect x="1162.5" y="1525" width="0.5" height="15.0" fill="rgb(205,207,45)" rx="2" ry="2" />
<text x="1165.48" y="1535.5" ></text>
</g>
<g >
<title>caml_call_gc (3,056 samples, 0.16%)</title><rect x="241.7" y="1861" width="1.9" height="15.0" fill="rgb(229,156,18)" rx="2" ry="2" />
<text x="244.69" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1061" width="0.5" height="15.0" fill="rgb(219,131,4)" rx="2" ry="2" />
<text x="1192.48" y="1071.5" ></text>
</g>
<g >
<title>caml_blit_bytes (351 samples, 0.02%)</title><rect x="1032.4" y="1285" width="0.3" height="15.0" fill="rgb(247,213,53)" rx="2" ry="2" />
<text x="1035.43" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,370 samples, 0.07%)</title><rect x="862.0" y="1237" width="0.8" height="15.0" fill="rgb(213,162,12)" rx="2" ry="2" />
<text x="864.98" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (196 samples, 0.01%)</title><rect x="1059.9" y="1317" width="0.1" height="15.0" fill="rgb(214,129,17)" rx="2" ry="2" />
<text x="1062.91" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,689 samples, 0.09%)</title><rect x="706.2" y="1397" width="1.1" height="15.0" fill="rgb(239,31,48)" rx="2" ry="2" />
<text x="709.18" y="1407.5" ></text>
</g>
<g >
<title>mark_slice (170 samples, 0.01%)</title><rect x="669.7" y="1765" width="0.1" height="15.0" fill="rgb(211,221,33)" rx="2" ry="2" />
<text x="672.67" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1365" width="0.3" height="15.0" fill="rgb(209,83,0)" rx="2" ry="2" />
<text x="1191.82" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,390 samples, 0.13%)</title><rect x="973.1" y="1237" width="1.5" height="15.0" fill="rgb(208,61,39)" rx="2" ry="2" />
<text x="976.08" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (488 samples, 0.03%)</title><rect x="57.0" y="1861" width="0.3" height="15.0" fill="rgb(231,92,43)" rx="2" ry="2" />
<text x="59.97" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (259 samples, 0.01%)</title><rect x="1175.0" y="1173" width="0.2" height="15.0" fill="rgb(249,75,22)" rx="2" ry="2" />
<text x="1178.02" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (299 samples, 0.02%)</title><rect x="676.0" y="1781" width="0.2" height="15.0" fill="rgb(220,43,36)" rx="2" ry="2" />
<text x="678.99" y="1791.5" ></text>
</g>
<g >
<title>caml_alloc_string (424 samples, 0.02%)</title><rect x="1054.5" y="1317" width="0.2" height="15.0" fill="rgb(212,190,13)" rx="2" ry="2" />
<text x="1057.47" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (602 samples, 0.03%)</title><rect x="694.3" y="1189" width="0.4" height="15.0" fill="rgb(231,133,12)" rx="2" ry="2" />
<text x="697.33" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (10,432 samples, 0.56%)</title><rect x="799.4" y="1461" width="6.7" height="15.0" fill="rgb(250,36,17)" rx="2" ry="2" />
<text x="802.44" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (222 samples, 0.01%)</title><rect x="677.7" y="1861" width="0.1" height="15.0" fill="rgb(251,11,53)" rx="2" ry="2" />
<text x="680.66" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1605" width="0.3" height="15.0" fill="rgb(248,33,38)" rx="2" ry="2" />
<text x="1191.32" y="1615.5" ></text>
</g>
<g >
<title>sweep_slice (161 samples, 0.01%)</title><rect x="342.0" y="1813" width="0.1" height="15.0" fill="rgb(215,106,44)" rx="2" ry="2" />
<text x="345.00" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (1,251 samples, 0.07%)</title><rect x="982.2" y="1157" width="0.8" height="15.0" fill="rgb(250,198,21)" rx="2" ry="2" />
<text x="985.20" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1621" width="0.3" height="15.0" fill="rgb(248,156,39)" rx="2" ry="2" />
<text x="1191.82" y="1631.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (205 samples, 0.01%)</title><rect x="268.8" y="1813" width="0.1" height="15.0" fill="rgb(248,153,6)" rx="2" ry="2" />
<text x="271.79" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__random__bits_1782 (322 samples, 0.02%)</title><rect x="1164.4" y="1493" width="0.2" height="15.0" fill="rgb(254,95,25)" rx="2" ry="2" />
<text x="1167.41" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1349" width="0.3" height="15.0" fill="rgb(249,129,48)" rx="2" ry="2" />
<text x="1191.82" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (379 samples, 0.02%)</title><rect x="758.8" y="1285" width="0.2" height="15.0" fill="rgb(220,162,49)" rx="2" ry="2" />
<text x="761.79" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (651 samples, 0.04%)</title><rect x="815.8" y="1365" width="0.5" height="15.0" fill="rgb(214,4,16)" rx="2" ry="2" />
<text x="818.85" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (635 samples, 0.03%)</title><rect x="915.6" y="1301" width="0.4" height="15.0" fill="rgb(207,97,45)" rx="2" ry="2" />
<text x="918.60" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (247 samples, 0.01%)</title><rect x="958.5" y="1189" width="0.1" height="15.0" fill="rgb(211,123,43)" rx="2" ry="2" />
<text x="961.47" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (792 samples, 0.04%)</title><rect x="1133.3" y="1365" width="0.5" height="15.0" fill="rgb(235,78,21)" rx="2" ry="2" />
<text x="1136.27" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (889 samples, 0.05%)</title><rect x="1176.0" y="1269" width="0.6" height="15.0" fill="rgb(222,82,23)" rx="2" ry="2" />
<text x="1179.02" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (299 samples, 0.02%)</title><rect x="1169.7" y="1285" width="0.1" height="15.0" fill="rgb(219,219,10)" rx="2" ry="2" />
<text x="1172.66" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (454 samples, 0.02%)</title><rect x="714.3" y="1493" width="0.3" height="15.0" fill="rgb(215,51,40)" rx="2" ry="2" />
<text x="717.33" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (41,354 samples, 2.22%)</title><rect x="689.7" y="1669" width="26.2" height="15.0" fill="rgb(240,194,23)" rx="2" ry="2" />
<text x="692.68" y="1679.5" >c..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,081 samples, 1.03%)</title><rect x="624.1" y="1733" width="12.1" height="15.0" fill="rgb(209,22,13)" rx="2" ry="2" />
<text x="627.14" y="1743.5" ></text>
</g>
<g >
<title>caml_garbage_collection (751 samples, 0.04%)</title><rect x="670.6" y="1829" width="0.5" height="15.0" fill="rgb(240,62,0)" rx="2" ry="2" />
<text x="673.59" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (215 samples, 0.01%)</title><rect x="1161.5" y="1349" width="0.1" height="15.0" fill="rgb(209,84,42)" rx="2" ry="2" />
<text x="1164.48" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_2302 (284 samples, 0.02%)</title><rect x="676.2" y="1861" width="0.2" height="15.0" fill="rgb(233,199,53)" rx="2" ry="2" />
<text x="679.18" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,111 samples, 0.06%)</title><rect x="1168.8" y="1189" width="0.7" height="15.0" fill="rgb(209,34,41)" rx="2" ry="2" />
<text x="1171.80" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (79,670 samples, 4.28%)</title><rect x="1025.6" y="1413" width="50.5" height="15.0" fill="rgb(224,19,9)" rx="2" ry="2" />
<text x="1028.60" y="1423.5" >camlI..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (167 samples, 0.01%)</title><rect x="913.6" y="1253" width="0.1" height="15.0" fill="rgb(205,83,48)" rx="2" ry="2" />
<text x="916.60" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (262 samples, 0.01%)</title><rect x="1165.0" y="1525" width="0.2" height="15.0" fill="rgb(234,22,18)" rx="2" ry="2" />
<text x="1168.00" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (1,942 samples, 0.10%)</title><rect x="1041.2" y="1317" width="1.3" height="15.0" fill="rgb(225,206,30)" rx="2" ry="2" />
<text x="1044.25" y="1327.5" ></text>
</g>
<g >
<title>compare_val (688 samples, 0.04%)</title><rect x="923.4" y="1269" width="0.4" height="15.0" fill="rgb(254,81,19)" rx="2" ry="2" />
<text x="926.40" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1879 (208 samples, 0.01%)</title><rect x="438.3" y="1909" width="0.1" height="15.0" fill="rgb(238,177,2)" rx="2" ry="2" />
<text x="441.31" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1685" width="0.5" height="15.0" fill="rgb(216,107,41)" rx="2" ry="2" />
<text x="1192.48" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,397 samples, 0.08%)</title><rect x="926.5" y="1365" width="0.9" height="15.0" fill="rgb(248,143,21)" rx="2" ry="2" />
<text x="929.47" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,293 samples, 0.07%)</title><rect x="295.6" y="1781" width="0.8" height="15.0" fill="rgb(224,206,5)" rx="2" ry="2" />
<text x="298.60" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (242 samples, 0.01%)</title><rect x="810.1" y="1461" width="0.1" height="15.0" fill="rgb(232,206,20)" rx="2" ry="2" />
<text x="813.08" y="1471.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (339 samples, 0.02%)</title><rect x="200.6" y="1813" width="0.2" height="15.0" fill="rgb(242,121,19)" rx="2" ry="2" />
<text x="203.60" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,261 samples, 1.57%)</title><rect x="636.5" y="1813" width="18.5" height="15.0" fill="rgb(210,62,30)" rx="2" ry="2" />
<text x="639.45" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (761 samples, 0.04%)</title><rect x="992.5" y="1173" width="0.4" height="15.0" fill="rgb(208,189,24)" rx="2" ry="2" />
<text x="995.45" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (390 samples, 0.02%)</title><rect x="689.4" y="997" width="0.2" height="15.0" fill="rgb(205,215,48)" rx="2" ry="2" />
<text x="692.38" y="1007.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,917 samples, 0.10%)</title><rect x="305.8" y="1797" width="1.2" height="15.0" fill="rgb(220,29,8)" rx="2" ry="2" />
<text x="308.80" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,514 samples, 0.08%)</title><rect x="790.1" y="1157" width="1.0" height="15.0" fill="rgb(244,130,28)" rx="2" ry="2" />
<text x="793.10" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (44,250 samples, 2.38%)</title><rect x="372.1" y="1909" width="28.0" height="15.0" fill="rgb(210,23,48)" rx="2" ry="2" />
<text x="375.06" y="1919.5" >c..</text>
</g>
<g >
<title>unix_lseek_64 (1,112 samples, 0.06%)</title><rect x="927.9" y="1333" width="0.7" height="15.0" fill="rgb(238,152,0)" rx="2" ry="2" />
<text x="930.93" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (524 samples, 0.03%)</title><rect x="711.2" y="1365" width="0.3" height="15.0" fill="rgb(251,35,10)" rx="2" ry="2" />
<text x="714.20" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,579 samples, 0.78%)</title><rect x="627.0" y="1717" width="9.2" height="15.0" fill="rgb(213,117,35)" rx="2" ry="2" />
<text x="630.00" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="341" width="0.5" height="15.0" fill="rgb(205,28,27)" rx="2" ry="2" />
<text x="1192.48" y="351.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (201 samples, 0.01%)</title><rect x="1165.0" y="1221" width="0.1" height="15.0" fill="rgb(232,64,20)" rx="2" ry="2" />
<text x="1168.02" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (460 samples, 0.02%)</title><rect x="912.7" y="1349" width="0.3" height="15.0" fill="rgb(238,174,48)" rx="2" ry="2" />
<text x="915.70" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (276 samples, 0.01%)</title><rect x="863.3" y="1237" width="0.2" height="15.0" fill="rgb(207,130,43)" rx="2" ry="2" />
<text x="866.28" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,490 samples, 0.19%)</title><rect x="935.4" y="1205" width="2.2" height="15.0" fill="rgb(246,16,34)" rx="2" ry="2" />
<text x="938.37" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,439 samples, 0.08%)</title><rect x="924.5" y="1189" width="0.9" height="15.0" fill="rgb(217,1,33)" rx="2" ry="2" />
<text x="927.52" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (302 samples, 0.02%)</title><rect x="749.3" y="1237" width="0.2" height="15.0" fill="rgb(206,220,1)" rx="2" ry="2" />
<text x="752.34" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (168 samples, 0.01%)</title><rect x="1186.1" y="1221" width="0.1" height="15.0" fill="rgb(221,18,20)" rx="2" ry="2" />
<text x="1189.10" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (227 samples, 0.01%)</title><rect x="962.0" y="1237" width="0.1" height="15.0" fill="rgb(211,188,5)" rx="2" ry="2" />
<text x="964.99" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (168 samples, 0.01%)</title><rect x="669.3" y="1765" width="0.1" height="15.0" fill="rgb(216,33,27)" rx="2" ry="2" />
<text x="672.27" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (163 samples, 0.01%)</title><rect x="861.9" y="1237" width="0.1" height="15.0" fill="rgb(208,205,17)" rx="2" ry="2" />
<text x="864.87" y="1247.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (183 samples, 0.01%)</title><rect x="431.8" y="1861" width="0.1" height="15.0" fill="rgb(215,148,33)" rx="2" ry="2" />
<text x="434.82" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (576 samples, 0.03%)</title><rect x="914.8" y="1285" width="0.3" height="15.0" fill="rgb(226,111,44)" rx="2" ry="2" />
<text x="917.76" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (7,846 samples, 0.42%)</title><rect x="166.3" y="1877" width="5.0" height="15.0" fill="rgb(229,130,32)" rx="2" ry="2" />
<text x="169.33" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (2,054 samples, 0.11%)</title><rect x="997.5" y="1189" width="1.3" height="15.0" fill="rgb(222,103,23)" rx="2" ry="2" />
<text x="1000.53" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (16,546 samples, 0.89%)</title><rect x="1115.6" y="1445" width="10.5" height="15.0" fill="rgb(214,187,16)" rx="2" ry="2" />
<text x="1118.56" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,277 samples, 0.07%)</title><rect x="927.8" y="1381" width="0.8" height="15.0" fill="rgb(246,20,42)" rx="2" ry="2" />
<text x="930.84" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (171 samples, 0.01%)</title><rect x="1165.0" y="1125" width="0.1" height="15.0" fill="rgb(225,78,26)" rx="2" ry="2" />
<text x="1168.04" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1381" width="0.3" height="15.0" fill="rgb(247,38,36)" rx="2" ry="2" />
<text x="1191.32" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (2,102 samples, 0.11%)</title><rect x="159.7" y="1861" width="1.3" height="15.0" fill="rgb(240,202,17)" rx="2" ry="2" />
<text x="162.69" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (486 samples, 0.03%)</title><rect x="1169.2" y="949" width="0.3" height="15.0" fill="rgb(223,32,13)" rx="2" ry="2" />
<text x="1172.19" y="959.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (415 samples, 0.02%)</title><rect x="1001.6" y="1221" width="0.2" height="15.0" fill="rgb(217,118,6)" rx="2" ry="2" />
<text x="1004.58" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,118 samples, 0.06%)</title><rect x="1009.5" y="1349" width="0.7" height="15.0" fill="rgb(220,2,27)" rx="2" ry="2" />
<text x="1012.54" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (749 samples, 0.04%)</title><rect x="908.5" y="1285" width="0.5" height="15.0" fill="rgb(242,6,20)" rx="2" ry="2" />
<text x="911.53" y="1295.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (340 samples, 0.02%)</title><rect x="874.9" y="1157" width="0.2" height="15.0" fill="rgb(225,82,52)" rx="2" ry="2" />
<text x="877.91" y="1167.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (604 samples, 0.03%)</title><rect x="402.0" y="1829" width="0.4" height="15.0" fill="rgb(247,130,39)" rx="2" ry="2" />
<text x="405.05" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1637" width="0.2" height="15.0" fill="rgb(233,25,52)" rx="2" ry="2" />
<text x="1191.57" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (205 samples, 0.01%)</title><rect x="1129.8" y="1269" width="0.1" height="15.0" fill="rgb(249,176,20)" rx="2" ry="2" />
<text x="1132.77" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (872 samples, 0.05%)</title><rect x="1116.5" y="1381" width="0.5" height="15.0" fill="rgb(244,62,0)" rx="2" ry="2" />
<text x="1119.45" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (214 samples, 0.01%)</title><rect x="1165.0" y="1301" width="0.1" height="15.0" fill="rgb(232,197,52)" rx="2" ry="2" />
<text x="1168.01" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (316 samples, 0.02%)</title><rect x="841.7" y="1173" width="0.2" height="15.0" fill="rgb(235,51,6)" rx="2" ry="2" />
<text x="844.68" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (740 samples, 0.04%)</title><rect x="911.9" y="1141" width="0.5" height="15.0" fill="rgb(225,20,23)" rx="2" ry="2" />
<text x="914.92" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (370 samples, 0.02%)</title><rect x="1062.2" y="1317" width="0.2" height="15.0" fill="rgb(211,123,49)" rx="2" ry="2" />
<text x="1065.18" y="1327.5" ></text>
</g>
<g >
<title>digestif_sha1_update (419 samples, 0.02%)</title><rect x="690.6" y="1381" width="0.3" height="15.0" fill="rgb(251,160,35)" rx="2" ry="2" />
<text x="693.60" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,212 samples, 0.93%)</title><rect x="35.0" y="1973" width="11.0" height="15.0" fill="rgb(226,84,47)" rx="2" ry="2" />
<text x="38.03" y="1983.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (396 samples, 0.02%)</title><rect x="665.1" y="1861" width="0.3" height="15.0" fill="rgb(241,207,53)" rx="2" ry="2" />
<text x="668.14" y="1871.5" ></text>
</g>
<g >
<title>caml_garbage_collection (262 samples, 0.01%)</title><rect x="751.0" y="1221" width="0.1" height="15.0" fill="rgb(217,2,13)" rx="2" ry="2" />
<text x="753.97" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (172 samples, 0.01%)</title><rect x="741.6" y="1141" width="0.1" height="15.0" fill="rgb(207,95,14)" rx="2" ry="2" />
<text x="744.62" y="1151.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (6,981 samples, 0.38%)</title><rect x="818.1" y="1397" width="4.4" height="15.0" fill="rgb(231,165,13)" rx="2" ry="2" />
<text x="821.08" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (2,082 samples, 0.11%)</title><rect x="842.3" y="1253" width="1.3" height="15.0" fill="rgb(225,167,47)" rx="2" ry="2" />
<text x="845.26" y="1263.5" ></text>
</g>
<g >
<title>__lseek64 (722 samples, 0.04%)</title><rect x="761.1" y="1285" width="0.4" height="15.0" fill="rgb(208,223,14)" rx="2" ry="2" />
<text x="764.09" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (174 samples, 0.01%)</title><rect x="1186.5" y="1237" width="0.1" height="15.0" fill="rgb(212,171,46)" rx="2" ry="2" />
<text x="1189.49" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (572 samples, 0.03%)</title><rect x="773.9" y="1189" width="0.3" height="15.0" fill="rgb(214,20,43)" rx="2" ry="2" />
<text x="776.87" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (307 samples, 0.02%)</title><rect x="1169.3" y="885" width="0.2" height="15.0" fill="rgb(253,47,48)" rx="2" ry="2" />
<text x="1172.31" y="895.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (344 samples, 0.02%)</title><rect x="932.2" y="1285" width="0.2" height="15.0" fill="rgb(232,48,17)" rx="2" ry="2" />
<text x="935.17" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="565" width="0.5" height="15.0" fill="rgb(231,199,23)" rx="2" ry="2" />
<text x="1192.48" y="575.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,744 samples, 0.20%)</title><rect x="935.2" y="1221" width="2.4" height="15.0" fill="rgb(240,63,3)" rx="2" ry="2" />
<text x="938.21" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (561 samples, 0.03%)</title><rect x="858.7" y="1221" width="0.4" height="15.0" fill="rgb(239,65,49)" rx="2" ry="2" />
<text x="861.74" y="1231.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (614 samples, 0.03%)</title><rect x="762.2" y="1269" width="0.4" height="15.0" fill="rgb(230,212,36)" rx="2" ry="2" />
<text x="765.16" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (767 samples, 0.04%)</title><rect x="925.9" y="1333" width="0.5" height="15.0" fill="rgb(242,165,31)" rx="2" ry="2" />
<text x="928.88" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="309" width="0.3" height="15.0" fill="rgb(237,5,1)" rx="2" ry="2" />
<text x="1192.12" y="319.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1237" width="0.3" height="15.0" fill="rgb(247,139,20)" rx="2" ry="2" />
<text x="1191.32" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (751 samples, 0.04%)</title><rect x="1091.2" y="1397" width="0.5" height="15.0" fill="rgb(228,151,45)" rx="2" ry="2" />
<text x="1094.18" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (273 samples, 0.01%)</title><rect x="751.2" y="1253" width="0.2" height="15.0" fill="rgb(254,150,41)" rx="2" ry="2" />
<text x="754.22" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1365" width="0.3" height="15.0" fill="rgb(216,108,12)" rx="2" ry="2" />
<text x="1192.12" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="885" width="0.3" height="15.0" fill="rgb(249,183,26)" rx="2" ry="2" />
<text x="1192.12" y="895.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (390 samples, 0.02%)</title><rect x="1188.3" y="245" width="0.3" height="15.0" fill="rgb(241,177,21)" rx="2" ry="2" />
<text x="1191.32" y="255.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (3,233 samples, 0.17%)</title><rect x="899.6" y="1349" width="2.1" height="15.0" fill="rgb(217,195,48)" rx="2" ry="2" />
<text x="902.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (378 samples, 0.02%)</title><rect x="1153.0" y="1397" width="0.3" height="15.0" fill="rgb(220,126,28)" rx="2" ry="2" />
<text x="1156.04" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (359 samples, 0.02%)</title><rect x="1140.5" y="1317" width="0.3" height="15.0" fill="rgb(252,176,49)" rx="2" ry="2" />
<text x="1143.55" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_9390 (179 samples, 0.01%)</title><rect x="715.3" y="1557" width="0.1" height="15.0" fill="rgb(240,19,44)" rx="2" ry="2" />
<text x="718.29" y="1567.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (380 samples, 0.02%)</title><rect x="1100.7" y="1525" width="0.3" height="15.0" fill="rgb(236,170,7)" rx="2" ry="2" />
<text x="1103.73" y="1535.5" ></text>
</g>
<g >
<title>caml_apply5 (3,532 samples, 0.19%)</title><rect x="1148.2" y="1429" width="2.2" height="15.0" fill="rgb(208,92,3)" rx="2" ry="2" />
<text x="1151.17" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (710 samples, 0.04%)</title><rect x="1171.7" y="1253" width="0.5" height="15.0" fill="rgb(210,154,30)" rx="2" ry="2" />
<text x="1174.70" y="1263.5" ></text>
</g>
<g >
<title>caml_apply2 (6,909 samples, 0.37%)</title><rect x="655.8" y="1941" width="4.3" height="15.0" fill="rgb(229,123,13)" rx="2" ry="2" />
<text x="658.76" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (7,174 samples, 0.39%)</title><rect x="231.7" y="1893" width="4.5" height="15.0" fill="rgb(254,119,23)" rx="2" ry="2" />
<text x="234.67" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (946 samples, 0.05%)</title><rect x="691.8" y="1381" width="0.6" height="15.0" fill="rgb(210,203,26)" rx="2" ry="2" />
<text x="694.82" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (388 samples, 0.02%)</title><rect x="912.1" y="1029" width="0.3" height="15.0" fill="rgb(240,19,24)" rx="2" ry="2" />
<text x="915.14" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (493 samples, 0.03%)</title><rect x="1158.4" y="1285" width="0.3" height="15.0" fill="rgb(231,192,5)" rx="2" ry="2" />
<text x="1161.43" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (368 samples, 0.02%)</title><rect x="705.0" y="1077" width="0.3" height="15.0" fill="rgb(227,35,17)" rx="2" ry="2" />
<text x="708.05" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (800 samples, 0.04%)</title><rect x="1184.3" y="1221" width="0.5" height="15.0" fill="rgb(211,213,35)" rx="2" ry="2" />
<text x="1187.31" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (182 samples, 0.01%)</title><rect x="1092.0" y="1413" width="0.1" height="15.0" fill="rgb(245,74,45)" rx="2" ry="2" />
<text x="1095.03" y="1423.5" ></text>
</g>
<g >
<title>caml_string_length (763 samples, 0.04%)</title><rect x="805.5" y="1269" width="0.5" height="15.0" fill="rgb(241,76,40)" rx="2" ry="2" />
<text x="808.52" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (12,048 samples, 0.65%)</title><rect x="989.0" y="1221" width="7.6" height="15.0" fill="rgb(213,203,24)" rx="2" ry="2" />
<text x="991.96" y="1231.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (412 samples, 0.02%)</title><rect x="950.1" y="1173" width="0.3" height="15.0" fill="rgb(209,161,45)" rx="2" ry="2" />
<text x="953.10" y="1183.5" ></text>
</g>
<g >
<title>caml_hash (263 samples, 0.01%)</title><rect x="863.3" y="1221" width="0.2" height="15.0" fill="rgb(205,160,27)" rx="2" ry="2" />
<text x="866.29" y="1231.5" ></text>
</g>
<g >
<title>digestif_sha1_update (224 samples, 0.01%)</title><rect x="1188.9" y="53" width="0.2" height="15.0" fill="rgb(218,34,9)" rx="2" ry="2" />
<text x="1191.92" y="63.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (310 samples, 0.02%)</title><rect x="705.7" y="1429" width="0.2" height="15.0" fill="rgb(254,178,38)" rx="2" ry="2" />
<text x="708.73" y="1439.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (212 samples, 0.01%)</title><rect x="1186.7" y="1253" width="0.1" height="15.0" fill="rgb(251,48,4)" rx="2" ry="2" />
<text x="1189.71" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (199 samples, 0.01%)</title><rect x="732.4" y="1381" width="0.1" height="15.0" fill="rgb(248,5,42)" rx="2" ry="2" />
<text x="735.37" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (172 samples, 0.01%)</title><rect x="1186.7" y="1125" width="0.1" height="15.0" fill="rgb(224,99,26)" rx="2" ry="2" />
<text x="1189.73" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (444 samples, 0.02%)</title><rect x="49.1" y="1861" width="0.2" height="15.0" fill="rgb(254,120,31)" rx="2" ry="2" />
<text x="52.06" y="1871.5" ></text>
</g>
<g >
<title>do_compare_val (357 samples, 0.02%)</title><rect x="1175.8" y="1173" width="0.2" height="15.0" fill="rgb(231,110,45)" rx="2" ry="2" />
<text x="1178.76" y="1183.5" ></text>
</g>
<g >
<title>futex_wake (583 samples, 0.03%)</title><rect x="859.3" y="1237" width="0.4" height="15.0" fill="rgb(243,216,38)" rx="2" ry="2" />
<text x="862.29" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (569 samples, 0.03%)</title><rect x="954.4" y="1189" width="0.4" height="15.0" fill="rgb(241,24,34)" rx="2" ry="2" />
<text x="957.43" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (973 samples, 0.05%)</title><rect x="1127.2" y="1349" width="0.7" height="15.0" fill="rgb(213,50,29)" rx="2" ry="2" />
<text x="1130.25" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (174 samples, 0.01%)</title><rect x="1034.3" y="1285" width="0.1" height="15.0" fill="rgb(207,102,14)" rx="2" ry="2" />
<text x="1037.33" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (290 samples, 0.02%)</title><rect x="1133.9" y="1349" width="0.2" height="15.0" fill="rgb(218,143,0)" rx="2" ry="2" />
<text x="1136.95" y="1359.5" ></text>
</g>
<g >
<title>caml_curry4_2 (314 samples, 0.02%)</title><rect x="674.0" y="1861" width="0.2" height="15.0" fill="rgb(230,106,28)" rx="2" ry="2" />
<text x="676.96" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (201 samples, 0.01%)</title><rect x="1165.0" y="1253" width="0.1" height="15.0" fill="rgb(222,122,8)" rx="2" ry="2" />
<text x="1168.02" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (465 samples, 0.03%)</title><rect x="524.1" y="1845" width="0.3" height="15.0" fill="rgb(250,22,28)" rx="2" ry="2" />
<text x="527.15" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (1,158 samples, 0.06%)</title><rect x="1166.8" y="1221" width="0.7" height="15.0" fill="rgb(231,9,1)" rx="2" ry="2" />
<text x="1169.80" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (161 samples, 0.01%)</title><rect x="1014.3" y="1333" width="0.1" height="15.0" fill="rgb(234,31,26)" rx="2" ry="2" />
<text x="1017.30" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (480 samples, 0.03%)</title><rect x="804.7" y="1333" width="0.3" height="15.0" fill="rgb(242,178,1)" rx="2" ry="2" />
<text x="807.72" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="597" width="0.3" height="15.0" fill="rgb(249,50,19)" rx="2" ry="2" />
<text x="1192.12" y="607.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,235 samples, 0.07%)</title><rect x="894.2" y="1445" width="0.8" height="15.0" fill="rgb(209,178,32)" rx="2" ry="2" />
<text x="897.21" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (1,675 samples, 0.09%)</title><rect x="871.3" y="1189" width="1.1" height="15.0" fill="rgb(235,187,22)" rx="2" ry="2" />
<text x="874.32" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="821" width="0.3" height="15.0" fill="rgb(211,50,48)" rx="2" ry="2" />
<text x="1192.12" y="831.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (99,810 samples, 5.37%)</title><rect x="942.3" y="1381" width="63.3" height="15.0" fill="rgb(215,111,31)" rx="2" ry="2" />
<text x="945.28" y="1391.5" >camlSt..</text>
</g>
<g >
<title>caml_garbage_collection (215 samples, 0.01%)</title><rect x="669.7" y="1797" width="0.1" height="15.0" fill="rgb(225,110,4)" rx="2" ry="2" />
<text x="672.66" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (2,086 samples, 0.11%)</title><rect x="943.5" y="1269" width="1.3" height="15.0" fill="rgb(237,180,13)" rx="2" ry="2" />
<text x="946.47" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (183 samples, 0.01%)</title><rect x="890.1" y="1253" width="0.1" height="15.0" fill="rgb(215,207,12)" rx="2" ry="2" />
<text x="893.08" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="629" width="0.3" height="15.0" fill="rgb(251,42,9)" rx="2" ry="2" />
<text x="1191.32" y="639.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1397" width="0.3" height="15.0" fill="rgb(210,113,34)" rx="2" ry="2" />
<text x="1191.32" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1285" width="0.3" height="15.0" fill="rgb(213,8,29)" rx="2" ry="2" />
<text x="1191.32" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_general_2345 (744,113 samples, 40.01%)</title><rect x="716.2" y="1813" width="472.1" height="15.0" fill="rgb(218,22,11)" rx="2" ry="2" />
<text x="719.18" y="1823.5" >camlLwt__wakeup_general_2345</text>
</g>
<g >
<title>caml_hash (235 samples, 0.01%)</title><rect x="930.6" y="1221" width="0.1" height="15.0" fill="rgb(223,127,9)" rx="2" ry="2" />
<text x="933.59" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1246 (164 samples, 0.01%)</title><rect x="977.4" y="1189" width="0.1" height="15.0" fill="rgb(223,198,17)" rx="2" ry="2" />
<text x="980.36" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,845 samples, 0.10%)</title><rect x="936.4" y="1077" width="1.2" height="15.0" fill="rgb(234,167,18)" rx="2" ry="2" />
<text x="939.41" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (175 samples, 0.01%)</title><rect x="1189.2" y="53" width="0.1" height="15.0" fill="rgb(250,148,24)" rx="2" ry="2" />
<text x="1192.18" y="63.5" ></text>
</g>
<g >
<title>caml_garbage_collection (911 samples, 0.05%)</title><rect x="871.8" y="1141" width="0.6" height="15.0" fill="rgb(247,123,18)" rx="2" ry="2" />
<text x="874.81" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (594 samples, 0.03%)</title><rect x="1169.1" y="997" width="0.4" height="15.0" fill="rgb(210,208,46)" rx="2" ry="2" />
<text x="1172.13" y="1007.5" ></text>
</g>
<g >
<title>futex_wake (576 samples, 0.03%)</title><rect x="761.7" y="1253" width="0.4" height="15.0" fill="rgb(246,42,36)" rx="2" ry="2" />
<text x="764.75" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (235 samples, 0.01%)</title><rect x="654.9" y="1701" width="0.1" height="15.0" fill="rgb(250,30,38)" rx="2" ry="2" />
<text x="657.87" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3681 (275 samples, 0.01%)</title><rect x="1042.7" y="1317" width="0.2" height="15.0" fill="rgb(233,10,44)" rx="2" ry="2" />
<text x="1045.71" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__of_bin_6087 (3,657 samples, 0.20%)</title><rect x="943.1" y="1317" width="2.3" height="15.0" fill="rgb(218,135,12)" rx="2" ry="2" />
<text x="946.06" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,678 samples, 0.25%)</title><rect x="934.6" y="1285" width="3.0" height="15.0" fill="rgb(217,213,0)" rx="2" ry="2" />
<text x="937.62" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (205 samples, 0.01%)</title><rect x="860.9" y="1285" width="0.2" height="15.0" fill="rgb(245,30,54)" rx="2" ry="2" />
<text x="863.95" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (397 samples, 0.02%)</title><rect x="420.3" y="1797" width="0.3" height="15.0" fill="rgb(228,43,31)" rx="2" ry="2" />
<text x="423.32" y="1807.5" ></text>
</g>
<g >
<title>caml_string_length (527 samples, 0.03%)</title><rect x="798.3" y="1429" width="0.3" height="15.0" fill="rgb(214,43,15)" rx="2" ry="2" />
<text x="801.25" y="1439.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (417 samples, 0.02%)</title><rect x="719.7" y="1349" width="0.3" height="15.0" fill="rgb(227,92,1)" rx="2" ry="2" />
<text x="722.69" y="1359.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7216 (287 samples, 0.02%)</title><rect x="1165.8" y="1253" width="0.2" height="15.0" fill="rgb(230,9,40)" rx="2" ry="2" />
<text x="1168.78" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (546 samples, 0.03%)</title><rect x="689.3" y="1621" width="0.3" height="15.0" fill="rgb(230,124,36)" rx="2" ry="2" />
<text x="692.29" y="1631.5" ></text>
</g>
<g >
<title>caml_string_compare (437 samples, 0.02%)</title><rect x="1011.3" y="1285" width="0.3" height="15.0" fill="rgb(206,215,6)" rx="2" ry="2" />
<text x="1014.33" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (508 samples, 0.03%)</title><rect x="949.8" y="1157" width="0.3" height="15.0" fill="rgb(207,116,20)" rx="2" ry="2" />
<text x="952.77" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (203 samples, 0.01%)</title><rect x="1126.1" y="1493" width="0.2" height="15.0" fill="rgb(230,133,32)" rx="2" ry="2" />
<text x="1129.15" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (1,031 samples, 0.06%)</title><rect x="850.6" y="1269" width="0.7" height="15.0" fill="rgb(244,118,13)" rx="2" ry="2" />
<text x="853.65" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (390 samples, 0.02%)</title><rect x="1188.3" y="213" width="0.3" height="15.0" fill="rgb(218,107,49)" rx="2" ry="2" />
<text x="1191.32" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6258 (2,824 samples, 0.15%)</title><rect x="702.7" y="1413" width="1.8" height="15.0" fill="rgb(214,227,30)" rx="2" ry="2" />
<text x="705.68" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15528 (1,307 samples, 0.07%)</title><rect x="908.4" y="1365" width="0.9" height="15.0" fill="rgb(221,49,39)" rx="2" ry="2" />
<text x="911.43" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (182 samples, 0.01%)</title><rect x="1173.8" y="1317" width="0.1" height="15.0" fill="rgb(231,137,18)" rx="2" ry="2" />
<text x="1176.82" y="1327.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.4 (1,333 samples, 0.07%)</title><rect x="47.2" y="2005" width="0.8" height="15.0" fill="rgb(205,168,27)" rx="2" ry="2" />
<text x="50.19" y="2015.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="661" width="0.2" height="15.0" fill="rgb(238,96,28)" rx="2" ry="2" />
<text x="1191.57" y="671.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (159 samples, 0.01%)</title><rect x="1115.8" y="1365" width="0.1" height="15.0" fill="rgb(206,153,49)" rx="2" ry="2" />
<text x="1118.76" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (608 samples, 0.03%)</title><rect x="1009.1" y="1349" width="0.4" height="15.0" fill="rgb(207,23,25)" rx="2" ry="2" />
<text x="1012.08" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,078 samples, 0.06%)</title><rect x="435.0" y="1861" width="0.6" height="15.0" fill="rgb(249,188,53)" rx="2" ry="2" />
<text x="437.95" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (3,776 samples, 0.20%)</title><rect x="1169.9" y="1269" width="2.4" height="15.0" fill="rgb(222,43,24)" rx="2" ry="2" />
<text x="1172.90" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (431 samples, 0.02%)</title><rect x="857.5" y="1317" width="0.3" height="15.0" fill="rgb(239,25,39)" rx="2" ry="2" />
<text x="860.51" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_2002 (242 samples, 0.01%)</title><rect x="949.2" y="1205" width="0.1" height="15.0" fill="rgb(231,140,47)" rx="2" ry="2" />
<text x="952.17" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (2,470 samples, 0.13%)</title><rect x="213.9" y="1877" width="1.5" height="15.0" fill="rgb(253,200,9)" rx="2" ry="2" />
<text x="216.86" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (183 samples, 0.01%)</title><rect x="716.8" y="1509" width="0.2" height="15.0" fill="rgb(235,184,29)" rx="2" ry="2" />
<text x="719.84" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (47,288 samples, 2.54%)</title><rect x="972.9" y="1269" width="30.0" height="15.0" fill="rgb(208,135,16)" rx="2" ry="2" />
<text x="975.91" y="1279.5" >ca..</text>
</g>
<g >
<title>caml_string_equal (320 samples, 0.02%)</title><rect x="1023.6" y="1365" width="0.2" height="15.0" fill="rgb(206,48,24)" rx="2" ry="2" />
<text x="1026.62" y="1375.5" ></text>
</g>
<g >
<title>camlLogs__msg_2680 (198 samples, 0.01%)</title><rect x="1090.1" y="1461" width="0.1" height="15.0" fill="rgb(239,2,5)" rx="2" ry="2" />
<text x="1093.09" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1109" width="0.5" height="15.0" fill="rgb(213,127,24)" rx="2" ry="2" />
<text x="1192.48" y="1119.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (1,091 samples, 0.06%)</title><rect x="908.4" y="1333" width="0.7" height="15.0" fill="rgb(235,41,26)" rx="2" ry="2" />
<text x="911.44" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__length_aux_1002 (204 samples, 0.01%)</title><rect x="806.1" y="1461" width="0.1" height="15.0" fill="rgb(251,222,14)" rx="2" ry="2" />
<text x="809.07" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (234 samples, 0.01%)</title><rect x="875.7" y="1189" width="0.2" height="15.0" fill="rgb(238,111,0)" rx="2" ry="2" />
<text x="878.74" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (5,374 samples, 0.29%)</title><rect x="1068.8" y="1381" width="3.4" height="15.0" fill="rgb(245,142,17)" rx="2" ry="2" />
<text x="1071.76" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (216 samples, 0.01%)</title><rect x="1161.5" y="1365" width="0.1" height="15.0" fill="rgb(229,41,18)" rx="2" ry="2" />
<text x="1164.48" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (207 samples, 0.01%)</title><rect x="869.2" y="1173" width="0.2" height="15.0" fill="rgb(222,74,41)" rx="2" ry="2" />
<text x="872.23" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (810 samples, 0.04%)</title><rect x="704.8" y="1269" width="0.5" height="15.0" fill="rgb(212,216,47)" rx="2" ry="2" />
<text x="707.76" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (248 samples, 0.01%)</title><rect x="820.1" y="1253" width="0.1" height="15.0" fill="rgb(238,102,21)" rx="2" ry="2" />
<text x="823.09" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,975 samples, 0.21%)</title><rect x="586.8" y="1781" width="2.6" height="15.0" fill="rgb(211,17,54)" rx="2" ry="2" />
<text x="589.84" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (273 samples, 0.01%)</title><rect x="732.6" y="1365" width="0.2" height="15.0" fill="rgb(224,215,41)" rx="2" ry="2" />
<text x="735.59" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,255 samples, 0.18%)</title><rect x="1155.2" y="1301" width="2.1" height="15.0" fill="rgb(231,170,31)" rx="2" ry="2" />
<text x="1158.21" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (616 samples, 0.03%)</title><rect x="971.0" y="1173" width="0.4" height="15.0" fill="rgb(222,206,29)" rx="2" ry="2" />
<text x="974.02" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,643 samples, 0.46%)</title><rect x="1119.9" y="1365" width="5.5" height="15.0" fill="rgb(207,63,17)" rx="2" ry="2" />
<text x="1122.87" y="1375.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,986 samples, 0.16%)</title><rect x="721.0" y="1349" width="1.9" height="15.0" fill="rgb(208,129,37)" rx="2" ry="2" />
<text x="723.98" y="1359.5" ></text>
</g>
<g >
<title>compare_val (686 samples, 0.04%)</title><rect x="703.5" y="1349" width="0.5" height="15.0" fill="rgb(208,81,39)" rx="2" ry="2" />
<text x="706.54" y="1359.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (1,038 samples, 0.06%)</title><rect x="294.8" y="1829" width="0.7" height="15.0" fill="rgb(252,120,1)" rx="2" ry="2" />
<text x="297.84" y="1839.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (241 samples, 0.01%)</title><rect x="871.8" y="1093" width="0.2" height="15.0" fill="rgb(235,121,54)" rx="2" ry="2" />
<text x="874.82" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (175 samples, 0.01%)</title><rect x="1117.8" y="1381" width="0.1" height="15.0" fill="rgb(232,188,12)" rx="2" ry="2" />
<text x="1120.77" y="1391.5" ></text>
</g>
<g >
<title>caml_string_length (1,233 samples, 0.07%)</title><rect x="388.2" y="1861" width="0.7" height="15.0" fill="rgb(222,92,42)" rx="2" ry="2" />
<text x="391.16" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_31746 (551 samples, 0.03%)</title><rect x="1164.8" y="1557" width="0.4" height="15.0" fill="rgb(211,86,31)" rx="2" ry="2" />
<text x="1167.82" y="1567.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (2,298 samples, 0.12%)</title><rect x="888.8" y="1269" width="1.4" height="15.0" fill="rgb(222,4,24)" rx="2" ry="2" />
<text x="891.77" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1152 (1,882 samples, 0.10%)</title><rect x="917.7" y="1365" width="1.1" height="15.0" fill="rgb(219,176,1)" rx="2" ry="2" />
<text x="920.65" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,234 samples, 0.07%)</title><rect x="817.2" y="1413" width="0.8" height="15.0" fill="rgb(252,96,12)" rx="2" ry="2" />
<text x="820.23" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (588 samples, 0.03%)</title><rect x="922.0" y="1285" width="0.4" height="15.0" fill="rgb(237,104,25)" rx="2" ry="2" />
<text x="925.05" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="341" width="0.3" height="15.0" fill="rgb(249,118,27)" rx="2" ry="2" />
<text x="1191.82" y="351.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (338 samples, 0.02%)</title><rect x="710.8" y="1349" width="0.2" height="15.0" fill="rgb(245,228,17)" rx="2" ry="2" />
<text x="713.76" y="1359.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (174 samples, 0.01%)</title><rect x="968.1" y="1205" width="0.1" height="15.0" fill="rgb(210,169,14)" rx="2" ry="2" />
<text x="971.07" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (177 samples, 0.01%)</title><rect x="1182.4" y="1221" width="0.1" height="15.0" fill="rgb(243,117,39)" rx="2" ry="2" />
<text x="1185.36" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (583 samples, 0.03%)</title><rect x="667.8" y="1813" width="0.4" height="15.0" fill="rgb(251,13,4)" rx="2" ry="2" />
<text x="670.80" y="1823.5" ></text>
</g>
<g >
<title>caml_string_length (301 samples, 0.02%)</title><rect x="1007.7" y="1349" width="0.2" height="15.0" fill="rgb(205,117,21)" rx="2" ry="2" />
<text x="1010.72" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (46,335 samples, 2.49%)</title><rect x="765.5" y="1301" width="29.4" height="15.0" fill="rgb(231,101,27)" rx="2" ry="2" />
<text x="768.49" y="1311.5" >ca..</text>
</g>
<g >
<title>camlIrmin_layers__fun_70809 (705,195 samples, 37.91%)</title><rect x="716.2" y="1733" width="447.4" height="15.0" fill="rgb(236,31,54)" rx="2" ry="2" />
<text x="719.18" y="1743.5" >camlIrmin_layers__fun_70809</text>
</g>
<g >
<title>mark_slice_darken (613 samples, 0.03%)</title><rect x="670.6" y="1781" width="0.4" height="15.0" fill="rgb(234,55,8)" rx="2" ry="2" />
<text x="673.62" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6315 (1,737 samples, 0.09%)</title><rect x="1174.9" y="1269" width="1.1" height="15.0" fill="rgb(237,165,45)" rx="2" ry="2" />
<text x="1177.92" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1797" width="0.3" height="15.0" fill="rgb(210,65,26)" rx="2" ry="2" />
<text x="1191.82" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (327 samples, 0.02%)</title><rect x="695.7" y="1349" width="0.2" height="15.0" fill="rgb(223,53,31)" rx="2" ry="2" />
<text x="698.72" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (374 samples, 0.02%)</title><rect x="1139.0" y="1285" width="0.2" height="15.0" fill="rgb(242,114,47)" rx="2" ry="2" />
<text x="1141.97" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (242 samples, 0.01%)</title><rect x="959.3" y="1205" width="0.2" height="15.0" fill="rgb(213,117,45)" rx="2" ry="2" />
<text x="962.31" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (379 samples, 0.02%)</title><rect x="1176.8" y="1221" width="0.3" height="15.0" fill="rgb(240,225,34)" rx="2" ry="2" />
<text x="1179.83" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (205 samples, 0.01%)</title><rect x="730.1" y="1317" width="0.2" height="15.0" fill="rgb(248,149,32)" rx="2" ry="2" />
<text x="733.14" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (218 samples, 0.01%)</title><rect x="801.9" y="1381" width="0.2" height="15.0" fill="rgb(245,57,36)" rx="2" ry="2" />
<text x="804.94" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (521 samples, 0.03%)</title><rect x="820.0" y="1285" width="0.3" height="15.0" fill="rgb(240,204,36)" rx="2" ry="2" />
<text x="823.00" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (2,312 samples, 0.12%)</title><rect x="548.3" y="1893" width="1.5" height="15.0" fill="rgb(242,82,34)" rx="2" ry="2" />
<text x="551.34" y="1903.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (946 samples, 0.05%)</title><rect x="779.2" y="1173" width="0.6" height="15.0" fill="rgb(236,123,52)" rx="2" ry="2" />
<text x="782.20" y="1183.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (311 samples, 0.02%)</title><rect x="916.4" y="1301" width="0.2" height="15.0" fill="rgb(209,59,25)" rx="2" ry="2" />
<text x="919.43" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (950 samples, 0.05%)</title><rect x="1167.9" y="1301" width="0.6" height="15.0" fill="rgb(207,142,15)" rx="2" ry="2" />
<text x="1170.89" y="1311.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_24599 (38,858 samples, 2.09%)</title><rect x="1163.6" y="1621" width="24.6" height="15.0" fill="rgb(234,39,29)" rx="2" ry="2" />
<text x="1166.59" y="1631.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1317" width="0.5" height="15.0" fill="rgb(206,3,15)" rx="2" ry="2" />
<text x="1192.48" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_1358 (235 samples, 0.01%)</title><rect x="806.1" y="1477" width="0.1" height="15.0" fill="rgb(250,87,31)" rx="2" ry="2" />
<text x="809.05" y="1487.5" ></text>
</g>
<g >
<title>caml_call_gc (4,225 samples, 0.23%)</title><rect x="229.0" y="1877" width="2.7" height="15.0" fill="rgb(247,83,30)" rx="2" ry="2" />
<text x="231.99" y="1887.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (2,000 samples, 0.11%)</title><rect x="1047.9" y="1301" width="1.3" height="15.0" fill="rgb(213,22,34)" rx="2" ry="2" />
<text x="1050.89" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="437" width="0.5" height="15.0" fill="rgb(206,19,44)" rx="2" ry="2" />
<text x="1192.48" y="447.5" ></text>
</g>
<g >
<title>caml_alloc_string (312 samples, 0.02%)</title><rect x="769.5" y="1173" width="0.2" height="15.0" fill="rgb(223,160,27)" rx="2" ry="2" />
<text x="772.49" y="1183.5" ></text>
</g>
<g >
<title>__libc_pread64 (204 samples, 0.01%)</title><rect x="1186.7" y="1205" width="0.1" height="15.0" fill="rgb(246,227,28)" rx="2" ry="2" />
<text x="1189.71" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (335 samples, 0.02%)</title><rect x="689.4" y="757" width="0.2" height="15.0" fill="rgb(237,220,35)" rx="2" ry="2" />
<text x="692.41" y="767.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (250 samples, 0.01%)</title><rect x="56.0" y="1957" width="0.2" height="15.0" fill="rgb(207,104,50)" rx="2" ry="2" />
<text x="59.00" y="1967.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (995 samples, 0.05%)</title><rect x="1011.0" y="1317" width="0.7" height="15.0" fill="rgb(237,60,37)" rx="2" ry="2" />
<text x="1014.02" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (203 samples, 0.01%)</title><rect x="914.2" y="1269" width="0.1" height="15.0" fill="rgb(208,217,6)" rx="2" ry="2" />
<text x="917.22" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (304 samples, 0.02%)</title><rect x="979.8" y="1157" width="0.2" height="15.0" fill="rgb(221,38,41)" rx="2" ry="2" />
<text x="982.76" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__of_bin_6087 (2,822 samples, 0.15%)</title><rect x="735.6" y="1365" width="1.8" height="15.0" fill="rgb(215,114,13)" rx="2" ry="2" />
<text x="738.62" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (171 samples, 0.01%)</title><rect x="673.1" y="1797" width="0.1" height="15.0" fill="rgb(235,167,13)" rx="2" ry="2" />
<text x="676.08" y="1807.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,311 samples, 0.07%)</title><rect x="270.7" y="1861" width="0.8" height="15.0" fill="rgb(206,185,51)" rx="2" ry="2" />
<text x="273.66" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1541" width="0.3" height="15.0" fill="rgb(208,125,19)" rx="2" ry="2" />
<text x="1191.32" y="1551.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (429 samples, 0.02%)</title><rect x="1105.5" y="1365" width="0.3" height="15.0" fill="rgb(233,67,43)" rx="2" ry="2" />
<text x="1108.51" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (3,216 samples, 0.17%)</title><rect x="421.8" y="1909" width="2.0" height="15.0" fill="rgb(210,38,49)" rx="2" ry="2" />
<text x="424.79" y="1919.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (226 samples, 0.01%)</title><rect x="691.2" y="1429" width="0.2" height="15.0" fill="rgb(232,181,42)" rx="2" ry="2" />
<text x="694.24" y="1439.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (10,144 samples, 0.55%)</title><rect x="1119.3" y="1413" width="6.5" height="15.0" fill="rgb(244,14,1)" rx="2" ry="2" />
<text x="1122.33" y="1423.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (227 samples, 0.01%)</title><rect x="891.0" y="1285" width="0.1" height="15.0" fill="rgb(250,169,25)" rx="2" ry="2" />
<text x="893.97" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (471 samples, 0.03%)</title><rect x="912.1" y="1061" width="0.3" height="15.0" fill="rgb(225,39,34)" rx="2" ry="2" />
<text x="915.09" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (205 samples, 0.01%)</title><rect x="987.9" y="1125" width="0.1" height="15.0" fill="rgb(228,138,46)" rx="2" ry="2" />
<text x="990.87" y="1135.5" ></text>
</g>
<g >
<title>caml_pread (320 samples, 0.02%)</title><rect x="906.5" y="1285" width="0.2" height="15.0" fill="rgb(210,27,29)" rx="2" ry="2" />
<text x="909.46" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (17,643 samples, 0.95%)</title><rect x="388.9" y="1877" width="11.2" height="15.0" fill="rgb(209,10,31)" rx="2" ry="2" />
<text x="391.94" y="1887.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (431 samples, 0.02%)</title><rect x="721.9" y="1205" width="0.3" height="15.0" fill="rgb(219,68,8)" rx="2" ry="2" />
<text x="724.91" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (334 samples, 0.02%)</title><rect x="785.8" y="1141" width="0.2" height="15.0" fill="rgb(240,123,38)" rx="2" ry="2" />
<text x="788.76" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (349 samples, 0.02%)</title><rect x="48.2" y="1909" width="0.3" height="15.0" fill="rgb(244,40,48)" rx="2" ry="2" />
<text x="51.24" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (243 samples, 0.01%)</title><rect x="955.5" y="1141" width="0.2" height="15.0" fill="rgb(238,30,26)" rx="2" ry="2" />
<text x="958.54" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (190 samples, 0.01%)</title><rect x="696.5" y="1349" width="0.1" height="15.0" fill="rgb(241,229,3)" rx="2" ry="2" />
<text x="699.48" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (20,607 samples, 1.11%)</title><rect x="483.4" y="1941" width="13.0" height="15.0" fill="rgb(229,69,14)" rx="2" ry="2" />
<text x="486.37" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (216 samples, 0.01%)</title><rect x="1165.0" y="1365" width="0.1" height="15.0" fill="rgb(238,103,31)" rx="2" ry="2" />
<text x="1168.01" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (161 samples, 0.01%)</title><rect x="705.2" y="997" width="0.1" height="15.0" fill="rgb(215,75,5)" rx="2" ry="2" />
<text x="708.18" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,576 samples, 0.08%)</title><rect x="924.4" y="1221" width="1.0" height="15.0" fill="rgb(228,36,15)" rx="2" ry="2" />
<text x="927.43" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (184 samples, 0.01%)</title><rect x="57.5" y="1829" width="0.1" height="15.0" fill="rgb(244,130,15)" rx="2" ry="2" />
<text x="60.51" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (197 samples, 0.01%)</title><rect x="672.6" y="1813" width="0.1" height="15.0" fill="rgb(229,158,44)" rx="2" ry="2" />
<text x="675.62" y="1823.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (7,471 samples, 0.40%)</title><rect x="584.6" y="1861" width="4.8" height="15.0" fill="rgb(205,10,33)" rx="2" ry="2" />
<text x="587.63" y="1871.5" ></text>
</g>
<g >
<title>mark_slice_darken (242 samples, 0.01%)</title><rect x="676.0" y="1749" width="0.2" height="15.0" fill="rgb(227,11,32)" rx="2" ry="2" />
<text x="679.00" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1381" width="0.3" height="15.0" fill="rgb(232,174,39)" rx="2" ry="2" />
<text x="1192.12" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (422 samples, 0.02%)</title><rect x="911.0" y="1381" width="0.3" height="15.0" fill="rgb(238,151,50)" rx="2" ry="2" />
<text x="914.01" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (43,271 samples, 2.33%)</title><rect x="863.0" y="1285" width="27.4" height="15.0" fill="rgb(250,69,46)" rx="2" ry="2" />
<text x="865.98" y="1295.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (3,508 samples, 0.19%)</title><rect x="866.1" y="1205" width="2.3" height="15.0" fill="rgb(245,98,13)" rx="2" ry="2" />
<text x="869.14" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (375 samples, 0.02%)</title><rect x="933.9" y="1301" width="0.3" height="15.0" fill="rgb(239,52,42)" rx="2" ry="2" />
<text x="936.93" y="1311.5" ></text>
</g>
<g >
<title>caml_pread (424 samples, 0.02%)</title><rect x="1124.7" y="1301" width="0.3" height="15.0" fill="rgb(216,68,39)" rx="2" ry="2" />
<text x="1127.69" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,123 samples, 0.11%)</title><rect x="1003.6" y="1301" width="1.3" height="15.0" fill="rgb(234,14,12)" rx="2" ry="2" />
<text x="1006.58" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (212 samples, 0.01%)</title><rect x="937.4" y="885" width="0.2" height="15.0" fill="rgb(226,16,40)" rx="2" ry="2" />
<text x="940.44" y="895.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (466 samples, 0.03%)</title><rect x="1110.5" y="1349" width="0.3" height="15.0" fill="rgb(248,218,43)" rx="2" ry="2" />
<text x="1113.46" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,213 samples, 0.07%)</title><rect x="1006.4" y="1413" width="0.8" height="15.0" fill="rgb(216,214,11)" rx="2" ry="2" />
<text x="1009.42" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="517" width="0.2" height="15.0" fill="rgb(218,55,37)" rx="2" ry="2" />
<text x="1191.57" y="527.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (291 samples, 0.02%)</title><rect x="934.0" y="1285" width="0.1" height="15.0" fill="rgb(239,145,0)" rx="2" ry="2" />
<text x="936.96" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (350 samples, 0.02%)</title><rect x="778.4" y="1205" width="0.2" height="15.0" fill="rgb(245,71,19)" rx="2" ry="2" />
<text x="781.42" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,342 samples, 0.07%)</title><rect x="826.3" y="1061" width="0.9" height="15.0" fill="rgb(220,190,29)" rx="2" ry="2" />
<text x="829.31" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="933" width="0.3" height="15.0" fill="rgb(227,139,35)" rx="2" ry="2" />
<text x="1191.82" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (753 samples, 0.04%)</title><rect x="1189.5" y="213" width="0.5" height="15.0" fill="rgb(219,92,49)" rx="2" ry="2" />
<text x="1192.48" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (13,409 samples, 0.72%)</title><rect x="933.7" y="1365" width="8.5" height="15.0" fill="rgb(232,190,4)" rx="2" ry="2" />
<text x="936.71" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (10,101 samples, 0.54%)</title><rect x="249.6" y="1893" width="6.4" height="15.0" fill="rgb(208,153,12)" rx="2" ry="2" />
<text x="252.63" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (234 samples, 0.01%)</title><rect x="981.7" y="1141" width="0.1" height="15.0" fill="rgb(240,93,26)" rx="2" ry="2" />
<text x="984.66" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (7,490 samples, 0.40%)</title><rect x="238.9" y="1877" width="4.7" height="15.0" fill="rgb(242,66,16)" rx="2" ry="2" />
<text x="241.88" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (766 samples, 0.04%)</title><rect x="1176.1" y="1189" width="0.5" height="15.0" fill="rgb(252,174,45)" rx="2" ry="2" />
<text x="1179.10" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (200 samples, 0.01%)</title><rect x="1134.0" y="1333" width="0.1" height="15.0" fill="rgb(245,124,7)" rx="2" ry="2" />
<text x="1136.99" y="1343.5" ></text>
</g>
<g >
<title>camlCmdliner__run_2053 (790,455 samples, 42.50%)</title><rect x="686.8" y="1877" width="501.5" height="15.0" fill="rgb(213,129,32)" rx="2" ry="2" />
<text x="689.78" y="1887.5" >camlCmdliner__run_2053</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (3,791 samples, 0.20%)</title><rect x="807.3" y="1477" width="2.4" height="15.0" fill="rgb(233,73,13)" rx="2" ry="2" />
<text x="810.31" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="597" width="0.3" height="15.0" fill="rgb(208,88,28)" rx="2" ry="2" />
<text x="1191.32" y="607.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (290 samples, 0.02%)</title><rect x="729.7" y="1285" width="0.2" height="15.0" fill="rgb(252,180,36)" rx="2" ry="2" />
<text x="732.74" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (225 samples, 0.01%)</title><rect x="929.9" y="1237" width="0.1" height="15.0" fill="rgb(247,16,45)" rx="2" ry="2" />
<text x="932.90" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_entry_5986 (114,207 samples, 6.14%)</title><rect x="725.4" y="1445" width="72.4" height="15.0" fill="rgb(233,84,39)" rx="2" ry="2" />
<text x="728.39" y="1455.5" >camlIrmi..</text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (3,454 samples, 0.19%)</title><rect x="970.1" y="1269" width="2.2" height="15.0" fill="rgb(237,1,37)" rx="2" ry="2" />
<text x="973.08" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (257 samples, 0.01%)</title><rect x="1189.8" y="149" width="0.2" height="15.0" fill="rgb(232,221,2)" rx="2" ry="2" />
<text x="1192.80" y="159.5" ></text>
</g>
<g >
<title>caml_string_length (232 samples, 0.01%)</title><rect x="897.3" y="1349" width="0.1" height="15.0" fill="rgb(225,38,24)" rx="2" ry="2" />
<text x="900.26" y="1359.5" ></text>
</g>
<g >
<title>caml_string_compare (714 samples, 0.04%)</title><rect x="1005.9" y="1397" width="0.4" height="15.0" fill="rgb(249,198,12)" rx="2" ry="2" />
<text x="1008.87" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (317 samples, 0.02%)</title><rect x="720.5" y="1365" width="0.2" height="15.0" fill="rgb(239,113,35)" rx="2" ry="2" />
<text x="723.48" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="2037" width="0.5" height="15.0" fill="rgb(244,166,23)" rx="2" ry="2" />
<text x="1192.48" y="2047.5" ></text>
</g>
<g >
<title>mark_slice (272 samples, 0.01%)</title><rect x="668.0" y="1781" width="0.1" height="15.0" fill="rgb(233,216,11)" rx="2" ry="2" />
<text x="670.96" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (461 samples, 0.02%)</title><rect x="761.8" y="1173" width="0.3" height="15.0" fill="rgb(205,181,38)" rx="2" ry="2" />
<text x="764.82" y="1183.5" ></text>
</g>
<g >
<title>caml_string_equal (2,127 samples, 0.11%)</title><rect x="1019.9" y="1365" width="1.3" height="15.0" fill="rgb(237,103,7)" rx="2" ry="2" />
<text x="1022.86" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_1513 (169 samples, 0.01%)</title><rect x="1147.2" y="1397" width="0.1" height="15.0" fill="rgb(239,181,8)" rx="2" ry="2" />
<text x="1150.18" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (245 samples, 0.01%)</title><rect x="1138.3" y="1269" width="0.2" height="15.0" fill="rgb(210,168,33)" rx="2" ry="2" />
<text x="1141.33" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (442 samples, 0.02%)</title><rect x="707.4" y="1381" width="0.3" height="15.0" fill="rgb(226,47,54)" rx="2" ry="2" />
<text x="710.44" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (461 samples, 0.02%)</title><rect x="694.4" y="1141" width="0.3" height="15.0" fill="rgb(211,191,29)" rx="2" ry="2" />
<text x="697.42" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1861" width="0.2" height="15.0" fill="rgb(223,188,0)" rx="2" ry="2" />
<text x="1191.57" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (220 samples, 0.01%)</title><rect x="859.0" y="1189" width="0.1" height="15.0" fill="rgb(211,66,3)" rx="2" ry="2" />
<text x="861.95" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,547 samples, 0.14%)</title><rect x="763.9" y="1301" width="1.6" height="15.0" fill="rgb(243,74,45)" rx="2" ry="2" />
<text x="766.87" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,092 samples, 0.27%)</title><rect x="563.9" y="1893" width="3.2" height="15.0" fill="rgb(253,229,23)" rx="2" ry="2" />
<text x="566.88" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="837" width="0.3" height="15.0" fill="rgb(208,66,8)" rx="2" ry="2" />
<text x="1191.32" y="847.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (698 samples, 0.04%)</title><rect x="138.8" y="1829" width="0.5" height="15.0" fill="rgb(218,53,30)" rx="2" ry="2" />
<text x="141.82" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__Search__fun_1815 (209 samples, 0.01%)</title><rect x="1051.6" y="1381" width="0.1" height="15.0" fill="rgb(240,199,6)" rx="2" ry="2" />
<text x="1054.59" y="1391.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,844 samples, 0.10%)</title><rect x="1180.8" y="1253" width="1.1" height="15.0" fill="rgb(214,104,2)" rx="2" ry="2" />
<text x="1183.77" y="1263.5" ></text>
</g>
<g >
<title>sha1_do_chunk (415 samples, 0.02%)</title><rect x="1189.5" y="37" width="0.3" height="15.0" fill="rgb(225,91,22)" rx="2" ry="2" />
<text x="1192.50" y="47.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="229" width="0.2" height="15.0" fill="rgb(254,100,36)" rx="2" ry="2" />
<text x="1191.57" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (2,429 samples, 0.13%)</title><rect x="742.4" y="1269" width="1.6" height="15.0" fill="rgb(254,103,13)" rx="2" ry="2" />
<text x="745.44" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (5,037 samples, 0.27%)</title><rect x="417.7" y="1861" width="3.1" height="15.0" fill="rgb(220,3,7)" rx="2" ry="2" />
<text x="420.65" y="1871.5" ></text>
</g>
<g >
<title>mark_slice (4,035 samples, 0.22%)</title><rect x="402.4" y="1845" width="2.6" height="15.0" fill="rgb(240,88,1)" rx="2" ry="2" />
<text x="405.43" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="933" width="0.3" height="15.0" fill="rgb(244,162,33)" rx="2" ry="2" />
<text x="1192.12" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (340 samples, 0.02%)</title><rect x="879.4" y="1205" width="0.2" height="15.0" fill="rgb(233,152,0)" rx="2" ry="2" />
<text x="882.42" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (1,871 samples, 0.10%)</title><rect x="329.7" y="1877" width="1.2" height="15.0" fill="rgb(205,103,33)" rx="2" ry="2" />
<text x="332.68" y="1887.5" ></text>
</g>
<g >
<title>caml_string_compare (374 samples, 0.02%)</title><rect x="1012.9" y="1253" width="0.2" height="15.0" fill="rgb(231,32,54)" rx="2" ry="2" />
<text x="1015.86" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="549" width="0.5" height="15.0" fill="rgb(238,212,44)" rx="2" ry="2" />
<text x="1192.48" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (209 samples, 0.01%)</title><rect x="772.9" y="1189" width="0.2" height="15.0" fill="rgb(250,225,37)" rx="2" ry="2" />
<text x="775.93" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,592 samples, 0.09%)</title><rect x="949.5" y="1221" width="1.0" height="15.0" fill="rgb(233,145,7)" rx="2" ry="2" />
<text x="952.53" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (1,648 samples, 0.09%)</title><rect x="856.9" y="1333" width="1.0" height="15.0" fill="rgb(246,84,10)" rx="2" ry="2" />
<text x="859.89" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (838 samples, 0.05%)</title><rect x="168.4" y="1781" width="0.6" height="15.0" fill="rgb(215,134,14)" rx="2" ry="2" />
<text x="171.45" y="1791.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (247 samples, 0.01%)</title><rect x="707.9" y="1413" width="0.2" height="15.0" fill="rgb(218,10,52)" rx="2" ry="2" />
<text x="710.94" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,283 samples, 0.07%)</title><rect x="693.9" y="1381" width="0.8" height="15.0" fill="rgb(206,120,24)" rx="2" ry="2" />
<text x="696.90" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1365" width="0.3" height="15.0" fill="rgb(215,174,51)" rx="2" ry="2" />
<text x="1191.32" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (605 samples, 0.03%)</title><rect x="666.6" y="1861" width="0.4" height="15.0" fill="rgb(216,146,19)" rx="2" ry="2" />
<text x="669.62" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,170 samples, 0.06%)</title><rect x="1008.0" y="1381" width="0.7" height="15.0" fill="rgb(210,168,26)" rx="2" ry="2" />
<text x="1010.99" y="1391.5" ></text>
</g>
<g >
<title>mark_slice_darken (264 samples, 0.01%)</title><rect x="824.4" y="1109" width="0.1" height="15.0" fill="rgb(239,200,4)" rx="2" ry="2" />
<text x="827.35" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,699 samples, 0.09%)</title><rect x="746.1" y="1269" width="1.0" height="15.0" fill="rgb(208,198,26)" rx="2" ry="2" />
<text x="749.05" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,684 samples, 0.09%)</title><rect x="138.8" y="1845" width="1.1" height="15.0" fill="rgb(249,160,27)" rx="2" ry="2" />
<text x="141.82" y="1855.5" ></text>
</g>
<g >
<title>mark_slice (469 samples, 0.03%)</title><rect x="673.3" y="1781" width="0.3" height="15.0" fill="rgb(228,106,10)" rx="2" ry="2" />
<text x="676.28" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="965" width="0.5" height="15.0" fill="rgb(236,120,28)" rx="2" ry="2" />
<text x="1192.48" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,768 samples, 0.10%)</title><rect x="1151.5" y="1381" width="1.1" height="15.0" fill="rgb(238,53,51)" rx="2" ry="2" />
<text x="1154.50" y="1391.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (199 samples, 0.01%)</title><rect x="881.4" y="1141" width="0.1" height="15.0" fill="rgb(233,144,30)" rx="2" ry="2" />
<text x="884.42" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (1,100 samples, 0.06%)</title><rect x="1102.7" y="1413" width="0.7" height="15.0" fill="rgb(241,73,52)" rx="2" ry="2" />
<text x="1105.74" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (840 samples, 0.05%)</title><rect x="1137.2" y="1301" width="0.5" height="15.0" fill="rgb(226,204,22)" rx="2" ry="2" />
<text x="1140.19" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__fun_4798 (3,837 samples, 0.21%)</title><rect x="1142.7" y="1397" width="2.4" height="15.0" fill="rgb(239,88,8)" rx="2" ry="2" />
<text x="1145.69" y="1407.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (3,917 samples, 0.21%)</title><rect x="527.5" y="1893" width="2.5" height="15.0" fill="rgb(213,134,16)" rx="2" ry="2" />
<text x="530.54" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (3,878 samples, 0.21%)</title><rect x="1092.2" y="1461" width="2.4" height="15.0" fill="rgb(234,138,34)" rx="2" ry="2" />
<text x="1095.17" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,539 samples, 0.08%)</title><rect x="997.8" y="1109" width="1.0" height="15.0" fill="rgb(246,109,53)" rx="2" ry="2" />
<text x="1000.82" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (743 samples, 0.04%)</title><rect x="704.8" y="1237" width="0.5" height="15.0" fill="rgb(246,61,10)" rx="2" ry="2" />
<text x="707.81" y="1247.5" ></text>
</g>
<g >
<title>caml_string_compare (473 samples, 0.03%)</title><rect x="897.9" y="1349" width="0.3" height="15.0" fill="rgb(246,0,24)" rx="2" ry="2" />
<text x="900.85" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (526 samples, 0.03%)</title><rect x="746.1" y="1205" width="0.3" height="15.0" fill="rgb(246,228,41)" rx="2" ry="2" />
<text x="749.11" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (645 samples, 0.03%)</title><rect x="988.1" y="1173" width="0.4" height="15.0" fill="rgb(252,102,20)" rx="2" ry="2" />
<text x="991.12" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (220 samples, 0.01%)</title><rect x="683.1" y="1893" width="0.2" height="15.0" fill="rgb(238,118,40)" rx="2" ry="2" />
<text x="686.12" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_3677 (9,396 samples, 0.51%)</title><rect x="902.3" y="1477" width="6.0" height="15.0" fill="rgb(230,210,52)" rx="2" ry="2" />
<text x="905.33" y="1487.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,352 samples, 0.07%)</title><rect x="467.8" y="1861" width="0.9" height="15.0" fill="rgb(214,192,32)" rx="2" ry="2" />
<text x="470.84" y="1871.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,248 samples, 0.12%)</title><rect x="241.9" y="1797" width="1.5" height="15.0" fill="rgb(232,212,54)" rx="2" ry="2" />
<text x="244.94" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (32,737 samples, 1.76%)</title><rect x="1030.6" y="1365" width="20.8" height="15.0" fill="rgb(242,181,21)" rx="2" ry="2" />
<text x="1033.61" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (168 samples, 0.01%)</title><rect x="820.8" y="1285" width="0.2" height="15.0" fill="rgb(210,71,51)" rx="2" ry="2" />
<text x="823.84" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (1,314 samples, 0.07%)</title><rect x="692.7" y="1445" width="0.9" height="15.0" fill="rgb(211,161,15)" rx="2" ry="2" />
<text x="695.72" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (7,373 samples, 0.40%)</title><rect x="336.9" y="1861" width="4.6" height="15.0" fill="rgb(213,116,36)" rx="2" ry="2" />
<text x="339.87" y="1871.5" ></text>
</g>
<g >
<title>caml_apply2 (1,229 samples, 0.07%)</title><rect x="1050.5" y="1349" width="0.8" height="15.0" fill="rgb(228,55,53)" rx="2" ry="2" />
<text x="1053.49" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (350 samples, 0.02%)</title><rect x="1170.1" y="1205" width="0.2" height="15.0" fill="rgb(250,130,39)" rx="2" ry="2" />
<text x="1173.11" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (374 samples, 0.02%)</title><rect x="780.8" y="1205" width="0.2" height="15.0" fill="rgb(253,156,5)" rx="2" ry="2" />
<text x="783.75" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (637 samples, 0.03%)</title><rect x="752.4" y="1253" width="0.4" height="15.0" fill="rgb(214,75,16)" rx="2" ry="2" />
<text x="755.42" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12101 (505 samples, 0.03%)</title><rect x="810.3" y="1445" width="0.3" height="15.0" fill="rgb(238,140,4)" rx="2" ry="2" />
<text x="813.25" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (232 samples, 0.01%)</title><rect x="1121.4" y="1285" width="0.2" height="15.0" fill="rgb(245,54,9)" rx="2" ry="2" />
<text x="1124.45" y="1295.5" ></text>
</g>
<g >
<title>caml_string_compare (328 samples, 0.02%)</title><rect x="805.1" y="1301" width="0.2" height="15.0" fill="rgb(233,208,38)" rx="2" ry="2" />
<text x="808.11" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (167 samples, 0.01%)</title><rect x="979.6" y="1109" width="0.1" height="15.0" fill="rgb(231,22,29)" rx="2" ry="2" />
<text x="982.55" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (14,133 samples, 0.76%)</title><rect x="835.7" y="1301" width="9.0" height="15.0" fill="rgb(242,162,6)" rx="2" ry="2" />
<text x="838.74" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1877" width="0.3" height="15.0" fill="rgb(240,167,5)" rx="2" ry="2" />
<text x="1192.12" y="1887.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (167 samples, 0.01%)</title><rect x="1166.4" y="1269" width="0.1" height="15.0" fill="rgb(215,44,39)" rx="2" ry="2" />
<text x="1169.41" y="1279.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (529 samples, 0.03%)</title><rect x="48.1" y="1957" width="0.4" height="15.0" fill="rgb(217,133,18)" rx="2" ry="2" />
<text x="51.13" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1285" width="0.5" height="15.0" fill="rgb(214,117,21)" rx="2" ry="2" />
<text x="1192.48" y="1295.5" ></text>
</g>
<g >
<title>sha1_do_chunk (224 samples, 0.01%)</title><rect x="1188.9" y="37" width="0.2" height="15.0" fill="rgb(214,60,12)" rx="2" ry="2" />
<text x="1191.92" y="47.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (99,067 samples, 5.33%)</title><rect x="592.9" y="1845" width="62.9" height="15.0" fill="rgb(253,33,48)" rx="2" ry="2" />
<text x="595.91" y="1855.5" >__pthr..</text>
</g>
<g >
<title>mark_slice_darken (248 samples, 0.01%)</title><rect x="674.0" y="1781" width="0.1" height="15.0" fill="rgb(220,97,16)" rx="2" ry="2" />
<text x="676.99" y="1791.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (754 samples, 0.04%)</title><rect x="1148.5" y="1301" width="0.4" height="15.0" fill="rgb(233,22,54)" rx="2" ry="2" />
<text x="1151.46" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (290 samples, 0.02%)</title><rect x="672.9" y="1813" width="0.2" height="15.0" fill="rgb(219,157,2)" rx="2" ry="2" />
<text x="675.89" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="917" width="0.5" height="15.0" fill="rgb(216,19,36)" rx="2" ry="2" />
<text x="1192.48" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (183 samples, 0.01%)</title><rect x="1173.4" y="1269" width="0.1" height="15.0" fill="rgb(227,178,10)" rx="2" ry="2" />
<text x="1176.36" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (23,385 samples, 1.26%)</title><rect x="1052.1" y="1397" width="14.9" height="15.0" fill="rgb(229,68,2)" rx="2" ry="2" />
<text x="1055.13" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (1,330 samples, 0.07%)</title><rect x="1096.8" y="1461" width="0.8" height="15.0" fill="rgb(207,180,32)" rx="2" ry="2" />
<text x="1099.78" y="1471.5" ></text>
</g>
<g >
<title>camlCommon__fun_13972 (1,325 samples, 0.07%)</title><rect x="1163.8" y="1525" width="0.8" height="15.0" fill="rgb(226,117,39)" rx="2" ry="2" />
<text x="1166.77" y="1535.5" ></text>
</g>
<g >
<title>caml_apply2 (490 samples, 0.03%)</title><rect x="773.1" y="1189" width="0.3" height="15.0" fill="rgb(252,136,37)" rx="2" ry="2" />
<text x="776.06" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (484 samples, 0.03%)</title><rect x="1054.2" y="1317" width="0.3" height="15.0" fill="rgb(240,5,34)" rx="2" ry="2" />
<text x="1057.16" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (515 samples, 0.03%)</title><rect x="705.0" y="1141" width="0.3" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" />
<text x="707.95" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (160 samples, 0.01%)</title><rect x="672.6" y="1797" width="0.1" height="15.0" fill="rgb(213,172,9)" rx="2" ry="2" />
<text x="675.62" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,010 samples, 0.11%)</title><rect x="924.2" y="1317" width="1.2" height="15.0" fill="rgb(234,228,4)" rx="2" ry="2" />
<text x="927.16" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (1,150 samples, 0.06%)</title><rect x="785.3" y="1221" width="0.8" height="15.0" fill="rgb(239,69,26)" rx="2" ry="2" />
<text x="788.33" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_29949 (35,920 samples, 1.93%)</title><rect x="1165.2" y="1445" width="22.8" height="15.0" fill="rgb(240,209,24)" rx="2" ry="2" />
<text x="1168.17" y="1455.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (220 samples, 0.01%)</title><rect x="927.1" y="1349" width="0.2" height="15.0" fill="rgb(218,162,42)" rx="2" ry="2" />
<text x="930.13" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,327 samples, 0.07%)</title><rect x="755.4" y="1317" width="0.9" height="15.0" fill="rgb(250,131,44)" rx="2" ry="2" />
<text x="758.42" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (176 samples, 0.01%)</title><rect x="114.1" y="1845" width="0.2" height="15.0" fill="rgb(253,12,46)" rx="2" ry="2" />
<text x="117.14" y="1855.5" ></text>
</g>
<g >
<title>mark_slice (1,244 samples, 0.07%)</title><rect x="255.2" y="1829" width="0.7" height="15.0" fill="rgb(230,215,41)" rx="2" ry="2" />
<text x="258.16" y="1839.5" ></text>
</g>
<g >
<title>camlThread__fun_1993 (1,812 samples, 0.10%)</title><rect x="21.3" y="2037" width="1.1" height="15.0" fill="rgb(217,210,29)" rx="2" ry="2" />
<text x="24.26" y="2047.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,068 samples, 0.06%)</title><rect x="719.7" y="1365" width="0.7" height="15.0" fill="rgb(243,8,7)" rx="2" ry="2" />
<text x="722.68" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (238 samples, 0.01%)</title><rect x="1109.6" y="1301" width="0.1" height="15.0" fill="rgb(221,42,3)" rx="2" ry="2" />
<text x="1112.55" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,256 samples, 0.07%)</title><rect x="998.0" y="1061" width="0.8" height="15.0" fill="rgb(213,147,34)" rx="2" ry="2" />
<text x="1001.00" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (362 samples, 0.02%)</title><rect x="675.9" y="1829" width="0.3" height="15.0" fill="rgb(229,50,31)" rx="2" ry="2" />
<text x="678.95" y="1839.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (395 samples, 0.02%)</title><rect x="664.4" y="1877" width="0.2" height="15.0" fill="rgb(218,63,49)" rx="2" ry="2" />
<text x="667.37" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (435 samples, 0.02%)</title><rect x="718.3" y="1365" width="0.3" height="15.0" fill="rgb(238,179,21)" rx="2" ry="2" />
<text x="721.31" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="2053" width="0.2" height="15.0" fill="rgb(206,215,0)" rx="2" ry="2" />
<text x="1191.57" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (391 samples, 0.02%)</title><rect x="979.4" y="1141" width="0.3" height="15.0" fill="rgb(245,74,49)" rx="2" ry="2" />
<text x="982.41" y="1151.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (1,041 samples, 0.06%)</title><rect x="48.7" y="1957" width="0.7" height="15.0" fill="rgb(252,216,16)" rx="2" ry="2" />
<text x="51.69" y="1967.5" ></text>
</g>
<g >
<title>caml_garbage_collection (165 samples, 0.01%)</title><rect x="873.5" y="1157" width="0.1" height="15.0" fill="rgb(227,152,45)" rx="2" ry="2" />
<text x="876.47" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (329 samples, 0.02%)</title><rect x="720.5" y="1381" width="0.2" height="15.0" fill="rgb(239,117,47)" rx="2" ry="2" />
<text x="723.48" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="293" width="0.2" height="15.0" fill="rgb(218,4,0)" rx="2" ry="2" />
<text x="1191.57" y="303.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (166 samples, 0.01%)</title><rect x="1166.4" y="1253" width="0.1" height="15.0" fill="rgb(253,71,7)" rx="2" ry="2" />
<text x="1169.41" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (207 samples, 0.01%)</title><rect x="892.1" y="1253" width="0.1" height="15.0" fill="rgb(220,8,15)" rx="2" ry="2" />
<text x="895.09" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (46,421 samples, 2.50%)</title><rect x="216.5" y="1909" width="29.4" height="15.0" fill="rgb(233,82,38)" rx="2" ry="2" />
<text x="219.47" y="1919.5" >ca..</text>
</g>
<g >
<title>sweep_slice (218 samples, 0.01%)</title><rect x="772.7" y="1093" width="0.2" height="15.0" fill="rgb(236,197,17)" rx="2" ry="2" />
<text x="775.71" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (98,443 samples, 5.29%)</title><rect x="1101.1" y="1621" width="62.5" height="15.0" fill="rgb(210,76,54)" rx="2" ry="2" />
<text x="1104.12" y="1631.5" >camlIr..</text>
</g>
<g >
<title>caml_call_gc (169 samples, 0.01%)</title><rect x="689.5" y="149" width="0.1" height="15.0" fill="rgb(246,40,42)" rx="2" ry="2" />
<text x="692.49" y="159.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4794 (280 samples, 0.02%)</title><rect x="1164.8" y="1525" width="0.2" height="15.0" fill="rgb(246,211,42)" rx="2" ry="2" />
<text x="1167.82" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (247 samples, 0.01%)</title><rect x="801.2" y="1397" width="0.1" height="15.0" fill="rgb(252,98,54)" rx="2" ry="2" />
<text x="804.17" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (242 samples, 0.01%)</title><rect x="784.3" y="1205" width="0.2" height="15.0" fill="rgb(205,87,13)" rx="2" ry="2" />
<text x="787.34" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3817 (507 samples, 0.03%)</title><rect x="966.0" y="1285" width="0.3" height="15.0" fill="rgb(250,83,5)" rx="2" ry="2" />
<text x="969.01" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (236 samples, 0.01%)</title><rect x="970.6" y="1157" width="0.2" height="15.0" fill="rgb(212,192,37)" rx="2" ry="2" />
<text x="973.64" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,582 samples, 0.09%)</title><rect x="922.8" y="1301" width="1.0" height="15.0" fill="rgb(249,153,7)" rx="2" ry="2" />
<text x="925.83" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (486 samples, 0.03%)</title><rect x="49.0" y="1877" width="0.3" height="15.0" fill="rgb(220,209,32)" rx="2" ry="2" />
<text x="52.03" y="1887.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (1,262 samples, 0.07%)</title><rect x="1165.6" y="1301" width="0.8" height="15.0" fill="rgb(235,29,19)" rx="2" ry="2" />
<text x="1168.60" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (848 samples, 0.05%)</title><rect x="1100.0" y="1509" width="0.5" height="15.0" fill="rgb(249,125,35)" rx="2" ry="2" />
<text x="1102.96" y="1519.5" ></text>
</g>
<g >
<title>caml_call_gc (435 samples, 0.02%)</title><rect x="1171.9" y="1205" width="0.2" height="15.0" fill="rgb(210,51,49)" rx="2" ry="2" />
<text x="1174.87" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (376 samples, 0.02%)</title><rect x="913.6" y="1269" width="0.2" height="15.0" fill="rgb(215,5,4)" rx="2" ry="2" />
<text x="916.58" y="1279.5" ></text>
</g>
<g >
<title>caml_make_vect (203 samples, 0.01%)</title><rect x="1113.3" y="1509" width="0.1" height="15.0" fill="rgb(217,43,28)" rx="2" ry="2" />
<text x="1116.25" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (168 samples, 0.01%)</title><rect x="709.5" y="1397" width="0.1" height="15.0" fill="rgb(213,118,2)" rx="2" ry="2" />
<text x="712.47" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="277" width="0.5" height="15.0" fill="rgb(233,60,9)" rx="2" ry="2" />
<text x="1192.48" y="287.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (2,346 samples, 0.13%)</title><rect x="787.0" y="1237" width="1.5" height="15.0" fill="rgb(228,158,29)" rx="2" ry="2" />
<text x="789.99" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (383 samples, 0.02%)</title><rect x="844.2" y="1221" width="0.3" height="15.0" fill="rgb(225,169,17)" rx="2" ry="2" />
<text x="847.23" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (6,566 samples, 0.35%)</title><rect x="694.9" y="1493" width="4.1" height="15.0" fill="rgb(214,226,54)" rx="2" ry="2" />
<text x="697.88" y="1503.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (446 samples, 0.02%)</title><rect x="928.0" y="1301" width="0.2" height="15.0" fill="rgb(240,142,11)" rx="2" ry="2" />
<text x="930.95" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (6,026 samples, 0.32%)</title><rect x="1080.3" y="1413" width="3.8" height="15.0" fill="rgb(242,37,44)" rx="2" ry="2" />
<text x="1083.25" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,075 samples, 0.06%)</title><rect x="813.3" y="1477" width="0.7" height="15.0" fill="rgb(217,119,37)" rx="2" ry="2" />
<text x="816.31" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,041 samples, 0.86%)</title><rect x="35.8" y="1925" width="10.2" height="15.0" fill="rgb(219,225,1)" rx="2" ry="2" />
<text x="38.77" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (205 samples, 0.01%)</title><rect x="1145.0" y="1333" width="0.1" height="15.0" fill="rgb(228,29,45)" rx="2" ry="2" />
<text x="1147.95" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (228 samples, 0.01%)</title><rect x="898.3" y="1349" width="0.2" height="15.0" fill="rgb(211,228,32)" rx="2" ry="2" />
<text x="901.35" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (531 samples, 0.03%)</title><rect x="729.7" y="1301" width="0.3" height="15.0" fill="rgb(249,14,27)" rx="2" ry="2" />
<text x="732.70" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (654 samples, 0.04%)</title><rect x="1034.0" y="1317" width="0.4" height="15.0" fill="rgb(205,137,1)" rx="2" ry="2" />
<text x="1037.02" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1861" width="0.3" height="15.0" fill="rgb(220,168,6)" rx="2" ry="2" />
<text x="1191.32" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (626 samples, 0.03%)</title><rect x="905.6" y="1301" width="0.4" height="15.0" fill="rgb(245,170,29)" rx="2" ry="2" />
<text x="908.64" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (304 samples, 0.02%)</title><rect x="1102.9" y="1365" width="0.2" height="15.0" fill="rgb(227,58,15)" rx="2" ry="2" />
<text x="1105.93" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (484 samples, 0.03%)</title><rect x="46.2" y="1957" width="0.3" height="15.0" fill="rgb(205,179,51)" rx="2" ry="2" />
<text x="49.24" y="1967.5" ></text>
</g>
<g >
<title>caml_apply5 (1,425 samples, 0.08%)</title><rect x="693.8" y="1461" width="0.9" height="15.0" fill="rgb(235,69,47)" rx="2" ry="2" />
<text x="696.81" y="1471.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (179 samples, 0.01%)</title><rect x="1160.5" y="1461" width="0.1" height="15.0" fill="rgb(217,206,17)" rx="2" ry="2" />
<text x="1163.53" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__append_buf_fanout_3000 (18,704 samples, 1.01%)</title><rect x="84.0" y="1941" width="11.8" height="15.0" fill="rgb(206,18,4)" rx="2" ry="2" />
<text x="86.97" y="1951.5" ></text>
</g>
<g >
<title>caml_garbage_collection (691 samples, 0.04%)</title><rect x="785.6" y="1173" width="0.5" height="15.0" fill="rgb(250,27,25)" rx="2" ry="2" />
<text x="788.62" y="1183.5" ></text>
</g>
<g >
<title>camlIndex_unix__offset_1716 (213 samples, 0.01%)</title><rect x="95.7" y="1925" width="0.1" height="15.0" fill="rgb(251,1,26)" rx="2" ry="2" />
<text x="98.70" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2835 (203 samples, 0.01%)</title><rect x="763.4" y="1333" width="0.2" height="15.0" fill="rgb(241,165,17)" rx="2" ry="2" />
<text x="766.43" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (428 samples, 0.02%)</title><rect x="431.9" y="1813" width="0.3" height="15.0" fill="rgb(207,124,6)" rx="2" ry="2" />
<text x="434.94" y="1823.5" ></text>
</g>
<g >
<title>caml_call_gc (165 samples, 0.01%)</title><rect x="873.5" y="1173" width="0.1" height="15.0" fill="rgb(216,59,28)" rx="2" ry="2" />
<text x="876.47" y="1183.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (861 samples, 0.05%)</title><rect x="761.6" y="1269" width="0.5" height="15.0" fill="rgb(210,92,47)" rx="2" ry="2" />
<text x="764.56" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (11,084 samples, 0.60%)</title><rect x="363.7" y="1909" width="7.0" height="15.0" fill="rgb(248,37,37)" rx="2" ry="2" />
<text x="366.71" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (421 samples, 0.02%)</title><rect x="694.4" y="1125" width="0.3" height="15.0" fill="rgb(209,56,2)" rx="2" ry="2" />
<text x="697.45" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (588 samples, 0.03%)</title><rect x="983.7" y="1093" width="0.4" height="15.0" fill="rgb(249,204,4)" rx="2" ry="2" />
<text x="986.73" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (710 samples, 0.04%)</title><rect x="672.3" y="1861" width="0.4" height="15.0" fill="rgb(227,146,4)" rx="2" ry="2" />
<text x="675.30" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (202 samples, 0.01%)</title><rect x="1135.0" y="1381" width="0.1" height="15.0" fill="rgb(219,166,44)" rx="2" ry="2" />
<text x="1137.97" y="1391.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (19,249 samples, 1.03%)</title><rect x="976.7" y="1221" width="12.3" height="15.0" fill="rgb(246,170,32)" rx="2" ry="2" />
<text x="979.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_1394 (644 samples, 0.03%)</title><rect x="1099.4" y="1493" width="0.4" height="15.0" fill="rgb(209,26,38)" rx="2" ry="2" />
<text x="1102.43" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,588 samples, 0.25%)</title><rect x="824.3" y="1285" width="2.9" height="15.0" fill="rgb(228,165,18)" rx="2" ry="2" />
<text x="827.26" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (240 samples, 0.01%)</title><rect x="861.7" y="1237" width="0.2" height="15.0" fill="rgb(252,164,7)" rx="2" ry="2" />
<text x="864.72" y="1247.5" ></text>
</g>
<g >
<title>memmove (5,499 samples, 0.30%)</title><rect x="464.2" y="1893" width="3.5" height="15.0" fill="rgb(225,16,22)" rx="2" ry="2" />
<text x="467.19" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (110,849 samples, 5.96%)</title><rect x="823.1" y="1445" width="70.3" height="15.0" fill="rgb(215,10,21)" rx="2" ry="2" />
<text x="826.08" y="1455.5" >camlStd..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (222 samples, 0.01%)</title><rect x="1132.7" y="1189" width="0.1" height="15.0" fill="rgb(233,43,12)" rx="2" ry="2" />
<text x="1135.71" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (6,286 samples, 0.34%)</title><rect x="908.4" y="1413" width="4.0" height="15.0" fill="rgb(212,163,12)" rx="2" ry="2" />
<text x="911.41" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (539 samples, 0.03%)</title><rect x="1151.1" y="1317" width="0.4" height="15.0" fill="rgb(221,212,46)" rx="2" ry="2" />
<text x="1154.11" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (954 samples, 0.05%)</title><rect x="974.8" y="1237" width="0.6" height="15.0" fill="rgb(233,42,19)" rx="2" ry="2" />
<text x="977.83" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (883 samples, 0.05%)</title><rect x="1151.6" y="1349" width="0.5" height="15.0" fill="rgb(235,175,34)" rx="2" ry="2" />
<text x="1154.59" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (272 samples, 0.01%)</title><rect x="672.1" y="1797" width="0.2" height="15.0" fill="rgb(217,56,12)" rx="2" ry="2" />
<text x="675.10" y="1807.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (327 samples, 0.02%)</title><rect x="672.4" y="1829" width="0.2" height="15.0" fill="rgb(229,215,9)" rx="2" ry="2" />
<text x="675.40" y="1839.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (688 samples, 0.04%)</title><rect x="198.5" y="1845" width="0.5" height="15.0" fill="rgb(219,202,8)" rx="2" ry="2" />
<text x="201.52" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,297 samples, 0.61%)</title><rect x="629.1" y="1701" width="7.1" height="15.0" fill="rgb(228,170,14)" rx="2" ry="2" />
<text x="632.08" y="1711.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (340 samples, 0.02%)</title><rect x="1179.5" y="1269" width="0.3" height="15.0" fill="rgb(241,93,27)" rx="2" ry="2" />
<text x="1182.54" y="1279.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,905 samples, 0.10%)</title><rect x="997.6" y="1157" width="1.2" height="15.0" fill="rgb(252,207,0)" rx="2" ry="2" />
<text x="1000.63" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="805" width="0.3" height="15.0" fill="rgb(233,61,26)" rx="2" ry="2" />
<text x="1192.12" y="815.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (3,120 samples, 0.17%)</title><rect x="1155.3" y="1285" width="2.0" height="15.0" fill="rgb(225,9,43)" rx="2" ry="2" />
<text x="1158.29" y="1295.5" ></text>
</g>
<g >
<title>__lseek64 (565 samples, 0.03%)</title><rect x="838.9" y="1205" width="0.3" height="15.0" fill="rgb(224,158,53)" rx="2" ry="2" />
<text x="841.88" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (41,410 samples, 2.23%)</title><rect x="689.7" y="1701" width="26.2" height="15.0" fill="rgb(247,47,11)" rx="2" ry="2" />
<text x="692.68" y="1711.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (588 samples, 0.03%)</title><rect x="198.5" y="1797" width="0.4" height="15.0" fill="rgb(237,172,52)" rx="2" ry="2" />
<text x="201.54" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (414 samples, 0.02%)</title><rect x="1155.4" y="1253" width="0.3" height="15.0" fill="rgb(215,84,28)" rx="2" ry="2" />
<text x="1158.40" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,215 samples, 0.07%)</title><rect x="842.4" y="1205" width="0.7" height="15.0" fill="rgb(206,86,6)" rx="2" ry="2" />
<text x="845.36" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303 samples, 0.02%)</title><rect x="932.2" y="1205" width="0.2" height="15.0" fill="rgb(231,228,6)" rx="2" ry="2" />
<text x="935.18" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1253" width="0.2" height="15.0" fill="rgb(240,169,41)" rx="2" ry="2" />
<text x="1191.57" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (370 samples, 0.02%)</title><rect x="1066.6" y="1349" width="0.3" height="15.0" fill="rgb(222,6,40)" rx="2" ry="2" />
<text x="1069.62" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_7102 (110,876 samples, 5.96%)</title><rect x="823.1" y="1461" width="70.3" height="15.0" fill="rgb(208,3,24)" rx="2" ry="2" />
<text x="826.06" y="1471.5" >camlIrm..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1605" width="0.3" height="15.0" fill="rgb(223,98,36)" rx="2" ry="2" />
<text x="1192.12" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="549" width="0.3" height="15.0" fill="rgb(210,121,27)" rx="2" ry="2" />
<text x="1191.82" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (253 samples, 0.01%)</title><rect x="788.2" y="1221" width="0.2" height="15.0" fill="rgb(234,99,7)" rx="2" ry="2" />
<text x="791.24" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__pop_10623 (5,590 samples, 0.30%)</title><rect x="810.8" y="1525" width="3.5" height="15.0" fill="rgb(236,42,33)" rx="2" ry="2" />
<text x="813.80" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Store__aux_7456 (36,920 samples, 1.98%)</title><rect x="1164.8" y="1573" width="23.4" height="15.0" fill="rgb(235,188,42)" rx="2" ry="2" />
<text x="1167.82" y="1583.5" >c..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (907 samples, 0.05%)</title><rect x="728.8" y="1029" width="0.6" height="15.0" fill="rgb(209,132,43)" rx="2" ry="2" />
<text x="731.83" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (176 samples, 0.01%)</title><rect x="828.4" y="1269" width="0.1" height="15.0" fill="rgb(241,62,0)" rx="2" ry="2" />
<text x="831.41" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (192 samples, 0.01%)</title><rect x="918.9" y="1333" width="0.1" height="15.0" fill="rgb(250,46,23)" rx="2" ry="2" />
<text x="921.92" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (263 samples, 0.01%)</title><rect x="822.2" y="1349" width="0.2" height="15.0" fill="rgb(221,59,41)" rx="2" ry="2" />
<text x="825.21" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (491 samples, 0.03%)</title><rect x="53.2" y="2005" width="0.3" height="15.0" fill="rgb(227,91,5)" rx="2" ry="2" />
<text x="56.20" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (604 samples, 0.03%)</title><rect x="746.1" y="1237" width="0.4" height="15.0" fill="rgb(234,3,29)" rx="2" ry="2" />
<text x="749.09" y="1247.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.4 (3,388 samples, 0.18%)</title><rect x="581.1" y="1893" width="2.1" height="15.0" fill="rgb(236,121,2)" rx="2" ry="2" />
<text x="584.08" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (237 samples, 0.01%)</title><rect x="853.7" y="1301" width="0.2" height="15.0" fill="rgb(220,126,41)" rx="2" ry="2" />
<text x="856.73" y="1311.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,724 samples, 0.15%)</title><rect x="818.7" y="1333" width="1.7" height="15.0" fill="rgb(233,9,17)" rx="2" ry="2" />
<text x="821.71" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (432 samples, 0.02%)</title><rect x="441.7" y="1909" width="0.3" height="15.0" fill="rgb(251,9,37)" rx="2" ry="2" />
<text x="444.72" y="1919.5" ></text>
</g>
<g >
<title>caml_call_gc (171 samples, 0.01%)</title><rect x="766.1" y="1269" width="0.2" height="15.0" fill="rgb(243,29,50)" rx="2" ry="2" />
<text x="769.14" y="1279.5" ></text>
</g>
<g >
<title>sweep_slice (174 samples, 0.01%)</title><rect x="1042.4" y="1253" width="0.1" height="15.0" fill="rgb(230,56,49)" rx="2" ry="2" />
<text x="1045.37" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (613 samples, 0.03%)</title><rect x="748.2" y="1285" width="0.4" height="15.0" fill="rgb(207,29,22)" rx="2" ry="2" />
<text x="751.19" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (296 samples, 0.02%)</title><rect x="20.8" y="1957" width="0.2" height="15.0" fill="rgb(243,214,54)" rx="2" ry="2" />
<text x="23.76" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_1513 (199 samples, 0.01%)</title><rect x="1146.4" y="1413" width="0.2" height="15.0" fill="rgb(244,190,33)" rx="2" ry="2" />
<text x="1149.43" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,771 samples, 0.10%)</title><rect x="877.9" y="1205" width="1.2" height="15.0" fill="rgb(208,18,1)" rx="2" ry="2" />
<text x="880.94" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,174 samples, 0.06%)</title><rect x="911.6" y="1253" width="0.8" height="15.0" fill="rgb(242,208,48)" rx="2" ry="2" />
<text x="914.65" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (837 samples, 0.05%)</title><rect x="952.7" y="1189" width="0.5" height="15.0" fill="rgb(213,92,14)" rx="2" ry="2" />
<text x="955.70" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3101 (243 samples, 0.01%)</title><rect x="669.6" y="1829" width="0.2" height="15.0" fill="rgb(247,135,39)" rx="2" ry="2" />
<text x="672.65" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (254 samples, 0.01%)</title><rect x="1170.1" y="1189" width="0.2" height="15.0" fill="rgb(210,106,9)" rx="2" ry="2" />
<text x="1173.15" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1841 (5,161 samples, 0.28%)</title><rect x="438.4" y="1909" width="3.3" height="15.0" fill="rgb(205,90,44)" rx="2" ry="2" />
<text x="441.44" y="1919.5" ></text>
</g>
<g >
<title>__read_chk (21,355 samples, 1.15%)</title><rect x="32.4" y="2021" width="13.6" height="15.0" fill="rgb(226,27,32)" rx="2" ry="2" />
<text x="35.40" y="2031.5" ></text>
</g>
<g >
<title>caml_string_equal (898 samples, 0.05%)</title><rect x="1081.5" y="1381" width="0.6" height="15.0" fill="rgb(213,103,1)" rx="2" ry="2" />
<text x="1084.54" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="325" width="0.5" height="15.0" fill="rgb(248,129,29)" rx="2" ry="2" />
<text x="1192.48" y="335.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (243 samples, 0.01%)</title><rect x="1055.8" y="1317" width="0.1" height="15.0" fill="rgb(232,93,44)" rx="2" ry="2" />
<text x="1058.77" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,001 samples, 0.11%)</title><rect x="825.9" y="1125" width="1.3" height="15.0" fill="rgb(241,134,0)" rx="2" ry="2" />
<text x="828.89" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (496 samples, 0.03%)</title><rect x="1124.7" y="1349" width="0.3" height="15.0" fill="rgb(213,218,4)" rx="2" ry="2" />
<text x="1127.66" y="1359.5" ></text>
</g>
<g >
<title>__condvar_load_g1_start_relaxed (640 samples, 0.03%)</title><rect x="606.8" y="1829" width="0.4" height="15.0" fill="rgb(209,125,12)" rx="2" ry="2" />
<text x="609.81" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (587 samples, 0.03%)</title><rect x="714.6" y="1509" width="0.4" height="15.0" fill="rgb(224,199,18)" rx="2" ry="2" />
<text x="717.62" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (731 samples, 0.04%)</title><rect x="999.0" y="1221" width="0.4" height="15.0" fill="rgb(222,145,36)" rx="2" ry="2" />
<text x="1001.98" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12331 (2,475 samples, 0.13%)</title><rect x="1113.5" y="1509" width="1.5" height="15.0" fill="rgb(219,144,8)" rx="2" ry="2" />
<text x="1116.46" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (6,588 samples, 0.35%)</title><rect x="897.5" y="1397" width="4.2" height="15.0" fill="rgb(233,202,18)" rx="2" ry="2" />
<text x="900.48" y="1407.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (219 samples, 0.01%)</title><rect x="523.1" y="1909" width="0.2" height="15.0" fill="rgb(219,72,19)" rx="2" ry="2" />
<text x="526.12" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (229 samples, 0.01%)</title><rect x="989.2" y="1205" width="0.1" height="15.0" fill="rgb(251,59,49)" rx="2" ry="2" />
<text x="992.16" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (355 samples, 0.02%)</title><rect x="777.3" y="1173" width="0.2" height="15.0" fill="rgb(238,97,3)" rx="2" ry="2" />
<text x="780.29" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (444 samples, 0.02%)</title><rect x="1169.2" y="933" width="0.3" height="15.0" fill="rgb(223,57,35)" rx="2" ry="2" />
<text x="1172.22" y="943.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1909" width="0.3" height="15.0" fill="rgb(237,173,3)" rx="2" ry="2" />
<text x="1192.12" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (972 samples, 0.05%)</title><rect x="764.6" y="1237" width="0.6" height="15.0" fill="rgb(246,87,53)" rx="2" ry="2" />
<text x="767.59" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (251 samples, 0.01%)</title><rect x="1009.7" y="1333" width="0.2" height="15.0" fill="rgb(207,188,45)" rx="2" ry="2" />
<text x="1012.70" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (11,793 samples, 0.63%)</title><rect x="925.8" y="1397" width="7.4" height="15.0" fill="rgb(232,91,24)" rx="2" ry="2" />
<text x="928.75" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (173 samples, 0.01%)</title><rect x="745.8" y="1157" width="0.1" height="15.0" fill="rgb(250,149,31)" rx="2" ry="2" />
<text x="748.75" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (313 samples, 0.02%)</title><rect x="889.4" y="1253" width="0.1" height="15.0" fill="rgb(217,206,16)" rx="2" ry="2" />
<text x="892.35" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,904 samples, 0.10%)</title><rect x="1116.3" y="1413" width="1.2" height="15.0" fill="rgb(217,97,29)" rx="2" ry="2" />
<text x="1119.32" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1461" width="0.3" height="15.0" fill="rgb(225,75,26)" rx="2" ry="2" />
<text x="1191.32" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (216 samples, 0.01%)</title><rect x="1109.7" y="1317" width="0.1" height="15.0" fill="rgb(207,100,28)" rx="2" ry="2" />
<text x="1112.70" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (440 samples, 0.02%)</title><rect x="1124.7" y="1333" width="0.3" height="15.0" fill="rgb(208,126,3)" rx="2" ry="2" />
<text x="1127.68" y="1343.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,695 samples, 0.09%)</title><rect x="1165.6" y="1333" width="1.1" height="15.0" fill="rgb(244,114,9)" rx="2" ry="2" />
<text x="1168.58" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (158 samples, 0.01%)</title><rect x="1055.9" y="1333" width="0.1" height="15.0" fill="rgb(249,117,47)" rx="2" ry="2" />
<text x="1058.92" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (211 samples, 0.01%)</title><rect x="817.4" y="1253" width="0.2" height="15.0" fill="rgb(249,104,19)" rx="2" ry="2" />
<text x="820.43" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (461 samples, 0.02%)</title><rect x="940.9" y="1205" width="0.3" height="15.0" fill="rgb(240,125,28)" rx="2" ry="2" />
<text x="943.94" y="1215.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (223 samples, 0.01%)</title><rect x="691.2" y="1413" width="0.2" height="15.0" fill="rgb(243,80,43)" rx="2" ry="2" />
<text x="694.24" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (165 samples, 0.01%)</title><rect x="985.2" y="1141" width="0.1" height="15.0" fill="rgb(226,218,52)" rx="2" ry="2" />
<text x="988.17" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,685 samples, 0.14%)</title><rect x="660.9" y="1909" width="1.7" height="15.0" fill="rgb(230,91,22)" rx="2" ry="2" />
<text x="663.87" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (751 samples, 0.04%)</title><rect x="1079.3" y="1381" width="0.4" height="15.0" fill="rgb(207,225,13)" rx="2" ry="2" />
<text x="1082.27" y="1391.5" ></text>
</g>
<g >
<title>caml_blit_bytes (216 samples, 0.01%)</title><rect x="867.0" y="1141" width="0.1" height="15.0" fill="rgb(245,30,42)" rx="2" ry="2" />
<text x="869.96" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (199 samples, 0.01%)</title><rect x="783.1" y="1189" width="0.1" height="15.0" fill="rgb(236,38,37)" rx="2" ry="2" />
<text x="786.10" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (4,662 samples, 0.25%)</title><rect x="115.4" y="1893" width="3.0" height="15.0" fill="rgb(246,149,24)" rx="2" ry="2" />
<text x="118.42" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (2,319 samples, 0.12%)</title><rect x="1039.3" y="1333" width="1.5" height="15.0" fill="rgb(219,56,42)" rx="2" ry="2" />
<text x="1042.30" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,027 samples, 0.06%)</title><rect x="690.6" y="1429" width="0.6" height="15.0" fill="rgb(232,114,30)" rx="2" ry="2" />
<text x="693.56" y="1439.5" ></text>
</g>
<g >
<title>unix_lseek_64 (3,098 samples, 0.17%)</title><rect x="761.0" y="1301" width="2.0" height="15.0" fill="rgb(224,113,7)" rx="2" ry="2" />
<text x="764.04" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (530 samples, 0.03%)</title><rect x="930.5" y="1253" width="0.3" height="15.0" fill="rgb(207,93,54)" rx="2" ry="2" />
<text x="933.49" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (8,331 samples, 0.45%)</title><rect x="258.3" y="1893" width="5.3" height="15.0" fill="rgb(231,25,10)" rx="2" ry="2" />
<text x="261.33" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1621" width="0.3" height="15.0" fill="rgb(246,139,39)" rx="2" ry="2" />
<text x="1192.12" y="1631.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (4,537 samples, 0.24%)</title><rect x="1011.0" y="1333" width="2.8" height="15.0" fill="rgb(214,134,4)" rx="2" ry="2" />
<text x="1013.97" y="1343.5" ></text>
</g>
<g >
<title>__lseek64 (747 samples, 0.04%)</title><rect x="858.6" y="1269" width="0.5" height="15.0" fill="rgb(238,211,2)" rx="2" ry="2" />
<text x="861.62" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1445" width="0.3" height="15.0" fill="rgb(230,23,19)" rx="2" ry="2" />
<text x="1192.12" y="1455.5" ></text>
</g>
<g >
<title>camlLwt__underlying_2001 (182 samples, 0.01%)</title><rect x="1094.8" y="1493" width="0.1" height="15.0" fill="rgb(207,16,27)" rx="2" ry="2" />
<text x="1097.83" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (393 samples, 0.02%)</title><rect x="974.0" y="1173" width="0.2" height="15.0" fill="rgb(234,229,7)" rx="2" ry="2" />
<text x="976.97" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (623 samples, 0.03%)</title><rect x="718.3" y="1381" width="0.4" height="15.0" fill="rgb(241,13,15)" rx="2" ry="2" />
<text x="721.28" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1152 (13,393 samples, 0.72%)</title><rect x="666.4" y="1893" width="8.5" height="15.0" fill="rgb(226,175,11)" rx="2" ry="2" />
<text x="669.39" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,236 samples, 0.07%)</title><rect x="790.3" y="1109" width="0.8" height="15.0" fill="rgb(243,59,9)" rx="2" ry="2" />
<text x="793.28" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,716 samples, 0.15%)</title><rect x="169.3" y="1797" width="1.7" height="15.0" fill="rgb(246,41,52)" rx="2" ry="2" />
<text x="172.26" y="1807.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (5,635 samples, 0.30%)</title><rect x="1183.6" y="1333" width="3.6" height="15.0" fill="rgb(238,129,34)" rx="2" ry="2" />
<text x="1186.59" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1253" width="0.3" height="15.0" fill="rgb(206,40,27)" rx="2" ry="2" />
<text x="1192.12" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,642 samples, 0.14%)</title><rect x="709.9" y="1397" width="1.7" height="15.0" fill="rgb(254,195,37)" rx="2" ry="2" />
<text x="712.94" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (376 samples, 0.02%)</title><rect x="862.3" y="1205" width="0.2" height="15.0" fill="rgb(242,216,7)" rx="2" ry="2" />
<text x="865.30" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (216 samples, 0.01%)</title><rect x="882.2" y="1173" width="0.2" height="15.0" fill="rgb(231,48,21)" rx="2" ry="2" />
<text x="885.22" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,035 samples, 0.06%)</title><rect x="936.9" y="997" width="0.7" height="15.0" fill="rgb(222,184,31)" rx="2" ry="2" />
<text x="939.92" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3770 (189 samples, 0.01%)</title><rect x="1060.1" y="1349" width="0.1" height="15.0" fill="rgb(241,82,50)" rx="2" ry="2" />
<text x="1063.10" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (206 samples, 0.01%)</title><rect x="781.6" y="1253" width="0.2" height="15.0" fill="rgb(223,105,51)" rx="2" ry="2" />
<text x="784.63" y="1263.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (225 samples, 0.01%)</title><rect x="417.7" y="1829" width="0.1" height="15.0" fill="rgb(209,223,18)" rx="2" ry="2" />
<text x="420.65" y="1839.5" ></text>
</g>
<g >
<title>mark_slice (379 samples, 0.02%)</title><rect x="673.6" y="1813" width="0.2" height="15.0" fill="rgb(219,157,22)" rx="2" ry="2" />
<text x="676.60" y="1823.5" ></text>
</g>
<g >
<title>caml_call_gc (169 samples, 0.01%)</title><rect x="876.8" y="1173" width="0.1" height="15.0" fill="rgb(213,67,20)" rx="2" ry="2" />
<text x="879.76" y="1183.5" ></text>
</g>
<g >
<title>caml_create_bytes (213 samples, 0.01%)</title><rect x="530.3" y="1925" width="0.1" height="15.0" fill="rgb(240,127,20)" rx="2" ry="2" />
<text x="533.26" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (5,021 samples, 0.27%)</title><rect x="824.0" y="1317" width="3.2" height="15.0" fill="rgb(243,195,54)" rx="2" ry="2" />
<text x="826.99" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (425 samples, 0.02%)</title><rect x="969.2" y="1285" width="0.3" height="15.0" fill="rgb(210,0,18)" rx="2" ry="2" />
<text x="972.22" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (1,026 samples, 0.06%)</title><rect x="993.7" y="1173" width="0.7" height="15.0" fill="rgb(242,16,42)" rx="2" ry="2" />
<text x="996.74" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (178 samples, 0.01%)</title><rect x="721.7" y="1285" width="0.1" height="15.0" fill="rgb(232,128,20)" rx="2" ry="2" />
<text x="724.71" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (658 samples, 0.04%)</title><rect x="670.6" y="1797" width="0.4" height="15.0" fill="rgb(220,49,44)" rx="2" ry="2" />
<text x="673.59" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_2484 (825 samples, 0.04%)</title><rect x="887.7" y="1253" width="0.5" height="15.0" fill="rgb(251,115,36)" rx="2" ry="2" />
<text x="890.68" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (429 samples, 0.02%)</title><rect x="689.4" y="1205" width="0.2" height="15.0" fill="rgb(239,203,48)" rx="2" ry="2" />
<text x="692.36" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (7,768 samples, 0.42%)</title><rect x="709.1" y="1525" width="5.0" height="15.0" fill="rgb(225,38,24)" rx="2" ry="2" />
<text x="712.15" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (344 samples, 0.02%)</title><rect x="1170.8" y="1205" width="0.2" height="15.0" fill="rgb(232,193,28)" rx="2" ry="2" />
<text x="1173.79" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (428 samples, 0.02%)</title><rect x="912.1" y="1045" width="0.3" height="15.0" fill="rgb(247,85,44)" rx="2" ry="2" />
<text x="915.12" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,475 samples, 0.08%)</title><rect x="997.9" y="1093" width="0.9" height="15.0" fill="rgb(211,158,44)" rx="2" ry="2" />
<text x="1000.86" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (985 samples, 0.05%)</title><rect x="270.7" y="1829" width="0.6" height="15.0" fill="rgb(244,155,29)" rx="2" ry="2" />
<text x="273.72" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (468 samples, 0.03%)</title><rect x="689.3" y="1333" width="0.3" height="15.0" fill="rgb(234,69,12)" rx="2" ry="2" />
<text x="692.34" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,274 samples, 0.12%)</title><rect x="324.5" y="1861" width="1.4" height="15.0" fill="rgb(209,203,8)" rx="2" ry="2" />
<text x="327.46" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (656 samples, 0.04%)</title><rect x="20.6" y="2037" width="0.4" height="15.0" fill="rgb(247,185,6)" rx="2" ry="2" />
<text x="23.61" y="2047.5" ></text>
</g>
<g >
<title>futex_wake (497 samples, 0.03%)</title><rect x="46.2" y="1989" width="0.3" height="15.0" fill="rgb(208,115,11)" rx="2" ry="2" />
<text x="49.23" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (276 samples, 0.01%)</title><rect x="723.0" y="1301" width="0.1" height="15.0" fill="rgb(242,177,22)" rx="2" ry="2" />
<text x="725.97" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (351 samples, 0.02%)</title><rect x="1171.3" y="1221" width="0.2" height="15.0" fill="rgb(228,22,28)" rx="2" ry="2" />
<text x="1174.28" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (1,013 samples, 0.05%)</title><rect x="769.1" y="1189" width="0.7" height="15.0" fill="rgb(238,68,6)" rx="2" ry="2" />
<text x="772.12" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (225 samples, 0.01%)</title><rect x="1110.0" y="1301" width="0.1" height="15.0" fill="rgb(208,115,4)" rx="2" ry="2" />
<text x="1113.00" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (1,879 samples, 0.10%)</title><rect x="1166.7" y="1301" width="1.2" height="15.0" fill="rgb(226,118,52)" rx="2" ry="2" />
<text x="1169.69" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (166 samples, 0.01%)</title><rect x="675.7" y="1797" width="0.1" height="15.0" fill="rgb(239,15,1)" rx="2" ry="2" />
<text x="678.70" y="1807.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (188 samples, 0.01%)</title><rect x="168.3" y="1829" width="0.1" height="15.0" fill="rgb(236,50,39)" rx="2" ry="2" />
<text x="171.33" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (380 samples, 0.02%)</title><rect x="867.8" y="1173" width="0.2" height="15.0" fill="rgb(221,19,47)" rx="2" ry="2" />
<text x="870.76" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="949" width="0.5" height="15.0" fill="rgb(213,175,47)" rx="2" ry="2" />
<text x="1192.48" y="959.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (873 samples, 0.05%)</title><rect x="859.1" y="1253" width="0.6" height="15.0" fill="rgb(227,149,19)" rx="2" ry="2" />
<text x="862.11" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (247 samples, 0.01%)</title><rect x="977.5" y="1189" width="0.1" height="15.0" fill="rgb(224,17,38)" rx="2" ry="2" />
<text x="980.46" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,489 samples, 0.08%)</title><rect x="255.1" y="1861" width="0.9" height="15.0" fill="rgb(251,97,17)" rx="2" ry="2" />
<text x="258.09" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (252 samples, 0.01%)</title><rect x="1156.3" y="1237" width="0.1" height="15.0" fill="rgb(205,193,51)" rx="2" ry="2" />
<text x="1159.26" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (325 samples, 0.02%)</title><rect x="732.6" y="1381" width="0.2" height="15.0" fill="rgb(243,207,1)" rx="2" ry="2" />
<text x="735.57" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (456 samples, 0.02%)</title><rect x="1131.2" y="1317" width="0.3" height="15.0" fill="rgb(213,3,22)" rx="2" ry="2" />
<text x="1134.20" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (198 samples, 0.01%)</title><rect x="1168.2" y="1205" width="0.1" height="15.0" fill="rgb(251,76,53)" rx="2" ry="2" />
<text x="1171.21" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (287 samples, 0.02%)</title><rect x="961.6" y="1157" width="0.2" height="15.0" fill="rgb(218,132,36)" rx="2" ry="2" />
<text x="964.65" y="1167.5" ></text>
</g>
<g >
<title>caml_mutex_lock (290 samples, 0.02%)</title><rect x="795.4" y="1317" width="0.2" height="15.0" fill="rgb(224,184,32)" rx="2" ry="2" />
<text x="798.37" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (381 samples, 0.02%)</title><rect x="215.2" y="1829" width="0.2" height="15.0" fill="rgb(238,229,35)" rx="2" ry="2" />
<text x="218.18" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (8,146 samples, 0.44%)</title><rect x="1018.9" y="1413" width="5.1" height="15.0" fill="rgb(226,180,38)" rx="2" ry="2" />
<text x="1021.87" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (6,267 samples, 0.34%)</title><rect x="694.9" y="1461" width="4.0" height="15.0" fill="rgb(218,223,9)" rx="2" ry="2" />
<text x="697.94" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (184 samples, 0.01%)</title><rect x="700.9" y="1493" width="0.1" height="15.0" fill="rgb(245,189,46)" rx="2" ry="2" />
<text x="703.90" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (501 samples, 0.03%)</title><rect x="859.3" y="1173" width="0.4" height="15.0" fill="rgb(246,32,41)" rx="2" ry="2" />
<text x="862.34" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_1983 (266 samples, 0.01%)</title><rect x="703.0" y="1381" width="0.1" height="15.0" fill="rgb(206,8,37)" rx="2" ry="2" />
<text x="705.96" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1653" width="0.5" height="15.0" fill="rgb(207,117,17)" rx="2" ry="2" />
<text x="1192.48" y="1663.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (11,110 samples, 0.60%)</title><rect x="1127.2" y="1397" width="7.0" height="15.0" fill="rgb(215,46,40)" rx="2" ry="2" />
<text x="1130.18" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1733" width="0.3" height="15.0" fill="rgb(237,162,39)" rx="2" ry="2" />
<text x="1191.82" y="1743.5" ></text>
</g>
<g >
<title>all (1,859,972 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(226,78,38)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__already_in_dst_3660 (13,617 samples, 0.73%)</title><rect x="1126.8" y="1477" width="8.7" height="15.0" fill="rgb(212,190,48)" rx="2" ry="2" />
<text x="1129.82" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (219 samples, 0.01%)</title><rect x="1057.9" y="1333" width="0.1" height="15.0" fill="rgb(216,73,4)" rx="2" ry="2" />
<text x="1060.90" y="1343.5" ></text>
</g>
<g >
<title>caml_compare (650 samples, 0.03%)</title><rect x="999.0" y="1205" width="0.4" height="15.0" fill="rgb(232,117,36)" rx="2" ry="2" />
<text x="1002.03" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1246 (327 samples, 0.02%)</title><rect x="1052.4" y="1381" width="0.2" height="15.0" fill="rgb(210,76,42)" rx="2" ry="2" />
<text x="1055.40" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (255 samples, 0.01%)</title><rect x="941.5" y="1221" width="0.2" height="15.0" fill="rgb(243,210,6)" rx="2" ry="2" />
<text x="944.49" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (434 samples, 0.02%)</title><rect x="1176.8" y="1269" width="0.3" height="15.0" fill="rgb(214,205,36)" rx="2" ry="2" />
<text x="1179.83" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (195 samples, 0.01%)</title><rect x="899.8" y="1317" width="0.2" height="15.0" fill="rgb(208,95,16)" rx="2" ry="2" />
<text x="902.85" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (263 samples, 0.01%)</title><rect x="1153.6" y="1221" width="0.1" height="15.0" fill="rgb(218,100,40)" rx="2" ry="2" />
<text x="1156.55" y="1231.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (188 samples, 0.01%)</title><rect x="20.6" y="1973" width="0.1" height="15.0" fill="rgb(220,138,32)" rx="2" ry="2" />
<text x="23.61" y="1983.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (430 samples, 0.02%)</title><rect x="1119.4" y="1349" width="0.3" height="15.0" fill="rgb(243,194,34)" rx="2" ry="2" />
<text x="1122.40" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__fun_4485 (222 samples, 0.01%)</title><rect x="795.1" y="1317" width="0.2" height="15.0" fill="rgb(223,183,46)" rx="2" ry="2" />
<text x="798.12" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (871 samples, 0.05%)</title><rect x="794.0" y="1269" width="0.6" height="15.0" fill="rgb(222,44,3)" rx="2" ry="2" />
<text x="797.01" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,402 samples, 0.13%)</title><rect x="825.6" y="1157" width="1.6" height="15.0" fill="rgb(216,3,0)" rx="2" ry="2" />
<text x="828.64" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (256 samples, 0.01%)</title><rect x="884.0" y="1189" width="0.2" height="15.0" fill="rgb(240,62,1)" rx="2" ry="2" />
<text x="887.01" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (2,171 samples, 0.12%)</title><rect x="885.4" y="1237" width="1.4" height="15.0" fill="rgb(243,149,29)" rx="2" ry="2" />
<text x="888.44" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,732 samples, 1.33%)</title><rect x="620.6" y="1749" width="15.6" height="15.0" fill="rgb(233,23,52)" rx="2" ry="2" />
<text x="623.55" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (248 samples, 0.01%)</title><rect x="928.1" y="1221" width="0.1" height="15.0" fill="rgb(207,107,6)" rx="2" ry="2" />
<text x="931.08" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="949" width="0.3" height="15.0" fill="rgb(238,28,25)" rx="2" ry="2" />
<text x="1191.82" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (330 samples, 0.02%)</title><rect x="912.2" y="1013" width="0.2" height="15.0" fill="rgb(227,139,27)" rx="2" ry="2" />
<text x="915.18" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__do_bucket_2069 (16,921 samples, 0.91%)</title><rect x="665.9" y="1909" width="10.7" height="15.0" fill="rgb(228,12,29)" rx="2" ry="2" />
<text x="668.87" y="1919.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (3,758 samples, 0.20%)</title><rect x="1120.1" y="1349" width="2.4" height="15.0" fill="rgb(242,134,52)" rx="2" ry="2" />
<text x="1123.14" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (582 samples, 0.03%)</title><rect x="1116.5" y="1365" width="0.4" height="15.0" fill="rgb(222,86,21)" rx="2" ry="2" />
<text x="1119.52" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (7,024 samples, 0.38%)</title><rect x="720.4" y="1429" width="4.5" height="15.0" fill="rgb(231,227,38)" rx="2" ry="2" />
<text x="723.41" y="1439.5" ></text>
</g>
<g >
<title>caml_curry4_1_app (2,265 samples, 0.12%)</title><rect x="183.0" y="1909" width="1.4" height="15.0" fill="rgb(213,171,42)" rx="2" ry="2" />
<text x="185.96" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (813 samples, 0.04%)</title><rect x="691.8" y="1365" width="0.5" height="15.0" fill="rgb(221,196,19)" rx="2" ry="2" />
<text x="694.83" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="689.4" y="1013" width="0.2" height="15.0" fill="rgb(220,64,39)" rx="2" ry="2" />
<text x="692.38" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (316 samples, 0.02%)</title><rect x="1104.1" y="1413" width="0.2" height="15.0" fill="rgb(253,8,6)" rx="2" ry="2" />
<text x="1107.14" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,442 samples, 0.13%)</title><rect x="1108.7" y="1365" width="1.6" height="15.0" fill="rgb(216,187,29)" rx="2" ry="2" />
<text x="1111.74" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (262 samples, 0.01%)</title><rect x="880.9" y="1189" width="0.1" height="15.0" fill="rgb(240,161,53)" rx="2" ry="2" />
<text x="883.88" y="1199.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (379 samples, 0.02%)</title><rect x="1188.8" y="133" width="0.3" height="15.0" fill="rgb(240,191,8)" rx="2" ry="2" />
<text x="1191.83" y="143.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (281 samples, 0.02%)</title><rect x="1176.4" y="917" width="0.2" height="15.0" fill="rgb(242,19,11)" rx="2" ry="2" />
<text x="1179.41" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="533" width="0.5" height="15.0" fill="rgb(205,152,51)" rx="2" ry="2" />
<text x="1192.48" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (226 samples, 0.01%)</title><rect x="816.5" y="1381" width="0.1" height="15.0" fill="rgb(244,12,44)" rx="2" ry="2" />
<text x="819.48" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1541" width="0.5" height="15.0" fill="rgb(237,129,25)" rx="2" ry="2" />
<text x="1192.48" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,749 samples, 0.09%)</title><rect x="885.6" y="1157" width="1.1" height="15.0" fill="rgb(232,190,19)" rx="2" ry="2" />
<text x="888.61" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (755 samples, 0.04%)</title><rect x="1095.1" y="1493" width="0.5" height="15.0" fill="rgb(246,19,54)" rx="2" ry="2" />
<text x="1098.14" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (836 samples, 0.04%)</title><rect x="1130.2" y="1301" width="0.6" height="15.0" fill="rgb(211,73,37)" rx="2" ry="2" />
<text x="1133.23" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_1396 (453 samples, 0.02%)</title><rect x="1098.5" y="1493" width="0.3" height="15.0" fill="rgb(236,138,41)" rx="2" ry="2" />
<text x="1101.53" y="1503.5" ></text>
</g>
<g >
<title>caml_string_compare (191 samples, 0.01%)</title><rect x="1012.6" y="1253" width="0.1" height="15.0" fill="rgb(253,189,3)" rx="2" ry="2" />
<text x="1015.62" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_1432 (206 samples, 0.01%)</title><rect x="858.3" y="1301" width="0.1" height="15.0" fill="rgb(222,222,7)" rx="2" ry="2" />
<text x="861.25" y="1311.5" ></text>
</g>
<g >
<title>invert_pointer_at (200 samples, 0.01%)</title><rect x="1185.4" y="1125" width="0.2" height="15.0" fill="rgb(240,77,53)" rx="2" ry="2" />
<text x="1188.43" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (2,400 samples, 0.13%)</title><rect x="877.7" y="1221" width="1.6" height="15.0" fill="rgb(242,72,27)" rx="2" ry="2" />
<text x="880.73" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="549" width="0.3" height="15.0" fill="rgb(212,50,47)" rx="2" ry="2" />
<text x="1192.12" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15266 (307 samples, 0.02%)</title><rect x="691.5" y="1477" width="0.2" height="15.0" fill="rgb(242,28,37)" rx="2" ry="2" />
<text x="694.46" y="1487.5" ></text>
</g>
<g >
<title>memmove@plt (634 samples, 0.03%)</title><rect x="467.3" y="1877" width="0.4" height="15.0" fill="rgb(228,177,39)" rx="2" ry="2" />
<text x="470.28" y="1887.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7218 (171 samples, 0.01%)</title><rect x="1166.4" y="1285" width="0.1" height="15.0" fill="rgb(209,158,12)" rx="2" ry="2" />
<text x="1169.41" y="1295.5" ></text>
</g>
<g >
<title>caml_string_compare (469 samples, 0.03%)</title><rect x="1010.6" y="1301" width="0.3" height="15.0" fill="rgb(228,187,49)" rx="2" ry="2" />
<text x="1013.61" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1493 (381 samples, 0.02%)</title><rect x="918.1" y="1333" width="0.3" height="15.0" fill="rgb(237,27,33)" rx="2" ry="2" />
<text x="921.14" y="1343.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (281 samples, 0.02%)</title><rect x="53.5" y="2021" width="0.2" height="15.0" fill="rgb(232,76,47)" rx="2" ry="2" />
<text x="56.51" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="853" width="0.3" height="15.0" fill="rgb(231,151,29)" rx="2" ry="2" />
<text x="1191.32" y="863.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (2,056 samples, 0.11%)</title><rect x="744.7" y="1269" width="1.4" height="15.0" fill="rgb(249,199,2)" rx="2" ry="2" />
<text x="747.75" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,043 samples, 0.06%)</title><rect x="1165.7" y="1285" width="0.7" height="15.0" fill="rgb(252,105,29)" rx="2" ry="2" />
<text x="1168.74" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (3,643 samples, 0.20%)</title><rect x="418.3" y="1829" width="2.3" height="15.0" fill="rgb(239,112,26)" rx="2" ry="2" />
<text x="421.26" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (17,328 samples, 0.93%)</title><rect x="977.6" y="1189" width="11.0" height="15.0" fill="rgb(221,217,50)" rx="2" ry="2" />
<text x="980.62" y="1199.5" ></text>
</g>
<g >
<title>camlLwt_sequence__loop_1061 (744,113 samples, 40.01%)</title><rect x="716.2" y="1829" width="472.1" height="15.0" fill="rgb(211,220,35)" rx="2" ry="2" />
<text x="719.18" y="1839.5" >camlLwt_sequence__loop_1061</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (299 samples, 0.02%)</title><rect x="906.1" y="1301" width="0.1" height="15.0" fill="rgb(224,97,23)" rx="2" ry="2" />
<text x="909.05" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,852 samples, 0.10%)</title><rect x="828.1" y="1285" width="1.2" height="15.0" fill="rgb(219,100,47)" rx="2" ry="2" />
<text x="831.13" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_layers__aux_22819 (306 samples, 0.02%)</title><rect x="1160.9" y="1461" width="0.2" height="15.0" fill="rgb(222,163,39)" rx="2" ry="2" />
<text x="1163.90" y="1471.5" ></text>
</g>
<g >
<title>caml_tuplify2 (257 samples, 0.01%)</title><rect x="985.5" y="1157" width="0.1" height="15.0" fill="rgb(244,89,42)" rx="2" ry="2" />
<text x="988.46" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__fun_4456 (180 samples, 0.01%)</title><rect x="1023.9" y="1381" width="0.1" height="15.0" fill="rgb(226,154,1)" rx="2" ry="2" />
<text x="1026.93" y="1391.5" ></text>
</g>
<g >
<title>caml_tuplify3 (532 samples, 0.03%)</title><rect x="674.5" y="1877" width="0.4" height="15.0" fill="rgb(232,71,18)" rx="2" ry="2" />
<text x="677.55" y="1887.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,573 samples, 0.14%)</title><rect x="695.5" y="1413" width="1.6" height="15.0" fill="rgb(244,210,9)" rx="2" ry="2" />
<text x="698.50" y="1423.5" ></text>
</g>
<g >
<title>caml_apply2 (10,923 samples, 0.59%)</title><rect x="263.6" y="1893" width="6.9" height="15.0" fill="rgb(226,163,51)" rx="2" ry="2" />
<text x="266.62" y="1903.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (314 samples, 0.02%)</title><rect x="1053.6" y="1333" width="0.2" height="15.0" fill="rgb(237,116,31)" rx="2" ry="2" />
<text x="1056.57" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (662 samples, 0.04%)</title><rect x="1040.3" y="1317" width="0.4" height="15.0" fill="rgb(224,102,39)" rx="2" ry="2" />
<text x="1043.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (1,513 samples, 0.08%)</title><rect x="911.4" y="1349" width="1.0" height="15.0" fill="rgb(242,88,20)" rx="2" ry="2" />
<text x="914.43" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (290 samples, 0.02%)</title><rect x="705.7" y="1413" width="0.2" height="15.0" fill="rgb(239,100,6)" rx="2" ry="2" />
<text x="708.74" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1125" width="0.2" height="15.0" fill="rgb(243,75,19)" rx="2" ry="2" />
<text x="1191.57" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1989" width="0.3" height="15.0" fill="rgb(229,134,26)" rx="2" ry="2" />
<text x="1192.12" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (237 samples, 0.01%)</title><rect x="1120.5" y="1269" width="0.1" height="15.0" fill="rgb(223,190,12)" rx="2" ry="2" />
<text x="1123.49" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,015 samples, 0.05%)</title><rect x="704.6" y="1333" width="0.7" height="15.0" fill="rgb(212,24,18)" rx="2" ry="2" />
<text x="707.63" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="901" width="0.5" height="15.0" fill="rgb(236,197,41)" rx="2" ry="2" />
<text x="1192.48" y="911.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (169 samples, 0.01%)</title><rect x="1156.9" y="1221" width="0.2" height="15.0" fill="rgb(208,33,28)" rx="2" ry="2" />
<text x="1159.94" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (6,798 samples, 0.37%)</title><rect x="748.6" y="1285" width="4.3" height="15.0" fill="rgb(242,116,0)" rx="2" ry="2" />
<text x="751.58" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="501" width="0.5" height="15.0" fill="rgb(225,135,44)" rx="2" ry="2" />
<text x="1192.48" y="511.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (717 samples, 0.04%)</title><rect x="417.8" y="1829" width="0.5" height="15.0" fill="rgb(235,116,41)" rx="2" ry="2" />
<text x="420.80" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (524 samples, 0.03%)</title><rect x="897.8" y="1365" width="0.4" height="15.0" fill="rgb(229,25,39)" rx="2" ry="2" />
<text x="900.82" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11501 (98,443 samples, 5.29%)</title><rect x="1101.1" y="1573" width="62.5" height="15.0" fill="rgb(217,18,21)" rx="2" ry="2" />
<text x="1104.12" y="1583.5" >camlIr..</text>
</g>
<g >
<title>caml_compact_heap_maybe (413 samples, 0.02%)</title><rect x="421.9" y="1861" width="0.3" height="15.0" fill="rgb(217,177,13)" rx="2" ry="2" />
<text x="424.90" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="821" width="0.5" height="15.0" fill="rgb(206,6,16)" rx="2" ry="2" />
<text x="1192.48" y="831.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="405" width="0.3" height="15.0" fill="rgb(228,184,1)" rx="2" ry="2" />
<text x="1192.12" y="415.5" ></text>
</g>
<g >
<title>sweep_slice (320 samples, 0.02%)</title><rect x="468.7" y="1877" width="0.2" height="15.0" fill="rgb(217,202,48)" rx="2" ry="2" />
<text x="471.70" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__fun_4733 (2,403 samples, 0.13%)</title><rect x="674.9" y="1893" width="1.5" height="15.0" fill="rgb(215,5,26)" rx="2" ry="2" />
<text x="677.88" y="1903.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (381 samples, 0.02%)</title><rect x="682.6" y="1893" width="0.2" height="15.0" fill="rgb(234,166,14)" rx="2" ry="2" />
<text x="685.56" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (326 samples, 0.02%)</title><rect x="916.4" y="1317" width="0.2" height="15.0" fill="rgb(224,93,1)" rx="2" ry="2" />
<text x="919.43" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,779 samples, 0.10%)</title><rect x="138.8" y="1861" width="1.1" height="15.0" fill="rgb(246,82,24)" rx="2" ry="2" />
<text x="141.76" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="725" width="0.3" height="15.0" fill="rgb(209,192,27)" rx="2" ry="2" />
<text x="1191.82" y="735.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (309 samples, 0.02%)</title><rect x="846.9" y="1221" width="0.2" height="15.0" fill="rgb(223,56,52)" rx="2" ry="2" />
<text x="849.88" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,497 samples, 0.13%)</title><rect x="973.1" y="1253" width="1.5" height="15.0" fill="rgb(211,157,43)" rx="2" ry="2" />
<text x="976.06" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (266 samples, 0.01%)</title><rect x="685.1" y="1893" width="0.2" height="15.0" fill="rgb(231,192,0)" rx="2" ry="2" />
<text x="688.13" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (480 samples, 0.03%)</title><rect x="1176.3" y="1029" width="0.3" height="15.0" fill="rgb(232,68,3)" rx="2" ry="2" />
<text x="1179.28" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (347 samples, 0.02%)</title><rect x="1156.8" y="1253" width="0.3" height="15.0" fill="rgb(236,128,32)" rx="2" ry="2" />
<text x="1159.83" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (238 samples, 0.01%)</title><rect x="1156.1" y="1253" width="0.1" height="15.0" fill="rgb(225,75,34)" rx="2" ry="2" />
<text x="1159.06" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (794 samples, 0.04%)</title><rect x="798.1" y="1461" width="0.5" height="15.0" fill="rgb(209,8,53)" rx="2" ry="2" />
<text x="801.08" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,450 samples, 0.08%)</title><rect x="915.3" y="1333" width="0.9" height="15.0" fill="rgb(254,209,10)" rx="2" ry="2" />
<text x="918.33" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (237 samples, 0.01%)</title><rect x="888.4" y="1253" width="0.1" height="15.0" fill="rgb(226,116,25)" rx="2" ry="2" />
<text x="891.38" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1669" width="0.5" height="15.0" fill="rgb(240,149,35)" rx="2" ry="2" />
<text x="1192.48" y="1679.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,138 samples, 0.06%)</title><rect x="690.5" y="1445" width="0.7" height="15.0" fill="rgb(234,49,50)" rx="2" ry="2" />
<text x="693.50" y="1455.5" ></text>
</g>
<g >
<title>caml_hash (1,007 samples, 0.05%)</title><rect x="787.5" y="1205" width="0.6" height="15.0" fill="rgb(223,132,28)" rx="2" ry="2" />
<text x="790.45" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (161 samples, 0.01%)</title><rect x="1109.3" y="1317" width="0.1" height="15.0" fill="rgb(212,110,9)" rx="2" ry="2" />
<text x="1112.33" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (569 samples, 0.03%)</title><rect x="980.3" y="1157" width="0.3" height="15.0" fill="rgb(224,64,37)" rx="2" ry="2" />
<text x="983.27" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (11,368 samples, 0.61%)</title><rect x="845.3" y="1301" width="7.2" height="15.0" fill="rgb(252,182,41)" rx="2" ry="2" />
<text x="848.32" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (212 samples, 0.01%)</title><rect x="1068.4" y="1381" width="0.1" height="15.0" fill="rgb(236,65,27)" rx="2" ry="2" />
<text x="1071.36" y="1391.5" ></text>
</g>
<g >
<title>caml_modify (2,858 samples, 0.15%)</title><rect x="468.9" y="1925" width="1.8" height="15.0" fill="rgb(205,91,52)" rx="2" ry="2" />
<text x="471.91" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (167 samples, 0.01%)</title><rect x="1105.7" y="1333" width="0.1" height="15.0" fill="rgb(210,169,23)" rx="2" ry="2" />
<text x="1108.65" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__copy_3667 (199 samples, 0.01%)</title><rect x="716.8" y="1541" width="0.2" height="15.0" fill="rgb(250,24,31)" rx="2" ry="2" />
<text x="719.83" y="1551.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1269" width="0.3" height="15.0" fill="rgb(248,42,14)" rx="2" ry="2" />
<text x="1191.32" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (2,409 samples, 0.13%)</title><rect x="1067.0" y="1397" width="1.5" height="15.0" fill="rgb(242,212,22)" rx="2" ry="2" />
<text x="1069.99" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (239 samples, 0.01%)</title><rect x="672.1" y="1781" width="0.2" height="15.0" fill="rgb(229,85,1)" rx="2" ry="2" />
<text x="675.13" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_30442 (329 samples, 0.02%)</title><rect x="716.2" y="1669" width="0.2" height="15.0" fill="rgb(211,65,47)" rx="2" ry="2" />
<text x="719.18" y="1679.5" ></text>
</g>
<g >
<title>caml_hash (191 samples, 0.01%)</title><rect x="1162.7" y="1461" width="0.1" height="15.0" fill="rgb(219,172,33)" rx="2" ry="2" />
<text x="1165.71" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (387 samples, 0.02%)</title><rect x="847.4" y="1237" width="0.2" height="15.0" fill="rgb(253,21,35)" rx="2" ry="2" />
<text x="850.38" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (400 samples, 0.02%)</title><rect x="850.1" y="1205" width="0.3" height="15.0" fill="rgb(246,53,9)" rx="2" ry="2" />
<text x="853.11" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (1,515 samples, 0.08%)</title><rect x="911.4" y="1365" width="1.0" height="15.0" fill="rgb(247,118,43)" rx="2" ry="2" />
<text x="914.43" y="1375.5" ></text>
</g>
<g >
<title>caml_string_compare (491 samples, 0.03%)</title><rect x="802.1" y="1365" width="0.3" height="15.0" fill="rgb(250,105,41)" rx="2" ry="2" />
<text x="805.11" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,824 samples, 0.15%)</title><rect x="565.3" y="1845" width="1.8" height="15.0" fill="rgb(250,152,1)" rx="2" ry="2" />
<text x="568.32" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (922 samples, 0.05%)</title><rect x="937.7" y="1285" width="0.5" height="15.0" fill="rgb(218,186,34)" rx="2" ry="2" />
<text x="940.65" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (2,398 samples, 0.13%)</title><rect x="1012.3" y="1301" width="1.5" height="15.0" fill="rgb(245,127,7)" rx="2" ry="2" />
<text x="1015.32" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1301" width="0.3" height="15.0" fill="rgb(211,207,14)" rx="2" ry="2" />
<text x="1191.32" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (363 samples, 0.02%)</title><rect x="1124.7" y="1269" width="0.2" height="15.0" fill="rgb(235,22,53)" rx="2" ry="2" />
<text x="1127.72" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (259 samples, 0.01%)</title><rect x="1016.1" y="1493" width="0.2" height="15.0" fill="rgb(210,82,22)" rx="2" ry="2" />
<text x="1019.14" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (183 samples, 0.01%)</title><rect x="716.8" y="1493" width="0.2" height="15.0" fill="rgb(229,198,20)" rx="2" ry="2" />
<text x="719.84" y="1503.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (168 samples, 0.01%)</title><rect x="689.5" y="101" width="0.1" height="15.0" fill="rgb(209,163,36)" rx="2" ry="2" />
<text x="692.49" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,511 samples, 0.51%)</title><rect x="39.9" y="1893" width="6.1" height="15.0" fill="rgb(228,26,36)" rx="2" ry="2" />
<text x="42.92" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="997" width="0.3" height="15.0" fill="rgb(219,157,42)" rx="2" ry="2" />
<text x="1191.32" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,485 samples, 0.51%)</title><rect x="573.4" y="1845" width="6.0" height="15.0" fill="rgb(228,19,1)" rx="2" ry="2" />
<text x="576.41" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (4,410 samples, 0.24%)</title><rect x="1180.3" y="1301" width="2.8" height="15.0" fill="rgb(221,218,11)" rx="2" ry="2" />
<text x="1183.33" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (341 samples, 0.02%)</title><rect x="733.9" y="1269" width="0.2" height="15.0" fill="rgb(223,116,22)" rx="2" ry="2" />
<text x="736.92" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (435 samples, 0.02%)</title><rect x="46.3" y="1941" width="0.2" height="15.0" fill="rgb(228,185,4)" rx="2" ry="2" />
<text x="49.27" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (353 samples, 0.02%)</title><rect x="927.4" y="1381" width="0.3" height="15.0" fill="rgb(215,127,6)" rx="2" ry="2" />
<text x="930.44" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (215 samples, 0.01%)</title><rect x="1161.5" y="1333" width="0.1" height="15.0" fill="rgb(248,83,44)" rx="2" ry="2" />
<text x="1164.48" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (727 samples, 0.04%)</title><rect x="993.3" y="1125" width="0.4" height="15.0" fill="rgb(243,33,44)" rx="2" ry="2" />
<text x="996.28" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (359 samples, 0.02%)</title><rect x="702.4" y="1333" width="0.2" height="15.0" fill="rgb(238,199,31)" rx="2" ry="2" />
<text x="705.39" y="1343.5" ></text>
</g>
<g >
<title>unix_lseek_64 (382 samples, 0.02%)</title><rect x="815.4" y="1301" width="0.2" height="15.0" fill="rgb(214,148,15)" rx="2" ry="2" />
<text x="818.37" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3755 (298 samples, 0.02%)</title><rect x="1039.8" y="1317" width="0.1" height="15.0" fill="rgb(252,191,49)" rx="2" ry="2" />
<text x="1042.76" y="1327.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.4 (215 samples, 0.01%)</title><rect x="860.1" y="1253" width="0.1" height="15.0" fill="rgb(240,128,26)" rx="2" ry="2" />
<text x="863.05" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1029" width="0.3" height="15.0" fill="rgb(216,210,6)" rx="2" ry="2" />
<text x="1192.12" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3524 (182 samples, 0.01%)</title><rect x="1063.0" y="1365" width="0.1" height="15.0" fill="rgb(232,29,45)" rx="2" ry="2" />
<text x="1066.00" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,422 samples, 0.08%)</title><rect x="1153.3" y="1365" width="0.9" height="15.0" fill="rgb(247,64,37)" rx="2" ry="2" />
<text x="1156.34" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (229 samples, 0.01%)</title><rect x="1171.7" y="1221" width="0.2" height="15.0" fill="rgb(218,89,19)" rx="2" ry="2" />
<text x="1174.72" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (378 samples, 0.02%)</title><rect x="694.5" y="1109" width="0.2" height="15.0" fill="rgb(235,55,42)" rx="2" ry="2" />
<text x="697.47" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (166 samples, 0.01%)</title><rect x="1182.6" y="1173" width="0.1" height="15.0" fill="rgb(224,216,26)" rx="2" ry="2" />
<text x="1185.59" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (320 samples, 0.02%)</title><rect x="1116.6" y="1349" width="0.2" height="15.0" fill="rgb(240,199,44)" rx="2" ry="2" />
<text x="1119.64" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15528 (1,550 samples, 0.08%)</title><rect x="692.7" y="1477" width="1.0" height="15.0" fill="rgb(225,73,26)" rx="2" ry="2" />
<text x="695.69" y="1487.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (433 samples, 0.02%)</title><rect x="972.0" y="1237" width="0.3" height="15.0" fill="rgb(244,199,54)" rx="2" ry="2" />
<text x="974.99" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (688 samples, 0.04%)</title><rect x="733.8" y="1285" width="0.4" height="15.0" fill="rgb(206,10,26)" rx="2" ry="2" />
<text x="736.81" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (184 samples, 0.01%)</title><rect x="888.7" y="1237" width="0.1" height="15.0" fill="rgb(221,214,51)" rx="2" ry="2" />
<text x="891.65" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (475 samples, 0.03%)</title><rect x="869.1" y="1189" width="0.3" height="15.0" fill="rgb(211,18,44)" rx="2" ry="2" />
<text x="872.11" y="1199.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (207 samples, 0.01%)</title><rect x="336.9" y="1829" width="0.1" height="15.0" fill="rgb(242,207,14)" rx="2" ry="2" />
<text x="339.87" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (354 samples, 0.02%)</title><rect x="710.1" y="1349" width="0.2" height="15.0" fill="rgb(208,127,48)" rx="2" ry="2" />
<text x="713.10" y="1359.5" ></text>
</g>
<g >
<title>unix_lseek_64 (212 samples, 0.01%)</title><rect x="940.4" y="1285" width="0.1" height="15.0" fill="rgb(242,200,11)" rx="2" ry="2" />
<text x="943.37" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (97,620 samples, 5.25%)</title><rect x="735.4" y="1381" width="61.9" height="15.0" fill="rgb(226,110,51)" rx="2" ry="2" />
<text x="738.38" y="1391.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (1,092 samples, 0.06%)</title><rect x="952.6" y="1221" width="0.7" height="15.0" fill="rgb(240,134,15)" rx="2" ry="2" />
<text x="955.60" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (248 samples, 0.01%)</title><rect x="746.7" y="1221" width="0.1" height="15.0" fill="rgb(253,20,33)" rx="2" ry="2" />
<text x="749.68" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6315 (3,498 samples, 0.19%)</title><rect x="702.2" y="1429" width="2.3" height="15.0" fill="rgb(250,207,14)" rx="2" ry="2" />
<text x="705.25" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (529 samples, 0.03%)</title><rect x="717.4" y="1349" width="0.4" height="15.0" fill="rgb(211,151,2)" rx="2" ry="2" />
<text x="720.44" y="1359.5" ></text>
</g>
<g >
<title>caml_curry3 (163 samples, 0.01%)</title><rect x="667.2" y="1861" width="0.1" height="15.0" fill="rgb(240,221,48)" rx="2" ry="2" />
<text x="670.21" y="1871.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (478 samples, 0.03%)</title><rect x="721.9" y="1221" width="0.3" height="15.0" fill="rgb(252,12,36)" rx="2" ry="2" />
<text x="724.91" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (11,768 samples, 0.63%)</title><rect x="1006.4" y="1429" width="7.4" height="15.0" fill="rgb(205,141,0)" rx="2" ry="2" />
<text x="1009.38" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1525" width="0.3" height="15.0" fill="rgb(243,16,25)" rx="2" ry="2" />
<text x="1191.82" y="1535.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (2,569 samples, 0.14%)</title><rect x="789.6" y="1269" width="1.7" height="15.0" fill="rgb(240,89,35)" rx="2" ry="2" />
<text x="792.63" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (178 samples, 0.01%)</title><rect x="702.5" y="1301" width="0.1" height="15.0" fill="rgb(227,58,48)" rx="2" ry="2" />
<text x="705.49" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (266 samples, 0.01%)</title><rect x="847.6" y="1237" width="0.2" height="15.0" fill="rgb(217,68,45)" rx="2" ry="2" />
<text x="850.63" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (179 samples, 0.01%)</title><rect x="984.0" y="1077" width="0.1" height="15.0" fill="rgb(246,98,14)" rx="2" ry="2" />
<text x="986.99" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (2,444 samples, 0.13%)</title><rect x="793.1" y="1285" width="1.6" height="15.0" fill="rgb(208,188,23)" rx="2" ry="2" />
<text x="796.15" y="1295.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (382 samples, 0.02%)</title><rect x="668.2" y="1781" width="0.3" height="15.0" fill="rgb(218,13,3)" rx="2" ry="2" />
<text x="671.22" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (395 samples, 0.02%)</title><rect x="1182.1" y="1221" width="0.3" height="15.0" fill="rgb(245,38,32)" rx="2" ry="2" />
<text x="1185.10" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (550 samples, 0.03%)</title><rect x="709.3" y="1445" width="0.3" height="15.0" fill="rgb(248,2,32)" rx="2" ry="2" />
<text x="712.26" y="1455.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (280 samples, 0.02%)</title><rect x="742.0" y="1221" width="0.1" height="15.0" fill="rgb(230,66,52)" rx="2" ry="2" />
<text x="744.97" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (404 samples, 0.02%)</title><rect x="839.0" y="1157" width="0.2" height="15.0" fill="rgb(213,73,1)" rx="2" ry="2" />
<text x="841.98" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (287 samples, 0.02%)</title><rect x="750.1" y="1253" width="0.1" height="15.0" fill="rgb(235,146,10)" rx="2" ry="2" />
<text x="753.06" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="373" width="0.3" height="15.0" fill="rgb(227,163,41)" rx="2" ry="2" />
<text x="1191.82" y="383.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (324 samples, 0.02%)</title><rect x="1167.1" y="1189" width="0.3" height="15.0" fill="rgb(247,96,19)" rx="2" ry="2" />
<text x="1170.15" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,532 samples, 0.14%)</title><rect x="861.4" y="1285" width="1.6" height="15.0" fill="rgb(223,196,29)" rx="2" ry="2" />
<text x="864.38" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (288 samples, 0.02%)</title><rect x="933.0" y="1365" width="0.2" height="15.0" fill="rgb(238,182,25)" rx="2" ry="2" />
<text x="936.03" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (443 samples, 0.02%)</title><rect x="991.2" y="1173" width="0.3" height="15.0" fill="rgb(249,60,22)" rx="2" ry="2" />
<text x="994.18" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326 samples, 0.02%)</title><rect x="1141.2" y="1237" width="0.2" height="15.0" fill="rgb(236,224,49)" rx="2" ry="2" />
<text x="1144.15" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (228 samples, 0.01%)</title><rect x="1010.4" y="1317" width="0.2" height="15.0" fill="rgb(214,164,9)" rx="2" ry="2" />
<text x="1013.43" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (360 samples, 0.02%)</title><rect x="722.9" y="1317" width="0.3" height="15.0" fill="rgb(251,186,5)" rx="2" ry="2" />
<text x="725.94" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (1,669 samples, 0.09%)</title><rect x="1058.1" y="1349" width="1.0" height="15.0" fill="rgb(247,200,8)" rx="2" ry="2" />
<text x="1061.07" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__pre_hash_7120 (170 samples, 0.01%)</title><rect x="689.5" y="181" width="0.1" height="15.0" fill="rgb(214,205,29)" rx="2" ry="2" />
<text x="692.49" y="191.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (15,484 samples, 0.83%)</title><rect x="1150.7" y="1445" width="9.8" height="15.0" fill="rgb(244,121,33)" rx="2" ry="2" />
<text x="1153.66" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (223 samples, 0.01%)</title><rect x="799.6" y="1429" width="0.2" height="15.0" fill="rgb(214,25,44)" rx="2" ry="2" />
<text x="802.62" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (162 samples, 0.01%)</title><rect x="729.3" y="917" width="0.1" height="15.0" fill="rgb(233,70,9)" rx="2" ry="2" />
<text x="732.30" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (300 samples, 0.02%)</title><rect x="719.8" y="1317" width="0.2" height="15.0" fill="rgb(252,20,25)" rx="2" ry="2" />
<text x="722.76" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (2,557 samples, 0.14%)</title><rect x="1096.3" y="1477" width="1.6" height="15.0" fill="rgb(221,0,27)" rx="2" ry="2" />
<text x="1099.29" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (265 samples, 0.01%)</title><rect x="676.8" y="1941" width="0.2" height="15.0" fill="rgb(212,66,27)" rx="2" ry="2" />
<text x="679.79" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (3,621 samples, 0.19%)</title><rect x="858.2" y="1317" width="2.3" height="15.0" fill="rgb(208,164,54)" rx="2" ry="2" />
<text x="861.24" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,207 samples, 0.06%)</title><rect x="1168.7" y="1221" width="0.8" height="15.0" fill="rgb(242,94,40)" rx="2" ry="2" />
<text x="1171.74" y="1231.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (25,404 samples, 1.37%)</title><rect x="567.1" y="1909" width="16.1" height="15.0" fill="rgb(231,184,30)" rx="2" ry="2" />
<text x="570.12" y="1919.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (180 samples, 0.01%)</title><rect x="689.8" y="1541" width="0.2" height="15.0" fill="rgb(254,89,33)" rx="2" ry="2" />
<text x="692.84" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (258 samples, 0.01%)</title><rect x="867.8" y="1157" width="0.2" height="15.0" fill="rgb(248,108,3)" rx="2" ry="2" />
<text x="870.84" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="373" width="0.2" height="15.0" fill="rgb(235,20,22)" rx="2" ry="2" />
<text x="1191.57" y="383.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (849 samples, 0.05%)</title><rect x="919.5" y="1413" width="0.5" height="15.0" fill="rgb(252,27,34)" rx="2" ry="2" />
<text x="922.49" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_5180 (247 samples, 0.01%)</title><rect x="1161.3" y="1365" width="0.2" height="15.0" fill="rgb(231,137,46)" rx="2" ry="2" />
<text x="1164.31" y="1375.5" ></text>
</g>
<g >
<title>__libc_pread64 (5,106 samples, 0.27%)</title><rect x="1068.9" y="1333" width="3.2" height="15.0" fill="rgb(221,153,32)" rx="2" ry="2" />
<text x="1071.87" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (2,744 samples, 0.15%)</title><rect x="717.4" y="1429" width="1.7" height="15.0" fill="rgb(207,118,48)" rx="2" ry="2" />
<text x="720.39" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (572 samples, 0.03%)</title><rect x="941.4" y="1237" width="0.4" height="15.0" fill="rgb(246,139,40)" rx="2" ry="2" />
<text x="944.40" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (490 samples, 0.03%)</title><rect x="850.8" y="1253" width="0.3" height="15.0" fill="rgb(235,5,25)" rx="2" ry="2" />
<text x="853.76" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1733" width="0.2" height="15.0" fill="rgb(235,135,4)" rx="2" ry="2" />
<text x="1191.57" y="1743.5" ></text>
</g>
<g >
<title>caml_start_program (790,465 samples, 42.50%)</title><rect x="686.8" y="1957" width="501.5" height="15.0" fill="rgb(234,91,34)" rx="2" ry="2" />
<text x="689.78" y="1967.5" >caml_start_program</text>
</g>
<g >
<title>sha1_do_chunk (251 samples, 0.01%)</title><rect x="1165.8" y="1205" width="0.2" height="15.0" fill="rgb(213,183,30)" rx="2" ry="2" />
<text x="1168.80" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (208 samples, 0.01%)</title><rect x="689.1" y="1589" width="0.1" height="15.0" fill="rgb(220,14,36)" rx="2" ry="2" />
<text x="692.08" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (624 samples, 0.03%)</title><rect x="761.2" y="1253" width="0.3" height="15.0" fill="rgb(230,33,26)" rx="2" ry="2" />
<text x="764.15" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (277 samples, 0.01%)</title><rect x="1135.1" y="1413" width="0.2" height="15.0" fill="rgb(219,93,6)" rx="2" ry="2" />
<text x="1138.15" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1365" width="0.2" height="15.0" fill="rgb(207,226,9)" rx="2" ry="2" />
<text x="1191.57" y="1375.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (370 samples, 0.02%)</title><rect x="691.9" y="1349" width="0.2" height="15.0" fill="rgb(253,176,31)" rx="2" ry="2" />
<text x="694.86" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (442 samples, 0.02%)</title><rect x="666.7" y="1781" width="0.2" height="15.0" fill="rgb(206,28,41)" rx="2" ry="2" />
<text x="669.65" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (1,215 samples, 0.07%)</title><rect x="993.0" y="1173" width="0.7" height="15.0" fill="rgb(253,198,6)" rx="2" ry="2" />
<text x="995.97" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="533" width="0.3" height="15.0" fill="rgb(222,152,31)" rx="2" ry="2" />
<text x="1191.32" y="543.5" ></text>
</g>
<g >
<title>compare_val (600 samples, 0.03%)</title><rect x="999.1" y="1189" width="0.3" height="15.0" fill="rgb(232,189,8)" rx="2" ry="2" />
<text x="1002.06" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (183 samples, 0.01%)</title><rect x="965.9" y="1269" width="0.1" height="15.0" fill="rgb(226,76,22)" rx="2" ry="2" />
<text x="968.86" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (443 samples, 0.02%)</title><rect x="1132.6" y="1333" width="0.3" height="15.0" fill="rgb(235,185,43)" rx="2" ry="2" />
<text x="1135.59" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (911 samples, 0.05%)</title><rect x="1186.0" y="1269" width="0.6" height="15.0" fill="rgb(205,88,43)" rx="2" ry="2" />
<text x="1189.05" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="245" width="0.2" height="15.0" fill="rgb(249,137,7)" rx="2" ry="2" />
<text x="1191.57" y="255.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (737 samples, 0.04%)</title><rect x="826.7" y="997" width="0.5" height="15.0" fill="rgb(231,194,20)" rx="2" ry="2" />
<text x="829.69" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,770 samples, 0.15%)</title><rect x="161.0" y="1861" width="1.8" height="15.0" fill="rgb(228,131,54)" rx="2" ry="2" />
<text x="164.02" y="1871.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (291 samples, 0.02%)</title><rect x="48.5" y="1973" width="0.2" height="15.0" fill="rgb(234,77,12)" rx="2" ry="2" />
<text x="51.48" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3323 (174 samples, 0.01%)</title><rect x="1046.6" y="1333" width="0.1" height="15.0" fill="rgb(242,41,40)" rx="2" ry="2" />
<text x="1049.61" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (7,641 samples, 0.41%)</title><rect x="912.6" y="1397" width="4.9" height="15.0" fill="rgb(237,162,51)" rx="2" ry="2" />
<text x="915.65" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,342 samples, 0.07%)</title><rect x="703.1" y="1381" width="0.9" height="15.0" fill="rgb(243,195,36)" rx="2" ry="2" />
<text x="706.13" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,598 samples, 0.09%)</title><rect x="677.3" y="1909" width="1.0" height="15.0" fill="rgb(205,48,32)" rx="2" ry="2" />
<text x="680.31" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (352 samples, 0.02%)</title><rect x="713.6" y="1461" width="0.3" height="15.0" fill="rgb(210,147,42)" rx="2" ry="2" />
<text x="716.64" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (841 samples, 0.05%)</title><rect x="1001.9" y="1221" width="0.5" height="15.0" fill="rgb(236,167,9)" rx="2" ry="2" />
<text x="1004.88" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="453" width="0.3" height="15.0" fill="rgb(247,46,34)" rx="2" ry="2" />
<text x="1191.82" y="463.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_update (283 samples, 0.02%)</title><rect x="1165.8" y="1237" width="0.2" height="15.0" fill="rgb(246,101,47)" rx="2" ry="2" />
<text x="1168.78" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (215 samples, 0.01%)</title><rect x="669.3" y="1797" width="0.1" height="15.0" fill="rgb(225,165,15)" rx="2" ry="2" />
<text x="672.26" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_layers__fun_70515 (606,750 samples, 32.62%)</title><rect x="716.2" y="1701" width="384.9" height="15.0" fill="rgb(217,41,29)" rx="2" ry="2" />
<text x="719.18" y="1711.5" >camlIrmin_layers__fun_70515</text>
</g>
<g >
<title>pthread_mutex_unlock@plt (310 samples, 0.02%)</title><rect x="47.8" y="1989" width="0.2" height="15.0" fill="rgb(239,67,43)" rx="2" ry="2" />
<text x="50.84" y="1999.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (688 samples, 0.04%)</title><rect x="198.5" y="1829" width="0.5" height="15.0" fill="rgb(235,106,20)" rx="2" ry="2" />
<text x="201.52" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="437" width="0.3" height="15.0" fill="rgb(214,68,37)" rx="2" ry="2" />
<text x="1191.82" y="447.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (335 samples, 0.02%)</title><rect x="689.4" y="741" width="0.2" height="15.0" fill="rgb(254,135,45)" rx="2" ry="2" />
<text x="692.41" y="751.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (8,831 samples, 0.47%)</title><rect x="175.8" y="1909" width="5.6" height="15.0" fill="rgb(223,165,40)" rx="2" ry="2" />
<text x="178.76" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1841 (745 samples, 0.04%)</title><rect x="1172.8" y="1269" width="0.5" height="15.0" fill="rgb(218,104,44)" rx="2" ry="2" />
<text x="1175.82" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (239 samples, 0.01%)</title><rect x="668.0" y="1765" width="0.1" height="15.0" fill="rgb(245,155,1)" rx="2" ry="2" />
<text x="670.98" y="1775.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (2,497 samples, 0.13%)</title><rect x="1088.4" y="1429" width="1.6" height="15.0" fill="rgb(239,204,2)" rx="2" ry="2" />
<text x="1091.37" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (359 samples, 0.02%)</title><rect x="988.3" y="1157" width="0.2" height="15.0" fill="rgb(208,201,15)" rx="2" ry="2" />
<text x="991.31" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (216 samples, 0.01%)</title><rect x="806.6" y="1493" width="0.2" height="15.0" fill="rgb(220,152,4)" rx="2" ry="2" />
<text x="809.64" y="1503.5" ></text>
</g>
<g >
<title>caml_string_equal (171 samples, 0.01%)</title><rect x="709.3" y="1381" width="0.1" height="15.0" fill="rgb(208,94,7)" rx="2" ry="2" />
<text x="712.34" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (391 samples, 0.02%)</title><rect x="695.0" y="1429" width="0.2" height="15.0" fill="rgb(231,131,20)" rx="2" ry="2" />
<text x="697.99" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (1,084 samples, 0.06%)</title><rect x="270.7" y="1845" width="0.6" height="15.0" fill="rgb(221,13,50)" rx="2" ry="2" />
<text x="273.66" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (13,973 samples, 0.75%)</title><rect x="738.3" y="1317" width="8.8" height="15.0" fill="rgb(225,152,6)" rx="2" ry="2" />
<text x="741.28" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4848 (127,493 samples, 6.85%)</title><rect x="725.3" y="1493" width="80.9" height="15.0" fill="rgb(210,178,10)" rx="2" ry="2" />
<text x="728.32" y="1503.5" >camlIrmin..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (166 samples, 0.01%)</title><rect x="700.7" y="1445" width="0.1" height="15.0" fill="rgb(235,33,17)" rx="2" ry="2" />
<text x="703.69" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1109" width="0.3" height="15.0" fill="rgb(226,53,22)" rx="2" ry="2" />
<text x="1192.12" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (536 samples, 0.03%)</title><rect x="902.7" y="1365" width="0.3" height="15.0" fill="rgb(225,105,15)" rx="2" ry="2" />
<text x="905.66" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__finalize_2904 (174 samples, 0.01%)</title><rect x="1016.3" y="1509" width="0.1" height="15.0" fill="rgb(208,6,3)" rx="2" ry="2" />
<text x="1019.30" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (5,342 samples, 0.29%)</title><rect x="823.8" y="1333" width="3.4" height="15.0" fill="rgb(205,71,31)" rx="2" ry="2" />
<text x="826.78" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (437 samples, 0.02%)</title><rect x="1176.8" y="1285" width="0.3" height="15.0" fill="rgb(253,176,24)" rx="2" ry="2" />
<text x="1179.82" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (5,034 samples, 0.27%)</title><rect x="726.2" y="1349" width="3.2" height="15.0" fill="rgb(253,154,6)" rx="2" ry="2" />
<text x="729.24" y="1359.5" ></text>
</g>
<g >
<title>__libc_pread64 (453 samples, 0.02%)</title><rect x="1159.0" y="1253" width="0.3" height="15.0" fill="rgb(230,199,9)" rx="2" ry="2" />
<text x="1162.01" y="1263.5" ></text>
</g>
<g >
<title>caml_string_compare (749 samples, 0.04%)</title><rect x="893.7" y="1429" width="0.4" height="15.0" fill="rgb(239,33,45)" rx="2" ry="2" />
<text x="896.65" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_3869 (2,410 samples, 0.13%)</title><rect x="922.5" y="1317" width="1.5" height="15.0" fill="rgb(254,208,17)" rx="2" ry="2" />
<text x="925.51" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__go_3079 (955,269 samples, 51.36%)</title><rect x="58.2" y="1957" width="606.1" height="15.0" fill="rgb(246,63,39)" rx="2" ry="2" />
<text x="61.24" y="1967.5" >camlIndex__go_3079</text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_7102 (113,415 samples, 6.10%)</title><rect x="933.6" y="1429" width="72.0" height="15.0" fill="rgb(219,96,19)" rx="2" ry="2" />
<text x="936.65" y="1439.5" >camlIrmi..</text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (931 samples, 0.05%)</title><rect x="1150.9" y="1349" width="0.6" height="15.0" fill="rgb(210,35,4)" rx="2" ry="2" />
<text x="1153.89" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (224 samples, 0.01%)</title><rect x="270.2" y="1781" width="0.1" height="15.0" fill="rgb(218,27,16)" rx="2" ry="2" />
<text x="273.15" y="1791.5" ></text>
</g>
<g >
<title>caml_apply4 (1,540 samples, 0.08%)</title><rect x="345.7" y="1909" width="1.0" height="15.0" fill="rgb(231,188,30)" rx="2" ry="2" />
<text x="348.69" y="1919.5" ></text>
</g>
<g >
<title>caml_string_compare (568 samples, 0.03%)</title><rect x="1007.5" y="1365" width="0.4" height="15.0" fill="rgb(215,153,23)" rx="2" ry="2" />
<text x="1010.55" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (214 samples, 0.01%)</title><rect x="994.9" y="1173" width="0.2" height="15.0" fill="rgb(232,91,8)" rx="2" ry="2" />
<text x="997.93" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (220 samples, 0.01%)</title><rect x="746.5" y="1205" width="0.1" height="15.0" fill="rgb(235,63,36)" rx="2" ry="2" />
<text x="749.50" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1237" width="0.5" height="15.0" fill="rgb(214,210,38)" rx="2" ry="2" />
<text x="1192.48" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (423 samples, 0.02%)</title><rect x="1176.3" y="997" width="0.3" height="15.0" fill="rgb(235,197,35)" rx="2" ry="2" />
<text x="1179.32" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1224 (521 samples, 0.03%)</title><rect x="670.2" y="1829" width="0.4" height="15.0" fill="rgb(225,120,24)" rx="2" ry="2" />
<text x="673.22" y="1839.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (620 samples, 0.03%)</title><rect x="341.7" y="1829" width="0.4" height="15.0" fill="rgb(234,33,7)" rx="2" ry="2" />
<text x="344.71" y="1839.5" ></text>
</g>
<g >
<title>__libc_pread64 (273 samples, 0.01%)</title><rect x="724.0" y="1285" width="0.2" height="15.0" fill="rgb(251,128,6)" rx="2" ry="2" />
<text x="727.04" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,785 samples, 0.10%)</title><rect x="1131.2" y="1333" width="1.1" height="15.0" fill="rgb(216,51,49)" rx="2" ry="2" />
<text x="1134.17" y="1343.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,367 samples, 0.07%)</title><rect x="31.3" y="2021" width="0.9" height="15.0" fill="rgb(220,212,33)" rx="2" ry="2" />
<text x="34.28" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,855 samples, 0.10%)</title><rect x="1149.1" y="1317" width="1.2" height="15.0" fill="rgb(232,34,22)" rx="2" ry="2" />
<text x="1152.07" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (255 samples, 0.01%)</title><rect x="765.8" y="1237" width="0.2" height="15.0" fill="rgb(223,99,45)" rx="2" ry="2" />
<text x="768.79" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (583 samples, 0.03%)</title><rect x="765.7" y="1269" width="0.4" height="15.0" fill="rgb(233,193,10)" rx="2" ry="2" />
<text x="768.73" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (544 samples, 0.03%)</title><rect x="1176.2" y="1061" width="0.4" height="15.0" fill="rgb(236,206,43)" rx="2" ry="2" />
<text x="1179.24" y="1071.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (19,352 samples, 1.04%)</title><rect x="567.1" y="1893" width="12.3" height="15.0" fill="rgb(237,87,18)" rx="2" ry="2" />
<text x="570.15" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,986 samples, 0.21%)</title><rect x="824.6" y="1269" width="2.6" height="15.0" fill="rgb(223,224,33)" rx="2" ry="2" />
<text x="827.64" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="405" width="0.3" height="15.0" fill="rgb(211,185,33)" rx="2" ry="2" />
<text x="1191.82" y="415.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (328 samples, 0.02%)</title><rect x="932.7" y="1317" width="0.2" height="15.0" fill="rgb(248,139,45)" rx="2" ry="2" />
<text x="935.66" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221 samples, 0.01%)</title><rect x="724.1" y="1221" width="0.1" height="15.0" fill="rgb(246,129,26)" rx="2" ry="2" />
<text x="727.07" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (369 samples, 0.02%)</title><rect x="689.4" y="933" width="0.2" height="15.0" fill="rgb(250,156,17)" rx="2" ry="2" />
<text x="692.39" y="943.5" ></text>
</g>
<g >
<title>camlIndex_unix__sync_inner_3823 (4,566 samples, 0.25%)</title><rect x="470.7" y="1941" width="2.9" height="15.0" fill="rgb(246,148,52)" rx="2" ry="2" />
<text x="473.72" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,486 samples, 0.08%)</title><rect x="675.0" y="1845" width="0.9" height="15.0" fill="rgb(218,136,42)" rx="2" ry="2" />
<text x="677.96" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="581" width="0.2" height="15.0" fill="rgb(226,149,49)" rx="2" ry="2" />
<text x="1191.57" y="591.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (211 samples, 0.01%)</title><rect x="1168.2" y="1221" width="0.1" height="15.0" fill="rgb(206,217,7)" rx="2" ry="2" />
<text x="1171.20" y="1231.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (620 samples, 0.03%)</title><rect x="341.7" y="1845" width="0.4" height="15.0" fill="rgb(221,137,32)" rx="2" ry="2" />
<text x="344.71" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (267 samples, 0.01%)</title><rect x="689.5" y="533" width="0.1" height="15.0" fill="rgb(237,222,25)" rx="2" ry="2" />
<text x="692.45" y="543.5" ></text>
</g>
<g >
<title>mark_slice (382 samples, 0.02%)</title><rect x="721.9" y="1173" width="0.3" height="15.0" fill="rgb(242,19,43)" rx="2" ry="2" />
<text x="724.91" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (6,113 samples, 0.33%)</title><rect x="709.6" y="1445" width="3.9" height="15.0" fill="rgb(242,142,7)" rx="2" ry="2" />
<text x="712.61" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (1,389 samples, 0.07%)</title><rect x="1101.7" y="1397" width="0.9" height="15.0" fill="rgb(231,74,52)" rx="2" ry="2" />
<text x="1104.71" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1429" width="0.3" height="15.0" fill="rgb(246,210,21)" rx="2" ry="2" />
<text x="1191.32" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (289 samples, 0.02%)</title><rect x="1153.5" y="1237" width="0.2" height="15.0" fill="rgb(209,60,3)" rx="2" ry="2" />
<text x="1156.54" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (787 samples, 0.04%)</title><rect x="704.8" y="1253" width="0.5" height="15.0" fill="rgb(215,211,25)" rx="2" ry="2" />
<text x="707.78" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (332 samples, 0.02%)</title><rect x="1177.6" y="1205" width="0.2" height="15.0" fill="rgb(232,132,54)" rx="2" ry="2" />
<text x="1180.57" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (517 samples, 0.03%)</title><rect x="981.3" y="1141" width="0.4" height="15.0" fill="rgb(246,3,29)" rx="2" ry="2" />
<text x="984.33" y="1151.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,039 samples, 0.06%)</title><rect x="1104.7" y="1397" width="0.7" height="15.0" fill="rgb(217,92,31)" rx="2" ry="2" />
<text x="1107.71" y="1407.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7216 (433 samples, 0.02%)</title><rect x="690.6" y="1413" width="0.3" height="15.0" fill="rgb(223,29,11)" rx="2" ry="2" />
<text x="693.59" y="1423.5" ></text>
</g>
<g >
<title>mark_slice_darken (488 samples, 0.03%)</title><rect x="660.9" y="1845" width="0.3" height="15.0" fill="rgb(211,171,8)" rx="2" ry="2" />
<text x="663.90" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (212 samples, 0.01%)</title><rect x="1011.2" y="1301" width="0.1" height="15.0" fill="rgb(254,163,17)" rx="2" ry="2" />
<text x="1014.17" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (343 samples, 0.02%)</title><rect x="974.0" y="1157" width="0.2" height="15.0" fill="rgb(207,68,22)" rx="2" ry="2" />
<text x="977.00" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (393 samples, 0.02%)</title><rect x="1175.0" y="1221" width="0.2" height="15.0" fill="rgb(212,28,10)" rx="2" ry="2" />
<text x="1177.96" y="1231.5" ></text>
</g>
<g >
<title>caml_apply3 (218 samples, 0.01%)</title><rect x="1000.6" y="1221" width="0.2" height="15.0" fill="rgb(227,18,32)" rx="2" ry="2" />
<text x="1003.64" y="1231.5" ></text>
</g>
<g >
<title>caml_compare (690 samples, 0.04%)</title><rect x="923.4" y="1285" width="0.4" height="15.0" fill="rgb(254,155,47)" rx="2" ry="2" />
<text x="926.39" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,453 samples, 0.94%)</title><rect x="34.9" y="1989" width="11.1" height="15.0" fill="rgb(223,61,3)" rx="2" ry="2" />
<text x="37.88" y="1999.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (208 samples, 0.01%)</title><rect x="1072.9" y="1333" width="0.1" height="15.0" fill="rgb(232,27,20)" rx="2" ry="2" />
<text x="1075.87" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (327 samples, 0.02%)</title><rect x="1175.0" y="1205" width="0.2" height="15.0" fill="rgb(217,146,44)" rx="2" ry="2" />
<text x="1178.00" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (2,070 samples, 0.11%)</title><rect x="840.1" y="1221" width="1.3" height="15.0" fill="rgb(224,199,18)" rx="2" ry="2" />
<text x="843.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (173 samples, 0.01%)</title><rect x="785.2" y="1189" width="0.1" height="15.0" fill="rgb(214,53,4)" rx="2" ry="2" />
<text x="788.15" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="805" width="0.3" height="15.0" fill="rgb(249,187,38)" rx="2" ry="2" />
<text x="1191.82" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (185 samples, 0.01%)</title><rect x="1123.3" y="1301" width="0.1" height="15.0" fill="rgb(244,148,47)" rx="2" ry="2" />
<text x="1126.31" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,515 samples, 0.14%)</title><rect x="830.5" y="1317" width="1.6" height="15.0" fill="rgb(209,123,18)" rx="2" ry="2" />
<text x="833.49" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (180 samples, 0.01%)</title><rect x="823.8" y="1301" width="0.1" height="15.0" fill="rgb(220,42,31)" rx="2" ry="2" />
<text x="826.79" y="1311.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (349 samples, 0.02%)</title><rect x="908.6" y="1269" width="0.2" height="15.0" fill="rgb(236,198,2)" rx="2" ry="2" />
<text x="911.57" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (497 samples, 0.03%)</title><rect x="1039.9" y="1317" width="0.4" height="15.0" fill="rgb(231,56,1)" rx="2" ry="2" />
<text x="1042.95" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (1,429 samples, 0.08%)</title><rect x="1101.7" y="1429" width="0.9" height="15.0" fill="rgb(213,149,42)" rx="2" ry="2" />
<text x="1104.69" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (239 samples, 0.01%)</title><rect x="920.1" y="1413" width="0.2" height="15.0" fill="rgb(238,66,46)" rx="2" ry="2" />
<text x="923.13" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (180 samples, 0.01%)</title><rect x="823.6" y="1365" width="0.1" height="15.0" fill="rgb(214,120,26)" rx="2" ry="2" />
<text x="826.58" y="1375.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (417 samples, 0.02%)</title><rect x="839.2" y="1205" width="0.3" height="15.0" fill="rgb(223,214,35)" rx="2" ry="2" />
<text x="842.24" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1813" width="0.3" height="15.0" fill="rgb(207,94,1)" rx="2" ry="2" />
<text x="1191.82" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (9,376 samples, 0.50%)</title><rect x="1119.7" y="1381" width="5.9" height="15.0" fill="rgb(233,50,38)" rx="2" ry="2" />
<text x="1122.70" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1477" width="0.5" height="15.0" fill="rgb(233,216,20)" rx="2" ry="2" />
<text x="1192.48" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (366 samples, 0.02%)</title><rect x="1113.7" y="1477" width="0.2" height="15.0" fill="rgb(228,204,9)" rx="2" ry="2" />
<text x="1116.69" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (41,237 samples, 2.22%)</title><rect x="689.7" y="1621" width="26.1" height="15.0" fill="rgb(240,29,29)" rx="2" ry="2" />
<text x="692.68" y="1631.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (11,832 samples, 0.64%)</title><rect x="925.7" y="1413" width="7.5" height="15.0" fill="rgb(231,32,50)" rx="2" ry="2" />
<text x="928.73" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1941" width="0.3" height="15.0" fill="rgb(222,124,5)" rx="2" ry="2" />
<text x="1192.12" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (263 samples, 0.01%)</title><rect x="689.5" y="517" width="0.1" height="15.0" fill="rgb(253,226,42)" rx="2" ry="2" />
<text x="692.45" y="527.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="725" width="0.5" height="15.0" fill="rgb(238,133,34)" rx="2" ry="2" />
<text x="1192.48" y="735.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,412 samples, 0.08%)</title><rect x="1118.3" y="1365" width="0.9" height="15.0" fill="rgb(254,37,31)" rx="2" ry="2" />
<text x="1121.27" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1707 (193 samples, 0.01%)</title><rect x="1142.8" y="1365" width="0.1" height="15.0" fill="rgb(234,175,24)" rx="2" ry="2" />
<text x="1145.80" y="1375.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (590 samples, 0.03%)</title><rect x="1064.6" y="1317" width="0.3" height="15.0" fill="rgb(209,81,53)" rx="2" ry="2" />
<text x="1067.56" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (12,316 samples, 0.66%)</title><rect x="717.3" y="1461" width="7.8" height="15.0" fill="rgb(216,70,37)" rx="2" ry="2" />
<text x="720.28" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,149 samples, 0.06%)</title><rect x="255.2" y="1813" width="0.7" height="15.0" fill="rgb(246,73,7)" rx="2" ry="2" />
<text x="258.22" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (176 samples, 0.01%)</title><rect x="917.2" y="1333" width="0.1" height="15.0" fill="rgb(231,117,21)" rx="2" ry="2" />
<text x="920.18" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (305 samples, 0.02%)</title><rect x="980.6" y="1157" width="0.2" height="15.0" fill="rgb(205,80,15)" rx="2" ry="2" />
<text x="983.63" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (15,531 samples, 0.84%)</title><rect x="956.2" y="1285" width="9.8" height="15.0" fill="rgb(205,3,49)" rx="2" ry="2" />
<text x="959.15" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (351 samples, 0.02%)</title><rect x="689.4" y="869" width="0.2" height="15.0" fill="rgb(236,33,11)" rx="2" ry="2" />
<text x="692.40" y="879.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (891 samples, 0.05%)</title><rect x="804.0" y="1349" width="0.6" height="15.0" fill="rgb(248,120,7)" rx="2" ry="2" />
<text x="807.03" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (466 samples, 0.03%)</title><rect x="1188.8" y="197" width="0.3" height="15.0" fill="rgb(226,19,38)" rx="2" ry="2" />
<text x="1191.83" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (250 samples, 0.01%)</title><rect x="1129.7" y="1285" width="0.2" height="15.0" fill="rgb(211,208,27)" rx="2" ry="2" />
<text x="1132.74" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1804 (565 samples, 0.03%)</title><rect x="664.3" y="1941" width="0.4" height="15.0" fill="rgb(233,163,0)" rx="2" ry="2" />
<text x="667.33" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1125" width="0.3" height="15.0" fill="rgb(243,214,41)" rx="2" ry="2" />
<text x="1191.82" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (317 samples, 0.02%)</title><rect x="1112.5" y="1525" width="0.2" height="15.0" fill="rgb(240,78,49)" rx="2" ry="2" />
<text x="1115.53" y="1535.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,421 samples, 0.13%)</title><rect x="818.9" y="1301" width="1.5" height="15.0" fill="rgb(247,90,7)" rx="2" ry="2" />
<text x="821.85" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (299 samples, 0.02%)</title><rect x="841.7" y="1157" width="0.2" height="15.0" fill="rgb(248,40,53)" rx="2" ry="2" />
<text x="844.69" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,286 samples, 0.18%)</title><rect x="587.3" y="1765" width="2.1" height="15.0" fill="rgb(236,114,1)" rx="2" ry="2" />
<text x="590.28" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (208 samples, 0.01%)</title><rect x="1148.7" y="1221" width="0.1" height="15.0" fill="rgb(233,204,14)" rx="2" ry="2" />
<text x="1151.70" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (1,529 samples, 0.08%)</title><rect x="1059.1" y="1349" width="1.0" height="15.0" fill="rgb(233,2,51)" rx="2" ry="2" />
<text x="1062.13" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (603 samples, 0.03%)</title><rect x="845.8" y="1269" width="0.3" height="15.0" fill="rgb(242,208,32)" rx="2" ry="2" />
<text x="848.76" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12329 (2,540 samples, 0.14%)</title><rect x="1113.4" y="1541" width="1.6" height="15.0" fill="rgb(254,54,4)" rx="2" ry="2" />
<text x="1116.43" y="1551.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,575 samples, 0.14%)</title><rect x="774.8" y="1157" width="1.7" height="15.0" fill="rgb(219,0,40)" rx="2" ry="2" />
<text x="777.84" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (240 samples, 0.01%)</title><rect x="1183.2" y="1317" width="0.1" height="15.0" fill="rgb(224,229,48)" rx="2" ry="2" />
<text x="1186.19" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (248 samples, 0.01%)</title><rect x="689.5" y="421" width="0.1" height="15.0" fill="rgb(251,169,32)" rx="2" ry="2" />
<text x="692.46" y="431.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (10,209 samples, 0.55%)</title><rect x="1136.0" y="1413" width="6.5" height="15.0" fill="rgb(243,204,50)" rx="2" ry="2" />
<text x="1139.02" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1879 (326 samples, 0.02%)</title><rect x="667.1" y="1877" width="0.2" height="15.0" fill="rgb(248,19,17)" rx="2" ry="2" />
<text x="670.11" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (9,306 samples, 0.50%)</title><rect x="1154.3" y="1397" width="5.9" height="15.0" fill="rgb(211,219,26)" rx="2" ry="2" />
<text x="1157.26" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (306 samples, 0.02%)</title><rect x="1124.8" y="1237" width="0.1" height="15.0" fill="rgb(245,203,12)" rx="2" ry="2" />
<text x="1127.75" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (581 samples, 0.03%)</title><rect x="775.6" y="1093" width="0.4" height="15.0" fill="rgb(253,129,44)" rx="2" ry="2" />
<text x="778.62" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,776 samples, 0.15%)</title><rect x="721.1" y="1333" width="1.7" height="15.0" fill="rgb(226,98,50)" rx="2" ry="2" />
<text x="724.06" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,782 samples, 0.10%)</title><rect x="789.9" y="1189" width="1.2" height="15.0" fill="rgb(249,2,0)" rx="2" ry="2" />
<text x="792.93" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (163 samples, 0.01%)</title><rect x="777.4" y="1157" width="0.1" height="15.0" fill="rgb(242,136,37)" rx="2" ry="2" />
<text x="780.41" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (5,594 samples, 0.30%)</title><rect x="929.1" y="1317" width="3.6" height="15.0" fill="rgb(250,200,8)" rx="2" ry="2" />
<text x="932.11" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (2,424 samples, 0.13%)</title><rect x="733.0" y="1317" width="1.5" height="15.0" fill="rgb(214,7,45)" rx="2" ry="2" />
<text x="735.97" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (789 samples, 0.04%)</title><rect x="1140.0" y="1317" width="0.5" height="15.0" fill="rgb(243,46,12)" rx="2" ry="2" />
<text x="1143.03" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (309 samples, 0.02%)</title><rect x="138.3" y="1845" width="0.2" height="15.0" fill="rgb(216,119,15)" rx="2" ry="2" />
<text x="141.30" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (697 samples, 0.04%)</title><rect x="704.0" y="1381" width="0.5" height="15.0" fill="rgb(234,175,29)" rx="2" ry="2" />
<text x="707.01" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,800 samples, 0.10%)</title><rect x="588.2" y="1749" width="1.2" height="15.0" fill="rgb(222,141,38)" rx="2" ry="2" />
<text x="591.22" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1141" width="0.3" height="15.0" fill="rgb(241,16,52)" rx="2" ry="2" />
<text x="1192.12" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__compare_2480 (415 samples, 0.02%)</title><rect x="791.7" y="1269" width="0.3" height="15.0" fill="rgb(250,80,28)" rx="2" ry="2" />
<text x="794.75" y="1279.5" ></text>
</g>
<g >
<title>caml_record_signal (482 samples, 0.03%)</title><rect x="686.5" y="2005" width="0.3" height="15.0" fill="rgb(228,77,18)" rx="2" ry="2" />
<text x="689.46" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (435 samples, 0.02%)</title><rect x="1152.8" y="1397" width="0.2" height="15.0" fill="rgb(205,60,37)" rx="2" ry="2" />
<text x="1155.76" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (4,001 samples, 0.22%)</title><rect x="1142.7" y="1413" width="2.5" height="15.0" fill="rgb(247,4,20)" rx="2" ry="2" />
<text x="1145.65" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (3,316 samples, 0.18%)</title><rect x="858.4" y="1301" width="2.1" height="15.0" fill="rgb(250,224,31)" rx="2" ry="2" />
<text x="861.38" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (5,700 samples, 0.31%)</title><rect x="921.8" y="1381" width="3.6" height="15.0" fill="rgb(246,185,27)" rx="2" ry="2" />
<text x="924.83" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (748 samples, 0.04%)</title><rect x="1176.1" y="1173" width="0.5" height="15.0" fill="rgb(227,7,13)" rx="2" ry="2" />
<text x="1179.11" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3780 (315 samples, 0.02%)</title><rect x="1033.2" y="1317" width="0.2" height="15.0" fill="rgb(254,31,14)" rx="2" ry="2" />
<text x="1036.19" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1381" width="0.2" height="15.0" fill="rgb(216,214,54)" rx="2" ry="2" />
<text x="1191.57" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="421" width="0.3" height="15.0" fill="rgb(205,143,21)" rx="2" ry="2" />
<text x="1191.82" y="431.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (216 samples, 0.01%)</title><rect x="692.9" y="1333" width="0.2" height="15.0" fill="rgb(224,177,3)" rx="2" ry="2" />
<text x="695.92" y="1343.5" ></text>
</g>
<g >
<title>do_compare_val (682 samples, 0.04%)</title><rect x="703.5" y="1333" width="0.5" height="15.0" fill="rgb(212,218,52)" rx="2" ry="2" />
<text x="706.54" y="1343.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (460 samples, 0.02%)</title><rect x="57.4" y="1925" width="0.3" height="15.0" fill="rgb(233,124,35)" rx="2" ry="2" />
<text x="60.36" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (274 samples, 0.01%)</title><rect x="932.2" y="1173" width="0.2" height="15.0" fill="rgb(231,198,9)" rx="2" ry="2" />
<text x="935.20" y="1183.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,880 samples, 0.15%)</title><rect x="709.9" y="1413" width="1.8" height="15.0" fill="rgb(228,20,16)" rx="2" ry="2" />
<text x="712.88" y="1423.5" ></text>
</g>
<g >
<title>caml_alloc_string (645 samples, 0.03%)</title><rect x="1032.7" y="1301" width="0.4" height="15.0" fill="rgb(215,18,26)" rx="2" ry="2" />
<text x="1035.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_entry_5986 (110,824 samples, 5.96%)</title><rect x="823.1" y="1429" width="70.3" height="15.0" fill="rgb(245,66,16)" rx="2" ry="2" />
<text x="826.09" y="1439.5" >camlIrm..</text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (235 samples, 0.01%)</title><rect x="818.2" y="1317" width="0.2" height="15.0" fill="rgb(213,193,32)" rx="2" ry="2" />
<text x="821.20" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (498 samples, 0.03%)</title><rect x="872.6" y="1173" width="0.3" height="15.0" fill="rgb(231,86,36)" rx="2" ry="2" />
<text x="875.56" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4794 (541 samples, 0.03%)</title><rect x="689.0" y="1685" width="0.3" height="15.0" fill="rgb(223,52,4)" rx="2" ry="2" />
<text x="691.95" y="1695.5" ></text>
</g>
<g >
<title>mark_slice (2,489 samples, 0.13%)</title><rect x="241.8" y="1813" width="1.6" height="15.0" fill="rgb(241,190,35)" rx="2" ry="2" />
<text x="244.78" y="1823.5" ></text>
</g>
<g >
<title>caml_garbage_collection (610 samples, 0.03%)</title><rect x="686.9" y="1685" width="0.4" height="15.0" fill="rgb(208,63,23)" rx="2" ry="2" />
<text x="689.92" y="1695.5" ></text>
</g>
<g >
<title>mark_slice (2,743 samples, 0.15%)</title><rect x="337.0" y="1781" width="1.7" height="15.0" fill="rgb(248,175,28)" rx="2" ry="2" />
<text x="340.01" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (177 samples, 0.01%)</title><rect x="689.0" y="1621" width="0.1" height="15.0" fill="rgb(224,141,46)" rx="2" ry="2" />
<text x="691.97" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (221 samples, 0.01%)</title><rect x="685.2" y="1877" width="0.1" height="15.0" fill="rgb(222,222,23)" rx="2" ry="2" />
<text x="688.16" y="1887.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (443 samples, 0.02%)</title><rect x="404.7" y="1813" width="0.3" height="15.0" fill="rgb(206,133,34)" rx="2" ry="2" />
<text x="407.71" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (190 samples, 0.01%)</title><rect x="1142.2" y="1349" width="0.1" height="15.0" fill="rgb(230,149,36)" rx="2" ry="2" />
<text x="1145.16" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (10,765 samples, 0.58%)</title><rect x="414.0" y="1893" width="6.9" height="15.0" fill="rgb(226,77,35)" rx="2" ry="2" />
<text x="417.02" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (10,372 samples, 0.56%)</title><rect x="1136.0" y="1429" width="6.5" height="15.0" fill="rgb(235,109,20)" rx="2" ry="2" />
<text x="1138.97" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (353 samples, 0.02%)</title><rect x="1061.9" y="1333" width="0.2" height="15.0" fill="rgb(221,39,45)" rx="2" ry="2" />
<text x="1064.85" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (2,788 samples, 0.15%)</title><rect x="683.3" y="1877" width="1.8" height="15.0" fill="rgb(219,182,42)" rx="2" ry="2" />
<text x="686.29" y="1887.5" ></text>
</g>
<g >
<title>caml_apply2 (506 samples, 0.03%)</title><rect x="870.9" y="1173" width="0.3" height="15.0" fill="rgb(212,93,8)" rx="2" ry="2" />
<text x="873.86" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (845 samples, 0.05%)</title><rect x="1178.6" y="1253" width="0.6" height="15.0" fill="rgb(226,222,33)" rx="2" ry="2" />
<text x="1181.64" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (381 samples, 0.02%)</title><rect x="1145.3" y="1413" width="0.2" height="15.0" fill="rgb(233,159,51)" rx="2" ry="2" />
<text x="1148.30" y="1423.5" ></text>
</g>
<g >
<title>caml_int_compare (162 samples, 0.01%)</title><rect x="887.6" y="1237" width="0.1" height="15.0" fill="rgb(240,104,42)" rx="2" ry="2" />
<text x="890.57" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (248 samples, 0.01%)</title><rect x="848.6" y="1205" width="0.1" height="15.0" fill="rgb(245,226,13)" rx="2" ry="2" />
<text x="851.55" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (240 samples, 0.01%)</title><rect x="955.3" y="1173" width="0.2" height="15.0" fill="rgb(221,97,0)" rx="2" ry="2" />
<text x="958.34" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (702 samples, 0.04%)</title><rect x="780.5" y="1221" width="0.5" height="15.0" fill="rgb(238,218,2)" rx="2" ry="2" />
<text x="783.54" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (645 samples, 0.03%)</title><rect x="1174.4" y="1317" width="0.4" height="15.0" fill="rgb(231,48,45)" rx="2" ry="2" />
<text x="1177.39" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (210 samples, 0.01%)</title><rect x="907.3" y="1333" width="0.1" height="15.0" fill="rgb(253,54,38)" rx="2" ry="2" />
<text x="910.30" y="1343.5" ></text>
</g>
<g >
<title>do_compaction (401 samples, 0.02%)</title><rect x="686.9" y="1637" width="0.3" height="15.0" fill="rgb(241,70,41)" rx="2" ry="2" />
<text x="689.92" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_5180 (178 samples, 0.01%)</title><rect x="689.8" y="1525" width="0.2" height="15.0" fill="rgb(251,52,45)" rx="2" ry="2" />
<text x="692.84" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,108 samples, 0.06%)</title><rect x="704.6" y="1365" width="0.7" height="15.0" fill="rgb(207,191,14)" rx="2" ry="2" />
<text x="707.58" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (11,724 samples, 0.63%)</title><rect x="781.4" y="1269" width="7.5" height="15.0" fill="rgb(237,185,34)" rx="2" ry="2" />
<text x="784.43" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (194 samples, 0.01%)</title><rect x="856.7" y="1285" width="0.2" height="15.0" fill="rgb(226,206,24)" rx="2" ry="2" />
<text x="859.74" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_10624 (451,246 samples, 24.26%)</title><rect x="814.3" y="1525" width="286.3" height="15.0" fill="rgb(249,154,35)" rx="2" ry="2" />
<text x="817.34" y="1535.5" >camlIrmin__Object_graph__visit_10624</text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (46,420 samples, 2.50%)</title><rect x="861.2" y="1301" width="29.5" height="15.0" fill="rgb(227,35,48)" rx="2" ry="2" />
<text x="864.24" y="1311.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (273 samples, 0.01%)</title><rect x="1145.6" y="1381" width="0.2" height="15.0" fill="rgb(242,112,28)" rx="2" ry="2" />
<text x="1148.60" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1317" width="0.3" height="15.0" fill="rgb(206,52,37)" rx="2" ry="2" />
<text x="1191.32" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (1,423 samples, 0.08%)</title><rect x="295.5" y="1797" width="0.9" height="15.0" fill="rgb(223,31,23)" rx="2" ry="2" />
<text x="298.52" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11479 (1,273 samples, 0.07%)</title><rect x="1160.8" y="1477" width="0.9" height="15.0" fill="rgb(222,186,0)" rx="2" ry="2" />
<text x="1163.85" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (184 samples, 0.01%)</title><rect x="902.8" y="1317" width="0.2" height="15.0" fill="rgb(219,24,28)" rx="2" ry="2" />
<text x="905.84" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (575 samples, 0.03%)</title><rect x="901.8" y="1477" width="0.4" height="15.0" fill="rgb(231,150,19)" rx="2" ry="2" />
<text x="904.84" y="1487.5" ></text>
</g>
<g >
<title>sweep_slice (533 samples, 0.03%)</title><rect x="200.8" y="1845" width="0.4" height="15.0" fill="rgb(236,121,1)" rx="2" ry="2" />
<text x="203.82" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (275 samples, 0.01%)</title><rect x="1124.8" y="1205" width="0.1" height="15.0" fill="rgb(228,162,42)" rx="2" ry="2" />
<text x="1127.77" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (219 samples, 0.01%)</title><rect x="965.3" y="1269" width="0.1" height="15.0" fill="rgb(240,9,49)" rx="2" ry="2" />
<text x="968.28" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (164 samples, 0.01%)</title><rect x="1025.5" y="1381" width="0.1" height="15.0" fill="rgb(217,164,38)" rx="2" ry="2" />
<text x="1028.49" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (223 samples, 0.01%)</title><rect x="809.5" y="1429" width="0.1" height="15.0" fill="rgb(211,27,1)" rx="2" ry="2" />
<text x="812.49" y="1439.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (380 samples, 0.02%)</title><rect x="824.3" y="1157" width="0.3" height="15.0" fill="rgb(252,130,20)" rx="2" ry="2" />
<text x="827.33" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__v_2085 (1,717 samples, 0.09%)</title><rect x="664.3" y="1957" width="1.1" height="15.0" fill="rgb(220,202,44)" rx="2" ry="2" />
<text x="667.32" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (325 samples, 0.02%)</title><rect x="1188.4" y="181" width="0.2" height="15.0" fill="rgb(247,2,43)" rx="2" ry="2" />
<text x="1191.36" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (239 samples, 0.01%)</title><rect x="927.5" y="1349" width="0.2" height="15.0" fill="rgb(212,141,0)" rx="2" ry="2" />
<text x="930.51" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (546 samples, 0.03%)</title><rect x="729.1" y="981" width="0.3" height="15.0" fill="rgb(240,146,1)" rx="2" ry="2" />
<text x="732.06" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (2,501 samples, 0.13%)</title><rect x="730.4" y="1317" width="1.6" height="15.0" fill="rgb(234,228,13)" rx="2" ry="2" />
<text x="733.40" y="1327.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (420 samples, 0.02%)</title><rect x="664.4" y="1893" width="0.2" height="15.0" fill="rgb(213,11,10)" rx="2" ry="2" />
<text x="667.35" y="1903.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (564 samples, 0.03%)</title><rect x="48.1" y="1989" width="0.4" height="15.0" fill="rgb(212,214,46)" rx="2" ry="2" />
<text x="51.10" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (429 samples, 0.02%)</title><rect x="771.6" y="1205" width="0.2" height="15.0" fill="rgb(212,76,3)" rx="2" ry="2" />
<text x="774.57" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (1,748 samples, 0.09%)</title><rect x="1113.9" y="1493" width="1.1" height="15.0" fill="rgb(205,72,10)" rx="2" ry="2" />
<text x="1116.92" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (799 samples, 0.04%)</title><rect x="1176.1" y="1221" width="0.5" height="15.0" fill="rgb(227,36,26)" rx="2" ry="2" />
<text x="1179.08" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (654 samples, 0.04%)</title><rect x="957.1" y="1237" width="0.4" height="15.0" fill="rgb(248,191,42)" rx="2" ry="2" />
<text x="960.06" y="1247.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (206 samples, 0.01%)</title><rect x="336.9" y="1813" width="0.1" height="15.0" fill="rgb(213,221,23)" rx="2" ry="2" />
<text x="339.87" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (158 samples, 0.01%)</title><rect x="695.1" y="1397" width="0.1" height="15.0" fill="rgb(228,99,36)" rx="2" ry="2" />
<text x="698.10" y="1407.5" ></text>
</g>
<g >
<title>caml_alloc_string (206 samples, 0.01%)</title><rect x="670.3" y="1813" width="0.2" height="15.0" fill="rgb(227,158,3)" rx="2" ry="2" />
<text x="673.33" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (216 samples, 0.01%)</title><rect x="828.9" y="1253" width="0.1" height="15.0" fill="rgb(242,165,17)" rx="2" ry="2" />
<text x="831.91" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,202 samples, 0.12%)</title><rect x="825.8" y="1141" width="1.4" height="15.0" fill="rgb(247,118,8)" rx="2" ry="2" />
<text x="828.77" y="1151.5" ></text>
</g>
<g >
<title>caml_apply2 (277 samples, 0.01%)</title><rect x="1023.2" y="1365" width="0.2" height="15.0" fill="rgb(234,212,37)" rx="2" ry="2" />
<text x="1026.24" y="1375.5" ></text>
</g>
<g >
<title>caml_blit_bytes (4,897 samples, 0.26%)</title><rect x="526.9" y="1925" width="3.1" height="15.0" fill="rgb(248,200,9)" rx="2" ry="2" />
<text x="529.92" y="1935.5" ></text>
</g>
<g >
<title>caml_apply2 (264 samples, 0.01%)</title><rect x="797.0" y="1317" width="0.2" height="15.0" fill="rgb(230,93,34)" rx="2" ry="2" />
<text x="799.98" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (166 samples, 0.01%)</title><rect x="773.3" y="1141" width="0.1" height="15.0" fill="rgb(210,160,29)" rx="2" ry="2" />
<text x="776.26" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (8,855 samples, 0.48%)</title><rect x="902.5" y="1429" width="5.6" height="15.0" fill="rgb(242,172,14)" rx="2" ry="2" />
<text x="905.53" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1269" width="0.3" height="15.0" fill="rgb(218,97,13)" rx="2" ry="2" />
<text x="1191.82" y="1279.5" ></text>
</g>
<g >
<title>sweep_slice (218 samples, 0.01%)</title><rect x="776.3" y="1125" width="0.2" height="15.0" fill="rgb(229,50,24)" rx="2" ry="2" />
<text x="779.34" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (290 samples, 0.02%)</title><rect x="716.6" y="1509" width="0.2" height="15.0" fill="rgb(238,169,2)" rx="2" ry="2" />
<text x="719.65" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (107,569 samples, 5.78%)</title><rect x="1017.7" y="1477" width="68.3" height="15.0" fill="rgb(225,52,19)" rx="2" ry="2" />
<text x="1020.73" y="1487.5" >camlInd..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1077" width="0.2" height="15.0" fill="rgb(221,121,2)" rx="2" ry="2" />
<text x="1191.57" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (906 samples, 0.05%)</title><rect x="718.3" y="1397" width="0.5" height="15.0" fill="rgb(241,69,17)" rx="2" ry="2" />
<text x="721.25" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (1,532 samples, 0.08%)</title><rect x="691.7" y="1477" width="1.0" height="15.0" fill="rgb(254,48,14)" rx="2" ry="2" />
<text x="694.71" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (799 samples, 0.04%)</title><rect x="675.0" y="1829" width="0.5" height="15.0" fill="rgb(232,157,29)" rx="2" ry="2" />
<text x="678.03" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3524 (176 samples, 0.01%)</title><rect x="811.4" y="1477" width="0.1" height="15.0" fill="rgb(221,13,25)" rx="2" ry="2" />
<text x="814.35" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (1,077 samples, 0.06%)</title><rect x="691.7" y="1429" width="0.7" height="15.0" fill="rgb(227,133,37)" rx="2" ry="2" />
<text x="694.74" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (196 samples, 0.01%)</title><rect x="920.1" y="1397" width="0.2" height="15.0" fill="rgb(230,136,44)" rx="2" ry="2" />
<text x="923.14" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__compare_2480 (420 samples, 0.02%)</title><rect x="999.4" y="1221" width="0.3" height="15.0" fill="rgb(211,190,43)" rx="2" ry="2" />
<text x="1002.44" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (298 samples, 0.02%)</title><rect x="433.8" y="1813" width="0.2" height="15.0" fill="rgb(251,139,49)" rx="2" ry="2" />
<text x="436.79" y="1823.5" ></text>
</g>
<g >
<title>caml_create_bytes (393 samples, 0.02%)</title><rect x="552.5" y="1925" width="0.3" height="15.0" fill="rgb(250,16,32)" rx="2" ry="2" />
<text x="555.54" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (164 samples, 0.01%)</title><rect x="707.7" y="1381" width="0.1" height="15.0" fill="rgb(240,83,44)" rx="2" ry="2" />
<text x="710.72" y="1391.5" ></text>
</g>
<g >
<title>sweep_slice (443 samples, 0.02%)</title><rect x="245.6" y="1845" width="0.3" height="15.0" fill="rgb(228,127,5)" rx="2" ry="2" />
<text x="248.64" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2835 (248 samples, 0.01%)</title><rect x="860.9" y="1317" width="0.2" height="15.0" fill="rgb(254,41,0)" rx="2" ry="2" />
<text x="863.92" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1749" width="0.5" height="15.0" fill="rgb(232,2,32)" rx="2" ry="2" />
<text x="1192.48" y="1759.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (384 samples, 0.02%)</title><rect x="231.1" y="1797" width="0.2" height="15.0" fill="rgb(254,114,16)" rx="2" ry="2" />
<text x="234.09" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (311 samples, 0.02%)</title><rect x="20.2" y="2021" width="0.2" height="15.0" fill="rgb(246,117,7)" rx="2" ry="2" />
<text x="23.25" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,606 samples, 2.08%)</title><rect x="611.8" y="1797" width="24.4" height="15.0" fill="rgb(219,45,48)" rx="2" ry="2" />
<text x="614.75" y="1807.5" >[..</text>
</g>
<g >
<title>caml_process_pending_signals (254 samples, 0.01%)</title><rect x="583.3" y="1893" width="0.2" height="15.0" fill="rgb(253,210,28)" rx="2" ry="2" />
<text x="586.31" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (935 samples, 0.05%)</title><rect x="815.1" y="1381" width="0.6" height="15.0" fill="rgb(244,176,45)" rx="2" ry="2" />
<text x="818.14" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (357 samples, 0.02%)</title><rect x="1132.6" y="1253" width="0.2" height="15.0" fill="rgb(233,159,29)" rx="2" ry="2" />
<text x="1135.62" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (469 samples, 0.03%)</title><rect x="1189.1" y="245" width="0.3" height="15.0" fill="rgb(248,136,38)" rx="2" ry="2" />
<text x="1192.12" y="255.5" ></text>
</g>
<g >
<title>caml_apply2 (362 samples, 0.02%)</title><rect x="809.4" y="1445" width="0.2" height="15.0" fill="rgb(216,212,45)" rx="2" ry="2" />
<text x="812.40" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (170 samples, 0.01%)</title><rect x="894.4" y="1429" width="0.1" height="15.0" fill="rgb(236,56,35)" rx="2" ry="2" />
<text x="897.36" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (1,477 samples, 0.08%)</title><rect x="467.8" y="1877" width="0.9" height="15.0" fill="rgb(222,177,26)" rx="2" ry="2" />
<text x="470.77" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (193 samples, 0.01%)</title><rect x="930.2" y="1237" width="0.1" height="15.0" fill="rgb(217,47,53)" rx="2" ry="2" />
<text x="933.15" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (289 samples, 0.02%)</title><rect x="1122.0" y="1269" width="0.2" height="15.0" fill="rgb(239,59,40)" rx="2" ry="2" />
<text x="1125.03" y="1279.5" ></text>
</g>
<g >
<title>camlCmdliner__term_eval_2070 (790,455 samples, 42.50%)</title><rect x="686.8" y="1893" width="501.5" height="15.0" fill="rgb(212,115,50)" rx="2" ry="2" />
<text x="689.78" y="1903.5" >camlCmdliner__term_eval_2070</text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (551 samples, 0.03%)</title><rect x="843.6" y="1189" width="0.4" height="15.0" fill="rgb(250,88,3)" rx="2" ry="2" />
<text x="846.64" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (184 samples, 0.01%)</title><rect x="725.5" y="1349" width="0.1" height="15.0" fill="rgb(249,218,6)" rx="2" ry="2" />
<text x="728.48" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (225 samples, 0.01%)</title><rect x="768.2" y="1237" width="0.2" height="15.0" fill="rgb(223,49,42)" rx="2" ry="2" />
<text x="771.25" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,254 samples, 0.12%)</title><rect x="695.6" y="1381" width="1.5" height="15.0" fill="rgb(239,120,45)" rx="2" ry="2" />
<text x="698.63" y="1391.5" ></text>
</g>
<g >
<title>caml_apply3 (788 samples, 0.04%)</title><rect x="434.3" y="1925" width="0.5" height="15.0" fill="rgb(213,204,43)" rx="2" ry="2" />
<text x="437.30" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (245 samples, 0.01%)</title><rect x="925.3" y="917" width="0.1" height="15.0" fill="rgb(251,188,18)" rx="2" ry="2" />
<text x="928.28" y="927.5" ></text>
</g>
<g >
<title>caml_apply2 (204 samples, 0.01%)</title><rect x="759.3" y="1301" width="0.1" height="15.0" fill="rgb(226,18,3)" rx="2" ry="2" />
<text x="762.25" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (3,402 samples, 0.18%)</title><rect x="738.7" y="1253" width="2.2" height="15.0" fill="rgb(246,2,9)" rx="2" ry="2" />
<text x="741.71" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (268 samples, 0.01%)</title><rect x="670.0" y="1749" width="0.2" height="15.0" fill="rgb(240,14,45)" rx="2" ry="2" />
<text x="673.04" y="1759.5" ></text>
</g>
<g >
<title>caml_hash (282 samples, 0.02%)</title><rect x="904.9" y="1253" width="0.2" height="15.0" fill="rgb(247,207,32)" rx="2" ry="2" />
<text x="907.92" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (262 samples, 0.01%)</title><rect x="914.5" y="1269" width="0.2" height="15.0" fill="rgb(238,11,30)" rx="2" ry="2" />
<text x="917.52" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1861" width="0.3" height="15.0" fill="rgb(250,77,7)" rx="2" ry="2" />
<text x="1191.82" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_31755 (36,199 samples, 1.95%)</title><rect x="1165.2" y="1557" width="22.9" height="15.0" fill="rgb(243,112,28)" rx="2" ry="2" />
<text x="1168.17" y="1567.5" >c..</text>
</g>
<g >
<title>caml_garbage_collection (169 samples, 0.01%)</title><rect x="872.8" y="1141" width="0.1" height="15.0" fill="rgb(254,162,13)" rx="2" ry="2" />
<text x="875.77" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (190 samples, 0.01%)</title><rect x="749.2" y="1253" width="0.1" height="15.0" fill="rgb(224,219,37)" rx="2" ry="2" />
<text x="752.15" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (573 samples, 0.03%)</title><rect x="761.7" y="1237" width="0.4" height="15.0" fill="rgb(246,208,11)" rx="2" ry="2" />
<text x="764.75" y="1247.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (1,045 samples, 0.06%)</title><rect x="294.8" y="1845" width="0.7" height="15.0" fill="rgb(218,162,18)" rx="2" ry="2" />
<text x="297.83" y="1855.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (315 samples, 0.02%)</title><rect x="207.7" y="1813" width="0.2" height="15.0" fill="rgb(240,146,43)" rx="2" ry="2" />
<text x="210.73" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1397" width="0.2" height="15.0" fill="rgb(225,20,17)" rx="2" ry="2" />
<text x="1191.57" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (372 samples, 0.02%)</title><rect x="983.8" y="1061" width="0.2" height="15.0" fill="rgb(249,193,19)" rx="2" ry="2" />
<text x="986.75" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (253 samples, 0.01%)</title><rect x="955.5" y="1157" width="0.2" height="15.0" fill="rgb(238,12,31)" rx="2" ry="2" />
<text x="958.53" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (261 samples, 0.01%)</title><rect x="964.9" y="1253" width="0.2" height="15.0" fill="rgb(211,6,37)" rx="2" ry="2" />
<text x="967.89" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Store__set_tree_exn_7549 (42,806 samples, 2.30%)</title><rect x="688.9" y="1749" width="27.2" height="15.0" fill="rgb(253,66,40)" rx="2" ry="2" />
<text x="691.95" y="1759.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (657 samples, 0.04%)</title><rect x="895.4" y="1413" width="0.4" height="15.0" fill="rgb(205,55,30)" rx="2" ry="2" />
<text x="898.35" y="1423.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (224 samples, 0.01%)</title><rect x="1188.9" y="69" width="0.2" height="15.0" fill="rgb(225,198,48)" rx="2" ry="2" />
<text x="1191.92" y="79.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1237" width="0.3" height="15.0" fill="rgb(232,38,42)" rx="2" ry="2" />
<text x="1191.82" y="1247.5" ></text>
</g>
<g >
<title>futex_wake (633 samples, 0.03%)</title><rect x="971.0" y="1205" width="0.4" height="15.0" fill="rgb(252,37,24)" rx="2" ry="2" />
<text x="974.01" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (188 samples, 0.01%)</title><rect x="916.5" y="1173" width="0.1" height="15.0" fill="rgb(208,15,27)" rx="2" ry="2" />
<text x="919.50" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (186 samples, 0.01%)</title><rect x="1150.9" y="1317" width="0.1" height="15.0" fill="rgb(239,153,51)" rx="2" ry="2" />
<text x="1153.93" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (385 samples, 0.02%)</title><rect x="821.6" y="1333" width="0.3" height="15.0" fill="rgb(242,190,4)" rx="2" ry="2" />
<text x="824.62" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,823 samples, 0.10%)</title><rect x="891.6" y="1317" width="1.1" height="15.0" fill="rgb(209,82,35)" rx="2" ry="2" />
<text x="894.56" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (452 samples, 0.02%)</title><rect x="903.6" y="1269" width="0.3" height="15.0" fill="rgb(228,180,44)" rx="2" ry="2" />
<text x="906.58" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (472 samples, 0.03%)</title><rect x="1119.4" y="1365" width="0.3" height="15.0" fill="rgb(221,184,4)" rx="2" ry="2" />
<text x="1122.39" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1349" width="0.5" height="15.0" fill="rgb(228,15,4)" rx="2" ry="2" />
<text x="1192.48" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (654 samples, 0.04%)</title><rect x="668.5" y="1765" width="0.4" height="15.0" fill="rgb(219,95,45)" rx="2" ry="2" />
<text x="671.51" y="1775.5" ></text>
</g>
<g >
<title>caml_apply2 (1,500 samples, 0.08%)</title><rect x="669.6" y="1845" width="1.0" height="15.0" fill="rgb(220,204,8)" rx="2" ry="2" />
<text x="672.60" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (6,838 samples, 0.37%)</title><rect x="946.3" y="1253" width="4.4" height="15.0" fill="rgb(235,177,27)" rx="2" ry="2" />
<text x="949.35" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11501 (487 samples, 0.03%)</title><rect x="1161.3" y="1397" width="0.3" height="15.0" fill="rgb(209,184,53)" rx="2" ry="2" />
<text x="1164.31" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (585 samples, 0.03%)</title><rect x="722.4" y="1301" width="0.4" height="15.0" fill="rgb(241,146,8)" rx="2" ry="2" />
<text x="725.40" y="1311.5" ></text>
</g>
<g >
<title>caml_tuplify2 (175 samples, 0.01%)</title><rect x="882.5" y="1205" width="0.1" height="15.0" fill="rgb(222,220,17)" rx="2" ry="2" />
<text x="885.53" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1013" width="0.3" height="15.0" fill="rgb(209,147,42)" rx="2" ry="2" />
<text x="1191.32" y="1023.5" ></text>
</g>
<g >
<title>unix_lseek_64 (761 samples, 0.04%)</title><rect x="841.6" y="1205" width="0.5" height="15.0" fill="rgb(224,90,34)" rx="2" ry="2" />
<text x="844.64" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,769 samples, 0.10%)</title><rect x="997.7" y="1125" width="1.1" height="15.0" fill="rgb(221,115,32)" rx="2" ry="2" />
<text x="1000.67" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (5,659 samples, 0.30%)</title><rect x="802.5" y="1397" width="3.6" height="15.0" fill="rgb(206,125,39)" rx="2" ry="2" />
<text x="805.46" y="1407.5" ></text>
</g>
<g >
<title>caml_string_equal (280 samples, 0.02%)</title><rect x="1114.4" y="1461" width="0.2" height="15.0" fill="rgb(251,85,17)" rx="2" ry="2" />
<text x="1117.43" y="1471.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (692 samples, 0.04%)</title><rect x="524.1" y="1877" width="0.4" height="15.0" fill="rgb(234,101,26)" rx="2" ry="2" />
<text x="527.11" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1269" width="0.2" height="15.0" fill="rgb(250,138,31)" rx="2" ry="2" />
<text x="1191.57" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (511 samples, 0.03%)</title><rect x="741.4" y="1205" width="0.3" height="15.0" fill="rgb(241,68,1)" rx="2" ry="2" />
<text x="744.41" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (2,590 samples, 0.14%)</title><rect x="807.7" y="1445" width="1.6" height="15.0" fill="rgb(223,103,47)" rx="2" ry="2" />
<text x="810.70" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,465 samples, 0.08%)</title><rect x="1147.1" y="1413" width="0.9" height="15.0" fill="rgb(219,145,2)" rx="2" ry="2" />
<text x="1150.11" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (188 samples, 0.01%)</title><rect x="925.9" y="1301" width="0.1" height="15.0" fill="rgb(241,192,20)" rx="2" ry="2" />
<text x="928.91" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (7,358 samples, 0.40%)</title><rect x="336.9" y="1845" width="4.6" height="15.0" fill="rgb(238,39,8)" rx="2" ry="2" />
<text x="339.87" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (164 samples, 0.01%)</title><rect x="1147.4" y="1365" width="0.1" height="15.0" fill="rgb(239,157,44)" rx="2" ry="2" />
<text x="1150.40" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,021 samples, 0.05%)</title><rect x="826.5" y="1029" width="0.7" height="15.0" fill="rgb(243,203,21)" rx="2" ry="2" />
<text x="829.51" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (289 samples, 0.02%)</title><rect x="852.0" y="1269" width="0.2" height="15.0" fill="rgb(237,102,42)" rx="2" ry="2" />
<text x="855.00" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (305 samples, 0.02%)</title><rect x="1167.2" y="1173" width="0.1" height="15.0" fill="rgb(226,98,26)" rx="2" ry="2" />
<text x="1170.16" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="709" width="0.2" height="15.0" fill="rgb(225,125,45)" rx="2" ry="2" />
<text x="1191.57" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (169 samples, 0.01%)</title><rect x="815.4" y="1253" width="0.1" height="15.0" fill="rgb(239,56,36)" rx="2" ry="2" />
<text x="818.40" y="1263.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (250 samples, 0.01%)</title><rect x="995.3" y="1141" width="0.2" height="15.0" fill="rgb(229,199,39)" rx="2" ry="2" />
<text x="998.35" y="1151.5" ></text>
</g>
<g >
<title>unix_lseek_64 (750 samples, 0.04%)</title><rect x="744.1" y="1221" width="0.5" height="15.0" fill="rgb(238,4,44)" rx="2" ry="2" />
<text x="747.14" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (482 samples, 0.03%)</title><rect x="1157.4" y="1285" width="0.4" height="15.0" fill="rgb(240,158,9)" rx="2" ry="2" />
<text x="1160.45" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,291 samples, 0.07%)</title><rect x="911.6" y="1285" width="0.8" height="15.0" fill="rgb(207,77,27)" rx="2" ry="2" />
<text x="914.57" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (212 samples, 0.01%)</title><rect x="1158.5" y="1253" width="0.2" height="15.0" fill="rgb(209,49,17)" rx="2" ry="2" />
<text x="1161.53" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (176 samples, 0.01%)</title><rect x="1140.4" y="1301" width="0.1" height="15.0" fill="rgb(236,42,18)" rx="2" ry="2" />
<text x="1143.39" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (7,737 samples, 0.42%)</title><rect x="912.6" y="1413" width="4.9" height="15.0" fill="rgb(238,58,9)" rx="2" ry="2" />
<text x="915.61" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3817 (456 samples, 0.02%)</title><rect x="854.5" y="1317" width="0.3" height="15.0" fill="rgb(216,29,39)" rx="2" ry="2" />
<text x="857.48" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (184 samples, 0.01%)</title><rect x="716.8" y="1525" width="0.2" height="15.0" fill="rgb(212,49,38)" rx="2" ry="2" />
<text x="719.84" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__of_bin_6087 (944 samples, 0.05%)</title><rect x="823.1" y="1381" width="0.6" height="15.0" fill="rgb(253,66,51)" rx="2" ry="2" />
<text x="826.12" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (36,045 samples, 1.94%)</title><rect x="1165.2" y="1509" width="22.8" height="15.0" fill="rgb(216,145,28)" rx="2" ry="2" />
<text x="1168.17" y="1519.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (332 samples, 0.02%)</title><rect x="919.7" y="1381" width="0.3" height="15.0" fill="rgb(212,214,21)" rx="2" ry="2" />
<text x="922.75" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="741" width="0.3" height="15.0" fill="rgb(211,150,41)" rx="2" ry="2" />
<text x="1192.12" y="751.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (430 samples, 0.02%)</title><rect x="856.2" y="1269" width="0.3" height="15.0" fill="rgb(235,148,9)" rx="2" ry="2" />
<text x="859.25" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3086 (409 samples, 0.02%)</title><rect x="921.0" y="1381" width="0.3" height="15.0" fill="rgb(210,142,30)" rx="2" ry="2" />
<text x="924.05" y="1391.5" ></text>
</g>
<g >
<title>__lseek64 (188 samples, 0.01%)</title><rect x="843.3" y="1173" width="0.1" height="15.0" fill="rgb(213,172,38)" rx="2" ry="2" />
<text x="846.29" y="1183.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (564 samples, 0.03%)</title><rect x="48.1" y="1973" width="0.4" height="15.0" fill="rgb(248,227,9)" rx="2" ry="2" />
<text x="51.10" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3490 (254 samples, 0.01%)</title><rect x="963.1" y="1221" width="0.1" height="15.0" fill="rgb(243,194,4)" rx="2" ry="2" />
<text x="966.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (98,443 samples, 5.29%)</title><rect x="1101.1" y="1605" width="62.5" height="15.0" fill="rgb(251,217,7)" rx="2" ry="2" />
<text x="1104.12" y="1615.5" >camlIr..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (562 samples, 0.03%)</title><rect x="761.8" y="1221" width="0.3" height="15.0" fill="rgb(219,59,36)" rx="2" ry="2" />
<text x="764.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="2053" width="0.3" height="15.0" fill="rgb(220,130,52)" rx="2" ry="2" />
<text x="1191.32" y="2063.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (3,380 samples, 0.18%)</title><rect x="1096.0" y="1493" width="2.2" height="15.0" fill="rgb(209,156,7)" rx="2" ry="2" />
<text x="1099.05" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_6309 (766 samples, 0.04%)</title><rect x="921.9" y="1333" width="0.5" height="15.0" fill="rgb(224,114,7)" rx="2" ry="2" />
<text x="924.95" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (2,360 samples, 0.13%)</title><rect x="56.2" y="1957" width="1.5" height="15.0" fill="rgb(252,39,43)" rx="2" ry="2" />
<text x="59.16" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (94,015 samples, 5.05%)</title><rect x="945.4" y="1317" width="59.6" height="15.0" fill="rgb(218,195,4)" rx="2" ry="2" />
<text x="948.38" y="1327.5" >camlIr..</text>
</g>
<g >
<title>caml_alloc_string (275 samples, 0.01%)</title><rect x="782.4" y="1189" width="0.2" height="15.0" fill="rgb(216,166,34)" rx="2" ry="2" />
<text x="785.42" y="1199.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (246 samples, 0.01%)</title><rect x="667.8" y="1765" width="0.2" height="15.0" fill="rgb(233,103,7)" rx="2" ry="2" />
<text x="670.81" y="1775.5" ></text>
</g>
<g >
<title>mark_slice (226 samples, 0.01%)</title><rect x="752.6" y="1189" width="0.2" height="15.0" fill="rgb(247,85,0)" rx="2" ry="2" />
<text x="755.63" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_layers__fun_69924 (518 samples, 0.03%)</title><rect x="1014.5" y="1397" width="0.3" height="15.0" fill="rgb(224,148,14)" rx="2" ry="2" />
<text x="1017.50" y="1407.5" ></text>
</g>
<g >
<title>caml_pread (444 samples, 0.02%)</title><rect x="1110.5" y="1317" width="0.2" height="15.0" fill="rgb(251,16,50)" rx="2" ry="2" />
<text x="1113.46" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (250 samples, 0.01%)</title><rect x="916.9" y="1349" width="0.2" height="15.0" fill="rgb(241,151,45)" rx="2" ry="2" />
<text x="919.91" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (233 samples, 0.01%)</title><rect x="800.4" y="1413" width="0.1" height="15.0" fill="rgb(237,68,48)" rx="2" ry="2" />
<text x="803.38" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="645" width="0.5" height="15.0" fill="rgb(214,53,20)" rx="2" ry="2" />
<text x="1192.48" y="655.5" ></text>
</g>
<g >
<title>sweep_slice (513 samples, 0.03%)</title><rect x="405.0" y="1845" width="0.3" height="15.0" fill="rgb(248,153,19)" rx="2" ry="2" />
<text x="407.99" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (174 samples, 0.01%)</title><rect x="866.6" y="1173" width="0.1" height="15.0" fill="rgb(217,44,24)" rx="2" ry="2" />
<text x="869.59" y="1183.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (589 samples, 0.03%)</title><rect x="817.6" y="1333" width="0.3" height="15.0" fill="rgb(232,33,32)" rx="2" ry="2" />
<text x="820.57" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (326 samples, 0.02%)</title><rect x="1146.0" y="1413" width="0.3" height="15.0" fill="rgb(228,156,22)" rx="2" ry="2" />
<text x="1149.05" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3841 (188 samples, 0.01%)</title><rect x="439.6" y="1877" width="0.1" height="15.0" fill="rgb(217,40,32)" rx="2" ry="2" />
<text x="442.62" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="981" width="0.3" height="15.0" fill="rgb(226,87,1)" rx="2" ry="2" />
<text x="1191.82" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (160 samples, 0.01%)</title><rect x="847.2" y="1221" width="0.2" height="15.0" fill="rgb(251,176,42)" rx="2" ry="2" />
<text x="850.25" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (1,605 samples, 0.09%)</title><rect x="759.4" y="1349" width="1.0" height="15.0" fill="rgb(252,219,36)" rx="2" ry="2" />
<text x="762.41" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (7,094 samples, 0.38%)</title><rect x="818.0" y="1413" width="4.5" height="15.0" fill="rgb(205,193,35)" rx="2" ry="2" />
<text x="821.02" y="1423.5" ></text>
</g>
<g >
<title>caml_apply2 (415 samples, 0.02%)</title><rect x="675.9" y="1845" width="0.3" height="15.0" fill="rgb(220,133,54)" rx="2" ry="2" />
<text x="678.91" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (163 samples, 0.01%)</title><rect x="1180.0" y="1301" width="0.1" height="15.0" fill="rgb(221,34,2)" rx="2" ry="2" />
<text x="1183.04" y="1311.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (769 samples, 0.04%)</title><rect x="678.3" y="1909" width="0.5" height="15.0" fill="rgb(224,165,3)" rx="2" ry="2" />
<text x="681.33" y="1919.5" ></text>
</g>
<g >
<title>sweep_slice (277 samples, 0.01%)</title><rect x="662.4" y="1893" width="0.2" height="15.0" fill="rgb(228,162,44)" rx="2" ry="2" />
<text x="665.39" y="1903.5" ></text>
</g>
<g >
<title>caml_apply2 (463 samples, 0.02%)</title><rect x="981.8" y="1141" width="0.3" height="15.0" fill="rgb(214,36,42)" rx="2" ry="2" />
<text x="984.81" y="1151.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (382 samples, 0.02%)</title><rect x="762.8" y="1269" width="0.2" height="15.0" fill="rgb(216,182,14)" rx="2" ry="2" />
<text x="765.76" y="1279.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (3,245 samples, 0.17%)</title><rect x="1184.0" y="1269" width="2.0" height="15.0" fill="rgb(236,151,40)" rx="2" ry="2" />
<text x="1186.99" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1541" width="0.2" height="15.0" fill="rgb(238,104,31)" rx="2" ry="2" />
<text x="1191.57" y="1551.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (128,142 samples, 6.89%)</title><rect x="725.3" y="1509" width="81.3" height="15.0" fill="rgb(248,188,30)" rx="2" ry="2" />
<text x="728.30" y="1519.5" >camlLwt__..</text>
</g>
<g >
<title>caml_finish_major_cycle (834 samples, 0.04%)</title><rect x="772.3" y="1109" width="0.6" height="15.0" fill="rgb(236,224,1)" rx="2" ry="2" />
<text x="775.32" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (246 samples, 0.01%)</title><rect x="1189.8" y="117" width="0.2" height="15.0" fill="rgb(209,27,54)" rx="2" ry="2" />
<text x="1192.80" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (742 samples, 0.04%)</title><rect x="1089.0" y="1397" width="0.4" height="15.0" fill="rgb(243,103,11)" rx="2" ry="2" />
<text x="1091.95" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (2,161 samples, 0.12%)</title><rect x="997.5" y="1205" width="1.4" height="15.0" fill="rgb(219,209,40)" rx="2" ry="2" />
<text x="1000.52" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (330 samples, 0.02%)</title><rect x="818.1" y="1333" width="0.3" height="15.0" fill="rgb(221,1,0)" rx="2" ry="2" />
<text x="821.15" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (180 samples, 0.01%)</title><rect x="1184.6" y="1189" width="0.1" height="15.0" fill="rgb(250,180,11)" rx="2" ry="2" />
<text x="1187.60" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (254 samples, 0.01%)</title><rect x="965.1" y="1253" width="0.1" height="15.0" fill="rgb(235,216,11)" rx="2" ry="2" />
<text x="968.06" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (976 samples, 0.05%)</title><rect x="1165.8" y="1269" width="0.6" height="15.0" fill="rgb(218,1,12)" rx="2" ry="2" />
<text x="1168.76" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3817 (176 samples, 0.01%)</title><rect x="1117.5" y="1413" width="0.1" height="15.0" fill="rgb(228,190,10)" rx="2" ry="2" />
<text x="1120.52" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (218 samples, 0.01%)</title><rect x="914.4" y="1253" width="0.1" height="15.0" fill="rgb(238,91,35)" rx="2" ry="2" />
<text x="917.39" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (4,372 samples, 0.24%)</title><rect x="198.4" y="1893" width="2.8" height="15.0" fill="rgb(249,91,27)" rx="2" ry="2" />
<text x="201.38" y="1903.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (225 samples, 0.01%)</title><rect x="417.7" y="1845" width="0.1" height="15.0" fill="rgb(236,54,37)" rx="2" ry="2" />
<text x="420.65" y="1855.5" ></text>
</g>
<g >
<title>caml_call_gc (595 samples, 0.03%)</title><rect x="666.6" y="1845" width="0.4" height="15.0" fill="rgb(207,207,27)" rx="2" ry="2" />
<text x="669.63" y="1855.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (411 samples, 0.02%)</title><rect x="673.6" y="1829" width="0.3" height="15.0" fill="rgb(224,100,11)" rx="2" ry="2" />
<text x="676.60" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (11,718 samples, 0.63%)</title><rect x="956.7" y="1269" width="7.4" height="15.0" fill="rgb(233,74,19)" rx="2" ry="2" />
<text x="959.68" y="1279.5" ></text>
</g>
<g >
<title>caml_c_call (12,058 samples, 0.65%)</title><rect x="22.4" y="2037" width="7.7" height="15.0" fill="rgb(240,113,47)" rx="2" ry="2" />
<text x="25.43" y="2047.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (250 samples, 0.01%)</title><rect x="978.0" y="1141" width="0.2" height="15.0" fill="rgb(211,183,3)" rx="2" ry="2" />
<text x="981.04" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="709" width="0.3" height="15.0" fill="rgb(244,201,28)" rx="2" ry="2" />
<text x="1192.12" y="719.5" ></text>
</g>
<g >
<title>caml_alloc_string (334 samples, 0.02%)</title><rect x="674.3" y="1861" width="0.2" height="15.0" fill="rgb(238,71,0)" rx="2" ry="2" />
<text x="677.26" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="997" width="0.3" height="15.0" fill="rgb(240,198,17)" rx="2" ry="2" />
<text x="1191.82" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__encode_3501 (780 samples, 0.04%)</title><rect x="666.6" y="1877" width="0.5" height="15.0" fill="rgb(249,220,34)" rx="2" ry="2" />
<text x="669.62" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (250 samples, 0.01%)</title><rect x="1176.4" y="901" width="0.2" height="15.0" fill="rgb(205,45,50)" rx="2" ry="2" />
<text x="1179.43" y="911.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="997" width="0.5" height="15.0" fill="rgb(248,86,35)" rx="2" ry="2" />
<text x="1192.48" y="1007.5" ></text>
</g>
<g >
<title>sha1_do_chunk (360 samples, 0.02%)</title><rect x="690.6" y="1365" width="0.3" height="15.0" fill="rgb(218,68,40)" rx="2" ry="2" />
<text x="693.64" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (32,451 samples, 1.74%)</title><rect x="946.0" y="1301" width="20.6" height="15.0" fill="rgb(214,163,9)" rx="2" ry="2" />
<text x="949.03" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1845" width="0.3" height="15.0" fill="rgb(252,42,8)" rx="2" ry="2" />
<text x="1191.82" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (160 samples, 0.01%)</title><rect x="1108.6" y="1317" width="0.1" height="15.0" fill="rgb(220,103,43)" rx="2" ry="2" />
<text x="1111.57" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (5,823 samples, 0.31%)</title><rect x="818.5" y="1349" width="3.7" height="15.0" fill="rgb(237,137,50)" rx="2" ry="2" />
<text x="821.51" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (530 samples, 0.03%)</title><rect x="815.3" y="1349" width="0.3" height="15.0" fill="rgb(254,160,1)" rx="2" ry="2" />
<text x="818.30" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (798 samples, 0.04%)</title><rect x="813.4" y="1461" width="0.5" height="15.0" fill="rgb(231,12,4)" rx="2" ry="2" />
<text x="816.38" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1493" width="0.3" height="15.0" fill="rgb(251,71,4)" rx="2" ry="2" />
<text x="1191.32" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (331 samples, 0.02%)</title><rect x="741.5" y="1157" width="0.2" height="15.0" fill="rgb(240,181,22)" rx="2" ry="2" />
<text x="744.52" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="709" width="0.5" height="15.0" fill="rgb(224,164,6)" rx="2" ry="2" />
<text x="1192.48" y="719.5" ></text>
</g>
<g >
<title>caml_apply2 (655 samples, 0.04%)</title><rect x="343.9" y="1909" width="0.4" height="15.0" fill="rgb(253,108,2)" rx="2" ry="2" />
<text x="346.88" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (815 samples, 0.04%)</title><rect x="924.9" y="1045" width="0.5" height="15.0" fill="rgb(220,6,31)" rx="2" ry="2" />
<text x="927.92" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (2,684 samples, 0.14%)</title><rect x="1174.9" y="1301" width="1.7" height="15.0" fill="rgb(243,137,32)" rx="2" ry="2" />
<text x="1177.89" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (393 samples, 0.02%)</title><rect x="1169.3" y="917" width="0.2" height="15.0" fill="rgb(230,40,19)" rx="2" ry="2" />
<text x="1172.25" y="927.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1909" width="0.3" height="15.0" fill="rgb(233,153,24)" rx="2" ry="2" />
<text x="1191.82" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (5,431 samples, 0.29%)</title><rect x="1086.5" y="1445" width="3.5" height="15.0" fill="rgb(247,17,9)" rx="2" ry="2" />
<text x="1089.52" y="1455.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (480 samples, 0.03%)</title><rect x="928.2" y="1301" width="0.4" height="15.0" fill="rgb(253,167,26)" rx="2" ry="2" />
<text x="931.25" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (507 samples, 0.03%)</title><rect x="954.5" y="1173" width="0.3" height="15.0" fill="rgb(244,228,24)" rx="2" ry="2" />
<text x="957.46" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (16,506 samples, 0.89%)</title><rect x="423.8" y="1925" width="10.5" height="15.0" fill="rgb(215,132,39)" rx="2" ry="2" />
<text x="426.83" y="1935.5" ></text>
</g>
<g >
<title>mark_slice (16,437 samples, 0.88%)</title><rect x="296.6" y="1829" width="10.4" height="15.0" fill="rgb(240,210,32)" rx="2" ry="2" />
<text x="299.59" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (2,000 samples, 0.11%)</title><rect x="1021.9" y="1365" width="1.3" height="15.0" fill="rgb(248,207,45)" rx="2" ry="2" />
<text x="1024.90" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (251 samples, 0.01%)</title><rect x="549.7" y="1861" width="0.1" height="15.0" fill="rgb(217,41,31)" rx="2" ry="2" />
<text x="552.65" y="1871.5" ></text>
</g>
<g >
<title>__lseek64 (235 samples, 0.01%)</title><rect x="1116.0" y="1301" width="0.1" height="15.0" fill="rgb(222,209,21)" rx="2" ry="2" />
<text x="1118.96" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__isortto_1834 (468 samples, 0.03%)</title><rect x="678.0" y="1829" width="0.3" height="15.0" fill="rgb(253,112,2)" rx="2" ry="2" />
<text x="681.02" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (98,158 samples, 5.28%)</title><rect x="942.8" y="1333" width="62.3" height="15.0" fill="rgb(217,44,13)" rx="2" ry="2" />
<text x="945.79" y="1343.5" >camlIr..</text>
</g>
<g >
<title>mark_slice (1,979 samples, 0.11%)</title><rect x="213.9" y="1829" width="1.3" height="15.0" fill="rgb(229,217,3)" rx="2" ry="2" />
<text x="216.93" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (488 samples, 0.03%)</title><rect x="689.3" y="1413" width="0.3" height="15.0" fill="rgb(209,143,30)" rx="2" ry="2" />
<text x="692.33" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (248 samples, 0.01%)</title><rect x="677.5" y="1877" width="0.1" height="15.0" fill="rgb(224,205,52)" rx="2" ry="2" />
<text x="680.48" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (480 samples, 0.03%)</title><rect x="834.3" y="1301" width="0.3" height="15.0" fill="rgb(220,140,20)" rx="2" ry="2" />
<text x="837.28" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (12,641 samples, 0.68%)</title><rect x="814.8" y="1477" width="8.0" height="15.0" fill="rgb(222,100,49)" rx="2" ry="2" />
<text x="817.80" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (264 samples, 0.01%)</title><rect x="706.3" y="1349" width="0.1" height="15.0" fill="rgb(223,214,18)" rx="2" ry="2" />
<text x="709.28" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_1396 (186 samples, 0.01%)</title><rect x="1163.0" y="1509" width="0.2" height="15.0" fill="rgb(250,224,29)" rx="2" ry="2" />
<text x="1166.05" y="1519.5" ></text>
</g>
<g >
<title>mark_slice (406 samples, 0.02%)</title><rect x="983.7" y="1077" width="0.3" height="15.0" fill="rgb(240,198,41)" rx="2" ry="2" />
<text x="986.73" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (786 samples, 0.04%)</title><rect x="820.7" y="1301" width="0.5" height="15.0" fill="rgb(241,12,15)" rx="2" ry="2" />
<text x="823.74" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (354 samples, 0.02%)</title><rect x="669.2" y="1829" width="0.2" height="15.0" fill="rgb(228,86,21)" rx="2" ry="2" />
<text x="672.20" y="1839.5" ></text>
</g>
<g >
<title>__lseek64 (201 samples, 0.01%)</title><rect x="815.4" y="1285" width="0.1" height="15.0" fill="rgb(244,41,52)" rx="2" ry="2" />
<text x="818.38" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,273 samples, 0.07%)</title><rect x="895.0" y="1429" width="0.8" height="15.0" fill="rgb(237,22,41)" rx="2" ry="2" />
<text x="898.02" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (166 samples, 0.01%)</title><rect x="675.7" y="1781" width="0.1" height="15.0" fill="rgb(238,110,47)" rx="2" ry="2" />
<text x="678.70" y="1791.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (609 samples, 0.03%)</title><rect x="49.0" y="1941" width="0.4" height="15.0" fill="rgb(246,47,10)" rx="2" ry="2" />
<text x="51.97" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (414 samples, 0.02%)</title><rect x="1040.4" y="1301" width="0.3" height="15.0" fill="rgb(220,37,18)" rx="2" ry="2" />
<text x="1043.42" y="1311.5" ></text>
</g>
<g >
<title>futex_wake (9,692 samples, 0.52%)</title><rect x="573.3" y="1877" width="6.1" height="15.0" fill="rgb(243,75,26)" rx="2" ry="2" />
<text x="576.28" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (207 samples, 0.01%)</title><rect x="710.5" y="1349" width="0.1" height="15.0" fill="rgb(205,63,31)" rx="2" ry="2" />
<text x="713.51" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (185 samples, 0.01%)</title><rect x="892.3" y="1285" width="0.1" height="15.0" fill="rgb(234,65,4)" rx="2" ry="2" />
<text x="895.32" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (243 samples, 0.01%)</title><rect x="940.4" y="1317" width="0.1" height="15.0" fill="rgb(236,174,28)" rx="2" ry="2" />
<text x="943.35" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="757" width="0.3" height="15.0" fill="rgb(239,28,12)" rx="2" ry="2" />
<text x="1192.12" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (575 samples, 0.03%)</title><rect x="970.4" y="1189" width="0.4" height="15.0" fill="rgb(223,148,15)" rx="2" ry="2" />
<text x="973.43" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_modify (170 samples, 0.01%)</title><rect x="470.9" y="1813" width="0.1" height="15.0" fill="rgb(252,198,39)" rx="2" ry="2" />
<text x="473.86" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (311 samples, 0.02%)</title><rect x="959.8" y="1173" width="0.2" height="15.0" fill="rgb(207,32,35)" rx="2" ry="2" />
<text x="962.78" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (720 samples, 0.04%)</title><rect x="844.2" y="1237" width="0.5" height="15.0" fill="rgb(250,7,45)" rx="2" ry="2" />
<text x="847.22" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (177 samples, 0.01%)</title><rect x="709.3" y="1397" width="0.1" height="15.0" fill="rgb(213,104,46)" rx="2" ry="2" />
<text x="712.33" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (769 samples, 0.04%)</title><rect x="1042.9" y="1317" width="0.5" height="15.0" fill="rgb(244,142,17)" rx="2" ry="2" />
<text x="1045.89" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (184 samples, 0.01%)</title><rect x="1165.0" y="1205" width="0.1" height="15.0" fill="rgb(225,154,38)" rx="2" ry="2" />
<text x="1168.03" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (161 samples, 0.01%)</title><rect x="1135.6" y="1445" width="0.1" height="15.0" fill="rgb(206,133,7)" rx="2" ry="2" />
<text x="1138.61" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (34,237 samples, 1.84%)</title><rect x="508.7" y="1941" width="21.7" height="15.0" fill="rgb(209,160,8)" rx="2" ry="2" />
<text x="511.67" y="1951.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1445" width="0.5" height="15.0" fill="rgb(242,36,46)" rx="2" ry="2" />
<text x="1192.48" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (735 samples, 0.04%)</title><rect x="723.2" y="1317" width="0.4" height="15.0" fill="rgb(248,220,37)" rx="2" ry="2" />
<text x="726.17" y="1327.5" ></text>
</g>
<g >
<title>caml_apply2 (746 samples, 0.04%)</title><rect x="1043.8" y="1317" width="0.5" height="15.0" fill="rgb(226,149,49)" rx="2" ry="2" />
<text x="1046.85" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="277" width="0.3" height="15.0" fill="rgb(207,106,29)" rx="2" ry="2" />
<text x="1191.82" y="287.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="629" width="0.3" height="15.0" fill="rgb(218,198,47)" rx="2" ry="2" />
<text x="1191.82" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (214 samples, 0.01%)</title><rect x="730.6" y="1285" width="0.2" height="15.0" fill="rgb(240,109,14)" rx="2" ry="2" />
<text x="733.64" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (379 samples, 0.02%)</title><rect x="949.9" y="1125" width="0.2" height="15.0" fill="rgb(215,17,39)" rx="2" ry="2" />
<text x="952.86" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__equal_3488 (8,793 samples, 0.47%)</title><rect x="473.6" y="1941" width="5.6" height="15.0" fill="rgb(207,218,12)" rx="2" ry="2" />
<text x="476.62" y="1951.5" ></text>
</g>
<g >
<title>caml_apply2 (498 samples, 0.03%)</title><rect x="777.2" y="1189" width="0.3" height="15.0" fill="rgb(246,45,34)" rx="2" ry="2" />
<text x="780.20" y="1199.5" ></text>
</g>
<g >
<title>caml_blit_bytes (6,285 samples, 0.34%)</title><rect x="463.7" y="1909" width="4.0" height="15.0" fill="rgb(212,152,29)" rx="2" ry="2" />
<text x="466.69" y="1919.5" ></text>
</g>
<g >
<title>caml_hash (357 samples, 0.02%)</title><rect x="968.0" y="1221" width="0.2" height="15.0" fill="rgb(221,121,32)" rx="2" ry="2" />
<text x="970.97" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (322 samples, 0.02%)</title><rect x="884.0" y="1205" width="0.2" height="15.0" fill="rgb(243,47,2)" rx="2" ry="2" />
<text x="886.97" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="485" width="0.2" height="15.0" fill="rgb(252,156,2)" rx="2" ry="2" />
<text x="1191.57" y="495.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1189" width="0.3" height="15.0" fill="rgb(232,189,4)" rx="2" ry="2" />
<text x="1191.82" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (434 samples, 0.02%)</title><rect x="907.2" y="1349" width="0.3" height="15.0" fill="rgb(235,59,49)" rx="2" ry="2" />
<text x="910.18" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (3,457 samples, 0.19%)</title><rect x="1180.6" y="1269" width="2.2" height="15.0" fill="rgb(211,159,38)" rx="2" ry="2" />
<text x="1183.64" y="1279.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (444 samples, 0.02%)</title><rect x="47.6" y="1973" width="0.2" height="15.0" fill="rgb(227,12,31)" rx="2" ry="2" />
<text x="50.55" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (450 samples, 0.02%)</title><rect x="760.0" y="1333" width="0.3" height="15.0" fill="rgb(217,21,23)" rx="2" ry="2" />
<text x="763.00" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (2,158 samples, 0.12%)</title><rect x="268.9" y="1813" width="1.4" height="15.0" fill="rgb(212,208,32)" rx="2" ry="2" />
<text x="271.93" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (844 samples, 0.05%)</title><rect x="901.1" y="1285" width="0.5" height="15.0" fill="rgb(241,95,5)" rx="2" ry="2" />
<text x="904.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (239 samples, 0.01%)</title><rect x="896.0" y="1397" width="0.2" height="15.0" fill="rgb(230,203,48)" rx="2" ry="2" />
<text x="899.03" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1237" width="0.2" height="15.0" fill="rgb(212,100,50)" rx="2" ry="2" />
<text x="1191.57" y="1247.5" ></text>
</g>
<g >
<title>digestif_sha1_update (282 samples, 0.02%)</title><rect x="1165.8" y="1221" width="0.2" height="15.0" fill="rgb(242,80,54)" rx="2" ry="2" />
<text x="1168.78" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (251 samples, 0.01%)</title><rect x="692.1" y="1349" width="0.2" height="15.0" fill="rgb(230,130,28)" rx="2" ry="2" />
<text x="695.10" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (320 samples, 0.02%)</title><rect x="744.2" y="1189" width="0.2" height="15.0" fill="rgb(247,52,33)" rx="2" ry="2" />
<text x="747.18" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,556 samples, 0.08%)</title><rect x="159.8" y="1797" width="1.0" height="15.0" fill="rgb(209,142,25)" rx="2" ry="2" />
<text x="162.85" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (170 samples, 0.01%)</title><rect x="1181.3" y="1189" width="0.2" height="15.0" fill="rgb(225,120,15)" rx="2" ry="2" />
<text x="1184.34" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="421" width="0.2" height="15.0" fill="rgb(210,89,51)" rx="2" ry="2" />
<text x="1191.57" y="431.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (215 samples, 0.01%)</title><rect x="1182.6" y="1253" width="0.1" height="15.0" fill="rgb(240,81,5)" rx="2" ry="2" />
<text x="1185.58" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (7,678 samples, 0.41%)</title><rect x="709.2" y="1509" width="4.8" height="15.0" fill="rgb(223,137,4)" rx="2" ry="2" />
<text x="712.16" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (3,908 samples, 0.21%)</title><rect x="778.1" y="1221" width="2.4" height="15.0" fill="rgb(247,202,41)" rx="2" ry="2" />
<text x="781.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (174 samples, 0.01%)</title><rect x="828.3" y="1269" width="0.1" height="15.0" fill="rgb(212,73,12)" rx="2" ry="2" />
<text x="831.30" y="1279.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (270 samples, 0.01%)</title><rect x="866.3" y="1173" width="0.2" height="15.0" fill="rgb(236,141,13)" rx="2" ry="2" />
<text x="869.35" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (230 samples, 0.01%)</title><rect x="712.3" y="1381" width="0.2" height="15.0" fill="rgb(211,29,17)" rx="2" ry="2" />
<text x="715.32" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (176 samples, 0.01%)</title><rect x="1043.7" y="1301" width="0.1" height="15.0" fill="rgb(224,20,24)" rx="2" ry="2" />
<text x="1046.73" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (30,736 samples, 1.65%)</title><rect x="738.1" y="1349" width="19.5" height="15.0" fill="rgb(226,58,39)" rx="2" ry="2" />
<text x="741.05" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15287 (163 samples, 0.01%)</title><rect x="726.0" y="1365" width="0.1" height="15.0" fill="rgb(247,122,34)" rx="2" ry="2" />
<text x="729.04" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (9,971 samples, 0.54%)</title><rect x="1136.0" y="1397" width="6.4" height="15.0" fill="rgb(218,181,2)" rx="2" ry="2" />
<text x="1139.04" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__equal_4900 (544 samples, 0.03%)</title><rect x="1164.8" y="1541" width="0.4" height="15.0" fill="rgb(222,24,52)" rx="2" ry="2" />
<text x="1167.82" y="1551.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (692 samples, 0.04%)</title><rect x="524.1" y="1893" width="0.4" height="15.0" fill="rgb(210,196,6)" rx="2" ry="2" />
<text x="527.11" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1203 (360 samples, 0.02%)</title><rect x="1166.1" y="1221" width="0.2" height="15.0" fill="rgb(217,144,18)" rx="2" ry="2" />
<text x="1169.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (1,437 samples, 0.08%)</title><rect x="983.2" y="1141" width="0.9" height="15.0" fill="rgb(222,134,43)" rx="2" ry="2" />
<text x="986.19" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,683 samples, 0.09%)</title><rect x="1118.1" y="1429" width="1.1" height="15.0" fill="rgb(231,7,27)" rx="2" ry="2" />
<text x="1121.15" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (380 samples, 0.02%)</title><rect x="824.3" y="1205" width="0.3" height="15.0" fill="rgb(205,51,1)" rx="2" ry="2" />
<text x="827.33" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,922 samples, 0.10%)</title><rect x="782.1" y="1221" width="1.2" height="15.0" fill="rgb(211,227,18)" rx="2" ry="2" />
<text x="785.07" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Fan__export_1262 (401 samples, 0.02%)</title><rect x="57.8" y="1957" width="0.2" height="15.0" fill="rgb(236,63,34)" rx="2" ry="2" />
<text x="60.79" y="1967.5" ></text>
</g>
<g >
<title>sweep_slice (387 samples, 0.02%)</title><rect x="423.6" y="1861" width="0.2" height="15.0" fill="rgb(235,41,15)" rx="2" ry="2" />
<text x="426.58" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (251 samples, 0.01%)</title><rect x="895.2" y="1413" width="0.2" height="15.0" fill="rgb(232,195,20)" rx="2" ry="2" />
<text x="898.19" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (522 samples, 0.03%)</title><rect x="859.3" y="1189" width="0.4" height="15.0" fill="rgb(221,149,7)" rx="2" ry="2" />
<text x="862.33" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (550 samples, 0.03%)</title><rect x="1004.0" y="1237" width="0.4" height="15.0" fill="rgb(205,224,44)" rx="2" ry="2" />
<text x="1007.02" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,675 samples, 0.20%)</title><rect x="341.5" y="1877" width="2.4" height="15.0" fill="rgb(236,173,39)" rx="2" ry="2" />
<text x="344.55" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (237 samples, 0.01%)</title><rect x="1125.4" y="1349" width="0.2" height="15.0" fill="rgb(228,119,13)" rx="2" ry="2" />
<text x="1128.45" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (466 samples, 0.03%)</title><rect x="1188.8" y="213" width="0.3" height="15.0" fill="rgb(232,159,54)" rx="2" ry="2" />
<text x="1191.83" y="223.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,184 samples, 0.06%)</title><rect x="799.5" y="1445" width="0.7" height="15.0" fill="rgb(208,221,52)" rx="2" ry="2" />
<text x="802.46" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,231 samples, 0.07%)</title><rect x="1005.6" y="1429" width="0.8" height="15.0" fill="rgb(207,101,12)" rx="2" ry="2" />
<text x="1008.60" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (168 samples, 0.01%)</title><rect x="821.7" y="1173" width="0.1" height="15.0" fill="rgb(233,136,6)" rx="2" ry="2" />
<text x="824.74" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (1,628 samples, 0.09%)</title><rect x="908.4" y="1381" width="1.1" height="15.0" fill="rgb(223,214,19)" rx="2" ry="2" />
<text x="911.42" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (233 samples, 0.01%)</title><rect x="700.7" y="1461" width="0.1" height="15.0" fill="rgb(240,128,30)" rx="2" ry="2" />
<text x="703.67" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (184 samples, 0.01%)</title><rect x="1165.0" y="1173" width="0.1" height="15.0" fill="rgb(246,86,52)" rx="2" ry="2" />
<text x="1168.03" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (305 samples, 0.02%)</title><rect x="848.4" y="1221" width="0.2" height="15.0" fill="rgb(240,18,4)" rx="2" ry="2" />
<text x="851.36" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (5,884 samples, 0.32%)</title><rect x="720.8" y="1365" width="3.7" height="15.0" fill="rgb(248,218,24)" rx="2" ry="2" />
<text x="723.79" y="1375.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (3,472 samples, 0.19%)</title><rect x="1155.1" y="1317" width="2.2" height="15.0" fill="rgb(223,59,28)" rx="2" ry="2" />
<text x="1158.13" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (680 samples, 0.04%)</title><rect x="954.4" y="1205" width="0.4" height="15.0" fill="rgb(231,165,29)" rx="2" ry="2" />
<text x="957.39" y="1215.5" ></text>
</g>
<g >
<title>caml_string_length (174 samples, 0.01%)</title><rect x="802.3" y="1349" width="0.1" height="15.0" fill="rgb(221,138,12)" rx="2" ry="2" />
<text x="805.31" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (241 samples, 0.01%)</title><rect x="773.5" y="1189" width="0.2" height="15.0" fill="rgb(213,16,51)" rx="2" ry="2" />
<text x="776.51" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (1,294 samples, 0.07%)</title><rect x="1166.7" y="1237" width="0.8" height="15.0" fill="rgb(240,229,1)" rx="2" ry="2" />
<text x="1169.72" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (534 samples, 0.03%)</title><rect x="709.3" y="1429" width="0.3" height="15.0" fill="rgb(217,196,34)" rx="2" ry="2" />
<text x="712.27" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (194 samples, 0.01%)</title><rect x="732.4" y="1365" width="0.1" height="15.0" fill="rgb(231,41,53)" rx="2" ry="2" />
<text x="735.37" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (187 samples, 0.01%)</title><rect x="1180.0" y="1317" width="0.1" height="15.0" fill="rgb(228,112,45)" rx="2" ry="2" />
<text x="1183.03" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,382 samples, 0.07%)</title><rect x="255.2" y="1845" width="0.8" height="15.0" fill="rgb(247,119,7)" rx="2" ry="2" />
<text x="258.16" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217 samples, 0.01%)</title><rect x="916.5" y="1189" width="0.1" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" />
<text x="919.48" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (206 samples, 0.01%)</title><rect x="961.6" y="1141" width="0.2" height="15.0" fill="rgb(254,131,6)" rx="2" ry="2" />
<text x="964.65" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (2,911 samples, 0.16%)</title><rect x="966.7" y="1301" width="1.9" height="15.0" fill="rgb(239,101,17)" rx="2" ry="2" />
<text x="969.73" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (96,275 samples, 5.18%)</title><rect x="832.3" y="1413" width="61.1" height="15.0" fill="rgb(222,71,42)" rx="2" ry="2" />
<text x="835.32" y="1423.5" >camlSt..</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (366 samples, 0.02%)</title><rect x="714.6" y="1477" width="0.3" height="15.0" fill="rgb(252,223,38)" rx="2" ry="2" />
<text x="717.64" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_5050 (674 samples, 0.04%)</title><rect x="686.9" y="1733" width="0.4" height="15.0" fill="rgb(217,37,37)" rx="2" ry="2" />
<text x="689.90" y="1743.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,685 samples, 0.09%)</title><rect x="1139.8" y="1333" width="1.0" height="15.0" fill="rgb(227,3,42)" rx="2" ry="2" />
<text x="1142.76" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="709" width="0.3" height="15.0" fill="rgb(209,7,10)" rx="2" ry="2" />
<text x="1191.32" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (20,518 samples, 1.10%)</title><rect x="912.5" y="1429" width="13.0" height="15.0" fill="rgb(214,113,52)" rx="2" ry="2" />
<text x="915.49" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (460 samples, 0.02%)</title><rect x="1112.9" y="1493" width="0.3" height="15.0" fill="rgb(233,17,39)" rx="2" ry="2" />
<text x="1115.92" y="1503.5" ></text>
</g>
<g >
<title>caml_apply2 (734 samples, 0.04%)</title><rect x="420.9" y="1909" width="0.4" height="15.0" fill="rgb(228,149,33)" rx="2" ry="2" />
<text x="423.85" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1989" width="0.2" height="15.0" fill="rgb(205,91,31)" rx="2" ry="2" />
<text x="1191.57" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (205 samples, 0.01%)</title><rect x="827.5" y="1269" width="0.1" height="15.0" fill="rgb(225,114,33)" rx="2" ry="2" />
<text x="830.49" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (300 samples, 0.02%)</title><rect x="720.5" y="1349" width="0.2" height="15.0" fill="rgb(235,43,12)" rx="2" ry="2" />
<text x="723.48" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (1,295 samples, 0.07%)</title><rect x="1168.7" y="1285" width="0.8" height="15.0" fill="rgb(219,107,11)" rx="2" ry="2" />
<text x="1171.68" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (18,083 samples, 0.97%)</title><rect x="977.2" y="1205" width="11.5" height="15.0" fill="rgb(253,143,22)" rx="2" ry="2" />
<text x="980.21" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (6,000 samples, 0.32%)</title><rect x="913.1" y="1349" width="3.8" height="15.0" fill="rgb(254,146,14)" rx="2" ry="2" />
<text x="916.09" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (294 samples, 0.02%)</title><rect x="973.4" y="1205" width="0.2" height="15.0" fill="rgb(219,194,32)" rx="2" ry="2" />
<text x="976.38" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (3,127 samples, 0.17%)</title><rect x="959.3" y="1221" width="1.9" height="15.0" fill="rgb(232,111,8)" rx="2" ry="2" />
<text x="962.26" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,056 samples, 0.16%)</title><rect x="727.5" y="1221" width="1.9" height="15.0" fill="rgb(215,97,17)" rx="2" ry="2" />
<text x="730.49" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (175 samples, 0.01%)</title><rect x="673.1" y="1813" width="0.1" height="15.0" fill="rgb(239,112,50)" rx="2" ry="2" />
<text x="676.08" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_7268 (17,461 samples, 0.94%)</title><rect x="1165.5" y="1365" width="11.1" height="15.0" fill="rgb(208,165,5)" rx="2" ry="2" />
<text x="1168.55" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (2,819 samples, 0.15%)</title><rect x="950.8" y="1221" width="1.8" height="15.0" fill="rgb(225,106,21)" rx="2" ry="2" />
<text x="953.81" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (241 samples, 0.01%)</title><rect x="831.1" y="1237" width="0.2" height="15.0" fill="rgb(236,157,20)" rx="2" ry="2" />
<text x="834.14" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (479 samples, 0.03%)</title><rect x="684.8" y="1861" width="0.3" height="15.0" fill="rgb(212,147,28)" rx="2" ry="2" />
<text x="687.75" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (193 samples, 0.01%)</title><rect x="958.1" y="1205" width="0.1" height="15.0" fill="rgb(239,14,29)" rx="2" ry="2" />
<text x="961.07" y="1215.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (233 samples, 0.01%)</title><rect x="953.0" y="1157" width="0.1" height="15.0" fill="rgb(243,32,23)" rx="2" ry="2" />
<text x="955.99" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_2302 (193 samples, 0.01%)</title><rect x="919.1" y="1349" width="0.1" height="15.0" fill="rgb(244,80,51)" rx="2" ry="2" />
<text x="922.07" y="1359.5" ></text>
</g>
<g >
<title>caml_pread (281 samples, 0.02%)</title><rect x="724.0" y="1301" width="0.2" height="15.0" fill="rgb(210,70,13)" rx="2" ry="2" />
<text x="727.04" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (170 samples, 0.01%)</title><rect x="941.2" y="1205" width="0.1" height="15.0" fill="rgb(207,160,35)" rx="2" ry="2" />
<text x="944.23" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (473 samples, 0.03%)</title><rect x="977.9" y="1157" width="0.3" height="15.0" fill="rgb(235,199,37)" rx="2" ry="2" />
<text x="980.94" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_29963 (167 samples, 0.01%)</title><rect x="715.7" y="1605" width="0.1" height="15.0" fill="rgb(250,106,6)" rx="2" ry="2" />
<text x="718.73" y="1615.5" ></text>
</g>
<g >
<title>camlLayered_bench__fun_31085 (46,214 samples, 2.48%)</title><rect x="686.8" y="1829" width="29.3" height="15.0" fill="rgb(231,154,24)" rx="2" ry="2" />
<text x="689.78" y="1839.5" >ca..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (465 samples, 0.03%)</title><rect x="689.3" y="1317" width="0.3" height="15.0" fill="rgb(206,89,49)" rx="2" ry="2" />
<text x="692.34" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="533" width="0.3" height="15.0" fill="rgb(228,80,8)" rx="2" ry="2" />
<text x="1191.82" y="543.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (571 samples, 0.03%)</title><rect x="667.8" y="1797" width="0.4" height="15.0" fill="rgb(234,151,25)" rx="2" ry="2" />
<text x="670.81" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,269 samples, 0.18%)</title><rect x="825.1" y="1221" width="2.1" height="15.0" fill="rgb(241,141,13)" rx="2" ry="2" />
<text x="828.10" y="1231.5" ></text>
</g>
<g >
<title>sweep_slice (172 samples, 0.01%)</title><rect x="776.0" y="1093" width="0.1" height="15.0" fill="rgb(218,22,10)" rx="2" ry="2" />
<text x="778.99" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (584 samples, 0.03%)</title><rect x="1148.5" y="1269" width="0.4" height="15.0" fill="rgb(211,220,50)" rx="2" ry="2" />
<text x="1151.51" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (265 samples, 0.01%)</title><rect x="932.2" y="1157" width="0.2" height="15.0" fill="rgb(218,119,8)" rx="2" ry="2" />
<text x="935.20" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (540 samples, 0.03%)</title><rect x="1097.3" y="1429" width="0.3" height="15.0" fill="rgb(224,195,34)" rx="2" ry="2" />
<text x="1100.28" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (464 samples, 0.02%)</title><rect x="719.1" y="1413" width="0.3" height="15.0" fill="rgb(211,111,22)" rx="2" ry="2" />
<text x="722.15" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="405" width="0.3" height="15.0" fill="rgb(254,146,28)" rx="2" ry="2" />
<text x="1191.32" y="415.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="773" width="0.5" height="15.0" fill="rgb(211,111,6)" rx="2" ry="2" />
<text x="1192.48" y="783.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (410 samples, 0.02%)</title><rect x="1186.2" y="1237" width="0.3" height="15.0" fill="rgb(224,46,28)" rx="2" ry="2" />
<text x="1189.23" y="1247.5" ></text>
</g>
<g >
<title>caml_pread (335 samples, 0.02%)</title><rect x="932.2" y="1253" width="0.2" height="15.0" fill="rgb(238,61,34)" rx="2" ry="2" />
<text x="935.17" y="1263.5" ></text>
</g>
<g >
<title>__libc_pread64 (432 samples, 0.02%)</title><rect x="1141.1" y="1285" width="0.3" height="15.0" fill="rgb(250,159,4)" rx="2" ry="2" />
<text x="1144.10" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (296 samples, 0.02%)</title><rect x="1117.2" y="1397" width="0.2" height="15.0" fill="rgb(242,120,2)" rx="2" ry="2" />
<text x="1120.19" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (349 samples, 0.02%)</title><rect x="689.4" y="837" width="0.2" height="15.0" fill="rgb(213,98,30)" rx="2" ry="2" />
<text x="692.40" y="847.5" ></text>
</g>
<g >
<title>caml_hash (242 samples, 0.01%)</title><rect x="914.9" y="1253" width="0.1" height="15.0" fill="rgb(241,211,40)" rx="2" ry="2" />
<text x="917.88" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (277 samples, 0.01%)</title><rect x="1073.0" y="1333" width="0.2" height="15.0" fill="rgb(209,86,53)" rx="2" ry="2" />
<text x="1076.00" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (174 samples, 0.01%)</title><rect x="751.2" y="1237" width="0.1" height="15.0" fill="rgb(220,68,31)" rx="2" ry="2" />
<text x="754.23" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (176 samples, 0.01%)</title><rect x="689.5" y="229" width="0.1" height="15.0" fill="rgb(243,217,25)" rx="2" ry="2" />
<text x="692.49" y="239.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (1,053 samples, 0.06%)</title><rect x="1127.2" y="1365" width="0.7" height="15.0" fill="rgb(210,228,11)" rx="2" ry="2" />
<text x="1130.24" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (331 samples, 0.02%)</title><rect x="1058.6" y="1333" width="0.2" height="15.0" fill="rgb(218,114,39)" rx="2" ry="2" />
<text x="1061.59" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="965" width="0.3" height="15.0" fill="rgb(206,153,30)" rx="2" ry="2" />
<text x="1192.12" y="975.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (762 samples, 0.04%)</title><rect x="1118.6" y="1349" width="0.5" height="15.0" fill="rgb(247,73,54)" rx="2" ry="2" />
<text x="1121.64" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (549 samples, 0.03%)</title><rect x="775.6" y="1077" width="0.4" height="15.0" fill="rgb(253,5,29)" rx="2" ry="2" />
<text x="778.64" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5169 (959 samples, 0.05%)</title><rect x="1148.4" y="1333" width="0.6" height="15.0" fill="rgb(205,65,51)" rx="2" ry="2" />
<text x="1151.36" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (14,648 samples, 0.79%)</title><rect x="411.6" y="1909" width="9.3" height="15.0" fill="rgb(230,150,34)" rx="2" ry="2" />
<text x="414.56" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (2,305 samples, 0.12%)</title><rect x="830.5" y="1301" width="1.5" height="15.0" fill="rgb(226,204,41)" rx="2" ry="2" />
<text x="833.53" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (267 samples, 0.01%)</title><rect x="1166.1" y="1125" width="0.1" height="15.0" fill="rgb(241,141,18)" rx="2" ry="2" />
<text x="1169.08" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (228 samples, 0.01%)</title><rect x="1094.4" y="1445" width="0.2" height="15.0" fill="rgb(210,102,30)" rx="2" ry="2" />
<text x="1097.41" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (268 samples, 0.01%)</title><rect x="1168.0" y="1189" width="0.2" height="15.0" fill="rgb(227,131,48)" rx="2" ry="2" />
<text x="1171.01" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (204 samples, 0.01%)</title><rect x="904.4" y="1269" width="0.2" height="15.0" fill="rgb(247,0,41)" rx="2" ry="2" />
<text x="907.43" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,610 samples, 0.19%)</title><rect x="243.6" y="1877" width="2.3" height="15.0" fill="rgb(247,24,34)" rx="2" ry="2" />
<text x="246.63" y="1887.5" ></text>
</g>
<g >
<title>unix_lseek_64 (338 samples, 0.02%)</title><rect x="926.1" y="1269" width="0.2" height="15.0" fill="rgb(214,199,46)" rx="2" ry="2" />
<text x="929.13" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (177 samples, 0.01%)</title><rect x="746.8" y="1221" width="0.2" height="15.0" fill="rgb(243,147,43)" rx="2" ry="2" />
<text x="749.84" y="1231.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.4 (228 samples, 0.01%)</title><rect x="971.8" y="1221" width="0.2" height="15.0" fill="rgb(235,191,53)" rx="2" ry="2" />
<text x="974.85" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (375 samples, 0.02%)</title><rect x="1176.3" y="965" width="0.3" height="15.0" fill="rgb(252,152,41)" rx="2" ry="2" />
<text x="1179.35" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1893" width="0.3" height="15.0" fill="rgb(252,7,17)" rx="2" ry="2" />
<text x="1191.82" y="1903.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (320 samples, 0.02%)</title><rect x="245.4" y="1813" width="0.2" height="15.0" fill="rgb(208,175,50)" rx="2" ry="2" />
<text x="248.44" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,448 samples, 0.08%)</title><rect x="911.5" y="1317" width="0.9" height="15.0" fill="rgb(252,77,34)" rx="2" ry="2" />
<text x="914.47" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (9,986 samples, 0.54%)</title><rect x="543.8" y="1925" width="6.3" height="15.0" fill="rgb(250,174,1)" rx="2" ry="2" />
<text x="546.79" y="1935.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (2,071 samples, 0.11%)</title><rect x="48.0" y="2021" width="1.4" height="15.0" fill="rgb(242,166,36)" rx="2" ry="2" />
<text x="51.04" y="2031.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (472 samples, 0.03%)</title><rect x="664.8" y="1877" width="0.3" height="15.0" fill="rgb(214,47,9)" rx="2" ry="2" />
<text x="667.77" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (777 samples, 0.04%)</title><rect x="933.8" y="1333" width="0.4" height="15.0" fill="rgb(215,68,11)" rx="2" ry="2" />
<text x="936.75" y="1343.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (187 samples, 0.01%)</title><rect x="168.3" y="1813" width="0.1" height="15.0" fill="rgb(230,169,11)" rx="2" ry="2" />
<text x="171.33" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1301" width="0.5" height="15.0" fill="rgb(220,180,46)" rx="2" ry="2" />
<text x="1192.48" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (230 samples, 0.01%)</title><rect x="1161.3" y="1349" width="0.2" height="15.0" fill="rgb(242,142,21)" rx="2" ry="2" />
<text x="1164.32" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (3,684 samples, 0.20%)</title><rect x="341.5" y="1893" width="2.4" height="15.0" fill="rgb(224,121,31)" rx="2" ry="2" />
<text x="344.54" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (270 samples, 0.01%)</title><rect x="1113.7" y="1461" width="0.2" height="15.0" fill="rgb(222,122,39)" rx="2" ry="2" />
<text x="1116.70" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (210 samples, 0.01%)</title><rect x="669.7" y="1781" width="0.1" height="15.0" fill="rgb(220,222,34)" rx="2" ry="2" />
<text x="672.67" y="1791.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,894 samples, 0.10%)</title><rect x="885.6" y="1189" width="1.2" height="15.0" fill="rgb(252,203,16)" rx="2" ry="2" />
<text x="888.56" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (209 samples, 0.01%)</title><rect x="969.1" y="1285" width="0.1" height="15.0" fill="rgb(215,40,11)" rx="2" ry="2" />
<text x="972.09" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (354 samples, 0.02%)</title><rect x="713.6" y="1477" width="0.3" height="15.0" fill="rgb(222,225,20)" rx="2" ry="2" />
<text x="716.64" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (379 samples, 0.02%)</title><rect x="1160.2" y="1397" width="0.2" height="15.0" fill="rgb(205,114,7)" rx="2" ry="2" />
<text x="1163.19" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (197 samples, 0.01%)</title><rect x="698.1" y="1301" width="0.2" height="15.0" fill="rgb(239,17,5)" rx="2" ry="2" />
<text x="701.13" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (206 samples, 0.01%)</title><rect x="870.7" y="1173" width="0.2" height="15.0" fill="rgb(216,188,35)" rx="2" ry="2" />
<text x="873.73" y="1183.5" ></text>
</g>
<g >
<title>futex_wake (356 samples, 0.02%)</title><rect x="1118.4" y="1333" width="0.2" height="15.0" fill="rgb(211,77,38)" rx="2" ry="2" />
<text x="1121.40" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (160 samples, 0.01%)</title><rect x="1130.8" y="1301" width="0.1" height="15.0" fill="rgb(244,202,24)" rx="2" ry="2" />
<text x="1133.76" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (176 samples, 0.01%)</title><rect x="1127.7" y="1317" width="0.1" height="15.0" fill="rgb(247,24,25)" rx="2" ry="2" />
<text x="1130.71" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (3,815 samples, 0.21%)</title><rect x="1095.8" y="1509" width="2.4" height="15.0" fill="rgb(242,182,18)" rx="2" ry="2" />
<text x="1098.79" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (966 samples, 0.05%)</title><rect x="841.5" y="1237" width="0.7" height="15.0" fill="rgb(209,118,6)" rx="2" ry="2" />
<text x="844.54" y="1247.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (224 samples, 0.01%)</title><rect x="1188.9" y="85" width="0.2" height="15.0" fill="rgb(253,115,12)" rx="2" ry="2" />
<text x="1191.92" y="95.5" ></text>
</g>
<g >
<title>caml_call_gc (433 samples, 0.02%)</title><rect x="961.6" y="1189" width="0.2" height="15.0" fill="rgb(236,86,34)" rx="2" ry="2" />
<text x="964.55" y="1199.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,383 samples, 0.07%)</title><rect x="1153.4" y="1349" width="0.8" height="15.0" fill="rgb(212,74,7)" rx="2" ry="2" />
<text x="1156.36" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (1,500 samples, 0.08%)</title><rect x="871.4" y="1173" width="1.0" height="15.0" fill="rgb(223,4,25)" rx="2" ry="2" />
<text x="874.43" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (220 samples, 0.01%)</title><rect x="899.1" y="1333" width="0.2" height="15.0" fill="rgb(245,135,29)" rx="2" ry="2" />
<text x="902.12" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (221 samples, 0.01%)</title><rect x="675.5" y="1829" width="0.2" height="15.0" fill="rgb(253,210,43)" rx="2" ry="2" />
<text x="678.53" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307 samples, 0.02%)</title><rect x="932.2" y="1221" width="0.2" height="15.0" fill="rgb(241,103,11)" rx="2" ry="2" />
<text x="935.18" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (363 samples, 0.02%)</title><rect x="749.8" y="1253" width="0.3" height="15.0" fill="rgb(212,144,29)" rx="2" ry="2" />
<text x="752.83" y="1263.5" ></text>
</g>
<g >
<title>caml_apply3 (170 samples, 0.01%)</title><rect x="792.9" y="1269" width="0.1" height="15.0" fill="rgb(213,89,6)" rx="2" ry="2" />
<text x="795.91" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1869 (236 samples, 0.01%)</title><rect x="1096.1" y="1477" width="0.2" height="15.0" fill="rgb(218,164,22)" rx="2" ry="2" />
<text x="1099.11" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (15,389 samples, 0.83%)</title><rect x="1150.7" y="1429" width="9.8" height="15.0" fill="rgb(242,96,31)" rx="2" ry="2" />
<text x="1153.69" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (235 samples, 0.01%)</title><rect x="880.1" y="1189" width="0.1" height="15.0" fill="rgb(228,105,53)" rx="2" ry="2" />
<text x="883.09" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (950 samples, 0.05%)</title><rect x="880.0" y="1205" width="0.6" height="15.0" fill="rgb(209,221,5)" rx="2" ry="2" />
<text x="883.00" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__compare_2480 (417 samples, 0.02%)</title><rect x="887.4" y="1253" width="0.3" height="15.0" fill="rgb(235,141,12)" rx="2" ry="2" />
<text x="890.41" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (227 samples, 0.01%)</title><rect x="1082.9" y="1365" width="0.1" height="15.0" fill="rgb(251,207,11)" rx="2" ry="2" />
<text x="1085.87" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3681 (180 samples, 0.01%)</title><rect x="1061.4" y="1333" width="0.1" height="15.0" fill="rgb(241,9,20)" rx="2" ry="2" />
<text x="1064.36" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (234 samples, 0.01%)</title><rect x="1165.0" y="1461" width="0.1" height="15.0" fill="rgb(227,113,18)" rx="2" ry="2" />
<text x="1168.00" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1493" width="0.3" height="15.0" fill="rgb(221,201,44)" rx="2" ry="2" />
<text x="1191.82" y="1503.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (179 samples, 0.01%)</title><rect x="1182.6" y="1221" width="0.1" height="15.0" fill="rgb(244,37,40)" rx="2" ry="2" />
<text x="1185.59" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (317 samples, 0.02%)</title><rect x="844.5" y="1221" width="0.2" height="15.0" fill="rgb(220,57,30)" rx="2" ry="2" />
<text x="847.47" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (348 samples, 0.02%)</title><rect x="1176.4" y="949" width="0.2" height="15.0" fill="rgb(224,2,27)" rx="2" ry="2" />
<text x="1179.36" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (541 samples, 0.03%)</title><rect x="802.8" y="1365" width="0.4" height="15.0" fill="rgb(208,194,4)" rx="2" ry="2" />
<text x="805.83" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (520 samples, 0.03%)</title><rect x="689.3" y="1541" width="0.3" height="15.0" fill="rgb(249,106,35)" rx="2" ry="2" />
<text x="692.31" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1045" width="0.3" height="15.0" fill="rgb(208,178,50)" rx="2" ry="2" />
<text x="1191.82" y="1055.5" ></text>
</g>
<g >
<title>caml_alloc_string (326 samples, 0.02%)</title><rect x="978.7" y="1125" width="0.2" height="15.0" fill="rgb(238,29,31)" rx="2" ry="2" />
<text x="981.74" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_1358 (259 samples, 0.01%)</title><rect x="901.7" y="1461" width="0.1" height="15.0" fill="rgb(222,152,22)" rx="2" ry="2" />
<text x="904.66" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="2005" width="0.5" height="15.0" fill="rgb(232,3,11)" rx="2" ry="2" />
<text x="1192.48" y="2015.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (1,684 samples, 0.09%)</title><rect x="30.2" y="1989" width="1.1" height="15.0" fill="rgb(232,148,6)" rx="2" ry="2" />
<text x="33.22" y="1999.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,907 samples, 0.21%)</title><rect x="431.8" y="1877" width="2.5" height="15.0" fill="rgb(231,192,45)" rx="2" ry="2" />
<text x="434.82" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (390 samples, 0.02%)</title><rect x="1188.3" y="261" width="0.3" height="15.0" fill="rgb(252,98,8)" rx="2" ry="2" />
<text x="1191.32" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (631 samples, 0.03%)</title><rect x="971.0" y="1189" width="0.4" height="15.0" fill="rgb(252,187,30)" rx="2" ry="2" />
<text x="974.01" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (295 samples, 0.02%)</title><rect x="1114.4" y="1477" width="0.2" height="15.0" fill="rgb(239,83,16)" rx="2" ry="2" />
<text x="1117.42" y="1487.5" ></text>
</g>
<g >
<title>mark_slice (292 samples, 0.02%)</title><rect x="1061.0" y="1269" width="0.2" height="15.0" fill="rgb(251,155,51)" rx="2" ry="2" />
<text x="1063.98" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (349 samples, 0.02%)</title><rect x="993.4" y="1077" width="0.3" height="15.0" fill="rgb(241,65,39)" rx="2" ry="2" />
<text x="996.43" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (6,786 samples, 0.36%)</title><rect x="709.2" y="1461" width="4.3" height="15.0" fill="rgb(222,10,10)" rx="2" ry="2" />
<text x="712.22" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_2002 (177 samples, 0.01%)</title><rect x="740.9" y="1253" width="0.1" height="15.0" fill="rgb(242,178,12)" rx="2" ry="2" />
<text x="743.87" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (400 samples, 0.02%)</title><rect x="856.3" y="1253" width="0.2" height="15.0" fill="rgb(233,194,34)" rx="2" ry="2" />
<text x="859.27" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1224 (467 samples, 0.03%)</title><rect x="440.1" y="1861" width="0.2" height="15.0" fill="rgb(238,77,1)" rx="2" ry="2" />
<text x="443.05" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (896 samples, 0.05%)</title><rect x="1055.0" y="1333" width="0.6" height="15.0" fill="rgb(226,159,24)" rx="2" ry="2" />
<text x="1058.01" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,129 samples, 0.06%)</title><rect x="817.3" y="1397" width="0.7" height="15.0" fill="rgb(235,4,4)" rx="2" ry="2" />
<text x="820.29" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (306 samples, 0.02%)</title><rect x="880.3" y="1189" width="0.2" height="15.0" fill="rgb(207,194,31)" rx="2" ry="2" />
<text x="883.34" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (549 samples, 0.03%)</title><rect x="971.1" y="1157" width="0.3" height="15.0" fill="rgb(226,210,13)" rx="2" ry="2" />
<text x="974.06" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (7,656 samples, 0.41%)</title><rect x="839.8" y="1285" width="4.9" height="15.0" fill="rgb(236,169,22)" rx="2" ry="2" />
<text x="842.84" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,962 samples, 0.11%)</title><rect x="269.1" y="1797" width="1.2" height="15.0" fill="rgb(250,135,34)" rx="2" ry="2" />
<text x="272.05" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (202 samples, 0.01%)</title><rect x="1158.2" y="1269" width="0.2" height="15.0" fill="rgb(213,12,41)" rx="2" ry="2" />
<text x="1161.23" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (916 samples, 0.05%)</title><rect x="784.3" y="1221" width="0.5" height="15.0" fill="rgb(252,110,14)" rx="2" ry="2" />
<text x="787.25" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12324 (142,073 samples, 7.64%)</title><rect x="717.1" y="1525" width="90.1" height="15.0" fill="rgb(226,8,23)" rx="2" ry="2" />
<text x="720.09" y="1535.5" >camlIrmin_..</text>
</g>
<g >
<title>camlIndex_unix__really_read_1536 (438 samples, 0.02%)</title><rect x="1171.9" y="1221" width="0.2" height="15.0" fill="rgb(231,75,2)" rx="2" ry="2" />
<text x="1174.86" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (298 samples, 0.02%)</title><rect x="679.2" y="1877" width="0.2" height="15.0" fill="rgb(253,9,21)" rx="2" ry="2" />
<text x="682.23" y="1887.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (286 samples, 0.02%)</title><rect x="983.5" y="1093" width="0.2" height="15.0" fill="rgb(226,23,47)" rx="2" ry="2" />
<text x="986.55" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (362 samples, 0.02%)</title><rect x="51.3" y="2021" width="0.2" height="15.0" fill="rgb(215,53,13)" rx="2" ry="2" />
<text x="54.30" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1925" width="0.5" height="15.0" fill="rgb(230,190,53)" rx="2" ry="2" />
<text x="1192.48" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (262 samples, 0.01%)</title><rect x="698.5" y="1429" width="0.2" height="15.0" fill="rgb(237,79,18)" rx="2" ry="2" />
<text x="701.49" y="1439.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (174 samples, 0.01%)</title><rect x="689.5" y="213" width="0.1" height="15.0" fill="rgb(218,215,20)" rx="2" ry="2" />
<text x="692.49" y="223.5" ></text>
</g>
<g >
<title>camlIndex__fun_4537 (227 samples, 0.01%)</title><rect x="1085.0" y="1445" width="0.2" height="15.0" fill="rgb(227,36,25)" rx="2" ry="2" />
<text x="1088.02" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_2361 (175 samples, 0.01%)</title><rect x="1089.7" y="1413" width="0.1" height="15.0" fill="rgb(233,108,23)" rx="2" ry="2" />
<text x="1092.68" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1141" width="0.3" height="15.0" fill="rgb(248,66,24)" rx="2" ry="2" />
<text x="1191.32" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (7,023 samples, 0.38%)</title><rect x="709.2" y="1493" width="4.4" height="15.0" fill="rgb(220,204,6)" rx="2" ry="2" />
<text x="712.17" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (177 samples, 0.01%)</title><rect x="938.7" y="1237" width="0.1" height="15.0" fill="rgb(208,170,13)" rx="2" ry="2" />
<text x="941.67" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (259 samples, 0.01%)</title><rect x="1106.6" y="1285" width="0.1" height="15.0" fill="rgb(226,135,6)" rx="2" ry="2" />
<text x="1109.57" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__fun_4537 (171 samples, 0.01%)</title><rect x="890.8" y="1301" width="0.1" height="15.0" fill="rgb(232,63,25)" rx="2" ry="2" />
<text x="893.82" y="1311.5" ></text>
</g>
<g >
<title>caml_curry13_12 (161 samples, 0.01%)</title><rect x="1147.8" y="1381" width="0.1" height="15.0" fill="rgb(242,179,18)" rx="2" ry="2" />
<text x="1150.82" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,271 samples, 0.07%)</title><rect x="578.6" y="1781" width="0.8" height="15.0" fill="rgb(251,187,19)" rx="2" ry="2" />
<text x="581.62" y="1791.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,642 samples, 0.09%)</title><rect x="215.4" y="1877" width="1.1" height="15.0" fill="rgb(206,172,2)" rx="2" ry="2" />
<text x="218.43" y="1887.5" ></text>
</g>
<g >
<title>__lseek64 (359 samples, 0.02%)</title><rect x="841.6" y="1189" width="0.3" height="15.0" fill="rgb(216,60,21)" rx="2" ry="2" />
<text x="844.65" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="613" width="0.3" height="15.0" fill="rgb(245,60,34)" rx="2" ry="2" />
<text x="1191.82" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,527 samples, 0.08%)</title><rect x="885.8" y="1141" width="0.9" height="15.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text x="888.75" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (38,858 samples, 2.09%)</title><rect x="1163.6" y="1669" width="24.6" height="15.0" fill="rgb(253,128,3)" rx="2" ry="2" />
<text x="1166.59" y="1679.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (342 samples, 0.02%)</title><rect x="673.6" y="1797" width="0.2" height="15.0" fill="rgb(251,79,42)" rx="2" ry="2" />
<text x="676.62" y="1807.5" ></text>
</g>
<g >
<title>unix_lseek_64 (337 samples, 0.02%)</title><rect x="717.8" y="1317" width="0.3" height="15.0" fill="rgb(219,18,40)" rx="2" ry="2" />
<text x="720.84" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1845" width="0.3" height="15.0" fill="rgb(235,28,46)" rx="2" ry="2" />
<text x="1192.12" y="1855.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (470 samples, 0.03%)</title><rect x="785.8" y="1157" width="0.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text x="788.76" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (643 samples, 0.03%)</title><rect x="937.7" y="1269" width="0.4" height="15.0" fill="rgb(233,8,20)" rx="2" ry="2" />
<text x="940.70" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,652 samples, 0.14%)</title><rect x="161.1" y="1845" width="1.7" height="15.0" fill="rgb(211,199,1)" rx="2" ry="2" />
<text x="164.10" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (51,188 samples, 2.75%)</title><rect x="763.2" y="1349" width="32.5" height="15.0" fill="rgb(216,107,17)" rx="2" ry="2" />
<text x="766.22" y="1359.5" >ca..</text>
</g>
<g >
<title>caml_apply2 (16,823 samples, 0.90%)</title><rect x="330.9" y="1893" width="10.6" height="15.0" fill="rgb(220,190,13)" rx="2" ry="2" />
<text x="333.87" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (225 samples, 0.01%)</title><rect x="938.5" y="1237" width="0.2" height="15.0" fill="rgb(222,197,27)" rx="2" ry="2" />
<text x="941.53" y="1247.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (204 samples, 0.01%)</title><rect x="243.6" y="1861" width="0.2" height="15.0" fill="rgb(240,219,50)" rx="2" ry="2" />
<text x="246.63" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (197 samples, 0.01%)</title><rect x="994.2" y="1141" width="0.1" height="15.0" fill="rgb(222,61,42)" rx="2" ry="2" />
<text x="997.19" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (245 samples, 0.01%)</title><rect x="724.9" y="1413" width="0.2" height="15.0" fill="rgb(240,19,54)" rx="2" ry="2" />
<text x="727.91" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,779 samples, 0.10%)</title><rect x="701.0" y="1493" width="1.2" height="15.0" fill="rgb(210,121,7)" rx="2" ry="2" />
<text x="704.02" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__copy_3667 (12,510 samples, 0.67%)</title><rect x="925.5" y="1461" width="8.0" height="15.0" fill="rgb(248,195,53)" rx="2" ry="2" />
<text x="928.53" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (475 samples, 0.03%)</title><rect x="858.8" y="1205" width="0.3" height="15.0" fill="rgb(223,177,51)" rx="2" ry="2" />
<text x="861.79" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,905 samples, 0.16%)</title><rect x="241.8" y="1829" width="1.8" height="15.0" fill="rgb(246,140,40)" rx="2" ry="2" />
<text x="244.78" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,421 samples, 0.18%)</title><rect x="341.7" y="1861" width="2.2" height="15.0" fill="rgb(217,68,49)" rx="2" ry="2" />
<text x="344.71" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (176 samples, 0.01%)</title><rect x="1164.9" y="1429" width="0.1" height="15.0" fill="rgb(239,104,20)" rx="2" ry="2" />
<text x="1167.88" y="1439.5" ></text>
</g>
<g >
<title>mark_slice_darken (344 samples, 0.02%)</title><rect x="721.9" y="1157" width="0.3" height="15.0" fill="rgb(249,45,20)" rx="2" ry="2" />
<text x="724.93" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (433 samples, 0.02%)</title><rect x="961.6" y="1173" width="0.2" height="15.0" fill="rgb(236,199,10)" rx="2" ry="2" />
<text x="964.55" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (246 samples, 0.01%)</title><rect x="919.2" y="1349" width="0.2" height="15.0" fill="rgb(252,52,12)" rx="2" ry="2" />
<text x="922.22" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (6,747 samples, 0.36%)</title><rect x="928.7" y="1365" width="4.3" height="15.0" fill="rgb(215,54,46)" rx="2" ry="2" />
<text x="931.71" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (226 samples, 0.01%)</title><rect x="928.1" y="1205" width="0.1" height="15.0" fill="rgb(216,30,26)" rx="2" ry="2" />
<text x="931.09" y="1215.5" ></text>
</g>
<g >
<title>caml_startup_common (790,470 samples, 42.50%)</title><rect x="686.8" y="1973" width="501.5" height="15.0" fill="rgb(239,114,22)" rx="2" ry="2" />
<text x="689.78" y="1983.5" >caml_startup_common</text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (1,523 samples, 0.08%)</title><rect x="690.3" y="1461" width="0.9" height="15.0" fill="rgb(220,175,52)" rx="2" ry="2" />
<text x="693.26" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,318 samples, 0.07%)</title><rect x="891.7" y="1301" width="0.8" height="15.0" fill="rgb(208,105,20)" rx="2" ry="2" />
<text x="894.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (2,412 samples, 0.13%)</title><rect x="994.7" y="1189" width="1.5" height="15.0" fill="rgb(232,83,40)" rx="2" ry="2" />
<text x="997.68" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (16,927 samples, 0.91%)</title><rect x="1101.3" y="1509" width="10.7" height="15.0" fill="rgb(207,69,25)" rx="2" ry="2" />
<text x="1104.29" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (380 samples, 0.02%)</title><rect x="1167.6" y="1285" width="0.3" height="15.0" fill="rgb(221,131,48)" rx="2" ry="2" />
<text x="1170.64" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (1,384 samples, 0.07%)</title><rect x="1072.3" y="1397" width="0.9" height="15.0" fill="rgb(243,88,50)" rx="2" ry="2" />
<text x="1075.31" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,313 samples, 0.07%)</title><rect x="710.3" y="1365" width="0.9" height="15.0" fill="rgb(208,184,22)" rx="2" ry="2" />
<text x="713.35" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (319 samples, 0.02%)</title><rect x="958.2" y="1189" width="0.2" height="15.0" fill="rgb(215,27,27)" rx="2" ry="2" />
<text x="961.24" y="1199.5" ></text>
</g>
<g >
<title>__lseek64 (572 samples, 0.03%)</title><rect x="741.4" y="1221" width="0.3" height="15.0" fill="rgb(226,40,16)" rx="2" ry="2" />
<text x="744.37" y="1231.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (280 samples, 0.02%)</title><rect x="1164.8" y="1509" width="0.2" height="15.0" fill="rgb(241,186,8)" rx="2" ry="2" />
<text x="1167.82" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (675 samples, 0.04%)</title><rect x="925.0" y="1013" width="0.4" height="15.0" fill="rgb(212,131,33)" rx="2" ry="2" />
<text x="928.00" y="1023.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (938 samples, 0.05%)</title><rect x="168.4" y="1797" width="0.6" height="15.0" fill="rgb(212,206,49)" rx="2" ry="2" />
<text x="171.45" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (375 samples, 0.02%)</title><rect x="1180.3" y="1269" width="0.3" height="15.0" fill="rgb(242,91,49)" rx="2" ry="2" />
<text x="1183.34" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (11,600 samples, 0.62%)</title><rect x="1127.1" y="1429" width="7.3" height="15.0" fill="rgb(238,152,21)" rx="2" ry="2" />
<text x="1130.08" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1285" width="0.2" height="15.0" fill="rgb(216,129,45)" rx="2" ry="2" />
<text x="1191.57" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (551 samples, 0.03%)</title><rect x="796.3" y="1301" width="0.3" height="15.0" fill="rgb(231,8,11)" rx="2" ry="2" />
<text x="799.29" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (3,573 samples, 0.19%)</title><rect x="1106.4" y="1333" width="2.3" height="15.0" fill="rgb(213,45,43)" rx="2" ry="2" />
<text x="1109.41" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (11,673 samples, 0.63%)</title><rect x="236.2" y="1893" width="7.4" height="15.0" fill="rgb(220,134,48)" rx="2" ry="2" />
<text x="239.22" y="1903.5" ></text>
</g>
<g >
<title>caml_apply2 (3,007 samples, 0.16%)</title><rect x="171.3" y="1893" width="1.9" height="15.0" fill="rgb(253,38,21)" rx="2" ry="2" />
<text x="174.31" y="1903.5" ></text>
</g>
<g >
<title>caml_call_gc (169 samples, 0.01%)</title><rect x="867.9" y="1141" width="0.1" height="15.0" fill="rgb(215,160,29)" rx="2" ry="2" />
<text x="870.90" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (2,813 samples, 0.15%)</title><rect x="830.4" y="1365" width="1.7" height="15.0" fill="rgb(250,11,51)" rx="2" ry="2" />
<text x="833.36" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_5510 (229 samples, 0.01%)</title><rect x="1165.2" y="1429" width="0.1" height="15.0" fill="rgb(223,226,22)" rx="2" ry="2" />
<text x="1168.17" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (1,046 samples, 0.06%)</title><rect x="786.1" y="1221" width="0.6" height="15.0" fill="rgb(235,57,50)" rx="2" ry="2" />
<text x="789.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4848 (279 samples, 0.02%)</title><rect x="1126.4" y="1493" width="0.2" height="15.0" fill="rgb(220,132,16)" rx="2" ry="2" />
<text x="1129.40" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (5,345 samples, 0.29%)</title><rect x="879.3" y="1221" width="3.3" height="15.0" fill="rgb(249,51,27)" rx="2" ry="2" />
<text x="882.25" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (267 samples, 0.01%)</title><rect x="689.5" y="549" width="0.1" height="15.0" fill="rgb(227,121,44)" rx="2" ry="2" />
<text x="692.45" y="559.5" ></text>
</g>
<g >
<title>caml_string_compare (485 samples, 0.03%)</title><rect x="1009.9" y="1317" width="0.3" height="15.0" fill="rgb(240,91,38)" rx="2" ry="2" />
<text x="1012.89" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (209 samples, 0.01%)</title><rect x="689.5" y="325" width="0.1" height="15.0" fill="rgb(213,112,38)" rx="2" ry="2" />
<text x="692.49" y="335.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (236 samples, 0.01%)</title><rect x="851.3" y="1269" width="0.1" height="15.0" fill="rgb(227,63,52)" rx="2" ry="2" />
<text x="854.30" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (568 samples, 0.03%)</title><rect x="891.9" y="1285" width="0.3" height="15.0" fill="rgb(212,126,12)" rx="2" ry="2" />
<text x="894.86" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (239 samples, 0.01%)</title><rect x="990.0" y="1141" width="0.2" height="15.0" fill="rgb(254,163,7)" rx="2" ry="2" />
<text x="993.02" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (398 samples, 0.02%)</title><rect x="909.8" y="1253" width="0.3" height="15.0" fill="rgb(213,6,8)" rx="2" ry="2" />
<text x="912.83" y="1263.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (221 samples, 0.01%)</title><rect x="785.6" y="1157" width="0.2" height="15.0" fill="rgb(254,126,15)" rx="2" ry="2" />
<text x="788.62" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (556 samples, 0.03%)</title><rect x="1108.8" y="1333" width="0.4" height="15.0" fill="rgb(244,158,9)" rx="2" ry="2" />
<text x="1111.83" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (159 samples, 0.01%)</title><rect x="1097.8" y="1461" width="0.1" height="15.0" fill="rgb(219,225,42)" rx="2" ry="2" />
<text x="1100.77" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (187 samples, 0.01%)</title><rect x="961.7" y="1125" width="0.1" height="15.0" fill="rgb(252,174,41)" rx="2" ry="2" />
<text x="964.66" y="1135.5" ></text>
</g>
<g >
<title>caml_string_length (158 samples, 0.01%)</title><rect x="725.5" y="1317" width="0.1" height="15.0" fill="rgb(238,163,13)" rx="2" ry="2" />
<text x="728.50" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (256 samples, 0.01%)</title><rect x="753.8" y="1285" width="0.2" height="15.0" fill="rgb(206,177,21)" rx="2" ry="2" />
<text x="756.84" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (311 samples, 0.02%)</title><rect x="20.2" y="2037" width="0.2" height="15.0" fill="rgb(251,117,6)" rx="2" ry="2" />
<text x="23.25" y="2047.5" ></text>
</g>
<g >
<title>compare_val (612 samples, 0.03%)</title><rect x="791.4" y="1237" width="0.3" height="15.0" fill="rgb(250,38,20)" rx="2" ry="2" />
<text x="794.36" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (744 samples, 0.04%)</title><rect x="931.3" y="1269" width="0.4" height="15.0" fill="rgb(232,179,26)" rx="2" ry="2" />
<text x="934.26" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (241 samples, 0.01%)</title><rect x="841.7" y="1141" width="0.2" height="15.0" fill="rgb(219,99,38)" rx="2" ry="2" />
<text x="844.72" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (2,771 samples, 0.15%)</title><rect x="268.8" y="1861" width="1.7" height="15.0" fill="rgb(245,150,12)" rx="2" ry="2" />
<text x="271.79" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="901" width="0.3" height="15.0" fill="rgb(250,57,51)" rx="2" ry="2" />
<text x="1192.12" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6258 (2,595 samples, 0.14%)</title><rect x="922.4" y="1333" width="1.7" height="15.0" fill="rgb(213,117,11)" rx="2" ry="2" />
<text x="925.43" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (3,616 samples, 0.19%)</title><rect x="1137.1" y="1317" width="2.3" height="15.0" fill="rgb(211,88,4)" rx="2" ry="2" />
<text x="1140.14" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (369 samples, 0.02%)</title><rect x="1130.4" y="1269" width="0.2" height="15.0" fill="rgb(244,110,43)" rx="2" ry="2" />
<text x="1133.38" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (943 samples, 0.05%)</title><rect x="940.8" y="1237" width="0.6" height="15.0" fill="rgb(205,101,46)" rx="2" ry="2" />
<text x="943.77" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (753 samples, 0.04%)</title><rect x="1189.5" y="245" width="0.5" height="15.0" fill="rgb(223,113,43)" rx="2" ry="2" />
<text x="1192.48" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (192 samples, 0.01%)</title><rect x="1145.4" y="1365" width="0.1" height="15.0" fill="rgb(246,75,47)" rx="2" ry="2" />
<text x="1148.38" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (315 samples, 0.02%)</title><rect x="955.8" y="1189" width="0.2" height="15.0" fill="rgb(225,62,39)" rx="2" ry="2" />
<text x="958.79" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (170 samples, 0.01%)</title><rect x="766.1" y="1253" width="0.2" height="15.0" fill="rgb(238,95,49)" rx="2" ry="2" />
<text x="769.14" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="549" width="0.3" height="15.0" fill="rgb(233,12,5)" rx="2" ry="2" />
<text x="1191.32" y="559.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="853" width="0.3" height="15.0" fill="rgb(228,87,25)" rx="2" ry="2" />
<text x="1191.82" y="863.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (252 samples, 0.01%)</title><rect x="1107.6" y="1285" width="0.1" height="15.0" fill="rgb(215,52,17)" rx="2" ry="2" />
<text x="1110.59" y="1295.5" ></text>
</g>
<g >
<title>caml_mutex_lock (391 samples, 0.02%)</title><rect x="1085.2" y="1445" width="0.3" height="15.0" fill="rgb(221,104,50)" rx="2" ry="2" />
<text x="1088.23" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (504 samples, 0.03%)</title><rect x="761.8" y="1205" width="0.3" height="15.0" fill="rgb(247,172,26)" rx="2" ry="2" />
<text x="764.79" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__add_to_dst_3240 (177 samples, 0.01%)</title><rect x="1014.3" y="1365" width="0.1" height="15.0" fill="rgb(232,162,14)" rx="2" ry="2" />
<text x="1017.29" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (429 samples, 0.02%)</title><rect x="1124.7" y="1317" width="0.3" height="15.0" fill="rgb(229,223,25)" rx="2" ry="2" />
<text x="1127.69" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (6,126 samples, 0.33%)</title><rect x="929.0" y="1333" width="3.9" height="15.0" fill="rgb(211,92,36)" rx="2" ry="2" />
<text x="932.01" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (213 samples, 0.01%)</title><rect x="987.4" y="1157" width="0.1" height="15.0" fill="rgb(226,162,49)" rx="2" ry="2" />
<text x="990.40" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (353 samples, 0.02%)</title><rect x="1188.6" y="149" width="0.2" height="15.0" fill="rgb(248,194,7)" rx="2" ry="2" />
<text x="1191.59" y="159.5" ></text>
</g>
<g >
<title>__libc_pread64 (305 samples, 0.02%)</title><rect x="698.1" y="1349" width="0.2" height="15.0" fill="rgb(252,142,53)" rx="2" ry="2" />
<text x="701.07" y="1359.5" ></text>
</g>
<g >
<title>caml_string_equal (6,447 samples, 0.35%)</title><rect x="492.4" y="1925" width="4.0" height="15.0" fill="rgb(216,72,37)" rx="2" ry="2" />
<text x="495.35" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (658 samples, 0.04%)</title><rect x="1151.1" y="1333" width="0.4" height="15.0" fill="rgb(251,100,2)" rx="2" ry="2" />
<text x="1154.06" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (5,347 samples, 0.29%)</title><rect x="401.9" y="1877" width="3.4" height="15.0" fill="rgb(242,41,10)" rx="2" ry="2" />
<text x="404.92" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (35,299 samples, 1.90%)</title><rect x="530.4" y="1941" width="22.4" height="15.0" fill="rgb(205,134,14)" rx="2" ry="2" />
<text x="533.39" y="1951.5" >c..</text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (9,028 samples, 0.49%)</title><rect x="1105.8" y="1397" width="5.7" height="15.0" fill="rgb(205,46,38)" rx="2" ry="2" />
<text x="1108.80" y="1407.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (938 samples, 0.05%)</title><rect x="168.4" y="1813" width="0.6" height="15.0" fill="rgb(222,87,45)" rx="2" ry="2" />
<text x="171.45" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (349 samples, 0.02%)</title><rect x="689.4" y="853" width="0.2" height="15.0" fill="rgb(239,95,2)" rx="2" ry="2" />
<text x="692.40" y="863.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="757" width="0.2" height="15.0" fill="rgb(214,31,31)" rx="2" ry="2" />
<text x="1191.57" y="767.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (599 samples, 0.03%)</title><rect x="850.0" y="1237" width="0.4" height="15.0" fill="rgb(241,136,8)" rx="2" ry="2" />
<text x="852.99" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1093" width="0.5" height="15.0" fill="rgb(228,77,21)" rx="2" ry="2" />
<text x="1192.48" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (359 samples, 0.02%)</title><rect x="797.4" y="1381" width="0.3" height="15.0" fill="rgb(241,206,16)" rx="2" ry="2" />
<text x="800.43" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (1,338 samples, 0.07%)</title><rect x="672.7" y="1861" width="0.9" height="15.0" fill="rgb(221,52,40)" rx="2" ry="2" />
<text x="675.75" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (264 samples, 0.01%)</title><rect x="764.2" y="1253" width="0.2" height="15.0" fill="rgb(238,166,18)" rx="2" ry="2" />
<text x="767.18" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (396 samples, 0.02%)</title><rect x="741.5" y="1173" width="0.2" height="15.0" fill="rgb(206,72,54)" rx="2" ry="2" />
<text x="744.48" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,857 samples, 0.10%)</title><rect x="1090.7" y="1429" width="1.2" height="15.0" fill="rgb(247,170,50)" rx="2" ry="2" />
<text x="1093.73" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (928 samples, 0.05%)</title><rect x="678.8" y="1909" width="0.6" height="15.0" fill="rgb(215,200,41)" rx="2" ry="2" />
<text x="681.83" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1445" width="0.3" height="15.0" fill="rgb(249,18,45)" rx="2" ry="2" />
<text x="1191.82" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (571 samples, 0.03%)</title><rect x="1137.3" y="1285" width="0.4" height="15.0" fill="rgb(234,147,8)" rx="2" ry="2" />
<text x="1140.30" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (235 samples, 0.01%)</title><rect x="779.8" y="1205" width="0.2" height="15.0" fill="rgb(220,226,39)" rx="2" ry="2" />
<text x="782.80" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,721 samples, 0.09%)</title><rect x="843.6" y="1253" width="1.1" height="15.0" fill="rgb(248,189,14)" rx="2" ry="2" />
<text x="846.58" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (3,047 samples, 0.16%)</title><rect x="1042.5" y="1333" width="1.9" height="15.0" fill="rgb(235,50,46)" rx="2" ry="2" />
<text x="1045.48" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="901" width="0.3" height="15.0" fill="rgb(218,105,13)" rx="2" ry="2" />
<text x="1191.32" y="911.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (369 samples, 0.02%)</title><rect x="741.7" y="1221" width="0.3" height="15.0" fill="rgb(211,52,9)" rx="2" ry="2" />
<text x="744.73" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (1,425 samples, 0.08%)</title><rect x="693.8" y="1445" width="0.9" height="15.0" fill="rgb(222,184,47)" rx="2" ry="2" />
<text x="696.81" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (390 samples, 0.02%)</title><rect x="1188.3" y="197" width="0.3" height="15.0" fill="rgb(241,98,3)" rx="2" ry="2" />
<text x="1191.32" y="207.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (6,819 samples, 0.37%)</title><rect x="801.7" y="1413" width="4.4" height="15.0" fill="rgb(216,42,32)" rx="2" ry="2" />
<text x="804.73" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (194 samples, 0.01%)</title><rect x="919.2" y="1333" width="0.2" height="15.0" fill="rgb(218,81,23)" rx="2" ry="2" />
<text x="922.24" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (634 samples, 0.03%)</title><rect x="937.2" y="949" width="0.4" height="15.0" fill="rgb(215,203,10)" rx="2" ry="2" />
<text x="940.17" y="959.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (483 samples, 0.03%)</title><rect x="1159.0" y="1301" width="0.3" height="15.0" fill="rgb(227,63,15)" rx="2" ry="2" />
<text x="1162.00" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="373" width="0.5" height="15.0" fill="rgb(219,37,16)" rx="2" ry="2" />
<text x="1192.48" y="383.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (176 samples, 0.01%)</title><rect x="962.4" y="1205" width="0.1" height="15.0" fill="rgb(214,38,5)" rx="2" ry="2" />
<text x="965.40" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (297 samples, 0.02%)</title><rect x="746.5" y="1237" width="0.2" height="15.0" fill="rgb(242,142,14)" rx="2" ry="2" />
<text x="749.47" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (331 samples, 0.02%)</title><rect x="959.8" y="1189" width="0.2" height="15.0" fill="rgb(241,14,7)" rx="2" ry="2" />
<text x="962.77" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (281 samples, 0.02%)</title><rect x="1107.6" y="1301" width="0.1" height="15.0" fill="rgb(220,144,18)" rx="2" ry="2" />
<text x="1110.57" y="1311.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (608 samples, 0.03%)</title><rect x="548.0" y="1877" width="0.3" height="15.0" fill="rgb(235,192,22)" rx="2" ry="2" />
<text x="550.96" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (14,407 samples, 0.77%)</title><rect x="222.5" y="1893" width="9.2" height="15.0" fill="rgb(225,119,44)" rx="2" ry="2" />
<text x="225.53" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (462 samples, 0.02%)</title><rect x="1189.5" y="101" width="0.3" height="15.0" fill="rgb(231,215,4)" rx="2" ry="2" />
<text x="1192.50" y="111.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3817 (482 samples, 0.03%)</title><rect x="757.0" y="1333" width="0.3" height="15.0" fill="rgb(206,41,28)" rx="2" ry="2" />
<text x="759.99" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (278 samples, 0.01%)</title><rect x="927.7" y="1381" width="0.1" height="15.0" fill="rgb(221,82,20)" rx="2" ry="2" />
<text x="930.66" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (163 samples, 0.01%)</title><rect x="918.6" y="1333" width="0.1" height="15.0" fill="rgb(241,86,36)" rx="2" ry="2" />
<text x="921.60" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (2,749 samples, 0.15%)</title><rect x="730.3" y="1333" width="1.8" height="15.0" fill="rgb(208,17,12)" rx="2" ry="2" />
<text x="733.34" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (495 samples, 0.03%)</title><rect x="873.2" y="1173" width="0.3" height="15.0" fill="rgb(249,13,24)" rx="2" ry="2" />
<text x="876.15" y="1183.5" ></text>
</g>
<g >
<title>unix_lseek_64 (449 samples, 0.02%)</title><rect x="954.5" y="1157" width="0.3" height="15.0" fill="rgb(234,134,27)" rx="2" ry="2" />
<text x="957.49" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1733" width="0.3" height="15.0" fill="rgb(249,99,32)" rx="2" ry="2" />
<text x="1191.32" y="1743.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (238 samples, 0.01%)</title><rect x="912.2" y="981" width="0.2" height="15.0" fill="rgb(220,20,27)" rx="2" ry="2" />
<text x="915.24" y="991.5" ></text>
</g>
<g >
<title>camlLwt__return_2462 (182 samples, 0.01%)</title><rect x="1094.7" y="1493" width="0.1" height="15.0" fill="rgb(230,160,12)" rx="2" ry="2" />
<text x="1097.71" y="1503.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (289 samples, 0.02%)</title><rect x="724.0" y="1333" width="0.2" height="15.0" fill="rgb(224,108,41)" rx="2" ry="2" />
<text x="727.03" y="1343.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (3,290 samples, 0.18%)</title><rect x="607.2" y="1829" width="2.1" height="15.0" fill="rgb(245,165,1)" rx="2" ry="2" />
<text x="610.21" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (188 samples, 0.01%)</title><rect x="780.3" y="1173" width="0.1" height="15.0" fill="rgb(250,216,2)" rx="2" ry="2" />
<text x="783.30" y="1183.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (5,276 samples, 0.28%)</title><rect x="1068.8" y="1365" width="3.3" height="15.0" fill="rgb(210,176,7)" rx="2" ry="2" />
<text x="1071.77" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (172 samples, 0.01%)</title><rect x="160.7" y="1781" width="0.1" height="15.0" fill="rgb(236,133,2)" rx="2" ry="2" />
<text x="163.73" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (529 samples, 0.03%)</title><rect x="912.1" y="1077" width="0.3" height="15.0" fill="rgb(217,4,10)" rx="2" ry="2" />
<text x="915.05" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (891 samples, 0.05%)</title><rect x="1148.4" y="1317" width="0.6" height="15.0" fill="rgb(241,28,45)" rx="2" ry="2" />
<text x="1151.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (593 samples, 0.03%)</title><rect x="689.3" y="1685" width="0.4" height="15.0" fill="rgb(206,225,25)" rx="2" ry="2" />
<text x="692.29" y="1695.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (215 samples, 0.01%)</title><rect x="662.3" y="1861" width="0.1" height="15.0" fill="rgb(212,111,2)" rx="2" ry="2" />
<text x="665.26" y="1871.5" ></text>
</g>
<g >
<title>caml_string_length (296 samples, 0.02%)</title><rect x="800.0" y="1397" width="0.2" height="15.0" fill="rgb(240,96,24)" rx="2" ry="2" />
<text x="802.96" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="565" width="0.3" height="15.0" fill="rgb(213,224,19)" rx="2" ry="2" />
<text x="1191.82" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (226 samples, 0.01%)</title><rect x="906.5" y="1205" width="0.2" height="15.0" fill="rgb(219,139,15)" rx="2" ry="2" />
<text x="909.51" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (231 samples, 0.01%)</title><rect x="857.4" y="1317" width="0.1" height="15.0" fill="rgb(254,88,48)" rx="2" ry="2" />
<text x="860.36" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (9,189 samples, 0.49%)</title><rect x="895.8" y="1429" width="5.9" height="15.0" fill="rgb(253,93,17)" rx="2" ry="2" />
<text x="898.83" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1717" width="0.2" height="15.0" fill="rgb(224,63,51)" rx="2" ry="2" />
<text x="1191.57" y="1727.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (113,951 samples, 6.13%)</title><rect x="583.5" y="1893" width="72.3" height="15.0" fill="rgb(222,60,15)" rx="2" ry="2" />
<text x="586.47" y="1903.5" >caml_thr..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (230 samples, 0.01%)</title><rect x="689.5" y="357" width="0.1" height="15.0" fill="rgb(231,207,40)" rx="2" ry="2" />
<text x="692.47" y="367.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (15,319 samples, 0.82%)</title><rect x="747.3" y="1333" width="9.7" height="15.0" fill="rgb(208,60,18)" rx="2" ry="2" />
<text x="750.27" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (2,434 samples, 0.13%)</title><rect x="909.5" y="1381" width="1.5" height="15.0" fill="rgb(229,28,38)" rx="2" ry="2" />
<text x="912.46" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="325" width="0.3" height="15.0" fill="rgb(247,37,23)" rx="2" ry="2" />
<text x="1191.32" y="335.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (2,508 samples, 0.13%)</title><rect x="833.3" y="1333" width="1.6" height="15.0" fill="rgb(225,40,39)" rx="2" ry="2" />
<text x="836.29" y="1343.5" ></text>
</g>
<g >
<title>caml_darken (1,489 samples, 0.08%)</title><rect x="681.9" y="1909" width="0.9" height="15.0" fill="rgb(240,177,28)" rx="2" ry="2" />
<text x="684.86" y="1919.5" ></text>
</g>
<g >
<title>caml_string_compare (556 samples, 0.03%)</title><rect x="897.1" y="1365" width="0.3" height="15.0" fill="rgb(237,130,42)" rx="2" ry="2" />
<text x="900.06" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3770 (6,876 samples, 0.37%)</title><rect x="271.5" y="1909" width="4.4" height="15.0" fill="rgb(237,196,29)" rx="2" ry="2" />
<text x="274.49" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (594 samples, 0.03%)</title><rect x="1061.5" y="1333" width="0.4" height="15.0" fill="rgb(211,179,24)" rx="2" ry="2" />
<text x="1064.47" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_values_5988 (453 samples, 0.02%)</title><rect x="892.9" y="1381" width="0.3" height="15.0" fill="rgb(229,91,20)" rx="2" ry="2" />
<text x="895.94" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (209 samples, 0.01%)</title><rect x="689.5" y="293" width="0.1" height="15.0" fill="rgb(234,107,24)" rx="2" ry="2" />
<text x="692.49" y="303.5" ></text>
</g>
<g >
<title>caml_apply3 (1,893 samples, 0.10%)</title><rect x="181.4" y="1909" width="1.2" height="15.0" fill="rgb(237,219,27)" rx="2" ry="2" />
<text x="184.36" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (399 samples, 0.02%)</title><rect x="916.4" y="1333" width="0.2" height="15.0" fill="rgb(237,170,41)" rx="2" ry="2" />
<text x="919.39" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (1,210 samples, 0.07%)</title><rect x="996.6" y="1221" width="0.8" height="15.0" fill="rgb(245,166,39)" rx="2" ry="2" />
<text x="999.60" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (283 samples, 0.02%)</title><rect x="940.3" y="1333" width="0.2" height="15.0" fill="rgb(240,66,17)" rx="2" ry="2" />
<text x="943.34" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1621" width="0.2" height="15.0" fill="rgb(233,214,47)" rx="2" ry="2" />
<text x="1191.57" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1653" width="0.3" height="15.0" fill="rgb(244,229,10)" rx="2" ry="2" />
<text x="1191.32" y="1663.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (705,229 samples, 37.92%)</title><rect x="716.2" y="1749" width="447.4" height="15.0" fill="rgb(211,99,4)" rx="2" ry="2" />
<text x="719.18" y="1759.5" >camlLwt__callback_2614</text>
</g>
<g >
<title>camlStdlib__map__add_1108 (404 samples, 0.02%)</title><rect x="944.8" y="1269" width="0.3" height="15.0" fill="rgb(247,80,51)" rx="2" ry="2" />
<text x="947.79" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (161 samples, 0.01%)</title><rect x="706.8" y="1349" width="0.1" height="15.0" fill="rgb(207,46,28)" rx="2" ry="2" />
<text x="709.83" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (500 samples, 0.03%)</title><rect x="207.9" y="1845" width="0.3" height="15.0" fill="rgb(208,43,8)" rx="2" ry="2" />
<text x="210.93" y="1855.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,181 samples, 0.06%)</title><rect x="671.3" y="1813" width="0.8" height="15.0" fill="rgb(237,10,28)" rx="2" ry="2" />
<text x="674.31" y="1823.5" ></text>
</g>
<g >
<title>sweep_slice (484 samples, 0.03%)</title><rect x="343.6" y="1845" width="0.3" height="15.0" fill="rgb(233,77,32)" rx="2" ry="2" />
<text x="346.57" y="1855.5" ></text>
</g>
<g >
<title>caml_call_gc (204 samples, 0.01%)</title><rect x="793.0" y="1269" width="0.1" height="15.0" fill="rgb(209,51,4)" rx="2" ry="2" />
<text x="796.02" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (288 samples, 0.02%)</title><rect x="689.4" y="597" width="0.2" height="15.0" fill="rgb(227,217,17)" rx="2" ry="2" />
<text x="692.44" y="607.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__copy_3667 (223 samples, 0.01%)</title><rect x="1161.5" y="1381" width="0.1" height="15.0" fill="rgb(235,114,33)" rx="2" ry="2" />
<text x="1164.47" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (317 samples, 0.02%)</title><rect x="907.7" y="1397" width="0.2" height="15.0" fill="rgb(210,62,38)" rx="2" ry="2" />
<text x="910.67" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (238 samples, 0.01%)</title><rect x="1076.0" y="1381" width="0.1" height="15.0" fill="rgb(213,26,51)" rx="2" ry="2" />
<text x="1078.98" y="1391.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (892 samples, 0.05%)</title><rect x="46.0" y="2005" width="0.5" height="15.0" fill="rgb(234,184,49)" rx="2" ry="2" />
<text x="48.98" y="2015.5" ></text>
</g>
<g >
<title>digestif_sha1_update (202 samples, 0.01%)</title><rect x="691.3" y="1397" width="0.1" height="15.0" fill="rgb(221,113,12)" rx="2" ry="2" />
<text x="694.26" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (284 samples, 0.02%)</title><rect x="912.2" y="997" width="0.2" height="15.0" fill="rgb(246,48,2)" rx="2" ry="2" />
<text x="915.21" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (6,424 samples, 0.35%)</title><rect x="1031.0" y="1349" width="4.1" height="15.0" fill="rgb(205,176,38)" rx="2" ry="2" />
<text x="1034.04" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5169 (749 samples, 0.04%)</title><rect x="922.0" y="1317" width="0.4" height="15.0" fill="rgb(235,33,33)" rx="2" ry="2" />
<text x="924.96" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (295 samples, 0.02%)</title><rect x="704.2" y="1333" width="0.2" height="15.0" fill="rgb(205,176,18)" rx="2" ry="2" />
<text x="707.20" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,035 samples, 0.16%)</title><rect x="421.9" y="1877" width="1.9" height="15.0" fill="rgb(247,7,42)" rx="2" ry="2" />
<text x="424.90" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (180 samples, 0.01%)</title><rect x="700.0" y="1429" width="0.2" height="15.0" fill="rgb(233,89,12)" rx="2" ry="2" />
<text x="703.04" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (4,687 samples, 0.25%)</title><rect x="946.5" y="1237" width="2.9" height="15.0" fill="rgb(210,211,1)" rx="2" ry="2" />
<text x="949.45" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_1738 (221 samples, 0.01%)</title><rect x="852.5" y="1301" width="0.2" height="15.0" fill="rgb(252,186,49)" rx="2" ry="2" />
<text x="855.53" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (286 samples, 0.02%)</title><rect x="851.4" y="1269" width="0.2" height="15.0" fill="rgb(229,157,28)" rx="2" ry="2" />
<text x="854.45" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (4,366 samples, 0.23%)</title><rect x="827.2" y="1349" width="2.7" height="15.0" fill="rgb(218,16,26)" rx="2" ry="2" />
<text x="830.18" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (1,617 samples, 0.09%)</title><rect x="1060.2" y="1349" width="1.0" height="15.0" fill="rgb(245,98,17)" rx="2" ry="2" />
<text x="1063.22" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (615 samples, 0.03%)</title><rect x="897.0" y="1381" width="0.4" height="15.0" fill="rgb(231,159,3)" rx="2" ry="2" />
<text x="900.02" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (470 samples, 0.03%)</title><rect x="859.4" y="1157" width="0.3" height="15.0" fill="rgb(214,138,35)" rx="2" ry="2" />
<text x="862.36" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (283 samples, 0.02%)</title><rect x="996.0" y="1173" width="0.1" height="15.0" fill="rgb(226,107,45)" rx="2" ry="2" />
<text x="998.95" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (332 samples, 0.02%)</title><rect x="933.0" y="1381" width="0.2" height="15.0" fill="rgb(241,115,31)" rx="2" ry="2" />
<text x="936.01" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (247 samples, 0.01%)</title><rect x="960.7" y="1205" width="0.2" height="15.0" fill="rgb(237,95,8)" rx="2" ry="2" />
<text x="963.73" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (391 samples, 0.02%)</title><rect x="770.2" y="1189" width="0.2" height="15.0" fill="rgb(251,76,48)" rx="2" ry="2" />
<text x="773.16" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (170 samples, 0.01%)</title><rect x="995.8" y="1173" width="0.1" height="15.0" fill="rgb(213,109,10)" rx="2" ry="2" />
<text x="998.79" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,452 samples, 0.08%)</title><rect x="852.8" y="1301" width="0.9" height="15.0" fill="rgb(218,190,26)" rx="2" ry="2" />
<text x="855.81" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (479 samples, 0.03%)</title><rect x="787.8" y="1189" width="0.3" height="15.0" fill="rgb(216,90,49)" rx="2" ry="2" />
<text x="790.79" y="1199.5" ></text>
</g>
<g >
<title>caml_mutex_lock (279 samples, 0.02%)</title><rect x="890.9" y="1301" width="0.2" height="15.0" fill="rgb(241,11,27)" rx="2" ry="2" />
<text x="893.94" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (2,916 samples, 0.16%)</title><rect x="917.6" y="1397" width="1.8" height="15.0" fill="rgb(250,75,40)" rx="2" ry="2" />
<text x="920.58" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="805" width="0.5" height="15.0" fill="rgb(223,157,19)" rx="2" ry="2" />
<text x="1192.48" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (160 samples, 0.01%)</title><rect x="1140.6" y="1301" width="0.1" height="15.0" fill="rgb(226,138,17)" rx="2" ry="2" />
<text x="1143.62" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,775 samples, 0.10%)</title><rect x="113.1" y="1877" width="1.2" height="15.0" fill="rgb(231,208,17)" rx="2" ry="2" />
<text x="116.13" y="1887.5" ></text>
</g>
<g >
<title>caml_string_equal (375 samples, 0.02%)</title><rect x="1127.4" y="1317" width="0.3" height="15.0" fill="rgb(220,228,21)" rx="2" ry="2" />
<text x="1130.43" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (213 samples, 0.01%)</title><rect x="20.5" y="2021" width="0.1" height="15.0" fill="rgb(253,104,18)" rx="2" ry="2" />
<text x="23.47" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (406 samples, 0.02%)</title><rect x="827.5" y="1285" width="0.2" height="15.0" fill="rgb(251,92,3)" rx="2" ry="2" />
<text x="830.46" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (232 samples, 0.01%)</title><rect x="689.5" y="373" width="0.1" height="15.0" fill="rgb(214,158,4)" rx="2" ry="2" />
<text x="692.47" y="383.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (280 samples, 0.02%)</title><rect x="684.6" y="1861" width="0.2" height="15.0" fill="rgb(237,179,49)" rx="2" ry="2" />
<text x="687.58" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1541" width="0.3" height="15.0" fill="rgb(209,128,35)" rx="2" ry="2" />
<text x="1191.82" y="1551.5" ></text>
</g>
<g >
<title>caml_pread (321 samples, 0.02%)</title><rect x="712.7" y="1365" width="0.2" height="15.0" fill="rgb(212,95,47)" rx="2" ry="2" />
<text x="715.66" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (1,290 samples, 0.07%)</title><rect x="736.0" y="1317" width="0.8" height="15.0" fill="rgb(209,108,24)" rx="2" ry="2" />
<text x="739.01" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (720 samples, 0.04%)</title><rect x="746.7" y="1253" width="0.4" height="15.0" fill="rgb(234,203,18)" rx="2" ry="2" />
<text x="749.67" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (565 samples, 0.03%)</title><rect x="721.9" y="1269" width="0.3" height="15.0" fill="rgb(222,119,1)" rx="2" ry="2" />
<text x="724.86" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (354 samples, 0.02%)</title><rect x="1118.4" y="1317" width="0.2" height="15.0" fill="rgb(211,29,20)" rx="2" ry="2" />
<text x="1121.40" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (1,058 samples, 0.06%)</title><rect x="691.7" y="1397" width="0.7" height="15.0" fill="rgb(253,13,38)" rx="2" ry="2" />
<text x="694.75" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,688 samples, 0.09%)</title><rect x="113.2" y="1861" width="1.1" height="15.0" fill="rgb(238,229,31)" rx="2" ry="2" />
<text x="116.18" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,678 samples, 0.25%)</title><rect x="726.5" y="1333" width="2.9" height="15.0" fill="rgb(249,71,46)" rx="2" ry="2" />
<text x="729.46" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (323 samples, 0.02%)</title><rect x="906.5" y="1301" width="0.2" height="15.0" fill="rgb(228,136,43)" rx="2" ry="2" />
<text x="909.46" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (243 samples, 0.01%)</title><rect x="1127.7" y="1333" width="0.2" height="15.0" fill="rgb(215,173,16)" rx="2" ry="2" />
<text x="1130.70" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Fan__loop_1293 (400 samples, 0.02%)</title><rect x="57.8" y="1941" width="0.2" height="15.0" fill="rgb(252,38,4)" rx="2" ry="2" />
<text x="60.79" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (345 samples, 0.02%)</title><rect x="1121.6" y="1285" width="0.2" height="15.0" fill="rgb(248,225,5)" rx="2" ry="2" />
<text x="1124.59" y="1295.5" ></text>
</g>
<g >
<title>unix_lseek_64 (199 samples, 0.01%)</title><rect x="746.5" y="1189" width="0.1" height="15.0" fill="rgb(239,5,40)" rx="2" ry="2" />
<text x="749.51" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (175 samples, 0.01%)</title><rect x="693.6" y="1461" width="0.1" height="15.0" fill="rgb(208,210,36)" rx="2" ry="2" />
<text x="696.56" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (757 samples, 0.04%)</title><rect x="168.5" y="1765" width="0.5" height="15.0" fill="rgb(225,132,26)" rx="2" ry="2" />
<text x="171.50" y="1775.5" ></text>
</g>
<g >
<title>caml_hash (40,900 samples, 2.20%)</title><rect x="374.2" y="1893" width="25.9" height="15.0" fill="rgb(238,221,41)" rx="2" ry="2" />
<text x="377.19" y="1903.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (208 samples, 0.01%)</title><rect x="689.5" y="261" width="0.1" height="15.0" fill="rgb(226,58,48)" rx="2" ry="2" />
<text x="692.49" y="271.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_5180 (443 samples, 0.02%)</title><rect x="716.6" y="1525" width="0.2" height="15.0" fill="rgb(244,152,28)" rx="2" ry="2" />
<text x="719.55" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1461" width="0.5" height="15.0" fill="rgb(246,149,10)" rx="2" ry="2" />
<text x="1192.48" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2835 (284 samples, 0.02%)</title><rect x="1018.0" y="1461" width="0.1" height="15.0" fill="rgb(231,48,3)" rx="2" ry="2" />
<text x="1020.95" y="1471.5" ></text>
</g>
<g >
<title>caml_call_gc (162 samples, 0.01%)</title><rect x="809.1" y="1397" width="0.1" height="15.0" fill="rgb(224,110,25)" rx="2" ry="2" />
<text x="812.14" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,217 samples, 0.07%)</title><rect x="798.7" y="1461" width="0.7" height="15.0" fill="rgb(229,124,33)" rx="2" ry="2" />
<text x="801.66" y="1471.5" ></text>
</g>
<g >
<title>caml_garbage_collection (171 samples, 0.01%)</title><rect x="776.8" y="1157" width="0.2" height="15.0" fill="rgb(223,154,49)" rx="2" ry="2" />
<text x="779.85" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (231 samples, 0.01%)</title><rect x="834.4" y="1285" width="0.1" height="15.0" fill="rgb(225,217,32)" rx="2" ry="2" />
<text x="837.38" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (522 samples, 0.03%)</title><rect x="689.3" y="1573" width="0.3" height="15.0" fill="rgb(205,55,20)" rx="2" ry="2" />
<text x="692.31" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (288 samples, 0.02%)</title><rect x="689.4" y="581" width="0.2" height="15.0" fill="rgb(214,46,0)" rx="2" ry="2" />
<text x="692.44" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_layers__copy_22890 (465 samples, 0.03%)</title><rect x="716.2" y="1685" width="0.3" height="15.0" fill="rgb(207,80,41)" rx="2" ry="2" />
<text x="719.18" y="1695.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (473 samples, 0.03%)</title><rect x="762.7" y="1285" width="0.3" height="15.0" fill="rgb(233,165,25)" rx="2" ry="2" />
<text x="765.70" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="645" width="0.3" height="15.0" fill="rgb(221,55,49)" rx="2" ry="2" />
<text x="1191.32" y="655.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="677" width="0.3" height="15.0" fill="rgb(218,213,27)" rx="2" ry="2" />
<text x="1192.12" y="687.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (612 samples, 0.03%)</title><rect x="1176.2" y="1093" width="0.4" height="15.0" fill="rgb(215,172,32)" rx="2" ry="2" />
<text x="1179.20" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (642 samples, 0.03%)</title><rect x="1169.1" y="1013" width="0.4" height="15.0" fill="rgb(210,48,25)" rx="2" ry="2" />
<text x="1172.10" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (165 samples, 0.01%)</title><rect x="1023.0" y="1349" width="0.1" height="15.0" fill="rgb(209,29,6)" rx="2" ry="2" />
<text x="1026.01" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (692 samples, 0.04%)</title><rect x="1006.7" y="1397" width="0.4" height="15.0" fill="rgb(230,60,52)" rx="2" ry="2" />
<text x="1009.69" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (497 samples, 0.03%)</title><rect x="1036.5" y="1333" width="0.3" height="15.0" fill="rgb(241,41,47)" rx="2" ry="2" />
<text x="1039.53" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (6,066 samples, 0.33%)</title><rect x="903.1" y="1349" width="3.9" height="15.0" fill="rgb(247,9,12)" rx="2" ry="2" />
<text x="906.11" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_10624 (76,269 samples, 4.10%)</title><rect x="1115.0" y="1541" width="48.4" height="15.0" fill="rgb(243,211,44)" rx="2" ry="2" />
<text x="1118.04" y="1551.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3220 (6,506 samples, 0.35%)</title><rect x="405.3" y="1909" width="4.1" height="15.0" fill="rgb(214,37,33)" rx="2" ry="2" />
<text x="408.32" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (235 samples, 0.01%)</title><rect x="915.4" y="1285" width="0.2" height="15.0" fill="rgb(228,22,12)" rx="2" ry="2" />
<text x="918.42" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (332 samples, 0.02%)</title><rect x="723.6" y="1317" width="0.3" height="15.0" fill="rgb(224,133,37)" rx="2" ry="2" />
<text x="726.64" y="1327.5" ></text>
</g>
<g >
<title>caml_apply2 (466 samples, 0.03%)</title><rect x="870.1" y="1173" width="0.3" height="15.0" fill="rgb(210,39,7)" rx="2" ry="2" />
<text x="873.08" y="1183.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (344 samples, 0.02%)</title><rect x="526.3" y="1861" width="0.3" height="15.0" fill="rgb(212,147,41)" rx="2" ry="2" />
<text x="529.35" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="725" width="0.3" height="15.0" fill="rgb(233,89,7)" rx="2" ry="2" />
<text x="1192.12" y="735.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (514 samples, 0.03%)</title><rect x="1154.4" y="1333" width="0.3" height="15.0" fill="rgb(229,166,34)" rx="2" ry="2" />
<text x="1157.41" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (365 samples, 0.02%)</title><rect x="773.1" y="1173" width="0.3" height="15.0" fill="rgb(226,215,36)" rx="2" ry="2" />
<text x="776.14" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (204 samples, 0.01%)</title><rect x="844.2" y="1189" width="0.2" height="15.0" fill="rgb(214,89,54)" rx="2" ry="2" />
<text x="847.25" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__copy_3667 (16,191 samples, 0.87%)</title><rect x="1150.5" y="1477" width="10.2" height="15.0" fill="rgb(244,182,31)" rx="2" ry="2" />
<text x="1153.46" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (158 samples, 0.01%)</title><rect x="930.0" y="1237" width="0.1" height="15.0" fill="rgb(231,187,26)" rx="2" ry="2" />
<text x="933.05" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (265 samples, 0.01%)</title><rect x="765.8" y="1253" width="0.2" height="15.0" fill="rgb(226,122,12)" rx="2" ry="2" />
<text x="768.79" y="1263.5" ></text>
</g>
<g >
<title>__GI__setjmp (1,148 samples, 0.06%)</title><rect x="53.7" y="2021" width="0.7" height="15.0" fill="rgb(210,137,33)" rx="2" ry="2" />
<text x="56.69" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__mem_3835 (5,164 samples, 0.28%)</title><rect x="1180.2" y="1381" width="3.3" height="15.0" fill="rgb(231,150,30)" rx="2" ry="2" />
<text x="1183.21" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (435 samples, 0.02%)</title><rect x="1171.9" y="1189" width="0.2" height="15.0" fill="rgb(205,128,14)" rx="2" ry="2" />
<text x="1174.87" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (239 samples, 0.01%)</title><rect x="744.2" y="1157" width="0.2" height="15.0" fill="rgb(248,4,9)" rx="2" ry="2" />
<text x="747.23" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (542 samples, 0.03%)</title><rect x="138.9" y="1781" width="0.3" height="15.0" fill="rgb(227,24,4)" rx="2" ry="2" />
<text x="141.87" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,472 samples, 0.29%)</title><rect x="585.9" y="1813" width="3.5" height="15.0" fill="rgb(228,191,0)" rx="2" ry="2" />
<text x="588.89" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (478 samples, 0.03%)</title><rect x="826.9" y="965" width="0.3" height="15.0" fill="rgb(233,3,27)" rx="2" ry="2" />
<text x="829.85" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (11,377 samples, 0.61%)</title><rect x="770.8" y="1221" width="7.2" height="15.0" fill="rgb(215,40,46)" rx="2" ry="2" />
<text x="773.77" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (224 samples, 0.01%)</title><rect x="940.4" y="1301" width="0.1" height="15.0" fill="rgb(249,197,33)" rx="2" ry="2" />
<text x="943.36" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (543 samples, 0.03%)</title><rect x="898.5" y="1349" width="0.3" height="15.0" fill="rgb(211,207,44)" rx="2" ry="2" />
<text x="901.49" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (1,218 samples, 0.07%)</title><rect x="117.5" y="1829" width="0.8" height="15.0" fill="rgb(228,68,0)" rx="2" ry="2" />
<text x="120.50" y="1839.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (753 samples, 0.04%)</title><rect x="775.6" y="1109" width="0.5" height="15.0" fill="rgb(229,226,7)" rx="2" ry="2" />
<text x="778.62" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (560 samples, 0.03%)</title><rect x="526.6" y="1893" width="0.3" height="15.0" fill="rgb(247,47,28)" rx="2" ry="2" />
<text x="529.57" y="1903.5" ></text>
</g>
<g >
<title>mark_slice (2,312 samples, 0.12%)</title><rect x="342.1" y="1845" width="1.5" height="15.0" fill="rgb(216,6,20)" rx="2" ry="2" />
<text x="345.10" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (174 samples, 0.01%)</title><rect x="919.2" y="1317" width="0.2" height="15.0" fill="rgb(227,213,32)" rx="2" ry="2" />
<text x="922.24" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (2,517 samples, 0.14%)</title><rect x="735.8" y="1349" width="1.6" height="15.0" fill="rgb(229,222,36)" rx="2" ry="2" />
<text x="738.79" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="389" width="0.3" height="15.0" fill="rgb(235,143,21)" rx="2" ry="2" />
<text x="1191.82" y="399.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,502 samples, 0.08%)</title><rect x="728.5" y="1093" width="0.9" height="15.0" fill="rgb(236,139,13)" rx="2" ry="2" />
<text x="731.46" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,802 samples, 0.10%)</title><rect x="467.8" y="1893" width="1.1" height="15.0" fill="rgb(233,110,29)" rx="2" ry="2" />
<text x="470.76" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1157" width="0.2" height="15.0" fill="rgb(209,64,8)" rx="2" ry="2" />
<text x="1191.57" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (336 samples, 0.02%)</title><rect x="927.4" y="1365" width="0.3" height="15.0" fill="rgb(208,111,30)" rx="2" ry="2" />
<text x="930.45" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4794 (218 samples, 0.01%)</title><rect x="1188.6" y="133" width="0.1" height="15.0" fill="rgb(227,193,44)" rx="2" ry="2" />
<text x="1191.59" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (184 samples, 0.01%)</title><rect x="1178.2" y="1189" width="0.1" height="15.0" fill="rgb(237,30,44)" rx="2" ry="2" />
<text x="1181.16" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (307 samples, 0.02%)</title><rect x="1179.2" y="1253" width="0.2" height="15.0" fill="rgb(231,117,50)" rx="2" ry="2" />
<text x="1182.24" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1557" width="0.5" height="15.0" fill="rgb(205,72,45)" rx="2" ry="2" />
<text x="1192.48" y="1567.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (181 samples, 0.01%)</title><rect x="856.4" y="1237" width="0.1" height="15.0" fill="rgb(239,22,10)" rx="2" ry="2" />
<text x="859.37" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_1980 (296 samples, 0.02%)</title><rect x="704.2" y="1349" width="0.2" height="15.0" fill="rgb(249,37,30)" rx="2" ry="2" />
<text x="707.20" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="997" width="0.3" height="15.0" fill="rgb(212,88,54)" rx="2" ry="2" />
<text x="1192.12" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (350 samples, 0.02%)</title><rect x="1023.6" y="1381" width="0.2" height="15.0" fill="rgb(244,94,5)" rx="2" ry="2" />
<text x="1026.60" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (5,770 samples, 0.31%)</title><rect x="523.3" y="1909" width="3.6" height="15.0" fill="rgb(221,144,54)" rx="2" ry="2" />
<text x="526.26" y="1919.5" ></text>
</g>
<g >
<title>caml_startup_exn (790,470 samples, 42.50%)</title><rect x="686.8" y="1989" width="501.5" height="15.0" fill="rgb(248,16,33)" rx="2" ry="2" />
<text x="689.78" y="1999.5" >caml_startup_exn</text>
</g>
<g >
<title>caml_apply2 (193 samples, 0.01%)</title><rect x="1083.8" y="1381" width="0.2" height="15.0" fill="rgb(253,42,19)" rx="2" ry="2" />
<text x="1086.84" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (11,037 samples, 0.59%)</title><rect x="194.2" y="1909" width="7.0" height="15.0" fill="rgb(209,71,41)" rx="2" ry="2" />
<text x="197.15" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (242 samples, 0.01%)</title><rect x="830.2" y="1349" width="0.1" height="15.0" fill="rgb(218,110,46)" rx="2" ry="2" />
<text x="833.19" y="1359.5" ></text>
</g>
<g >
<title>caml_hash (205 samples, 0.01%)</title><rect x="696.8" y="1333" width="0.1" height="15.0" fill="rgb(211,24,41)" rx="2" ry="2" />
<text x="699.76" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (401 samples, 0.02%)</title><rect x="850.1" y="1221" width="0.3" height="15.0" fill="rgb(214,167,29)" rx="2" ry="2" />
<text x="853.11" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (284 samples, 0.02%)</title><rect x="724.0" y="1317" width="0.2" height="15.0" fill="rgb(212,16,1)" rx="2" ry="2" />
<text x="727.03" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3490 (242 samples, 0.01%)</title><rect x="754.0" y="1269" width="0.2" height="15.0" fill="rgb(216,162,0)" rx="2" ry="2" />
<text x="757.05" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (184 samples, 0.01%)</title><rect x="796.8" y="1301" width="0.1" height="15.0" fill="rgb(232,153,45)" rx="2" ry="2" />
<text x="799.76" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (167 samples, 0.01%)</title><rect x="784.9" y="1205" width="0.1" height="15.0" fill="rgb(233,209,29)" rx="2" ry="2" />
<text x="787.86" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (372 samples, 0.02%)</title><rect x="1099.2" y="1493" width="0.2" height="15.0" fill="rgb(239,140,18)" rx="2" ry="2" />
<text x="1102.19" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,231 samples, 0.07%)</title><rect x="704.5" y="1413" width="0.8" height="15.0" fill="rgb(219,194,0)" rx="2" ry="2" />
<text x="707.50" y="1423.5" ></text>
</g>
<g >
<title>futex_wake (250 samples, 0.01%)</title><rect x="817.4" y="1317" width="0.2" height="15.0" fill="rgb(240,39,37)" rx="2" ry="2" />
<text x="820.40" y="1327.5" ></text>
</g>
<g >
<title>camlLayered_bench__with_timer_24603 (46,213 samples, 2.48%)</title><rect x="686.8" y="1797" width="29.3" height="15.0" fill="rgb(233,99,41)" rx="2" ry="2" />
<text x="689.78" y="1807.5" >ca..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (449 samples, 0.02%)</title><rect x="1176.3" y="1013" width="0.3" height="15.0" fill="rgb(205,17,51)" rx="2" ry="2" />
<text x="1179.30" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1669" width="0.3" height="15.0" fill="rgb(234,106,23)" rx="2" ry="2" />
<text x="1191.32" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1493 (211 samples, 0.01%)</title><rect x="1173.0" y="1253" width="0.1" height="15.0" fill="rgb(225,68,46)" rx="2" ry="2" />
<text x="1175.97" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (484 samples, 0.03%)</title><rect x="689.3" y="1397" width="0.3" height="15.0" fill="rgb(254,16,29)" rx="2" ry="2" />
<text x="692.33" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (252 samples, 0.01%)</title><rect x="693.2" y="1365" width="0.1" height="15.0" fill="rgb(214,161,41)" rx="2" ry="2" />
<text x="696.15" y="1375.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (433 samples, 0.02%)</title><rect x="1171.9" y="1157" width="0.2" height="15.0" fill="rgb(235,30,0)" rx="2" ry="2" />
<text x="1174.87" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1893" width="0.3" height="15.0" fill="rgb(243,158,48)" rx="2" ry="2" />
<text x="1191.32" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (723 samples, 0.04%)</title><rect x="733.8" y="1301" width="0.4" height="15.0" fill="rgb(221,151,52)" rx="2" ry="2" />
<text x="736.79" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (671 samples, 0.04%)</title><rect x="1113.5" y="1493" width="0.4" height="15.0" fill="rgb(226,179,51)" rx="2" ry="2" />
<text x="1116.49" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (209 samples, 0.01%)</title><rect x="1112.5" y="1509" width="0.2" height="15.0" fill="rgb(223,27,14)" rx="2" ry="2" />
<text x="1115.54" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,980 samples, 0.21%)</title><rect x="726.9" y="1285" width="2.5" height="15.0" fill="rgb(212,208,53)" rx="2" ry="2" />
<text x="729.90" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3345 (2,114 samples, 0.11%)</title><rect x="846.5" y="1253" width="1.4" height="15.0" fill="rgb(219,202,3)" rx="2" ry="2" />
<text x="849.54" y="1263.5" ></text>
</g>
<g >
<title>_start (790,489 samples, 42.50%)</title><rect x="686.8" y="2053" width="501.5" height="15.0" fill="rgb(217,41,30)" rx="2" ry="2" />
<text x="689.78" y="2063.5" >_start</text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (19,187 samples, 1.03%)</title><rect x="865.1" y="1253" width="12.2" height="15.0" fill="rgb(232,119,28)" rx="2" ry="2" />
<text x="868.11" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (509 samples, 0.03%)</title><rect x="866.2" y="1189" width="0.4" height="15.0" fill="rgb(220,225,4)" rx="2" ry="2" />
<text x="869.25" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (239 samples, 0.01%)</title><rect x="1076.0" y="1397" width="0.1" height="15.0" fill="rgb(240,209,45)" rx="2" ry="2" />
<text x="1078.98" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (477 samples, 0.03%)</title><rect x="753.3" y="1269" width="0.3" height="15.0" fill="rgb(229,205,24)" rx="2" ry="2" />
<text x="756.26" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,423 samples, 0.13%)</title><rect x="727.9" y="1173" width="1.5" height="15.0" fill="rgb(251,214,1)" rx="2" ry="2" />
<text x="730.89" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (180 samples, 0.01%)</title><rect x="839.1" y="1125" width="0.1" height="15.0" fill="rgb(235,75,35)" rx="2" ry="2" />
<text x="842.12" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_5510 (15,346 samples, 0.83%)</title><rect x="705.4" y="1557" width="9.8" height="15.0" fill="rgb(243,95,28)" rx="2" ry="2" />
<text x="708.45" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (4,405 samples, 0.24%)</title><rect x="760.4" y="1349" width="2.8" height="15.0" fill="rgb(224,186,47)" rx="2" ry="2" />
<text x="763.43" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1829" width="0.3" height="15.0" fill="rgb(233,36,5)" rx="2" ry="2" />
<text x="1191.32" y="1839.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (418 samples, 0.02%)</title><rect x="1126.4" y="1509" width="0.3" height="15.0" fill="rgb(227,80,6)" rx="2" ry="2" />
<text x="1129.39" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,011 samples, 0.16%)</title><rect x="565.2" y="1877" width="1.9" height="15.0" fill="rgb(216,18,36)" rx="2" ry="2" />
<text x="568.20" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (416 samples, 0.02%)</title><rect x="1059.2" y="1333" width="0.3" height="15.0" fill="rgb(216,186,0)" rx="2" ry="2" />
<text x="1062.19" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (330 samples, 0.02%)</title><rect x="729.2" y="949" width="0.2" height="15.0" fill="rgb(219,111,5)" rx="2" ry="2" />
<text x="732.20" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="949" width="0.3" height="15.0" fill="rgb(250,217,7)" rx="2" ry="2" />
<text x="1191.32" y="959.5" ></text>
</g>
<g >
<title>mark_slice (1,175 samples, 0.06%)</title><rect x="434.9" y="1877" width="0.7" height="15.0" fill="rgb(251,73,0)" rx="2" ry="2" />
<text x="437.89" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (16,350 samples, 0.88%)</title><rect x="1101.5" y="1461" width="10.4" height="15.0" fill="rgb(238,121,36)" rx="2" ry="2" />
<text x="1104.55" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__get_tree_5959 (98,586 samples, 5.30%)</title><rect x="942.6" y="1349" width="62.5" height="15.0" fill="rgb(237,52,14)" rx="2" ry="2" />
<text x="945.58" y="1359.5" >camlIr..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (910 samples, 0.05%)</title><rect x="725.4" y="1381" width="0.6" height="15.0" fill="rgb(216,109,12)" rx="2" ry="2" />
<text x="728.44" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,454 samples, 0.13%)</title><rect x="940.5" y="1301" width="1.6" height="15.0" fill="rgb(234,116,3)" rx="2" ry="2" />
<text x="943.55" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1701" width="0.5" height="15.0" fill="rgb(249,71,11)" rx="2" ry="2" />
<text x="1192.48" y="1711.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,424 samples, 0.08%)</title><rect x="693.8" y="1413" width="0.9" height="15.0" fill="rgb(209,84,25)" rx="2" ry="2" />
<text x="696.81" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (3,667 samples, 0.20%)</title><rect x="839.9" y="1269" width="2.3" height="15.0" fill="rgb(226,99,49)" rx="2" ry="2" />
<text x="842.90" y="1279.5" ></text>
</g>
<g >
<title>unix_lseek_64 (726 samples, 0.04%)</title><rect x="952.8" y="1173" width="0.4" height="15.0" fill="rgb(231,18,17)" rx="2" ry="2" />
<text x="955.77" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (376 samples, 0.02%)</title><rect x="919.7" y="1397" width="0.3" height="15.0" fill="rgb(245,196,54)" rx="2" ry="2" />
<text x="922.73" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (55,590 samples, 2.99%)</title><rect x="308.6" y="1909" width="35.3" height="15.0" fill="rgb(241,118,38)" rx="2" ry="2" />
<text x="311.61" y="1919.5" >ca..</text>
</g>
<g >
<title>unix_lseek_64 (393 samples, 0.02%)</title><rect x="843.3" y="1189" width="0.2" height="15.0" fill="rgb(250,113,16)" rx="2" ry="2" />
<text x="846.29" y="1199.5" ></text>
</g>
<g >
<title>caml_thread_yield (152,566 samples, 8.20%)</title><rect x="559.0" y="1925" width="96.8" height="15.0" fill="rgb(248,164,15)" rx="2" ry="2" />
<text x="561.97" y="1935.5" >caml_thread..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (196 samples, 0.01%)</title><rect x="788.3" y="1205" width="0.1" height="15.0" fill="rgb(216,73,11)" rx="2" ry="2" />
<text x="791.27" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,438 samples, 0.13%)</title><rect x="763.9" y="1285" width="1.6" height="15.0" fill="rgb(226,177,22)" rx="2" ry="2" />
<text x="766.90" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (13,573 samples, 0.73%)</title><rect x="726.2" y="1397" width="8.6" height="15.0" fill="rgb(219,105,14)" rx="2" ry="2" />
<text x="729.17" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (415 samples, 0.02%)</title><rect x="673.6" y="1861" width="0.3" height="15.0" fill="rgb(253,102,12)" rx="2" ry="2" />
<text x="676.60" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2684 (214 samples, 0.01%)</title><rect x="439.3" y="1877" width="0.1" height="15.0" fill="rgb(220,141,13)" rx="2" ry="2" />
<text x="442.31" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (509 samples, 0.03%)</title><rect x="1136.1" y="1349" width="0.3" height="15.0" fill="rgb(247,95,38)" rx="2" ry="2" />
<text x="1139.11" y="1359.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (195 samples, 0.01%)</title><rect x="972.1" y="1205" width="0.2" height="15.0" fill="rgb(226,202,13)" rx="2" ry="2" />
<text x="975.14" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (181 samples, 0.01%)</title><rect x="712.5" y="1413" width="0.1" height="15.0" fill="rgb(237,210,7)" rx="2" ry="2" />
<text x="715.52" y="1423.5" ></text>
</g>
<g >
<title>caml_mutex_lock (255 samples, 0.01%)</title><rect x="1003.1" y="1269" width="0.2" height="15.0" fill="rgb(216,77,0)" rx="2" ry="2" />
<text x="1006.14" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (1,680 samples, 0.09%)</title><rect x="874.7" y="1173" width="1.0" height="15.0" fill="rgb(252,158,20)" rx="2" ry="2" />
<text x="877.67" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (221 samples, 0.01%)</title><rect x="1023.9" y="1397" width="0.1" height="15.0" fill="rgb(240,27,2)" rx="2" ry="2" />
<text x="1026.90" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6315 (3,216 samples, 0.17%)</title><rect x="1148.3" y="1365" width="2.0" height="15.0" fill="rgb(224,85,19)" rx="2" ry="2" />
<text x="1151.29" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (173 samples, 0.01%)</title><rect x="881.4" y="1109" width="0.1" height="15.0" fill="rgb(229,113,23)" rx="2" ry="2" />
<text x="884.43" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (16,572 samples, 0.89%)</title><rect x="1115.5" y="1461" width="10.6" height="15.0" fill="rgb(251,203,40)" rx="2" ry="2" />
<text x="1118.54" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="837" width="0.3" height="15.0" fill="rgb(234,159,4)" rx="2" ry="2" />
<text x="1192.12" y="847.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (2,304 samples, 0.12%)</title><rect x="804.6" y="1349" width="1.5" height="15.0" fill="rgb(205,149,7)" rx="2" ry="2" />
<text x="807.59" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (189 samples, 0.01%)</title><rect x="925.3" y="901" width="0.1" height="15.0" fill="rgb(228,219,17)" rx="2" ry="2" />
<text x="928.31" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (278 samples, 0.01%)</title><rect x="919.2" y="1365" width="0.2" height="15.0" fill="rgb(219,228,45)" rx="2" ry="2" />
<text x="922.21" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (207 samples, 0.01%)</title><rect x="807.9" y="1429" width="0.2" height="15.0" fill="rgb(209,30,50)" rx="2" ry="2" />
<text x="810.93" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (401 samples, 0.02%)</title><rect x="1151.7" y="1317" width="0.3" height="15.0" fill="rgb(209,138,15)" rx="2" ry="2" />
<text x="1154.73" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (375 samples, 0.02%)</title><rect x="876.6" y="1189" width="0.3" height="15.0" fill="rgb(226,41,32)" rx="2" ry="2" />
<text x="879.63" y="1199.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (225 samples, 0.01%)</title><rect x="841.9" y="1189" width="0.1" height="15.0" fill="rgb(240,221,2)" rx="2" ry="2" />
<text x="844.88" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (1,360 samples, 0.07%)</title><rect x="772.1" y="1189" width="0.8" height="15.0" fill="rgb(245,190,24)" rx="2" ry="2" />
<text x="775.06" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,376 samples, 0.07%)</title><rect x="924.6" y="1173" width="0.8" height="15.0" fill="rgb(216,84,44)" rx="2" ry="2" />
<text x="927.56" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (247 samples, 0.01%)</title><rect x="712.7" y="1317" width="0.2" height="15.0" fill="rgb(239,99,49)" rx="2" ry="2" />
<text x="715.70" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (929 samples, 0.05%)</title><rect x="925.9" y="1365" width="0.6" height="15.0" fill="rgb(233,78,26)" rx="2" ry="2" />
<text x="928.87" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="837" width="0.2" height="15.0" fill="rgb(217,211,23)" rx="2" ry="2" />
<text x="1191.57" y="847.5" ></text>
</g>
<g >
<title>mark_slice (340 samples, 0.02%)</title><rect x="20.7" y="1973" width="0.3" height="15.0" fill="rgb(205,143,51)" rx="2" ry="2" />
<text x="23.73" y="1983.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (953 samples, 0.05%)</title><rect x="772.3" y="1141" width="0.6" height="15.0" fill="rgb(216,3,41)" rx="2" ry="2" />
<text x="775.32" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (164 samples, 0.01%)</title><rect x="749.7" y="1237" width="0.1" height="15.0" fill="rgb(238,147,20)" rx="2" ry="2" />
<text x="752.68" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (510 samples, 0.03%)</title><rect x="838.9" y="1189" width="0.3" height="15.0" fill="rgb(224,123,46)" rx="2" ry="2" />
<text x="841.91" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,996 samples, 0.16%)</title><rect x="565.2" y="1861" width="1.9" height="15.0" fill="rgb(224,219,16)" rx="2" ry="2" />
<text x="568.21" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (194 samples, 0.01%)</title><rect x="697.9" y="1413" width="0.1" height="15.0" fill="rgb(223,179,43)" rx="2" ry="2" />
<text x="700.90" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="725" width="0.2" height="15.0" fill="rgb(236,205,54)" rx="2" ry="2" />
<text x="1191.57" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221 samples, 0.01%)</title><rect x="1071.9" y="1157" width="0.1" height="15.0" fill="rgb(215,43,5)" rx="2" ry="2" />
<text x="1074.87" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (192 samples, 0.01%)</title><rect x="841.8" y="1125" width="0.1" height="15.0" fill="rgb(209,106,44)" rx="2" ry="2" />
<text x="844.76" y="1135.5" ></text>
</g>
<g >
<title>caml_string_length (176 samples, 0.01%)</title><rect x="898.0" y="1333" width="0.2" height="15.0" fill="rgb(211,27,33)" rx="2" ry="2" />
<text x="901.04" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (174 samples, 0.01%)</title><rect x="932.0" y="1301" width="0.1" height="15.0" fill="rgb(246,65,26)" rx="2" ry="2" />
<text x="935.03" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (591 samples, 0.03%)</title><rect x="689.3" y="1653" width="0.4" height="15.0" fill="rgb(229,187,37)" rx="2" ry="2" />
<text x="692.29" y="1663.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (2,974 samples, 0.16%)</title><rect x="732.8" y="1365" width="1.9" height="15.0" fill="rgb(219,116,17)" rx="2" ry="2" />
<text x="735.80" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (197 samples, 0.01%)</title><rect x="718.9" y="1397" width="0.1" height="15.0" fill="rgb(249,32,39)" rx="2" ry="2" />
<text x="721.86" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (339 samples, 0.02%)</title><rect x="868.9" y="1189" width="0.2" height="15.0" fill="rgb(240,172,54)" rx="2" ry="2" />
<text x="871.89" y="1199.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (199 samples, 0.01%)</title><rect x="1003.3" y="1269" width="0.1" height="15.0" fill="rgb(223,187,13)" rx="2" ry="2" />
<text x="1006.30" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1877" width="0.2" height="15.0" fill="rgb(212,68,42)" rx="2" ry="2" />
<text x="1191.57" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (204 samples, 0.01%)</title><rect x="944.9" y="1253" width="0.1" height="15.0" fill="rgb(234,163,39)" rx="2" ry="2" />
<text x="947.87" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,748 samples, 0.09%)</title><rect x="1088.6" y="1413" width="1.1" height="15.0" fill="rgb(210,112,48)" rx="2" ry="2" />
<text x="1091.57" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (182 samples, 0.01%)</title><rect x="880.9" y="1173" width="0.1" height="15.0" fill="rgb(219,208,0)" rx="2" ry="2" />
<text x="883.93" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (503 samples, 0.03%)</title><rect x="673.3" y="1797" width="0.3" height="15.0" fill="rgb(220,208,36)" rx="2" ry="2" />
<text x="676.28" y="1807.5" ></text>
</g>
<g >
<title>caml_string_equal (226 samples, 0.01%)</title><rect x="764.2" y="1237" width="0.2" height="15.0" fill="rgb(244,68,12)" rx="2" ry="2" />
<text x="767.21" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (448 samples, 0.02%)</title><rect x="672.3" y="1845" width="0.3" height="15.0" fill="rgb(216,182,27)" rx="2" ry="2" />
<text x="675.33" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1013" width="0.3" height="15.0" fill="rgb(216,150,11)" rx="2" ry="2" />
<text x="1191.82" y="1023.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (340 samples, 0.02%)</title><rect x="724.0" y="1349" width="0.2" height="15.0" fill="rgb(246,142,32)" rx="2" ry="2" />
<text x="727.01" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__fun_4798 (1,510 samples, 0.08%)</title><rect x="1172.7" y="1301" width="1.0" height="15.0" fill="rgb(254,44,30)" rx="2" ry="2" />
<text x="1175.71" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="869" width="0.3" height="15.0" fill="rgb(223,15,14)" rx="2" ry="2" />
<text x="1191.32" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (179 samples, 0.01%)</title><rect x="771.7" y="1189" width="0.1" height="15.0" fill="rgb(244,190,21)" rx="2" ry="2" />
<text x="774.69" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1173" width="0.3" height="15.0" fill="rgb(221,202,12)" rx="2" ry="2" />
<text x="1191.82" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,616 samples, 0.09%)</title><rect x="820.5" y="1317" width="1.0" height="15.0" fill="rgb(210,62,47)" rx="2" ry="2" />
<text x="823.49" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (181 samples, 0.01%)</title><rect x="1109.6" y="1269" width="0.1" height="15.0" fill="rgb(243,177,8)" rx="2" ry="2" />
<text x="1112.59" y="1279.5" ></text>
</g>
<g >
<title>caml_pread (414 samples, 0.02%)</title><rect x="1132.6" y="1301" width="0.3" height="15.0" fill="rgb(231,18,41)" rx="2" ry="2" />
<text x="1135.60" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1493" width="0.5" height="15.0" fill="rgb(228,14,4)" rx="2" ry="2" />
<text x="1192.48" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (178 samples, 0.01%)</title><rect x="747.2" y="1333" width="0.1" height="15.0" fill="rgb(221,192,49)" rx="2" ry="2" />
<text x="750.16" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1205" width="0.3" height="15.0" fill="rgb(229,4,18)" rx="2" ry="2" />
<text x="1191.32" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (286 samples, 0.02%)</title><rect x="821.7" y="1253" width="0.1" height="15.0" fill="rgb(219,153,23)" rx="2" ry="2" />
<text x="824.67" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (192 samples, 0.01%)</title><rect x="675.4" y="1797" width="0.1" height="15.0" fill="rgb(254,131,22)" rx="2" ry="2" />
<text x="678.41" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (5,550 samples, 0.30%)</title><rect x="211.9" y="1893" width="3.5" height="15.0" fill="rgb(216,140,20)" rx="2" ry="2" />
<text x="214.90" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_contents_5484 (180 samples, 0.01%)</title><rect x="689.8" y="1557" width="0.2" height="15.0" fill="rgb(254,146,42)" rx="2" ry="2" />
<text x="692.84" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1333" width="0.5" height="15.0" fill="rgb(207,68,20)" rx="2" ry="2" />
<text x="1192.48" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,582 samples, 0.35%)</title><rect x="41.8" y="1877" width="4.2" height="15.0" fill="rgb(211,150,37)" rx="2" ry="2" />
<text x="44.77" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,291 samples, 0.12%)</title><rect x="929.4" y="1269" width="1.5" height="15.0" fill="rgb(232,154,22)" rx="2" ry="2" />
<text x="932.44" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1829" width="0.2" height="15.0" fill="rgb(209,127,20)" rx="2" ry="2" />
<text x="1191.57" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (364 samples, 0.02%)</title><rect x="1125.8" y="1429" width="0.2" height="15.0" fill="rgb(235,21,1)" rx="2" ry="2" />
<text x="1128.80" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (166 samples, 0.01%)</title><rect x="879.9" y="1189" width="0.1" height="15.0" fill="rgb(238,104,21)" rx="2" ry="2" />
<text x="882.86" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (377 samples, 0.02%)</title><rect x="714.6" y="1493" width="0.3" height="15.0" fill="rgb(240,196,5)" rx="2" ry="2" />
<text x="717.64" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (173 samples, 0.01%)</title><rect x="911.2" y="1365" width="0.1" height="15.0" fill="rgb(244,219,31)" rx="2" ry="2" />
<text x="914.16" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1029" width="0.5" height="15.0" fill="rgb(215,140,45)" rx="2" ry="2" />
<text x="1192.48" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11501 (339 samples, 0.02%)</title><rect x="1014.3" y="1381" width="0.2" height="15.0" fill="rgb(216,167,2)" rx="2" ry="2" />
<text x="1017.29" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (203 samples, 0.01%)</title><rect x="909.3" y="1333" width="0.2" height="15.0" fill="rgb(246,204,19)" rx="2" ry="2" />
<text x="912.32" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (1,084 samples, 0.06%)</title><rect x="1127.2" y="1381" width="0.7" height="15.0" fill="rgb(217,187,48)" rx="2" ry="2" />
<text x="1130.23" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (3,551 samples, 0.19%)</title><rect x="1101.7" y="1445" width="2.2" height="15.0" fill="rgb(210,181,49)" rx="2" ry="2" />
<text x="1104.66" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (4,150 samples, 0.22%)</title><rect x="198.5" y="1861" width="2.7" height="15.0" fill="rgb(252,222,0)" rx="2" ry="2" />
<text x="201.52" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,241 samples, 0.07%)</title><rect x="1174.1" y="1333" width="0.8" height="15.0" fill="rgb(243,226,21)" rx="2" ry="2" />
<text x="1177.07" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (209 samples, 0.01%)</title><rect x="57.1" y="1813" width="0.2" height="15.0" fill="rgb(223,144,19)" rx="2" ry="2" />
<text x="60.14" y="1823.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,897 samples, 0.10%)</title><rect x="789.9" y="1205" width="1.2" height="15.0" fill="rgb(219,98,9)" rx="2" ry="2" />
<text x="792.90" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1189" width="0.3" height="15.0" fill="rgb(245,33,29)" rx="2" ry="2" />
<text x="1192.12" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (439 samples, 0.02%)</title><rect x="746.7" y="1237" width="0.3" height="15.0" fill="rgb(211,168,29)" rx="2" ry="2" />
<text x="749.68" y="1247.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (732 samples, 0.04%)</title><rect x="1047.4" y="1301" width="0.5" height="15.0" fill="rgb(225,151,51)" rx="2" ry="2" />
<text x="1050.43" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,054 samples, 0.16%)</title><rect x="241.7" y="1845" width="1.9" height="15.0" fill="rgb(233,36,2)" rx="2" ry="2" />
<text x="244.69" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (554 samples, 0.03%)</title><rect x="704.9" y="1157" width="0.4" height="15.0" fill="rgb(253,208,3)" rx="2" ry="2" />
<text x="707.93" y="1167.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (611 samples, 0.03%)</title><rect x="655.4" y="1813" width="0.4" height="15.0" fill="rgb(219,44,27)" rx="2" ry="2" />
<text x="658.37" y="1823.5" ></text>
</g>
<g >
<title>caml_alloc_shr (316 samples, 0.02%)</title><rect x="470.8" y="1893" width="0.2" height="15.0" fill="rgb(244,111,30)" rx="2" ry="2" />
<text x="473.77" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1093" width="0.2" height="15.0" fill="rgb(206,6,33)" rx="2" ry="2" />
<text x="1191.57" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (5,670 samples, 0.30%)</title><rect x="921.8" y="1365" width="3.6" height="15.0" fill="rgb(246,226,19)" rx="2" ry="2" />
<text x="924.84" y="1375.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (526 samples, 0.03%)</title><rect x="1185.6" y="1141" width="0.3" height="15.0" fill="rgb(250,32,50)" rx="2" ry="2" />
<text x="1188.61" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="517" width="0.3" height="15.0" fill="rgb(252,199,40)" rx="2" ry="2" />
<text x="1191.82" y="527.5" ></text>
</g>
<g >
<title>caml_string_length (248 samples, 0.01%)</title><rect x="900.8" y="1269" width="0.2" height="15.0" fill="rgb(230,66,1)" rx="2" ry="2" />
<text x="903.80" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (9,851 samples, 0.53%)</title><rect x="1105.4" y="1429" width="6.3" height="15.0" fill="rgb(220,226,19)" rx="2" ry="2" />
<text x="1108.43" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (192 samples, 0.01%)</title><rect x="849.2" y="1237" width="0.1" height="15.0" fill="rgb(224,78,15)" rx="2" ry="2" />
<text x="852.16" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,508 samples, 0.13%)</title><rect x="206.3" y="1829" width="1.6" height="15.0" fill="rgb(212,29,11)" rx="2" ry="2" />
<text x="209.33" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,075 samples, 0.11%)</title><rect x="795.9" y="1349" width="1.3" height="15.0" fill="rgb(221,210,31)" rx="2" ry="2" />
<text x="798.86" y="1359.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (2,366 samples, 0.13%)</title><rect x="550.7" y="1893" width="1.5" height="15.0" fill="rgb(221,47,14)" rx="2" ry="2" />
<text x="553.74" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_7268 (23,462 samples, 1.26%)</title><rect x="1135.6" y="1461" width="14.8" height="15.0" fill="rgb(253,161,50)" rx="2" ry="2" />
<text x="1138.56" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (593 samples, 0.03%)</title><rect x="417.8" y="1781" width="0.4" height="15.0" fill="rgb(240,51,25)" rx="2" ry="2" />
<text x="420.82" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (585 samples, 0.03%)</title><rect x="1101.7" y="1381" width="0.4" height="15.0" fill="rgb(211,198,43)" rx="2" ry="2" />
<text x="1104.72" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (233 samples, 0.01%)</title><rect x="1089.8" y="1413" width="0.1" height="15.0" fill="rgb(228,155,1)" rx="2" ry="2" />
<text x="1092.79" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (338 samples, 0.02%)</title><rect x="750.8" y="1237" width="0.2" height="15.0" fill="rgb(228,162,4)" rx="2" ry="2" />
<text x="753.75" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (253 samples, 0.01%)</title><rect x="907.9" y="1397" width="0.1" height="15.0" fill="rgb(227,48,38)" rx="2" ry="2" />
<text x="910.89" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__init_1018 (2,060 samples, 0.11%)</title><rect x="687.4" y="1701" width="1.3" height="15.0" fill="rgb(252,13,30)" rx="2" ry="2" />
<text x="690.37" y="1711.5" ></text>
</g>
<g >
<title>camlStdlib__string_of_int_1149 (183 samples, 0.01%)</title><rect x="688.8" y="1717" width="0.1" height="15.0" fill="rgb(211,50,27)" rx="2" ry="2" />
<text x="691.76" y="1727.5" ></text>
</g>
<g >
<title>caml_compact_heap (541 samples, 0.03%)</title><rect x="1123.9" y="1269" width="0.4" height="15.0" fill="rgb(213,148,31)" rx="2" ry="2" />
<text x="1126.95" y="1279.5" ></text>
</g>
<g >
<title>__condvar_acquire_lock (3,523 samples, 0.19%)</title><rect x="567.6" y="1877" width="2.2" height="15.0" fill="rgb(211,91,22)" rx="2" ry="2" />
<text x="570.56" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4603 (191 samples, 0.01%)</title><rect x="1147.4" y="1381" width="0.1" height="15.0" fill="rgb(221,140,44)" rx="2" ry="2" />
<text x="1150.38" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,916 samples, 0.10%)</title><rect x="924.2" y="1301" width="1.2" height="15.0" fill="rgb(245,186,43)" rx="2" ry="2" />
<text x="927.22" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (1,256 samples, 0.07%)</title><rect x="833.5" y="1301" width="0.8" height="15.0" fill="rgb(245,85,2)" rx="2" ry="2" />
<text x="836.48" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="853" width="0.5" height="15.0" fill="rgb(222,140,2)" rx="2" ry="2" />
<text x="1192.48" y="863.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (213 samples, 0.01%)</title><rect x="919.6" y="1365" width="0.1" height="15.0" fill="rgb(208,39,35)" rx="2" ry="2" />
<text x="922.57" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (397 samples, 0.02%)</title><rect x="1145.6" y="1397" width="0.2" height="15.0" fill="rgb(205,117,18)" rx="2" ry="2" />
<text x="1148.57" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (327 samples, 0.02%)</title><rect x="786.4" y="1205" width="0.3" height="15.0" fill="rgb(236,91,54)" rx="2" ry="2" />
<text x="789.45" y="1215.5" ></text>
</g>
<g >
<title>sweep_slice (504 samples, 0.03%)</title><rect x="171.0" y="1813" width="0.3" height="15.0" fill="rgb(209,41,31)" rx="2" ry="2" />
<text x="173.98" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (286 samples, 0.02%)</title><rect x="817.1" y="1413" width="0.1" height="15.0" fill="rgb(245,186,3)" rx="2" ry="2" />
<text x="820.05" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (160 samples, 0.01%)</title><rect x="733.1" y="1237" width="0.1" height="15.0" fill="rgb(216,209,35)" rx="2" ry="2" />
<text x="736.14" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_6309 (632 samples, 0.03%)</title><rect x="702.3" y="1413" width="0.4" height="15.0" fill="rgb(224,86,37)" rx="2" ry="2" />
<text x="705.27" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (13,154 samples, 0.71%)</title><rect x="1127.0" y="1461" width="8.4" height="15.0" fill="rgb(223,22,17)" rx="2" ry="2" />
<text x="1130.01" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,232 samples, 0.23%)</title><rect x="953.3" y="1237" width="2.7" height="15.0" fill="rgb(206,14,12)" rx="2" ry="2" />
<text x="956.32" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (200 samples, 0.01%)</title><rect x="939.2" y="1221" width="0.1" height="15.0" fill="rgb(211,3,45)" rx="2" ry="2" />
<text x="942.18" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1477" width="0.3" height="15.0" fill="rgb(254,29,2)" rx="2" ry="2" />
<text x="1191.82" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3827 (180 samples, 0.01%)</title><rect x="852.7" y="1301" width="0.1" height="15.0" fill="rgb(228,75,30)" rx="2" ry="2" />
<text x="855.67" y="1311.5" ></text>
</g>
<g >
<title>__condvar_fetch_xor_wseq_release (855 samples, 0.05%)</title><rect x="571.4" y="1861" width="0.5" height="15.0" fill="rgb(240,58,53)" rx="2" ry="2" />
<text x="574.38" y="1871.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (301 samples, 0.02%)</title><rect x="779.0" y="1173" width="0.2" height="15.0" fill="rgb(234,134,3)" rx="2" ry="2" />
<text x="782.01" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1893" width="0.3" height="15.0" fill="rgb(245,91,23)" rx="2" ry="2" />
<text x="1192.12" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (237 samples, 0.01%)</title><rect x="1186.1" y="1237" width="0.1" height="15.0" fill="rgb(241,200,0)" rx="2" ry="2" />
<text x="1189.08" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (5,551 samples, 0.30%)</title><rect x="1183.6" y="1317" width="3.5" height="15.0" fill="rgb(252,215,15)" rx="2" ry="2" />
<text x="1186.60" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1925" width="0.3" height="15.0" fill="rgb(230,210,16)" rx="2" ry="2" />
<text x="1192.12" y="1935.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (161 samples, 0.01%)</title><rect x="324.5" y="1829" width="0.1" height="15.0" fill="rgb(246,60,2)" rx="2" ry="2" />
<text x="327.46" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_1637 (183 samples, 0.01%)</title><rect x="960.5" y="1205" width="0.1" height="15.0" fill="rgb(211,122,50)" rx="2" ry="2" />
<text x="963.49" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,697 samples, 0.09%)</title><rect x="924.4" y="1253" width="1.0" height="15.0" fill="rgb(253,106,49)" rx="2" ry="2" />
<text x="927.36" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (717 samples, 0.04%)</title><rect x="417.8" y="1813" width="0.5" height="15.0" fill="rgb(235,199,3)" rx="2" ry="2" />
<text x="420.80" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1413" width="0.3" height="15.0" fill="rgb(225,5,54)" rx="2" ry="2" />
<text x="1191.32" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (362 samples, 0.02%)</title><rect x="1034.2" y="1301" width="0.2" height="15.0" fill="rgb(243,226,29)" rx="2" ry="2" />
<text x="1037.21" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_string (168 samples, 0.01%)</title><rect x="972.3" y="1285" width="0.1" height="15.0" fill="rgb(254,154,31)" rx="2" ry="2" />
<text x="975.31" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (314 samples, 0.02%)</title><rect x="831.4" y="1253" width="0.2" height="15.0" fill="rgb(224,8,20)" rx="2" ry="2" />
<text x="834.43" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (214 samples, 0.01%)</title><rect x="1165.0" y="1349" width="0.1" height="15.0" fill="rgb(225,114,49)" rx="2" ry="2" />
<text x="1168.01" y="1359.5" ></text>
</g>
<g >
<title>main (790,470 samples, 42.50%)</title><rect x="686.8" y="2021" width="501.5" height="15.0" fill="rgb(253,14,34)" rx="2" ry="2" />
<text x="689.78" y="2031.5" >main</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1397" width="0.5" height="15.0" fill="rgb(231,188,38)" rx="2" ry="2" />
<text x="1192.48" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (14,103 samples, 0.76%)</title><rect x="738.2" y="1333" width="9.0" height="15.0" fill="rgb(235,100,31)" rx="2" ry="2" />
<text x="741.21" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (537 samples, 0.03%)</title><rect x="1044.0" y="1301" width="0.3" height="15.0" fill="rgb(246,28,21)" rx="2" ry="2" />
<text x="1046.98" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (307 samples, 0.02%)</title><rect x="678.4" y="1893" width="0.2" height="15.0" fill="rgb(247,179,45)" rx="2" ry="2" />
<text x="681.41" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3086 (326 samples, 0.02%)</title><rect x="701.6" y="1461" width="0.2" height="15.0" fill="rgb(233,28,19)" rx="2" ry="2" />
<text x="704.63" y="1471.5" ></text>
</g>
<g >
<title>camlLwt__fun_4360 (179 samples, 0.01%)</title><rect x="1016.4" y="1509" width="0.1" height="15.0" fill="rgb(205,26,27)" rx="2" ry="2" />
<text x="1019.41" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (231 samples, 0.01%)</title><rect x="844.0" y="1189" width="0.2" height="15.0" fill="rgb(228,229,44)" rx="2" ry="2" />
<text x="847.05" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (2,663 samples, 0.14%)</title><rect x="432.3" y="1845" width="1.7" height="15.0" fill="rgb(217,78,10)" rx="2" ry="2" />
<text x="435.29" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1573" width="0.3" height="15.0" fill="rgb(238,218,6)" rx="2" ry="2" />
<text x="1191.32" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (246 samples, 0.01%)</title><rect x="1189.8" y="101" width="0.2" height="15.0" fill="rgb(227,95,35)" rx="2" ry="2" />
<text x="1192.80" y="111.5" ></text>
</g>
<g >
<title>mark_slice_darken (3,158 samples, 0.17%)</title><rect x="229.3" y="1813" width="2.0" height="15.0" fill="rgb(228,163,47)" rx="2" ry="2" />
<text x="232.33" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1301" width="0.3" height="15.0" fill="rgb(246,124,7)" rx="2" ry="2" />
<text x="1191.82" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (5,363 samples, 0.29%)</title><rect x="823.8" y="1349" width="3.4" height="15.0" fill="rgb(234,202,28)" rx="2" ry="2" />
<text x="826.77" y="1359.5" ></text>
</g>
<g >
<title>sweep_slice (180 samples, 0.01%)</title><rect x="671.9" y="1781" width="0.2" height="15.0" fill="rgb(226,81,26)" rx="2" ry="2" />
<text x="674.94" y="1791.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (179 samples, 0.01%)</title><rect x="1187.8" y="1397" width="0.1" height="15.0" fill="rgb(254,206,19)" rx="2" ry="2" />
<text x="1190.78" y="1407.5" ></text>
</g>
<g >
<title>caml_blit_bytes (379 samples, 0.02%)</title><rect x="665.5" y="1877" width="0.2" height="15.0" fill="rgb(245,63,18)" rx="2" ry="2" />
<text x="668.50" y="1887.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (189 samples, 0.01%)</title><rect x="48.8" y="1941" width="0.1" height="15.0" fill="rgb(246,171,24)" rx="2" ry="2" />
<text x="51.76" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="917" width="0.2" height="15.0" fill="rgb(246,48,22)" rx="2" ry="2" />
<text x="1191.57" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (544 samples, 0.03%)</title><rect x="913.5" y="1285" width="0.4" height="15.0" fill="rgb(218,201,8)" rx="2" ry="2" />
<text x="916.52" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (227 samples, 0.01%)</title><rect x="1179.3" y="1189" width="0.1" height="15.0" fill="rgb(210,61,26)" rx="2" ry="2" />
<text x="1182.27" y="1199.5" ></text>
</g>
<g >
<title>caml_blit_bytes (4,170 samples, 0.22%)</title><rect x="471.0" y="1909" width="2.6" height="15.0" fill="rgb(217,7,21)" rx="2" ry="2" />
<text x="473.97" y="1919.5" ></text>
</g>
<g >
<title>mark_slice_darken (3,645 samples, 0.20%)</title><rect x="402.7" y="1829" width="2.3" height="15.0" fill="rgb(237,223,43)" rx="2" ry="2" />
<text x="405.68" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (44,254 samples, 2.38%)</title><rect x="974.6" y="1253" width="28.1" height="15.0" fill="rgb(228,192,13)" rx="2" ry="2" />
<text x="977.64" y="1263.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (517 samples, 0.03%)</title><rect x="1057.7" y="1349" width="0.4" height="15.0" fill="rgb(216,26,40)" rx="2" ry="2" />
<text x="1060.74" y="1359.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (176 samples, 0.01%)</title><rect x="1105.3" y="1381" width="0.1" height="15.0" fill="rgb(254,41,33)" rx="2" ry="2" />
<text x="1108.26" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (484 samples, 0.03%)</title><rect x="838.9" y="1173" width="0.3" height="15.0" fill="rgb(252,150,49)" rx="2" ry="2" />
<text x="841.93" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (1,061 samples, 0.06%)</title><rect x="1081.4" y="1397" width="0.7" height="15.0" fill="rgb(249,224,28)" rx="2" ry="2" />
<text x="1084.44" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (849 samples, 0.05%)</title><rect x="841.6" y="1221" width="0.5" height="15.0" fill="rgb(205,168,21)" rx="2" ry="2" />
<text x="844.58" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (257 samples, 0.01%)</title><rect x="792.7" y="1269" width="0.2" height="15.0" fill="rgb(234,26,18)" rx="2" ry="2" />
<text x="795.75" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (10,522 samples, 0.57%)</title><rect x="107.6" y="1909" width="6.7" height="15.0" fill="rgb(239,105,10)" rx="2" ry="2" />
<text x="110.58" y="1919.5" ></text>
</g>
<g >
<title>caml_startup (790,470 samples, 42.50%)</title><rect x="686.8" y="2005" width="501.5" height="15.0" fill="rgb(252,125,40)" rx="2" ry="2" />
<text x="689.78" y="2015.5" >caml_startup</text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (258 samples, 0.01%)</title><rect x="844.0" y="1205" width="0.2" height="15.0" fill="rgb(229,195,2)" rx="2" ry="2" />
<text x="847.03" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,682 samples, 0.14%)</title><rect x="243.9" y="1829" width="1.7" height="15.0" fill="rgb(214,105,36)" rx="2" ry="2" />
<text x="246.94" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1509" width="0.2" height="15.0" fill="rgb(230,114,45)" rx="2" ry="2" />
<text x="1191.57" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="533" width="0.2" height="15.0" fill="rgb(244,10,52)" rx="2" ry="2" />
<text x="1191.57" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (477 samples, 0.03%)</title><rect x="899.3" y="1333" width="0.3" height="15.0" fill="rgb(211,90,7)" rx="2" ry="2" />
<text x="902.26" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (592 samples, 0.03%)</title><rect x="689.3" y="1669" width="0.4" height="15.0" fill="rgb(212,166,10)" rx="2" ry="2" />
<text x="692.29" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1669" width="0.3" height="15.0" fill="rgb(240,86,31)" rx="2" ry="2" />
<text x="1191.82" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4613 (169 samples, 0.01%)</title><rect x="858.1" y="1317" width="0.1" height="15.0" fill="rgb(237,178,8)" rx="2" ry="2" />
<text x="861.12" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,547 samples, 0.08%)</title><rect x="722.9" y="1333" width="1.0" height="15.0" fill="rgb(220,81,6)" rx="2" ry="2" />
<text x="725.92" y="1343.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (161 samples, 0.01%)</title><rect x="324.5" y="1845" width="0.1" height="15.0" fill="rgb(226,211,11)" rx="2" ry="2" />
<text x="327.46" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (169 samples, 0.01%)</title><rect x="1163.4" y="1541" width="0.1" height="15.0" fill="rgb(214,184,5)" rx="2" ry="2" />
<text x="1166.43" y="1551.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (252 samples, 0.01%)</title><rect x="787.6" y="1189" width="0.2" height="15.0" fill="rgb(206,177,44)" rx="2" ry="2" />
<text x="790.63" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (229 samples, 0.01%)</title><rect x="1144.5" y="1349" width="0.1" height="15.0" fill="rgb(241,58,42)" rx="2" ry="2" />
<text x="1147.47" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (404 samples, 0.02%)</title><rect x="1139.8" y="1317" width="0.2" height="15.0" fill="rgb(248,19,39)" rx="2" ry="2" />
<text x="1142.78" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (336 samples, 0.02%)</title><rect x="712.7" y="1397" width="0.2" height="15.0" fill="rgb(209,136,5)" rx="2" ry="2" />
<text x="715.65" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,371 samples, 0.07%)</title><rect x="790.2" y="1125" width="0.9" height="15.0" fill="rgb(227,168,29)" rx="2" ry="2" />
<text x="793.20" y="1135.5" ></text>
</g>
<g >
<title>caml_string_length (285 samples, 0.02%)</title><rect x="800.7" y="1381" width="0.2" height="15.0" fill="rgb(216,56,23)" rx="2" ry="2" />
<text x="803.74" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (203 samples, 0.01%)</title><rect x="672.6" y="1845" width="0.1" height="15.0" fill="rgb(224,148,5)" rx="2" ry="2" />
<text x="675.62" y="1855.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (539 samples, 0.03%)</title><rect x="689.0" y="1669" width="0.3" height="15.0" fill="rgb(239,181,33)" rx="2" ry="2" />
<text x="691.95" y="1679.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,559 samples, 0.08%)</title><rect x="215.5" y="1861" width="1.0" height="15.0" fill="rgb(227,179,38)" rx="2" ry="2" />
<text x="218.48" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (688 samples, 0.04%)</title><rect x="858.7" y="1253" width="0.4" height="15.0" fill="rgb(253,139,35)" rx="2" ry="2" />
<text x="861.66" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (266 samples, 0.01%)</title><rect x="1124.3" y="1221" width="0.2" height="15.0" fill="rgb(243,82,48)" rx="2" ry="2" />
<text x="1127.31" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (199 samples, 0.01%)</title><rect x="708.0" y="1381" width="0.1" height="15.0" fill="rgb(242,208,49)" rx="2" ry="2" />
<text x="710.96" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (197 samples, 0.01%)</title><rect x="850.5" y="1269" width="0.1" height="15.0" fill="rgb(238,69,50)" rx="2" ry="2" />
<text x="853.52" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,885 samples, 0.10%)</title><rect x="467.7" y="1909" width="1.2" height="15.0" fill="rgb(221,25,14)" rx="2" ry="2" />
<text x="470.71" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (560 samples, 0.03%)</title><rect x="801.3" y="1397" width="0.4" height="15.0" fill="rgb(229,196,6)" rx="2" ry="2" />
<text x="804.33" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (245 samples, 0.01%)</title><rect x="816.9" y="1397" width="0.2" height="15.0" fill="rgb(232,204,29)" rx="2" ry="2" />
<text x="819.90" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (16,495 samples, 0.89%)</title><rect x="1101.5" y="1493" width="10.5" height="15.0" fill="rgb(245,41,5)" rx="2" ry="2" />
<text x="1104.49" y="1503.5" ></text>
</g>
<g >
<title>caml_tuplify2 (164 samples, 0.01%)</title><rect x="849.7" y="1237" width="0.1" height="15.0" fill="rgb(239,164,38)" rx="2" ry="2" />
<text x="852.71" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (432 samples, 0.02%)</title><rect x="705.0" y="1109" width="0.3" height="15.0" fill="rgb(247,100,47)" rx="2" ry="2" />
<text x="708.00" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,270 samples, 0.12%)</title><rect x="861.5" y="1253" width="1.4" height="15.0" fill="rgb(209,0,20)" rx="2" ry="2" />
<text x="864.45" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (507 samples, 0.03%)</title><rect x="434.0" y="1845" width="0.3" height="15.0" fill="rgb(242,173,6)" rx="2" ry="2" />
<text x="436.98" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (428 samples, 0.02%)</title><rect x="689.4" y="1157" width="0.2" height="15.0" fill="rgb(230,188,17)" rx="2" ry="2" />
<text x="692.36" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (165 samples, 0.01%)</title><rect x="1173.7" y="1317" width="0.1" height="15.0" fill="rgb(211,203,35)" rx="2" ry="2" />
<text x="1176.71" y="1327.5" ></text>
</g>
<g >
<title>caml_string_compare (286 samples, 0.02%)</title><rect x="900.8" y="1285" width="0.2" height="15.0" fill="rgb(213,198,4)" rx="2" ry="2" />
<text x="903.77" y="1295.5" ></text>
</g>
<g >
<title>memmove (282 samples, 0.02%)</title><rect x="1032.5" y="1269" width="0.2" height="15.0" fill="rgb(235,31,0)" rx="2" ry="2" />
<text x="1035.47" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (4,699 samples, 0.25%)</title><rect x="168.3" y="1861" width="3.0" height="15.0" fill="rgb(231,131,49)" rx="2" ry="2" />
<text x="171.32" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11343 (16,373 samples, 0.88%)</title><rect x="1101.5" y="1477" width="10.4" height="15.0" fill="rgb(213,169,11)" rx="2" ry="2" />
<text x="1104.53" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (600 samples, 0.03%)</title><rect x="863.2" y="1253" width="0.4" height="15.0" fill="rgb(253,124,18)" rx="2" ry="2" />
<text x="866.22" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (39,465 samples, 2.12%)</title><rect x="863.7" y="1269" width="25.1" height="15.0" fill="rgb(249,117,21)" rx="2" ry="2" />
<text x="866.73" y="1279.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (2,108 samples, 0.11%)</title><rect x="342.2" y="1829" width="1.4" height="15.0" fill="rgb(251,191,30)" rx="2" ry="2" />
<text x="345.23" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,224 samples, 0.07%)</title><rect x="924.7" y="1141" width="0.7" height="15.0" fill="rgb(222,195,31)" rx="2" ry="2" />
<text x="927.66" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (233 samples, 0.01%)</title><rect x="698.1" y="1317" width="0.2" height="15.0" fill="rgb(241,209,2)" rx="2" ry="2" />
<text x="701.11" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,787 samples, 0.10%)</title><rect x="1184.8" y="1221" width="1.2" height="15.0" fill="rgb(205,96,20)" rx="2" ry="2" />
<text x="1187.83" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (830 samples, 0.04%)</title><rect x="1042.0" y="1285" width="0.5" height="15.0" fill="rgb(215,123,20)" rx="2" ry="2" />
<text x="1044.95" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1869 (192 samples, 0.01%)</title><rect x="806.9" y="1461" width="0.2" height="15.0" fill="rgb(219,122,51)" rx="2" ry="2" />
<text x="809.95" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3718 (194 samples, 0.01%)</title><rect x="869.5" y="1173" width="0.1" height="15.0" fill="rgb(246,74,47)" rx="2" ry="2" />
<text x="872.48" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (230 samples, 0.01%)</title><rect x="756.1" y="1301" width="0.1" height="15.0" fill="rgb(231,157,40)" rx="2" ry="2" />
<text x="759.06" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (14,771 samples, 0.79%)</title><rect x="725.4" y="1413" width="9.4" height="15.0" fill="rgb(231,227,50)" rx="2" ry="2" />
<text x="728.41" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="693" width="0.3" height="15.0" fill="rgb(217,213,52)" rx="2" ry="2" />
<text x="1191.82" y="703.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1765" width="0.3" height="15.0" fill="rgb(245,165,40)" rx="2" ry="2" />
<text x="1191.82" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (631 samples, 0.03%)</title><rect x="843.6" y="1221" width="0.4" height="15.0" fill="rgb(205,60,33)" rx="2" ry="2" />
<text x="846.62" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (3,874 samples, 0.21%)</title><rect x="874.0" y="1205" width="2.4" height="15.0" fill="rgb(211,45,2)" rx="2" ry="2" />
<text x="876.98" y="1215.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (100,168 samples, 5.39%)</title><rect x="592.2" y="1861" width="63.6" height="15.0" fill="rgb(254,103,14)" rx="2" ry="2" />
<text x="595.21" y="1871.5" >__pthr..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1925" width="0.3" height="15.0" fill="rgb(210,42,47)" rx="2" ry="2" />
<text x="1191.82" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_1738 (216 samples, 0.01%)</title><rect x="964.1" y="1269" width="0.1" height="15.0" fill="rgb(237,133,49)" rx="2" ry="2" />
<text x="967.11" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (8,815 samples, 0.47%)</title><rect x="980.0" y="1173" width="5.6" height="15.0" fill="rgb(221,183,43)" rx="2" ry="2" />
<text x="983.03" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (917 samples, 0.05%)</title><rect x="1167.9" y="1269" width="0.6" height="15.0" fill="rgb(233,203,37)" rx="2" ry="2" />
<text x="1170.90" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (489 samples, 0.03%)</title><rect x="984.9" y="1141" width="0.3" height="15.0" fill="rgb(210,106,8)" rx="2" ry="2" />
<text x="987.86" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1269" width="0.5" height="15.0" fill="rgb(246,146,9)" rx="2" ry="2" />
<text x="1192.48" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__iter_2066 (16,951 samples, 0.91%)</title><rect x="665.9" y="1925" width="10.7" height="15.0" fill="rgb(247,185,50)" rx="2" ry="2" />
<text x="668.85" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1557" width="0.3" height="15.0" fill="rgb(219,201,33)" rx="2" ry="2" />
<text x="1191.32" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (404 samples, 0.02%)</title><rect x="46.3" y="1909" width="0.2" height="15.0" fill="rgb(244,53,26)" rx="2" ry="2" />
<text x="49.29" y="1919.5" ></text>
</g>
<g >
<title>expand_heap (179 samples, 0.01%)</title><rect x="470.9" y="1861" width="0.1" height="15.0" fill="rgb(249,46,24)" rx="2" ry="2" />
<text x="473.85" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3755 (3,619 samples, 0.19%)</title><rect x="256.0" y="1893" width="2.3" height="15.0" fill="rgb(246,48,42)" rx="2" ry="2" />
<text x="259.03" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (453 samples, 0.02%)</title><rect x="843.3" y="1205" width="0.2" height="15.0" fill="rgb(205,51,27)" rx="2" ry="2" />
<text x="846.25" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (308 samples, 0.02%)</title><rect x="916.0" y="1301" width="0.2" height="15.0" fill="rgb(254,156,2)" rx="2" ry="2" />
<text x="919.02" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (610 samples, 0.03%)</title><rect x="708.5" y="1493" width="0.4" height="15.0" fill="rgb(205,77,46)" rx="2" ry="2" />
<text x="711.55" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (309 samples, 0.02%)</title><rect x="714.3" y="1477" width="0.2" height="15.0" fill="rgb(239,165,6)" rx="2" ry="2" />
<text x="717.34" y="1487.5" ></text>
</g>
<g >
<title>caml_tuplify2 (206 samples, 0.01%)</title><rect x="1034.5" y="1317" width="0.1" height="15.0" fill="rgb(219,66,30)" rx="2" ry="2" />
<text x="1037.51" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (958 samples, 0.05%)</title><rect x="875.1" y="1157" width="0.6" height="15.0" fill="rgb(242,204,1)" rx="2" ry="2" />
<text x="878.13" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="293" width="0.3" height="15.0" fill="rgb(219,12,43)" rx="2" ry="2" />
<text x="1192.12" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,779 samples, 0.10%)</title><rect x="997.7" y="1141" width="1.1" height="15.0" fill="rgb(238,229,43)" rx="2" ry="2" />
<text x="1000.67" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,051 samples, 0.06%)</title><rect x="728.7" y="1045" width="0.7" height="15.0" fill="rgb(250,95,35)" rx="2" ry="2" />
<text x="731.74" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (511 samples, 0.03%)</title><rect x="843.2" y="1221" width="0.4" height="15.0" fill="rgb(223,229,18)" rx="2" ry="2" />
<text x="846.23" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1841 (1,921 samples, 0.10%)</title><rect x="1143.1" y="1365" width="1.2" height="15.0" fill="rgb(217,111,7)" rx="2" ry="2" />
<text x="1146.05" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (288 samples, 0.02%)</title><rect x="1154.5" y="1301" width="0.2" height="15.0" fill="rgb(207,145,21)" rx="2" ry="2" />
<text x="1157.53" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (10,002 samples, 0.54%)</title><rect x="1056.6" y="1365" width="6.3" height="15.0" fill="rgb(247,224,22)" rx="2" ry="2" />
<text x="1059.59" y="1375.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (344 samples, 0.02%)</title><rect x="1124.3" y="1253" width="0.2" height="15.0" fill="rgb(207,226,30)" rx="2" ry="2" />
<text x="1127.29" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (834 samples, 0.04%)</title><rect x="744.1" y="1237" width="0.5" height="15.0" fill="rgb(214,213,50)" rx="2" ry="2" />
<text x="747.09" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (11,681 samples, 0.63%)</title><rect x="460.3" y="1925" width="7.4" height="15.0" fill="rgb(230,31,0)" rx="2" ry="2" />
<text x="463.30" y="1935.5" ></text>
</g>
<g >
<title>caml_call_gc (1,183 samples, 0.06%)</title><rect x="671.3" y="1829" width="0.8" height="15.0" fill="rgb(217,132,21)" rx="2" ry="2" />
<text x="674.31" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (613 samples, 0.03%)</title><rect x="799.8" y="1429" width="0.4" height="15.0" fill="rgb(233,105,34)" rx="2" ry="2" />
<text x="802.76" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (12,290 samples, 0.66%)</title><rect x="717.3" y="1445" width="7.8" height="15.0" fill="rgb(228,64,42)" rx="2" ry="2" />
<text x="720.30" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1141" width="0.2" height="15.0" fill="rgb(223,224,34)" rx="2" ry="2" />
<text x="1191.57" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15701 (200 samples, 0.01%)</title><rect x="1112.0" y="1493" width="0.2" height="15.0" fill="rgb(239,191,34)" rx="2" ry="2" />
<text x="1115.05" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1317" width="0.3" height="15.0" fill="rgb(207,204,50)" rx="2" ry="2" />
<text x="1191.82" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (9,213 samples, 0.50%)</title><rect x="800.2" y="1445" width="5.9" height="15.0" fill="rgb(248,94,9)" rx="2" ry="2" />
<text x="803.21" y="1455.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (379 samples, 0.02%)</title><rect x="968.8" y="1285" width="0.2" height="15.0" fill="rgb(238,46,4)" rx="2" ry="2" />
<text x="971.77" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,039 samples, 0.06%)</title><rect x="924.8" y="1093" width="0.6" height="15.0" fill="rgb(244,24,18)" rx="2" ry="2" />
<text x="927.77" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (300 samples, 0.02%)</title><rect x="853.9" y="1285" width="0.2" height="15.0" fill="rgb(206,58,37)" rx="2" ry="2" />
<text x="856.94" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (382 samples, 0.02%)</title><rect x="928.8" y="1333" width="0.2" height="15.0" fill="rgb(217,125,43)" rx="2" ry="2" />
<text x="931.76" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (453 samples, 0.02%)</title><rect x="788.5" y="1237" width="0.3" height="15.0" fill="rgb(209,153,43)" rx="2" ry="2" />
<text x="791.48" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__add_1393 (181 samples, 0.01%)</title><rect x="966.6" y="1301" width="0.1" height="15.0" fill="rgb(225,168,34)" rx="2" ry="2" />
<text x="969.61" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,140 samples, 0.06%)</title><rect x="744.8" y="1221" width="0.8" height="15.0" fill="rgb(254,129,29)" rx="2" ry="2" />
<text x="747.84" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2665 (244 samples, 0.01%)</title><rect x="667.4" y="1861" width="0.1" height="15.0" fill="rgb(231,214,23)" rx="2" ry="2" />
<text x="670.38" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1957" width="0.5" height="15.0" fill="rgb(231,110,0)" rx="2" ry="2" />
<text x="1192.48" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="853" width="0.2" height="15.0" fill="rgb(230,12,35)" rx="2" ry="2" />
<text x="1191.57" y="863.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (229 samples, 0.01%)</title><rect x="749.5" y="1237" width="0.2" height="15.0" fill="rgb(234,79,50)" rx="2" ry="2" />
<text x="752.54" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (749 samples, 0.04%)</title><rect x="1032.2" y="1301" width="0.5" height="15.0" fill="rgb(232,121,18)" rx="2" ry="2" />
<text x="1035.18" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (246 samples, 0.01%)</title><rect x="348.0" y="1829" width="0.1" height="15.0" fill="rgb(233,55,16)" rx="2" ry="2" />
<text x="350.98" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__length_aux_1002 (178 samples, 0.01%)</title><rect x="1013.9" y="1413" width="0.1" height="15.0" fill="rgb(219,92,14)" rx="2" ry="2" />
<text x="1016.86" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (269 samples, 0.01%)</title><rect x="719.8" y="1285" width="0.2" height="15.0" fill="rgb(206,200,5)" rx="2" ry="2" />
<text x="722.78" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2693 (214 samples, 0.01%)</title><rect x="439.4" y="1877" width="0.2" height="15.0" fill="rgb(231,177,21)" rx="2" ry="2" />
<text x="442.44" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (238 samples, 0.01%)</title><rect x="1187.2" y="1333" width="0.1" height="15.0" fill="rgb(209,134,7)" rx="2" ry="2" />
<text x="1190.19" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (177 samples, 0.01%)</title><rect x="686.3" y="1957" width="0.1" height="15.0" fill="rgb(212,49,30)" rx="2" ry="2" />
<text x="689.25" y="1967.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (1,162 samples, 0.06%)</title><rect x="692.8" y="1413" width="0.7" height="15.0" fill="rgb(206,115,18)" rx="2" ry="2" />
<text x="695.80" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (367 samples, 0.02%)</title><rect x="769.3" y="1173" width="0.2" height="15.0" fill="rgb(232,8,53)" rx="2" ry="2" />
<text x="772.25" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11479 (605,475 samples, 32.55%)</title><rect x="717.0" y="1541" width="384.1" height="15.0" fill="rgb(226,209,31)" rx="2" ry="2" />
<text x="719.96" y="1551.5" >camlIrmin_layers__Layered__fun_11479</text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (233 samples, 0.01%)</title><rect x="877.5" y="1237" width="0.1" height="15.0" fill="rgb(215,126,23)" rx="2" ry="2" />
<text x="880.47" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (181 samples, 0.01%)</title><rect x="1080.0" y="1397" width="0.1" height="15.0" fill="rgb(208,114,24)" rx="2" ry="2" />
<text x="1082.99" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1333" width="0.2" height="15.0" fill="rgb(205,97,19)" rx="2" ry="2" />
<text x="1191.57" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11479 (128,283 samples, 6.90%)</title><rect x="933.5" y="1461" width="81.4" height="15.0" fill="rgb(213,102,11)" rx="2" ry="2" />
<text x="936.55" y="1471.5" >camlIrmin..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (547 samples, 0.03%)</title><rect x="830.8" y="1237" width="0.3" height="15.0" fill="rgb(223,101,17)" rx="2" ry="2" />
<text x="833.79" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (224 samples, 0.01%)</title><rect x="216.3" y="1845" width="0.2" height="15.0" fill="rgb(225,181,3)" rx="2" ry="2" />
<text x="219.33" y="1855.5" ></text>
</g>
<g >
<title>caml_blit_bytes (182 samples, 0.01%)</title><rect x="1054.4" y="1301" width="0.1" height="15.0" fill="rgb(210,69,19)" rx="2" ry="2" />
<text x="1057.35" y="1311.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,278 samples, 0.07%)</title><rect x="838.9" y="1221" width="0.8" height="15.0" fill="rgb(226,49,51)" rx="2" ry="2" />
<text x="841.85" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (1,099 samples, 0.06%)</title><rect x="908.4" y="1349" width="0.7" height="15.0" fill="rgb(228,180,13)" rx="2" ry="2" />
<text x="911.43" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (174 samples, 0.01%)</title><rect x="1123.1" y="1301" width="0.1" height="15.0" fill="rgb(210,33,12)" rx="2" ry="2" />
<text x="1126.10" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (194 samples, 0.01%)</title><rect x="1152.9" y="1349" width="0.1" height="15.0" fill="rgb(254,192,41)" rx="2" ry="2" />
<text x="1155.88" y="1359.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_15541 (1,652 samples, 0.09%)</title><rect x="1163.7" y="1573" width="1.1" height="15.0" fill="rgb(230,41,51)" rx="2" ry="2" />
<text x="1166.73" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (2,753 samples, 0.15%)</title><rect x="828.0" y="1317" width="1.8" height="15.0" fill="rgb(228,10,53)" rx="2" ry="2" />
<text x="831.00" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,221 samples, 0.07%)</title><rect x="693.9" y="1365" width="0.8" height="15.0" fill="rgb(230,143,37)" rx="2" ry="2" />
<text x="696.94" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (172 samples, 0.01%)</title><rect x="1173.8" y="1301" width="0.1" height="15.0" fill="rgb(242,95,8)" rx="2" ry="2" />
<text x="1176.83" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (294 samples, 0.02%)</title><rect x="1098.0" y="1477" width="0.2" height="15.0" fill="rgb(237,201,34)" rx="2" ry="2" />
<text x="1101.00" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__really_read_1428 (383 samples, 0.02%)</title><rect x="824.3" y="1221" width="0.3" height="15.0" fill="rgb(233,189,30)" rx="2" ry="2" />
<text x="827.33" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (5,155 samples, 0.28%)</title><rect x="402.0" y="1861" width="3.3" height="15.0" fill="rgb(216,137,50)" rx="2" ry="2" />
<text x="405.05" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_7268 (23,868 samples, 1.28%)</title><rect x="690.2" y="1525" width="15.1" height="15.0" fill="rgb(217,178,54)" rx="2" ry="2" />
<text x="693.20" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (166 samples, 0.01%)</title><rect x="992.6" y="1157" width="0.1" height="15.0" fill="rgb(240,158,2)" rx="2" ry="2" />
<text x="995.64" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (258 samples, 0.01%)</title><rect x="1016.1" y="1477" width="0.2" height="15.0" fill="rgb(239,206,47)" rx="2" ry="2" />
<text x="1019.14" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (819 samples, 0.04%)</title><rect x="1182.0" y="1237" width="0.5" height="15.0" fill="rgb(229,225,33)" rx="2" ry="2" />
<text x="1184.98" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="741" width="0.5" height="15.0" fill="rgb(247,58,15)" rx="2" ry="2" />
<text x="1192.48" y="751.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_2850 (334 samples, 0.02%)</title><rect x="890.4" y="1285" width="0.2" height="15.0" fill="rgb(228,18,2)" rx="2" ry="2" />
<text x="893.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (232 samples, 0.01%)</title><rect x="733.6" y="1253" width="0.1" height="15.0" fill="rgb(232,92,45)" rx="2" ry="2" />
<text x="736.60" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (502 samples, 0.03%)</title><rect x="776.6" y="1189" width="0.4" height="15.0" fill="rgb(220,136,52)" rx="2" ry="2" />
<text x="779.64" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1152 (7,557 samples, 0.41%)</title><rect x="437.9" y="1925" width="4.8" height="15.0" fill="rgb(215,86,30)" rx="2" ry="2" />
<text x="440.92" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (878 samples, 0.05%)</title><rect x="1181.9" y="1253" width="0.6" height="15.0" fill="rgb(251,227,40)" rx="2" ry="2" />
<text x="1184.94" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1445" width="0.2" height="15.0" fill="rgb(230,63,38)" rx="2" ry="2" />
<text x="1191.57" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="741" width="0.2" height="15.0" fill="rgb(240,42,29)" rx="2" ry="2" />
<text x="1191.57" y="751.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="837" width="0.3" height="15.0" fill="rgb(207,176,21)" rx="2" ry="2" />
<text x="1191.82" y="847.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (492 samples, 0.03%)</title><rect x="979.1" y="1141" width="0.3" height="15.0" fill="rgb(231,182,41)" rx="2" ry="2" />
<text x="982.10" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_31755 (41,441 samples, 2.23%)</title><rect x="689.7" y="1717" width="26.3" height="15.0" fill="rgb(205,122,4)" rx="2" ry="2" />
<text x="692.67" y="1727.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (509 samples, 0.03%)</title><rect x="869.6" y="1173" width="0.3" height="15.0" fill="rgb(231,39,34)" rx="2" ry="2" />
<text x="872.61" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (2,394 samples, 0.13%)</title><rect x="840.0" y="1253" width="1.5" height="15.0" fill="rgb(241,78,37)" rx="2" ry="2" />
<text x="842.96" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (263 samples, 0.01%)</title><rect x="689.5" y="501" width="0.1" height="15.0" fill="rgb(238,50,46)" rx="2" ry="2" />
<text x="692.45" y="511.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (225 samples, 0.01%)</title><rect x="677.9" y="1845" width="0.1" height="15.0" fill="rgb(233,152,29)" rx="2" ry="2" />
<text x="680.85" y="1855.5" ></text>
</g>
<g >
<title>mark_slice (271 samples, 0.01%)</title><rect x="674.0" y="1797" width="0.1" height="15.0" fill="rgb(234,74,19)" rx="2" ry="2" />
<text x="676.97" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185 samples, 0.01%)</title><rect x="698.1" y="1285" width="0.2" height="15.0" fill="rgb(226,93,15)" rx="2" ry="2" />
<text x="701.14" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,086 samples, 0.11%)</title><rect x="891.4" y="1333" width="1.3" height="15.0" fill="rgb(249,168,34)" rx="2" ry="2" />
<text x="894.41" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="581" width="0.3" height="15.0" fill="rgb(244,189,45)" rx="2" ry="2" />
<text x="1191.82" y="591.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1973" width="0.5" height="15.0" fill="rgb(233,135,38)" rx="2" ry="2" />
<text x="1192.48" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (196 samples, 0.01%)</title><rect x="751.6" y="1253" width="0.1" height="15.0" fill="rgb(247,182,52)" rx="2" ry="2" />
<text x="754.59" y="1263.5" ></text>
</g>
<g >
<title>__lseek64 (215 samples, 0.01%)</title><rect x="954.5" y="1141" width="0.1" height="15.0" fill="rgb(243,122,31)" rx="2" ry="2" />
<text x="957.50" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (584 samples, 0.03%)</title><rect x="843.6" y="1205" width="0.4" height="15.0" fill="rgb(233,13,13)" rx="2" ry="2" />
<text x="846.64" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (38,858 samples, 2.09%)</title><rect x="1163.6" y="1717" width="24.6" height="15.0" fill="rgb(219,5,18)" rx="2" ry="2" />
<text x="1166.59" y="1727.5" >c..</text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (212 samples, 0.01%)</title><rect x="1188.6" y="117" width="0.1" height="15.0" fill="rgb(244,22,34)" rx="2" ry="2" />
<text x="1191.59" y="127.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (1,502 samples, 0.08%)</title><rect x="1165.6" y="1317" width="0.9" height="15.0" fill="rgb(225,106,47)" rx="2" ry="2" />
<text x="1168.59" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (311 samples, 0.02%)</title><rect x="752.6" y="1205" width="0.2" height="15.0" fill="rgb(210,223,38)" rx="2" ry="2" />
<text x="755.63" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (224 samples, 0.01%)</title><rect x="215.0" y="1797" width="0.2" height="15.0" fill="rgb(243,106,31)" rx="2" ry="2" />
<text x="218.04" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="773" width="0.3" height="15.0" fill="rgb(251,176,19)" rx="2" ry="2" />
<text x="1192.12" y="783.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (48,361 samples, 2.60%)</title><rect x="972.7" y="1285" width="30.7" height="15.0" fill="rgb(234,170,32)" rx="2" ry="2" />
<text x="975.74" y="1295.5" >ca..</text>
</g>
<g >
<title>sweep_slice (288 samples, 0.02%)</title><rect x="160.8" y="1813" width="0.2" height="15.0" fill="rgb(251,207,46)" rx="2" ry="2" />
<text x="163.84" y="1823.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (257 samples, 0.01%)</title><rect x="56.5" y="1925" width="0.1" height="15.0" fill="rgb(212,187,11)" rx="2" ry="2" />
<text x="59.46" y="1935.5" ></text>
</g>
<g >
<title>caml_apply3 (198 samples, 0.01%)</title><rect x="888.5" y="1253" width="0.2" height="15.0" fill="rgb(247,151,47)" rx="2" ry="2" />
<text x="891.53" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (189 samples, 0.01%)</title><rect x="1000.8" y="1205" width="0.1" height="15.0" fill="rgb(237,122,33)" rx="2" ry="2" />
<text x="1003.77" y="1215.5" ></text>
</g>
<g >
<title>caml_compact_heap (1,333 samples, 0.07%)</title><rect x="523.3" y="1893" width="0.8" height="15.0" fill="rgb(213,189,44)" rx="2" ry="2" />
<text x="526.27" y="1903.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,244 samples, 0.07%)</title><rect x="741.4" y="1237" width="0.7" height="15.0" fill="rgb(251,50,5)" rx="2" ry="2" />
<text x="744.36" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181 samples, 0.01%)</title><rect x="48.3" y="1877" width="0.2" height="15.0" fill="rgb(237,158,47)" rx="2" ry="2" />
<text x="51.35" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_1390 (6,576 samples, 0.35%)</title><rect x="479.2" y="1941" width="4.2" height="15.0" fill="rgb(245,40,42)" rx="2" ry="2" />
<text x="482.20" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (1,051 samples, 0.06%)</title><rect x="995.1" y="1173" width="0.7" height="15.0" fill="rgb(245,45,47)" rx="2" ry="2" />
<text x="998.12" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (767 samples, 0.04%)</title><rect x="955.5" y="1205" width="0.5" height="15.0" fill="rgb(231,10,0)" rx="2" ry="2" />
<text x="958.51" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (1,547 samples, 0.08%)</title><rect x="813.1" y="1509" width="1.0" height="15.0" fill="rgb(226,224,51)" rx="2" ry="2" />
<text x="816.13" y="1519.5" ></text>
</g>
<g >
<title>mark_slice (292 samples, 0.02%)</title><rect x="668.2" y="1749" width="0.2" height="15.0" fill="rgb(229,188,38)" rx="2" ry="2" />
<text x="671.22" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (3,762 samples, 0.20%)</title><rect x="937.6" y="1301" width="2.4" height="15.0" fill="rgb(243,223,40)" rx="2" ry="2" />
<text x="940.63" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (262 samples, 0.01%)</title><rect x="732.6" y="1349" width="0.2" height="15.0" fill="rgb(235,84,18)" rx="2" ry="2" />
<text x="735.59" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,287 samples, 0.18%)</title><rect x="1148.3" y="1381" width="2.0" height="15.0" fill="rgb(233,178,3)" rx="2" ry="2" />
<text x="1151.26" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (2,533 samples, 0.14%)</title><rect x="997.4" y="1221" width="1.6" height="15.0" fill="rgb(237,61,26)" rx="2" ry="2" />
<text x="1000.37" y="1231.5" ></text>
</g>
<g >
<title>caml_apply4 (738 samples, 0.04%)</title><rect x="421.3" y="1909" width="0.5" height="15.0" fill="rgb(220,15,18)" rx="2" ry="2" />
<text x="424.32" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (667 samples, 0.04%)</title><rect x="1102.1" y="1365" width="0.4" height="15.0" fill="rgb(225,163,6)" rx="2" ry="2" />
<text x="1105.13" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (191 samples, 0.01%)</title><rect x="1171.7" y="1173" width="0.2" height="15.0" fill="rgb(253,97,48)" rx="2" ry="2" />
<text x="1174.74" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (12,065 samples, 0.65%)</title><rect x="333.9" y="1877" width="7.6" height="15.0" fill="rgb(227,51,18)" rx="2" ry="2" />
<text x="336.89" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1157" width="0.3" height="15.0" fill="rgb(215,84,27)" rx="2" ry="2" />
<text x="1191.32" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (1,310 samples, 0.07%)</title><rect x="1166.7" y="1253" width="0.8" height="15.0" fill="rgb(232,126,6)" rx="2" ry="2" />
<text x="1169.72" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (401 samples, 0.02%)</title><rect x="705.0" y="1093" width="0.3" height="15.0" fill="rgb(239,88,29)" rx="2" ry="2" />
<text x="708.02" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__fun_4485 (275 samples, 0.01%)</title><rect x="1084.8" y="1445" width="0.2" height="15.0" fill="rgb(223,125,13)" rx="2" ry="2" />
<text x="1087.85" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (236 samples, 0.01%)</title><rect x="57.1" y="1829" width="0.2" height="15.0" fill="rgb(251,192,45)" rx="2" ry="2" />
<text x="60.13" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,808 samples, 0.26%)</title><rect x="1069.0" y="1317" width="3.0" height="15.0" fill="rgb(235,36,39)" rx="2" ry="2" />
<text x="1071.96" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (592 samples, 0.03%)</title><rect x="666.6" y="1813" width="0.4" height="15.0" fill="rgb(247,18,25)" rx="2" ry="2" />
<text x="669.63" y="1823.5" ></text>
</g>
<g >
<title>unix_lseek_64 (242 samples, 0.01%)</title><rect x="732.6" y="1333" width="0.2" height="15.0" fill="rgb(249,96,33)" rx="2" ry="2" />
<text x="735.61" y="1343.5" ></text>
</g>
<g >
<title>do_compare_val (483 samples, 0.03%)</title><rect x="791.4" y="1221" width="0.3" height="15.0" fill="rgb(235,20,48)" rx="2" ry="2" />
<text x="794.44" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="869" width="0.2" height="15.0" fill="rgb(238,156,34)" rx="2" ry="2" />
<text x="1191.57" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (4,531 samples, 0.24%)</title><rect x="729.4" y="1365" width="2.9" height="15.0" fill="rgb(205,127,6)" rx="2" ry="2" />
<text x="732.43" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (744,113 samples, 40.01%)</title><rect x="716.2" y="1781" width="472.1" height="15.0" fill="rgb(254,6,53)" rx="2" ry="2" />
<text x="719.18" y="1791.5" >camlLwt__run_in_resolution_loop_2292</text>
</g>
<g >
<title>camlIndex__linear_interpolate_2484 (882 samples, 0.05%)</title><rect x="792.0" y="1269" width="0.6" height="15.0" fill="rgb(214,79,50)" rx="2" ry="2" />
<text x="795.01" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15287 (158 samples, 0.01%)</title><rect x="823.6" y="1349" width="0.1" height="15.0" fill="rgb(209,16,18)" rx="2" ry="2" />
<text x="826.60" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (165 samples, 0.01%)</title><rect x="720.6" y="1333" width="0.1" height="15.0" fill="rgb(217,27,9)" rx="2" ry="2" />
<text x="723.56" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (386 samples, 0.02%)</title><rect x="932.1" y="1301" width="0.3" height="15.0" fill="rgb(208,203,30)" rx="2" ry="2" />
<text x="935.15" y="1311.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (604 samples, 0.03%)</title><rect x="402.0" y="1845" width="0.4" height="15.0" fill="rgb(233,51,2)" rx="2" ry="2" />
<text x="405.05" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__of_v_4693 (618 samples, 0.03%)</title><rect x="686.9" y="1717" width="0.4" height="15.0" fill="rgb(249,176,27)" rx="2" ry="2" />
<text x="689.91" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="677" width="0.5" height="15.0" fill="rgb(247,187,29)" rx="2" ry="2" />
<text x="1192.48" y="687.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (3,351 samples, 0.18%)</title><rect x="760.9" y="1317" width="2.1" height="15.0" fill="rgb(250,180,44)" rx="2" ry="2" />
<text x="763.88" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (159 samples, 0.01%)</title><rect x="925.9" y="1285" width="0.1" height="15.0" fill="rgb(236,94,15)" rx="2" ry="2" />
<text x="928.92" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (2,544 samples, 0.14%)</title><rect x="940.5" y="1333" width="1.6" height="15.0" fill="rgb(221,143,4)" rx="2" ry="2" />
<text x="943.52" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (451 samples, 0.02%)</title><rect x="752.5" y="1237" width="0.3" height="15.0" fill="rgb(215,144,18)" rx="2" ry="2" />
<text x="755.54" y="1247.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (272 samples, 0.01%)</title><rect x="883.3" y="1173" width="0.2" height="15.0" fill="rgb(230,90,39)" rx="2" ry="2" />
<text x="886.35" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_2002 (174 samples, 0.01%)</title><rect x="838.4" y="1237" width="0.1" height="15.0" fill="rgb(217,137,8)" rx="2" ry="2" />
<text x="841.38" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (179 samples, 0.01%)</title><rect x="770.3" y="1141" width="0.1" height="15.0" fill="rgb(240,99,21)" rx="2" ry="2" />
<text x="773.30" y="1151.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (998 samples, 0.05%)</title><rect x="940.8" y="1253" width="0.6" height="15.0" fill="rgb(205,61,50)" rx="2" ry="2" />
<text x="943.75" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (12,136 samples, 0.65%)</title><rect x="925.6" y="1445" width="7.7" height="15.0" fill="rgb(230,12,35)" rx="2" ry="2" />
<text x="928.58" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,174 samples, 0.06%)</title><rect x="927.9" y="1365" width="0.7" height="15.0" fill="rgb(245,20,5)" rx="2" ry="2" />
<text x="930.89" y="1375.5" ></text>
</g>
<g >
<title>camlLayered_bench__fun_30970 (36,930 samples, 1.99%)</title><rect x="1164.8" y="1605" width="23.4" height="15.0" fill="rgb(209,4,29)" rx="2" ry="2" />
<text x="1167.81" y="1615.5" >c..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (809 samples, 0.04%)</title><rect x="1169.0" y="1077" width="0.5" height="15.0" fill="rgb(233,116,44)" rx="2" ry="2" />
<text x="1171.99" y="1087.5" ></text>
</g>
<g >
<title>caml_apply3 (289 samples, 0.02%)</title><rect x="1044.4" y="1333" width="0.2" height="15.0" fill="rgb(251,13,31)" rx="2" ry="2" />
<text x="1047.43" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (9,822 samples, 0.53%)</title><rect x="845.5" y="1285" width="6.3" height="15.0" fill="rgb(208,22,4)" rx="2" ry="2" />
<text x="848.54" y="1295.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (464 samples, 0.02%)</title><rect x="665.1" y="1925" width="0.3" height="15.0" fill="rgb(222,82,45)" rx="2" ry="2" />
<text x="668.10" y="1935.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (180 samples, 0.01%)</title><rect x="867.0" y="1109" width="0.1" height="15.0" fill="rgb(210,76,22)" rx="2" ry="2" />
<text x="869.98" y="1119.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (165 samples, 0.01%)</title><rect x="974.1" y="1141" width="0.1" height="15.0" fill="rgb(219,130,27)" rx="2" ry="2" />
<text x="977.08" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (2,389 samples, 0.13%)</title><rect x="674.9" y="1877" width="1.5" height="15.0" fill="rgb(219,187,16)" rx="2" ry="2" />
<text x="677.89" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (457 samples, 0.02%)</title><rect x="1159.7" y="1333" width="0.3" height="15.0" fill="rgb(232,54,9)" rx="2" ry="2" />
<text x="1162.71" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (249 samples, 0.01%)</title><rect x="930.6" y="1237" width="0.1" height="15.0" fill="rgb(223,162,3)" rx="2" ry="2" />
<text x="933.58" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (890 samples, 0.05%)</title><rect x="1123.9" y="1285" width="0.6" height="15.0" fill="rgb(212,127,33)" rx="2" ry="2" />
<text x="1126.95" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (205 samples, 0.01%)</title><rect x="993.3" y="1093" width="0.1" height="15.0" fill="rgb(227,72,37)" rx="2" ry="2" />
<text x="996.28" y="1103.5" ></text>
</g>
<g >
<title>__GI___pthread_getspecific (828 samples, 0.04%)</title><rect x="584.1" y="1877" width="0.5" height="15.0" fill="rgb(240,13,18)" rx="2" ry="2" />
<text x="587.06" y="1887.5" ></text>
</g>
<g >
<title>caml_call_gc (1,891 samples, 0.10%)</title><rect x="467.7" y="1925" width="1.2" height="15.0" fill="rgb(211,82,30)" rx="2" ry="2" />
<text x="470.71" y="1935.5" ></text>
</g>
<g >
<title>caml_garbage_collection (159 samples, 0.01%)</title><rect x="779.9" y="1173" width="0.1" height="15.0" fill="rgb(218,205,3)" rx="2" ry="2" />
<text x="782.85" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (242 samples, 0.01%)</title><rect x="1177.1" y="1253" width="0.2" height="15.0" fill="rgb(240,74,18)" rx="2" ry="2" />
<text x="1180.13" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (1,692 samples, 0.09%)</title><rect x="968.6" y="1301" width="1.0" height="15.0" fill="rgb(222,180,38)" rx="2" ry="2" />
<text x="971.57" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (162 samples, 0.01%)</title><rect x="1133.6" y="1349" width="0.1" height="15.0" fill="rgb(211,38,36)" rx="2" ry="2" />
<text x="1136.64" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (4,487 samples, 0.24%)</title><rect x="470.8" y="1925" width="2.8" height="15.0" fill="rgb(234,78,20)" rx="2" ry="2" />
<text x="473.77" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (1,644 samples, 0.09%)</title><rect x="1024.5" y="1413" width="1.1" height="15.0" fill="rgb(241,105,4)" rx="2" ry="2" />
<text x="1027.55" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,723 samples, 0.20%)</title><rect x="824.8" y="1253" width="2.4" height="15.0" fill="rgb(230,182,14)" rx="2" ry="2" />
<text x="827.81" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (244 samples, 0.01%)</title><rect x="729.3" y="933" width="0.1" height="15.0" fill="rgb(254,50,8)" rx="2" ry="2" />
<text x="732.25" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,672 samples, 0.09%)</title><rect x="936.5" y="1061" width="1.1" height="15.0" fill="rgb(215,6,28)" rx="2" ry="2" />
<text x="939.52" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (765 samples, 0.04%)</title><rect x="1169.0" y="1061" width="0.5" height="15.0" fill="rgb(242,16,27)" rx="2" ry="2" />
<text x="1172.02" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (506 samples, 0.03%)</title><rect x="853.0" y="1285" width="0.3" height="15.0" fill="rgb(244,18,35)" rx="2" ry="2" />
<text x="855.96" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,375 samples, 0.07%)</title><rect x="1003.8" y="1269" width="0.9" height="15.0" fill="rgb(252,8,37)" rx="2" ry="2" />
<text x="1006.81" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (353 samples, 0.02%)</title><rect x="931.7" y="1269" width="0.3" height="15.0" fill="rgb(221,162,15)" rx="2" ry="2" />
<text x="934.75" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (3,368 samples, 0.18%)</title><rect x="811.0" y="1509" width="2.1" height="15.0" fill="rgb(223,126,27)" rx="2" ry="2" />
<text x="814.00" y="1519.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (38,858 samples, 2.09%)</title><rect x="1163.6" y="1685" width="24.6" height="15.0" fill="rgb(238,98,46)" rx="2" ry="2" />
<text x="1166.59" y="1695.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1381" width="0.5" height="15.0" fill="rgb(234,132,39)" rx="2" ry="2" />
<text x="1192.48" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="453" width="0.3" height="15.0" fill="rgb(208,89,23)" rx="2" ry="2" />
<text x="1191.32" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (747 samples, 0.04%)</title><rect x="784.8" y="1221" width="0.5" height="15.0" fill="rgb(243,152,21)" rx="2" ry="2" />
<text x="787.83" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (616 samples, 0.03%)</title><rect x="660.9" y="1877" width="0.4" height="15.0" fill="rgb(245,202,36)" rx="2" ry="2" />
<text x="663.87" y="1887.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (363 samples, 0.02%)</title><rect x="47.3" y="1989" width="0.3" height="15.0" fill="rgb(240,153,7)" rx="2" ry="2" />
<text x="50.32" y="1999.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,247 samples, 0.07%)</title><rect x="1168.7" y="1237" width="0.8" height="15.0" fill="rgb(238,46,15)" rx="2" ry="2" />
<text x="1171.71" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (23,174 samples, 1.25%)</title><rect x="148.1" y="1893" width="14.7" height="15.0" fill="rgb(229,114,24)" rx="2" ry="2" />
<text x="151.08" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (196 samples, 0.01%)</title><rect x="722.2" y="1285" width="0.1" height="15.0" fill="rgb(223,62,49)" rx="2" ry="2" />
<text x="725.21" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (464 samples, 0.02%)</title><rect x="982.6" y="1141" width="0.3" height="15.0" fill="rgb(225,14,15)" rx="2" ry="2" />
<text x="985.62" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (210 samples, 0.01%)</title><rect x="1065.6" y="1349" width="0.1" height="15.0" fill="rgb(245,16,39)" rx="2" ry="2" />
<text x="1068.57" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (191 samples, 0.01%)</title><rect x="1031.8" y="1317" width="0.1" height="15.0" fill="rgb(237,211,29)" rx="2" ry="2" />
<text x="1034.83" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (1,744 samples, 0.09%)</title><rect x="137.2" y="1845" width="1.1" height="15.0" fill="rgb(244,187,48)" rx="2" ry="2" />
<text x="140.20" y="1855.5" ></text>
</g>
<g >
<title>caml_string_length (536 samples, 0.03%)</title><rect x="893.8" y="1413" width="0.3" height="15.0" fill="rgb(224,157,7)" rx="2" ry="2" />
<text x="896.79" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (193 samples, 0.01%)</title><rect x="823.3" y="1301" width="0.1" height="15.0" fill="rgb(244,81,2)" rx="2" ry="2" />
<text x="826.32" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (187 samples, 0.01%)</title><rect x="756.8" y="1301" width="0.2" height="15.0" fill="rgb(233,166,8)" rx="2" ry="2" />
<text x="759.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3661 (325 samples, 0.02%)</title><rect x="985.0" y="1125" width="0.2" height="15.0" fill="rgb(208,19,27)" rx="2" ry="2" />
<text x="987.97" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (390 samples, 0.02%)</title><rect x="689.4" y="981" width="0.2" height="15.0" fill="rgb(225,222,40)" rx="2" ry="2" />
<text x="692.38" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (881 samples, 0.05%)</title><rect x="958.2" y="1205" width="0.5" height="15.0" fill="rgb(232,107,45)" rx="2" ry="2" />
<text x="961.19" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1869 (274 samples, 0.01%)</title><rect x="1112.9" y="1477" width="0.2" height="15.0" fill="rgb(210,58,46)" rx="2" ry="2" />
<text x="1115.92" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,618 samples, 0.09%)</title><rect x="722.9" y="1349" width="1.0" height="15.0" fill="rgb(212,14,35)" rx="2" ry="2" />
<text x="725.88" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (393 samples, 0.02%)</title><rect x="1173.7" y="1333" width="0.2" height="15.0" fill="rgb(231,13,37)" rx="2" ry="2" />
<text x="1176.70" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (251 samples, 0.01%)</title><rect x="719.4" y="1429" width="0.2" height="15.0" fill="rgb(225,171,9)" rx="2" ry="2" />
<text x="722.44" y="1439.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (370 samples, 0.02%)</title><rect x="664.4" y="1861" width="0.2" height="15.0" fill="rgb(213,199,5)" rx="2" ry="2" />
<text x="667.39" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (2,749 samples, 0.15%)</title><rect x="1098.2" y="1509" width="1.8" height="15.0" fill="rgb(234,112,19)" rx="2" ry="2" />
<text x="1101.21" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (323 samples, 0.02%)</title><rect x="982.7" y="1125" width="0.2" height="15.0" fill="rgb(207,46,6)" rx="2" ry="2" />
<text x="985.71" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (290 samples, 0.02%)</title><rect x="713.1" y="1429" width="0.2" height="15.0" fill="rgb(243,175,17)" rx="2" ry="2" />
<text x="716.08" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,138 samples, 0.98%)</title><rect x="643.5" y="1749" width="11.5" height="15.0" fill="rgb(215,21,54)" rx="2" ry="2" />
<text x="646.51" y="1759.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (284 samples, 0.02%)</title><rect x="672.9" y="1797" width="0.2" height="15.0" fill="rgb(226,154,33)" rx="2" ry="2" />
<text x="675.89" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (1,773 samples, 0.10%)</title><rect x="911.3" y="1397" width="1.1" height="15.0" fill="rgb(235,147,19)" rx="2" ry="2" />
<text x="914.27" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (410 samples, 0.02%)</title><rect x="689.4" y="1109" width="0.2" height="15.0" fill="rgb(237,81,26)" rx="2" ry="2" />
<text x="692.37" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_entry_5986 (99,421 samples, 5.35%)</title><rect x="942.5" y="1365" width="63.1" height="15.0" fill="rgb(220,101,51)" rx="2" ry="2" />
<text x="945.50" y="1375.5" >camlIr..</text>
</g>
<g >
<title>camlIndex__Search__search_1136 (1,701 samples, 0.09%)</title><rect x="909.6" y="1317" width="1.1" height="15.0" fill="rgb(235,19,38)" rx="2" ry="2" />
<text x="912.65" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (164 samples, 0.01%)</title><rect x="714.9" y="1493" width="0.1" height="15.0" fill="rgb(208,58,22)" rx="2" ry="2" />
<text x="717.88" y="1503.5" ></text>
</g>
<g >
<title>caml_apply2 (170 samples, 0.01%)</title><rect x="685.3" y="1909" width="0.2" height="15.0" fill="rgb(210,68,19)" rx="2" ry="2" />
<text x="688.35" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2835 (181 samples, 0.01%)</title><rect x="972.6" y="1285" width="0.1" height="15.0" fill="rgb(252,146,41)" rx="2" ry="2" />
<text x="975.63" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_1358 (169 samples, 0.01%)</title><rect x="689.5" y="165" width="0.1" height="15.0" fill="rgb(239,180,22)" rx="2" ry="2" />
<text x="692.49" y="175.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,386 samples, 0.07%)</title><rect x="117.5" y="1845" width="0.9" height="15.0" fill="rgb(242,195,0)" rx="2" ry="2" />
<text x="120.50" y="1855.5" ></text>
</g>
<g >
<title>sweep_slice (331 samples, 0.02%)</title><rect x="162.6" y="1829" width="0.2" height="15.0" fill="rgb(243,150,16)" rx="2" ry="2" />
<text x="165.57" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1573" width="0.5" height="15.0" fill="rgb(239,25,51)" rx="2" ry="2" />
<text x="1192.48" y="1583.5" ></text>
</g>
<g >
<title>caml_apply2 (158 samples, 0.01%)</title><rect x="765.2" y="1237" width="0.1" height="15.0" fill="rgb(222,135,46)" rx="2" ry="2" />
<text x="768.24" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="357" width="0.3" height="15.0" fill="rgb(246,219,38)" rx="2" ry="2" />
<text x="1192.12" y="367.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,389 samples, 0.13%)</title><rect x="346.8" y="1877" width="1.5" height="15.0" fill="rgb(235,152,23)" rx="2" ry="2" />
<text x="349.78" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (2,137 samples, 0.11%)</title><rect x="699.1" y="1477" width="1.4" height="15.0" fill="rgb(213,57,40)" rx="2" ry="2" />
<text x="702.10" y="1487.5" ></text>
</g>
<g >
<title>caml_fl_allocate (1,684 samples, 0.09%)</title><rect x="30.2" y="1973" width="1.1" height="15.0" fill="rgb(239,165,40)" rx="2" ry="2" />
<text x="33.22" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (168 samples, 0.01%)</title><rect x="1112.6" y="1493" width="0.1" height="15.0" fill="rgb(211,110,9)" rx="2" ry="2" />
<text x="1115.55" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (362 samples, 0.02%)</title><rect x="931.0" y="1269" width="0.3" height="15.0" fill="rgb(236,50,47)" rx="2" ry="2" />
<text x="934.03" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (455 samples, 0.02%)</title><rect x="925.1" y="965" width="0.3" height="15.0" fill="rgb(224,20,3)" rx="2" ry="2" />
<text x="928.14" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (789 samples, 0.04%)</title><rect x="728.9" y="1013" width="0.5" height="15.0" fill="rgb(245,85,4)" rx="2" ry="2" />
<text x="731.91" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1173" width="0.3" height="15.0" fill="rgb(252,64,8)" rx="2" ry="2" />
<text x="1191.32" y="1183.5" ></text>
</g>
<g >
<title>__lseek64 (329 samples, 0.02%)</title><rect x="952.8" y="1157" width="0.2" height="15.0" fill="rgb(227,91,4)" rx="2" ry="2" />
<text x="955.78" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (4,507 samples, 0.24%)</title><rect x="1180.3" y="1317" width="2.9" height="15.0" fill="rgb(253,133,53)" rx="2" ry="2" />
<text x="1183.32" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (15,538 samples, 0.84%)</title><rect x="946.2" y="1285" width="9.8" height="15.0" fill="rgb(246,83,43)" rx="2" ry="2" />
<text x="949.17" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (214 samples, 0.01%)</title><rect x="1123.7" y="1285" width="0.1" height="15.0" fill="rgb(224,143,53)" rx="2" ry="2" />
<text x="1126.69" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (798 samples, 0.04%)</title><rect x="893.6" y="1445" width="0.5" height="15.0" fill="rgb(252,142,21)" rx="2" ry="2" />
<text x="896.62" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="469" width="0.3" height="15.0" fill="rgb(217,220,51)" rx="2" ry="2" />
<text x="1191.82" y="479.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (238 samples, 0.01%)</title><rect x="692.1" y="1333" width="0.2" height="15.0" fill="rgb(228,147,51)" rx="2" ry="2" />
<text x="695.11" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (371 samples, 0.02%)</title><rect x="893.0" y="1365" width="0.2" height="15.0" fill="rgb(243,70,12)" rx="2" ry="2" />
<text x="895.99" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (691 samples, 0.04%)</title><rect x="785.6" y="1189" width="0.5" height="15.0" fill="rgb(228,85,33)" rx="2" ry="2" />
<text x="788.62" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (233 samples, 0.01%)</title><rect x="926.7" y="1301" width="0.1" height="15.0" fill="rgb(221,183,30)" rx="2" ry="2" />
<text x="929.66" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__replace_3160 (3,049 samples, 0.16%)</title><rect x="917.5" y="1413" width="1.9" height="15.0" fill="rgb(252,227,10)" rx="2" ry="2" />
<text x="920.51" y="1423.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (431 samples, 0.02%)</title><rect x="721.9" y="1189" width="0.3" height="15.0" fill="rgb(241,81,0)" rx="2" ry="2" />
<text x="724.91" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (7,974 samples, 0.43%)</title><rect x="801.0" y="1429" width="5.1" height="15.0" fill="rgb(252,21,27)" rx="2" ry="2" />
<text x="804.00" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3616 (186 samples, 0.01%)</title><rect x="750.1" y="1237" width="0.1" height="15.0" fill="rgb(231,48,6)" rx="2" ry="2" />
<text x="753.12" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (568 samples, 0.03%)</title><rect x="1060.9" y="1301" width="0.3" height="15.0" fill="rgb(213,130,40)" rx="2" ry="2" />
<text x="1063.88" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (281 samples, 0.02%)</title><rect x="724.9" y="1429" width="0.2" height="15.0" fill="rgb(232,121,45)" rx="2" ry="2" />
<text x="727.89" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_1983 (185 samples, 0.01%)</title><rect x="922.7" y="1301" width="0.1" height="15.0" fill="rgb(221,103,13)" rx="2" ry="2" />
<text x="925.71" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (262 samples, 0.01%)</title><rect x="296.4" y="1797" width="0.2" height="15.0" fill="rgb(218,52,11)" rx="2" ry="2" />
<text x="299.42" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (223 samples, 0.01%)</title><rect x="830.2" y="1333" width="0.1" height="15.0" fill="rgb(240,28,28)" rx="2" ry="2" />
<text x="833.20" y="1343.5" ></text>
</g>
<g >
<title>caml_compact_heap (932 samples, 0.05%)</title><rect x="775.0" y="1125" width="0.6" height="15.0" fill="rgb(254,201,10)" rx="2" ry="2" />
<text x="778.03" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (202 samples, 0.01%)</title><rect x="694.6" y="1045" width="0.1" height="15.0" fill="rgb(234,212,25)" rx="2" ry="2" />
<text x="697.59" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4848 (253 samples, 0.01%)</title><rect x="1112.3" y="1509" width="0.2" height="15.0" fill="rgb(236,218,54)" rx="2" ry="2" />
<text x="1115.29" y="1519.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (608 samples, 0.03%)</title><rect x="548.0" y="1893" width="0.3" height="15.0" fill="rgb(210,87,43)" rx="2" ry="2" />
<text x="550.96" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (400 samples, 0.02%)</title><rect x="823.3" y="1333" width="0.2" height="15.0" fill="rgb(252,62,7)" rx="2" ry="2" />
<text x="826.25" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,014 samples, 0.05%)</title><rect x="1071.4" y="1205" width="0.6" height="15.0" fill="rgb(210,147,35)" rx="2" ry="2" />
<text x="1074.37" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_5478 (17,740 samples, 0.95%)</title><rect x="1165.4" y="1397" width="11.3" height="15.0" fill="rgb(247,19,47)" rx="2" ry="2" />
<text x="1168.42" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (2,511 samples, 0.14%)</title><rect x="938.3" y="1269" width="1.6" height="15.0" fill="rgb(239,124,14)" rx="2" ry="2" />
<text x="941.28" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,606 samples, 0.09%)</title><rect x="706.2" y="1381" width="1.0" height="15.0" fill="rgb(208,12,46)" rx="2" ry="2" />
<text x="709.23" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (338 samples, 0.02%)</title><rect x="805.1" y="1317" width="0.2" height="15.0" fill="rgb(237,146,49)" rx="2" ry="2" />
<text x="808.10" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,616 samples, 0.14%)</title><rect x="727.8" y="1189" width="1.6" height="15.0" fill="rgb(211,54,33)" rx="2" ry="2" />
<text x="730.77" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (40,306 samples, 2.17%)</title><rect x="245.9" y="1909" width="25.6" height="15.0" fill="rgb(214,133,26)" rx="2" ry="2" />
<text x="248.92" y="1919.5" >c..</text>
</g>
<g >
<title>caml_compare (746 samples, 0.04%)</title><rect x="1149.8" y="1301" width="0.4" height="15.0" fill="rgb(251,195,47)" rx="2" ry="2" />
<text x="1152.77" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (1,635 samples, 0.09%)</title><rect x="986.4" y="1141" width="1.0" height="15.0" fill="rgb(210,208,35)" rx="2" ry="2" />
<text x="989.37" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (451 samples, 0.02%)</title><rect x="752.5" y="1221" width="0.3" height="15.0" fill="rgb(235,63,17)" rx="2" ry="2" />
<text x="755.54" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (312 samples, 0.02%)</title><rect x="909.3" y="1365" width="0.2" height="15.0" fill="rgb(251,32,42)" rx="2" ry="2" />
<text x="912.26" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (458 samples, 0.02%)</title><rect x="949.8" y="1141" width="0.3" height="15.0" fill="rgb(224,182,14)" rx="2" ry="2" />
<text x="952.81" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (221 samples, 0.01%)</title><rect x="796.5" y="1269" width="0.1" height="15.0" fill="rgb(253,228,34)" rx="2" ry="2" />
<text x="799.50" y="1279.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (231 samples, 0.01%)</title><rect x="795.4" y="1301" width="0.2" height="15.0" fill="rgb(221,220,49)" rx="2" ry="2" />
<text x="798.41" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (1,272 samples, 0.07%)</title><rect x="668.2" y="1829" width="0.8" height="15.0" fill="rgb(232,3,29)" rx="2" ry="2" />
<text x="671.21" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (11,459 samples, 0.62%)</title><rect x="989.3" y="1205" width="7.3" height="15.0" fill="rgb(206,30,3)" rx="2" ry="2" />
<text x="992.30" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (445 samples, 0.02%)</title><rect x="689.4" y="1269" width="0.2" height="15.0" fill="rgb(241,188,50)" rx="2" ry="2" />
<text x="692.35" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1765" width="0.2" height="15.0" fill="rgb(221,159,34)" rx="2" ry="2" />
<text x="1191.57" y="1775.5" ></text>
</g>
<g >
<title>caml_garbage_collection (875 samples, 0.05%)</title><rect x="983.5" y="1109" width="0.6" height="15.0" fill="rgb(223,136,12)" rx="2" ry="2" />
<text x="986.55" y="1119.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (1,684 samples, 0.09%)</title><rect x="30.2" y="2037" width="1.1" height="15.0" fill="rgb(243,6,12)" rx="2" ry="2" />
<text x="33.22" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (1,640 samples, 0.09%)</title><rect x="908.4" y="1397" width="1.1" height="15.0" fill="rgb(227,71,44)" rx="2" ry="2" />
<text x="911.41" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (4,440 samples, 0.24%)</title><rect x="969.6" y="1301" width="2.9" height="15.0" fill="rgb(245,75,12)" rx="2" ry="2" />
<text x="972.65" y="1311.5" ></text>
</g>
<g >
<title>caml_string_compare (555 samples, 0.03%)</title><rect x="800.6" y="1397" width="0.3" height="15.0" fill="rgb(229,110,32)" rx="2" ry="2" />
<text x="803.57" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (185 samples, 0.01%)</title><rect x="1166.9" y="1141" width="0.1" height="15.0" fill="rgb(207,209,43)" rx="2" ry="2" />
<text x="1169.93" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (304 samples, 0.02%)</title><rect x="1122.0" y="1285" width="0.2" height="15.0" fill="rgb(212,166,16)" rx="2" ry="2" />
<text x="1125.02" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__fun_4485 (216 samples, 0.01%)</title><rect x="890.7" y="1301" width="0.1" height="15.0" fill="rgb(240,206,27)" rx="2" ry="2" />
<text x="893.69" y="1311.5" ></text>
</g>
<g >
<title>caml_tuplify2 (394 samples, 0.02%)</title><rect x="1062.7" y="1349" width="0.2" height="15.0" fill="rgb(240,95,2)" rx="2" ry="2" />
<text x="1065.68" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,331 samples, 0.07%)</title><rect x="796.1" y="1317" width="0.8" height="15.0" fill="rgb(231,224,9)" rx="2" ry="2" />
<text x="799.09" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,358 samples, 0.07%)</title><rect x="936.7" y="1029" width="0.9" height="15.0" fill="rgb(215,21,37)" rx="2" ry="2" />
<text x="939.72" y="1039.5" ></text>
</g>
<g >
<title>caml_hash (314 samples, 0.02%)</title><rect x="889.7" y="1221" width="0.2" height="15.0" fill="rgb(216,146,46)" rx="2" ry="2" />
<text x="892.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (242 samples, 0.01%)</title><rect x="879.6" y="1205" width="0.2" height="15.0" fill="rgb(237,83,9)" rx="2" ry="2" />
<text x="882.63" y="1215.5" ></text>
</g>
<g >
<title>invert_pointer_at (258 samples, 0.01%)</title><rect x="523.9" y="1861" width="0.2" height="15.0" fill="rgb(205,51,24)" rx="2" ry="2" />
<text x="526.89" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_6309 (983 samples, 0.05%)</title><rect x="1148.3" y="1349" width="0.7" height="15.0" fill="rgb(234,111,14)" rx="2" ry="2" />
<text x="1151.34" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,042 samples, 0.11%)</title><rect x="422.3" y="1845" width="1.3" height="15.0" fill="rgb(222,185,45)" rx="2" ry="2" />
<text x="425.29" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (467 samples, 0.03%)</title><rect x="815.9" y="1349" width="0.3" height="15.0" fill="rgb(212,53,42)" rx="2" ry="2" />
<text x="818.89" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (198 samples, 0.01%)</title><rect x="812.9" y="1461" width="0.1" height="15.0" fill="rgb(206,94,46)" rx="2" ry="2" />
<text x="815.86" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (2,955 samples, 0.16%)</title><rect x="243.8" y="1845" width="1.8" height="15.0" fill="rgb(237,184,25)" rx="2" ry="2" />
<text x="246.76" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,689 samples, 1.00%)</title><rect x="643.2" y="1765" width="11.8" height="15.0" fill="rgb(209,99,30)" rx="2" ry="2" />
<text x="646.16" y="1775.5" ></text>
</g>
<g >
<title>caml_apply2 (266 samples, 0.01%)</title><rect x="892.5" y="1301" width="0.2" height="15.0" fill="rgb(246,94,47)" rx="2" ry="2" />
<text x="895.53" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1973" width="0.3" height="15.0" fill="rgb(205,229,15)" rx="2" ry="2" />
<text x="1191.82" y="1983.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (382 samples, 0.02%)</title><rect x="668.2" y="1765" width="0.3" height="15.0" fill="rgb(244,165,45)" rx="2" ry="2" />
<text x="671.22" y="1775.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1205" width="0.3" height="15.0" fill="rgb(236,134,37)" rx="2" ry="2" />
<text x="1192.12" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (5,246 samples, 0.28%)</title><rect x="705.6" y="1525" width="3.4" height="15.0" fill="rgb(239,123,52)" rx="2" ry="2" />
<text x="708.63" y="1535.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (251 samples, 0.01%)</title><rect x="341.5" y="1861" width="0.2" height="15.0" fill="rgb(210,93,47)" rx="2" ry="2" />
<text x="344.55" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (194 samples, 0.01%)</title><rect x="912.3" y="965" width="0.1" height="15.0" fill="rgb(210,119,17)" rx="2" ry="2" />
<text x="915.27" y="975.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (867 samples, 0.05%)</title><rect x="1186.1" y="1253" width="0.5" height="15.0" fill="rgb(221,200,24)" rx="2" ry="2" />
<text x="1189.07" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (259 samples, 0.01%)</title><rect x="1165.0" y="1493" width="0.2" height="15.0" fill="rgb(235,140,48)" rx="2" ry="2" />
<text x="1168.00" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (284 samples, 0.02%)</title><rect x="1140.9" y="1349" width="0.1" height="15.0" fill="rgb(229,7,24)" rx="2" ry="2" />
<text x="1143.86" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (211 samples, 0.01%)</title><rect x="804.9" y="1317" width="0.1" height="15.0" fill="rgb(252,112,25)" rx="2" ry="2" />
<text x="807.87" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,156 samples, 0.06%)</title><rect x="694.0" y="1349" width="0.7" height="15.0" fill="rgb(246,203,12)" rx="2" ry="2" />
<text x="696.98" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,847 samples, 0.10%)</title><rect x="730.5" y="1301" width="1.1" height="15.0" fill="rgb(235,97,16)" rx="2" ry="2" />
<text x="733.47" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_to_lower_3801 (177,901 samples, 9.56%)</title><rect x="902.3" y="1493" width="112.9" height="15.0" fill="rgb(224,124,21)" rx="2" ry="2" />
<text x="905.29" y="1503.5" >camlIrmin_lay..</text>
</g>
<g >
<title>camlStdlib__hashtbl__fold_2098 (4,311 samples, 0.23%)</title><rect x="682.8" y="1957" width="2.7" height="15.0" fill="rgb(222,145,30)" rx="2" ry="2" />
<text x="685.81" y="1967.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (799 samples, 0.04%)</title><rect x="1112.7" y="1509" width="0.6" height="15.0" fill="rgb(212,177,53)" rx="2" ry="2" />
<text x="1115.75" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_7102 (114,263 samples, 6.14%)</title><rect x="725.4" y="1477" width="72.4" height="15.0" fill="rgb(236,153,41)" rx="2" ry="2" />
<text x="728.35" y="1487.5" >camlIrmi..</text>
</g>
<g >
<title>caml_page_table_lookup (305 samples, 0.02%)</title><rect x="923.5" y="1237" width="0.2" height="15.0" fill="rgb(207,37,14)" rx="2" ry="2" />
<text x="926.53" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (352 samples, 0.02%)</title><rect x="1153.5" y="1269" width="0.2" height="15.0" fill="rgb(253,94,4)" rx="2" ry="2" />
<text x="1156.50" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__get_tree_5959 (95,091 samples, 5.11%)</title><rect x="832.6" y="1381" width="60.3" height="15.0" fill="rgb(240,70,45)" rx="2" ry="2" />
<text x="835.61" y="1391.5" >camlIr..</text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (8,441 samples, 0.45%)</title><rect x="1018.8" y="1429" width="5.3" height="15.0" fill="rgb(221,58,4)" rx="2" ry="2" />
<text x="1021.78" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4613 (194 samples, 0.01%)</title><rect x="760.6" y="1333" width="0.1" height="15.0" fill="rgb(219,40,21)" rx="2" ry="2" />
<text x="763.59" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (335 samples, 0.02%)</title><rect x="794.2" y="1253" width="0.2" height="15.0" fill="rgb(208,205,26)" rx="2" ry="2" />
<text x="797.18" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (299 samples, 0.02%)</title><rect x="672.4" y="1813" width="0.2" height="15.0" fill="rgb(230,163,10)" rx="2" ry="2" />
<text x="675.40" y="1823.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (532 samples, 0.03%)</title><rect x="859.7" y="1253" width="0.4" height="15.0" fill="rgb(247,100,51)" rx="2" ry="2" />
<text x="862.71" y="1263.5" ></text>
</g>
<g >
<title>caml_oldify_one (184 samples, 0.01%)</title><rect x="871.9" y="1077" width="0.1" height="15.0" fill="rgb(229,161,20)" rx="2" ry="2" />
<text x="874.86" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (7,612 samples, 0.41%)</title><rect x="742.3" y="1301" width="4.8" height="15.0" fill="rgb(232,199,15)" rx="2" ry="2" />
<text x="745.31" y="1311.5" ></text>
</g>
<g >
<title>caml_tuplify2 (529 samples, 0.03%)</title><rect x="1044.7" y="1333" width="0.4" height="15.0" fill="rgb(238,38,0)" rx="2" ry="2" />
<text x="1047.74" y="1343.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (203 samples, 0.01%)</title><rect x="687.2" y="1653" width="0.1" height="15.0" fill="rgb(233,56,48)" rx="2" ry="2" />
<text x="690.17" y="1663.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (2,017 samples, 0.11%)</title><rect x="48.1" y="2005" width="1.3" height="15.0" fill="rgb(244,126,29)" rx="2" ry="2" />
<text x="51.07" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (244 samples, 0.01%)</title><rect x="1058.9" y="1317" width="0.2" height="15.0" fill="rgb(211,28,46)" rx="2" ry="2" />
<text x="1061.92" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (206 samples, 0.01%)</title><rect x="1053.8" y="1333" width="0.2" height="15.0" fill="rgb(227,85,3)" rx="2" ry="2" />
<text x="1056.84" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (1,208 samples, 0.06%)</title><rect x="808.1" y="1429" width="0.8" height="15.0" fill="rgb(228,14,8)" rx="2" ry="2" />
<text x="811.10" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (271 samples, 0.01%)</title><rect x="676.6" y="1957" width="0.2" height="15.0" fill="rgb(221,215,37)" rx="2" ry="2" />
<text x="679.62" y="1967.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (312 samples, 0.02%)</title><rect x="1117.7" y="1413" width="0.2" height="15.0" fill="rgb(230,87,12)" rx="2" ry="2" />
<text x="1120.71" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1349" width="0.3" height="15.0" fill="rgb(228,112,16)" rx="2" ry="2" />
<text x="1192.12" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (42,393 samples, 2.28%)</title><rect x="766.3" y="1285" width="26.8" height="15.0" fill="rgb(231,105,16)" rx="2" ry="2" />
<text x="769.25" y="1295.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (491 samples, 0.03%)</title><rect x="689.3" y="1429" width="0.3" height="15.0" fill="rgb(212,153,8)" rx="2" ry="2" />
<text x="692.33" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (200 samples, 0.01%)</title><rect x="880.4" y="1173" width="0.1" height="15.0" fill="rgb(233,100,37)" rx="2" ry="2" />
<text x="883.41" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (665 samples, 0.04%)</title><rect x="1176.2" y="1125" width="0.4" height="15.0" fill="rgb(212,100,39)" rx="2" ry="2" />
<text x="1179.16" y="1135.5" ></text>
</g>
<g >
<title>caml_apply2 (168 samples, 0.01%)</title><rect x="968.4" y="1253" width="0.2" height="15.0" fill="rgb(242,77,31)" rx="2" ry="2" />
<text x="971.44" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (310 samples, 0.02%)</title><rect x="1002.1" y="1189" width="0.2" height="15.0" fill="rgb(229,62,44)" rx="2" ry="2" />
<text x="1005.05" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (798 samples, 0.04%)</title><rect x="1031.3" y="1333" width="0.5" height="15.0" fill="rgb(241,53,46)" rx="2" ry="2" />
<text x="1034.26" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (208 samples, 0.01%)</title><rect x="1179.9" y="1301" width="0.1" height="15.0" fill="rgb(212,142,48)" rx="2" ry="2" />
<text x="1182.88" y="1311.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (197 samples, 0.01%)</title><rect x="762.9" y="1253" width="0.1" height="15.0" fill="rgb(251,136,54)" rx="2" ry="2" />
<text x="765.88" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,552 samples, 0.14%)</title><rect x="346.7" y="1893" width="1.6" height="15.0" fill="rgb(239,214,5)" rx="2" ry="2" />
<text x="349.67" y="1903.5" ></text>
</g>
<g >
<title>caml_apply2 (184 samples, 0.01%)</title><rect x="862.7" y="1221" width="0.1" height="15.0" fill="rgb(209,59,26)" rx="2" ry="2" />
<text x="865.73" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="565" width="0.2" height="15.0" fill="rgb(243,85,3)" rx="2" ry="2" />
<text x="1191.57" y="575.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__triple_1312 (381 samples, 0.02%)</title><rect x="672.1" y="1861" width="0.2" height="15.0" fill="rgb(230,59,51)" rx="2" ry="2" />
<text x="675.06" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1333" width="0.3" height="15.0" fill="rgb(224,226,2)" rx="2" ry="2" />
<text x="1191.32" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (207 samples, 0.01%)</title><rect x="900.5" y="1301" width="0.2" height="15.0" fill="rgb(220,108,45)" rx="2" ry="2" />
<text x="903.54" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,584 samples, 0.09%)</title><rect x="1170.1" y="1237" width="1.0" height="15.0" fill="rgb(224,173,24)" rx="2" ry="2" />
<text x="1173.05" y="1247.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (171 samples, 0.01%)</title><rect x="270.5" y="1861" width="0.2" height="15.0" fill="rgb(250,106,46)" rx="2" ry="2" />
<text x="273.55" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (312 samples, 0.02%)</title><rect x="823.3" y="1317" width="0.2" height="15.0" fill="rgb(227,62,44)" rx="2" ry="2" />
<text x="826.28" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185 samples, 0.01%)</title><rect x="954.5" y="1125" width="0.1" height="15.0" fill="rgb(233,86,43)" rx="2" ry="2" />
<text x="957.52" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="661" width="0.3" height="15.0" fill="rgb(232,147,18)" rx="2" ry="2" />
<text x="1191.82" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,832 samples, 0.90%)</title><rect x="35.3" y="1941" width="10.7" height="15.0" fill="rgb(214,80,15)" rx="2" ry="2" />
<text x="38.27" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (228 samples, 0.01%)</title><rect x="1161.3" y="1317" width="0.2" height="15.0" fill="rgb(233,44,21)" rx="2" ry="2" />
<text x="1164.33" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (301 samples, 0.02%)</title><rect x="868.1" y="1189" width="0.2" height="15.0" fill="rgb(247,151,4)" rx="2" ry="2" />
<text x="871.11" y="1199.5" ></text>
</g>
<g >
<title>__libc_pread64 (299 samples, 0.02%)</title><rect x="916.4" y="1269" width="0.2" height="15.0" fill="rgb(218,110,26)" rx="2" ry="2" />
<text x="919.44" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,067 samples, 0.06%)</title><rect x="704.6" y="1349" width="0.7" height="15.0" fill="rgb(206,187,45)" rx="2" ry="2" />
<text x="707.60" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (320 samples, 0.02%)</title><rect x="1176.4" y="933" width="0.2" height="15.0" fill="rgb(239,50,3)" rx="2" ry="2" />
<text x="1179.38" y="943.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (1,888 samples, 0.10%)</title><rect x="1102.6" y="1429" width="1.2" height="15.0" fill="rgb(241,46,11)" rx="2" ry="2" />
<text x="1105.62" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (360 samples, 0.02%)</title><rect x="818.1" y="1349" width="0.3" height="15.0" fill="rgb(251,48,38)" rx="2" ry="2" />
<text x="821.14" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,857 samples, 0.15%)</title><rect x="660.8" y="1925" width="1.8" height="15.0" fill="rgb(248,170,12)" rx="2" ry="2" />
<text x="663.76" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1203 (421 samples, 0.02%)</title><rect x="672.8" y="1845" width="0.3" height="15.0" fill="rgb(247,107,48)" rx="2" ry="2" />
<text x="675.81" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (476 samples, 0.03%)</title><rect x="1162.6" y="1493" width="0.3" height="15.0" fill="rgb(232,88,53)" rx="2" ry="2" />
<text x="1165.61" y="1503.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (332 samples, 0.02%)</title><rect x="906.5" y="1317" width="0.2" height="15.0" fill="rgb(238,111,43)" rx="2" ry="2" />
<text x="909.46" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (4,962 samples, 0.27%)</title><rect x="1063.1" y="1365" width="3.2" height="15.0" fill="rgb(208,152,15)" rx="2" ry="2" />
<text x="1066.12" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_2302 (337 samples, 0.02%)</title><rect x="1144.7" y="1365" width="0.2" height="15.0" fill="rgb(235,204,17)" rx="2" ry="2" />
<text x="1147.66" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (382 samples, 0.02%)</title><rect x="804.3" y="1333" width="0.3" height="15.0" fill="rgb(226,180,26)" rx="2" ry="2" />
<text x="807.32" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (751 samples, 0.04%)</title><rect x="925.0" y="1029" width="0.4" height="15.0" fill="rgb(216,128,54)" rx="2" ry="2" />
<text x="927.96" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (276 samples, 0.01%)</title><rect x="916.4" y="1253" width="0.2" height="15.0" fill="rgb(208,127,25)" rx="2" ry="2" />
<text x="919.45" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (223 samples, 0.01%)</title><rect x="1165.0" y="1381" width="0.1" height="15.0" fill="rgb(225,8,28)" rx="2" ry="2" />
<text x="1168.01" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (8,169 samples, 0.44%)</title><rect x="400.1" y="1909" width="5.2" height="15.0" fill="rgb(240,41,2)" rx="2" ry="2" />
<text x="403.13" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (284 samples, 0.02%)</title><rect x="821.7" y="1237" width="0.1" height="15.0" fill="rgb(221,103,10)" rx="2" ry="2" />
<text x="824.67" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (159 samples, 0.01%)</title><rect x="713.4" y="1413" width="0.1" height="15.0" fill="rgb(238,223,49)" rx="2" ry="2" />
<text x="716.36" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1589" width="0.3" height="15.0" fill="rgb(230,38,41)" rx="2" ry="2" />
<text x="1191.32" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (4,976 samples, 0.27%)</title><rect x="1180.3" y="1349" width="3.1" height="15.0" fill="rgb(208,95,11)" rx="2" ry="2" />
<text x="1183.29" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (647 samples, 0.03%)</title><rect x="1103.9" y="1445" width="0.4" height="15.0" fill="rgb(254,212,41)" rx="2" ry="2" />
<text x="1106.93" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int_1637 (180 samples, 0.01%)</title><rect x="849.0" y="1237" width="0.2" height="15.0" fill="rgb(231,115,19)" rx="2" ry="2" />
<text x="852.05" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="485" width="0.5" height="15.0" fill="rgb(213,8,29)" rx="2" ry="2" />
<text x="1192.48" y="495.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4603 (226 samples, 0.01%)</title><rect x="1146.3" y="1413" width="0.1" height="15.0" fill="rgb(219,106,33)" rx="2" ry="2" />
<text x="1149.29" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11388 (161 samples, 0.01%)</title><rect x="1014.3" y="1317" width="0.1" height="15.0" fill="rgb(215,134,44)" rx="2" ry="2" />
<text x="1017.30" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_1980 (228 samples, 0.01%)</title><rect x="740.6" y="1237" width="0.2" height="15.0" fill="rgb(228,213,53)" rx="2" ry="2" />
<text x="743.63" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (161 samples, 0.01%)</title><rect x="763.5" y="1317" width="0.1" height="15.0" fill="rgb(222,156,37)" rx="2" ry="2" />
<text x="766.46" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (220 samples, 0.01%)</title><rect x="697.7" y="1381" width="0.2" height="15.0" fill="rgb(249,132,4)" rx="2" ry="2" />
<text x="700.71" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193 samples, 0.01%)</title><rect x="998.7" y="1013" width="0.1" height="15.0" fill="rgb(224,2,54)" rx="2" ry="2" />
<text x="1001.67" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (442 samples, 0.02%)</title><rect x="689.4" y="1237" width="0.2" height="15.0" fill="rgb(227,3,40)" rx="2" ry="2" />
<text x="692.35" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (2,551 samples, 0.14%)</title><rect x="771.8" y="1205" width="1.7" height="15.0" fill="rgb(247,72,35)" rx="2" ry="2" />
<text x="774.84" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (293 samples, 0.02%)</title><rect x="768.8" y="1189" width="0.2" height="15.0" fill="rgb(210,88,39)" rx="2" ry="2" />
<text x="771.78" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__replace_3160 (1,660 samples, 0.09%)</title><rect x="1172.6" y="1333" width="1.1" height="15.0" fill="rgb(238,35,39)" rx="2" ry="2" />
<text x="1175.64" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (286 samples, 0.02%)</title><rect x="716.6" y="1477" width="0.2" height="15.0" fill="rgb(213,172,24)" rx="2" ry="2" />
<text x="719.65" y="1487.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (2,753 samples, 0.15%)</title><rect x="55.9" y="1973" width="1.8" height="15.0" fill="rgb(241,10,20)" rx="2" ry="2" />
<text x="58.91" y="1983.5" ></text>
</g>
<g >
<title>camlIndex__replace_3160 (2,254 samples, 0.12%)</title><rect x="699.0" y="1493" width="1.5" height="15.0" fill="rgb(209,158,22)" rx="2" ry="2" />
<text x="702.04" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (521 samples, 0.03%)</title><rect x="689.3" y="1557" width="0.3" height="15.0" fill="rgb(211,37,12)" rx="2" ry="2" />
<text x="692.31" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1285" width="0.3" height="15.0" fill="rgb(209,161,31)" rx="2" ry="2" />
<text x="1192.12" y="1295.5" ></text>
</g>
<g >
<title>caml_string_compare (562 samples, 0.03%)</title><rect x="799.8" y="1413" width="0.4" height="15.0" fill="rgb(210,149,4)" rx="2" ry="2" />
<text x="802.79" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1125" width="0.5" height="15.0" fill="rgb(252,168,13)" rx="2" ry="2" />
<text x="1192.48" y="1135.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (834 samples, 0.04%)</title><rect x="909.7" y="1301" width="0.5" height="15.0" fill="rgb(225,10,9)" rx="2" ry="2" />
<text x="912.70" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (337 samples, 0.02%)</title><rect x="1121.0" y="1285" width="0.3" height="15.0" fill="rgb(207,62,43)" rx="2" ry="2" />
<text x="1124.04" y="1295.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (226 samples, 0.01%)</title><rect x="950.4" y="1157" width="0.1" height="15.0" fill="rgb(221,210,46)" rx="2" ry="2" />
<text x="953.38" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="2053" width="0.3" height="15.0" fill="rgb(205,97,54)" rx="2" ry="2" />
<text x="1191.82" y="2063.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (279 samples, 0.02%)</title><rect x="694.5" y="1077" width="0.2" height="15.0" fill="rgb(221,148,46)" rx="2" ry="2" />
<text x="697.54" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1557" width="0.3" height="15.0" fill="rgb(252,10,45)" rx="2" ry="2" />
<text x="1191.82" y="1567.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,255 samples, 0.44%)</title><rect x="1106.0" y="1381" width="5.2" height="15.0" fill="rgb(210,208,5)" rx="2" ry="2" />
<text x="1108.96" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (2,513 samples, 0.14%)</title><rect x="828.1" y="1301" width="1.6" height="15.0" fill="rgb(232,173,25)" rx="2" ry="2" />
<text x="831.06" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (41,397 samples, 2.23%)</title><rect x="689.7" y="1685" width="26.2" height="15.0" fill="rgb(253,121,16)" rx="2" ry="2" />
<text x="692.68" y="1695.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1061" width="0.3" height="15.0" fill="rgb(252,29,38)" rx="2" ry="2" />
<text x="1191.82" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (297 samples, 0.02%)</title><rect x="904.9" y="1269" width="0.2" height="15.0" fill="rgb(245,229,46)" rx="2" ry="2" />
<text x="907.91" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_1358 (206 samples, 0.01%)</title><rect x="1013.8" y="1429" width="0.2" height="15.0" fill="rgb(222,119,0)" rx="2" ry="2" />
<text x="1016.85" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1493" width="0.3" height="15.0" fill="rgb(213,148,41)" rx="2" ry="2" />
<text x="1192.12" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (322 samples, 0.02%)</title><rect x="713.3" y="1429" width="0.2" height="15.0" fill="rgb(234,195,16)" rx="2" ry="2" />
<text x="716.27" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (487 samples, 0.03%)</title><rect x="710.0" y="1365" width="0.3" height="15.0" fill="rgb(213,160,13)" rx="2" ry="2" />
<text x="713.04" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (167 samples, 0.01%)</title><rect x="843.3" y="1157" width="0.1" height="15.0" fill="rgb(207,125,49)" rx="2" ry="2" />
<text x="846.31" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (842 samples, 0.05%)</title><rect x="911.9" y="1173" width="0.5" height="15.0" fill="rgb(238,34,29)" rx="2" ry="2" />
<text x="914.86" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (759 samples, 0.04%)</title><rect x="791.3" y="1269" width="0.4" height="15.0" fill="rgb(229,158,17)" rx="2" ry="2" />
<text x="794.26" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (171 samples, 0.01%)</title><rect x="670.4" y="1797" width="0.1" height="15.0" fill="rgb(236,189,35)" rx="2" ry="2" />
<text x="673.36" y="1807.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,827 samples, 0.10%)</title><rect x="706.1" y="1413" width="1.2" height="15.0" fill="rgb(242,181,29)" rx="2" ry="2" />
<text x="709.13" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_2850 (290 samples, 0.02%)</title><rect x="794.9" y="1301" width="0.2" height="15.0" fill="rgb(235,95,31)" rx="2" ry="2" />
<text x="797.88" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (264 samples, 0.01%)</title><rect x="721.2" y="1285" width="0.2" height="15.0" fill="rgb(223,224,5)" rx="2" ry="2" />
<text x="724.22" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (17,312 samples, 0.93%)</title><rect x="866.0" y="1221" width="10.9" height="15.0" fill="rgb(249,122,12)" rx="2" ry="2" />
<text x="868.96" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218 samples, 0.01%)</title><rect x="712.7" y="1285" width="0.2" height="15.0" fill="rgb(253,162,4)" rx="2" ry="2" />
<text x="715.72" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (328 samples, 0.02%)</title><rect x="670.0" y="1797" width="0.2" height="15.0" fill="rgb(232,26,50)" rx="2" ry="2" />
<text x="673.01" y="1807.5" ></text>
</g>
<g >
<title>camlUnix__read_1394 (160 samples, 0.01%)</title><rect x="760.8" y="1301" width="0.1" height="15.0" fill="rgb(227,88,52)" rx="2" ry="2" />
<text x="763.77" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="373" width="0.3" height="15.0" fill="rgb(235,113,29)" rx="2" ry="2" />
<text x="1191.32" y="383.5" ></text>
</g>
<g >
<title>caml_pread (331 samples, 0.02%)</title><rect x="821.6" y="1285" width="0.3" height="15.0" fill="rgb(219,141,10)" rx="2" ry="2" />
<text x="824.65" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (2,753 samples, 0.15%)</title><rect x="855.1" y="1333" width="1.8" height="15.0" fill="rgb(235,41,38)" rx="2" ry="2" />
<text x="858.15" y="1343.5" ></text>
</g>
<g >
<title>caml_string_length (1,905 samples, 0.10%)</title><rect x="943.6" y="1237" width="1.2" height="15.0" fill="rgb(207,61,14)" rx="2" ry="2" />
<text x="946.59" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (3,652 samples, 0.20%)</title><rect x="1128.5" y="1317" width="2.4" height="15.0" fill="rgb(230,14,38)" rx="2" ry="2" />
<text x="1131.55" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (14,110 samples, 0.76%)</title><rect x="317.0" y="1893" width="8.9" height="15.0" fill="rgb(236,67,4)" rx="2" ry="2" />
<text x="319.95" y="1903.5" ></text>
</g>
<g >
<title>unix_lseek_64 (433 samples, 0.02%)</title><rect x="745.7" y="1205" width="0.3" height="15.0" fill="rgb(231,97,41)" rx="2" ry="2" />
<text x="748.73" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (181 samples, 0.01%)</title><rect x="1039.2" y="1301" width="0.1" height="15.0" fill="rgb(248,56,17)" rx="2" ry="2" />
<text x="1042.19" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1909" width="0.3" height="15.0" fill="rgb(242,185,20)" rx="2" ry="2" />
<text x="1191.32" y="1919.5" ></text>
</g>
<g >
<title>__libc_pread64 (396 samples, 0.02%)</title><rect x="1132.6" y="1285" width="0.3" height="15.0" fill="rgb(244,93,49)" rx="2" ry="2" />
<text x="1135.61" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (747 samples, 0.04%)</title><rect x="1106.4" y="1317" width="0.5" height="15.0" fill="rgb(218,95,24)" rx="2" ry="2" />
<text x="1109.45" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (468 samples, 0.03%)</title><rect x="1105.5" y="1397" width="0.3" height="15.0" fill="rgb(207,190,11)" rx="2" ry="2" />
<text x="1108.51" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (204 samples, 0.01%)</title><rect x="793.0" y="1253" width="0.1" height="15.0" fill="rgb(254,44,34)" rx="2" ry="2" />
<text x="796.02" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (786 samples, 0.04%)</title><rect x="911.9" y="1157" width="0.5" height="15.0" fill="rgb(211,110,26)" rx="2" ry="2" />
<text x="914.89" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (315 samples, 0.02%)</title><rect x="710.8" y="1333" width="0.2" height="15.0" fill="rgb(253,125,8)" rx="2" ry="2" />
<text x="713.77" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (4,077 samples, 0.22%)</title><rect x="738.5" y="1285" width="2.6" height="15.0" fill="rgb(234,19,7)" rx="2" ry="2" />
<text x="741.49" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (346 samples, 0.02%)</title><rect x="1108.2" y="1301" width="0.2" height="15.0" fill="rgb(245,93,16)" rx="2" ry="2" />
<text x="1111.16" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,288 samples, 0.07%)</title><rect x="973.7" y="1205" width="0.8" height="15.0" fill="rgb(241,119,43)" rx="2" ry="2" />
<text x="976.67" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="293" width="0.3" height="15.0" fill="rgb(229,102,11)" rx="2" ry="2" />
<text x="1191.32" y="303.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,910 samples, 0.10%)</title><rect x="346.9" y="1845" width="1.2" height="15.0" fill="rgb(244,194,42)" rx="2" ry="2" />
<text x="349.92" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (402 samples, 0.02%)</title><rect x="57.4" y="1909" width="0.2" height="15.0" fill="rgb(254,37,3)" rx="2" ry="2" />
<text x="60.37" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3524 (2,116 samples, 0.11%)</title><rect x="353.8" y="1925" width="1.4" height="15.0" fill="rgb(235,28,48)" rx="2" ry="2" />
<text x="356.84" y="1935.5" ></text>
</g>
<g >
<title>caml_garbage_collection (380 samples, 0.02%)</title><rect x="824.3" y="1189" width="0.3" height="15.0" fill="rgb(210,170,45)" rx="2" ry="2" />
<text x="827.33" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (969 samples, 0.05%)</title><rect x="995.2" y="1157" width="0.6" height="15.0" fill="rgb(205,160,46)" rx="2" ry="2" />
<text x="998.17" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (188 samples, 0.01%)</title><rect x="990.6" y="1141" width="0.2" height="15.0" fill="rgb(249,105,4)" rx="2" ry="2" />
<text x="993.64" y="1151.5" ></text>
</g>
<g >
<title>camlLayered_bench__entry (790,457 samples, 42.50%)</title><rect x="686.8" y="1925" width="501.5" height="15.0" fill="rgb(227,195,49)" rx="2" ry="2" />
<text x="689.78" y="1935.5" >camlLayered_bench__entry</text>
</g>
<g >
<title>caml_garbage_collection (214 samples, 0.01%)</title><rect x="757.4" y="1317" width="0.1" height="15.0" fill="rgb(205,124,17)" rx="2" ry="2" />
<text x="760.35" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (176 samples, 0.01%)</title><rect x="910.1" y="1253" width="0.1" height="15.0" fill="rgb(253,114,19)" rx="2" ry="2" />
<text x="913.09" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (369 samples, 0.02%)</title><rect x="928.8" y="1317" width="0.2" height="15.0" fill="rgb(210,127,27)" rx="2" ry="2" />
<text x="931.77" y="1327.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,868 samples, 0.10%)</title><rect x="1177.5" y="1253" width="1.1" height="15.0" fill="rgb(228,87,6)" rx="2" ry="2" />
<text x="1180.45" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="613" width="0.5" height="15.0" fill="rgb(236,141,40)" rx="2" ry="2" />
<text x="1192.48" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (2,334 samples, 0.13%)</title><rect x="953.3" y="1221" width="1.5" height="15.0" fill="rgb(240,9,12)" rx="2" ry="2" />
<text x="956.35" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (169 samples, 0.01%)</title><rect x="726.4" y="1333" width="0.1" height="15.0" fill="rgb(227,42,2)" rx="2" ry="2" />
<text x="729.35" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (256 samples, 0.01%)</title><rect x="982.2" y="1141" width="0.2" height="15.0" fill="rgb(228,138,21)" rx="2" ry="2" />
<text x="985.24" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (921 samples, 0.05%)</title><rect x="1013.2" y="1253" width="0.6" height="15.0" fill="rgb(235,42,6)" rx="2" ry="2" />
<text x="1016.20" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (4,257 samples, 0.23%)</title><rect x="729.5" y="1349" width="2.7" height="15.0" fill="rgb(221,95,20)" rx="2" ry="2" />
<text x="732.47" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273 samples, 0.01%)</title><rect x="1110.6" y="1205" width="0.1" height="15.0" fill="rgb(206,18,16)" rx="2" ry="2" />
<text x="1113.56" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (203 samples, 0.01%)</title><rect x="783.3" y="1221" width="0.1" height="15.0" fill="rgb(244,131,40)" rx="2" ry="2" />
<text x="786.29" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (465 samples, 0.03%)</title><rect x="1188.8" y="181" width="0.3" height="15.0" fill="rgb(245,24,53)" rx="2" ry="2" />
<text x="1191.83" y="191.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (428 samples, 0.02%)</title><rect x="1176.8" y="1237" width="0.3" height="15.0" fill="rgb(253,76,46)" rx="2" ry="2" />
<text x="1179.83" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1845" width="0.2" height="15.0" fill="rgb(223,46,7)" rx="2" ry="2" />
<text x="1191.57" y="1855.5" ></text>
</g>
<g >
<title>caml_apply3 (404 samples, 0.02%)</title><rect x="1075.7" y="1397" width="0.3" height="15.0" fill="rgb(226,16,18)" rx="2" ry="2" />
<text x="1078.73" y="1407.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,685 samples, 0.09%)</title><rect x="295.5" y="1813" width="1.1" height="15.0" fill="rgb(244,144,23)" rx="2" ry="2" />
<text x="298.52" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (887 samples, 0.05%)</title><rect x="1115.7" y="1381" width="0.6" height="15.0" fill="rgb(252,96,7)" rx="2" ry="2" />
<text x="1118.73" y="1391.5" ></text>
</g>
<g >
<title>caml_string_compare (865 samples, 0.05%)</title><rect x="805.5" y="1285" width="0.5" height="15.0" fill="rgb(208,166,40)" rx="2" ry="2" />
<text x="808.46" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_1173 (948 samples, 0.05%)</title><rect x="1095.0" y="1509" width="0.6" height="15.0" fill="rgb(210,221,47)" rx="2" ry="2" />
<text x="1098.02" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (387 samples, 0.02%)</title><rect x="1180.3" y="1285" width="0.3" height="15.0" fill="rgb(241,178,28)" rx="2" ry="2" />
<text x="1183.34" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (251 samples, 0.01%)</title><rect x="754.9" y="1301" width="0.1" height="15.0" fill="rgb(209,99,48)" rx="2" ry="2" />
<text x="757.89" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__inode_6983 (495 samples, 0.03%)</title><rect x="824.3" y="1269" width="0.3" height="15.0" fill="rgb(226,38,30)" rx="2" ry="2" />
<text x="827.27" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,819 samples, 1.55%)</title><rect x="618.0" y="1765" width="18.2" height="15.0" fill="rgb(250,205,39)" rx="2" ry="2" />
<text x="620.96" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (408 samples, 0.02%)</title><rect x="964.6" y="1253" width="0.2" height="15.0" fill="rgb(249,116,9)" rx="2" ry="2" />
<text x="967.58" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_1394 (644 samples, 0.03%)</title><rect x="1114.6" y="1477" width="0.4" height="15.0" fill="rgb(232,51,9)" rx="2" ry="2" />
<text x="1117.61" y="1487.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,053 samples, 0.11%)</title><rect x="137.2" y="1861" width="1.3" height="15.0" fill="rgb(249,67,29)" rx="2" ry="2" />
<text x="140.20" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12281 (18,137 samples, 0.98%)</title><rect x="1115.2" y="1525" width="11.5" height="15.0" fill="rgb(229,133,11)" rx="2" ry="2" />
<text x="1118.18" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4794 (382 samples, 0.02%)</title><rect x="1188.8" y="149" width="0.3" height="15.0" fill="rgb(246,9,42)" rx="2" ry="2" />
<text x="1191.83" y="159.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (3,082 samples, 0.17%)</title><rect x="590.3" y="1861" width="1.9" height="15.0" fill="rgb(219,179,6)" rx="2" ry="2" />
<text x="593.26" y="1871.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (12,308 samples, 0.66%)</title><rect x="815.0" y="1461" width="7.8" height="15.0" fill="rgb(235,113,41)" rx="2" ry="2" />
<text x="817.96" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (5,544 samples, 0.30%)</title><rect x="807.2" y="1509" width="3.6" height="15.0" fill="rgb(241,226,14)" rx="2" ry="2" />
<text x="810.24" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1941" width="0.3" height="15.0" fill="rgb(242,217,46)" rx="2" ry="2" />
<text x="1191.32" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (3,000 samples, 0.16%)</title><rect x="732.8" y="1381" width="1.9" height="15.0" fill="rgb(217,189,39)" rx="2" ry="2" />
<text x="735.78" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,477 samples, 0.19%)</title><rect x="825.0" y="1237" width="2.2" height="15.0" fill="rgb(228,195,44)" rx="2" ry="2" />
<text x="827.96" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12101 (625 samples, 0.03%)</title><rect x="1114.6" y="1461" width="0.4" height="15.0" fill="rgb(219,43,50)" rx="2" ry="2" />
<text x="1117.61" y="1471.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (206 samples, 0.01%)</title><rect x="1186.7" y="1237" width="0.1" height="15.0" fill="rgb(241,209,41)" rx="2" ry="2" />
<text x="1189.71" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (168 samples, 0.01%)</title><rect x="689.5" y="117" width="0.1" height="15.0" fill="rgb(218,141,50)" rx="2" ry="2" />
<text x="692.49" y="127.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (240 samples, 0.01%)</title><rect x="718.4" y="1349" width="0.1" height="15.0" fill="rgb(222,12,27)" rx="2" ry="2" />
<text x="721.39" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="373" width="0.3" height="15.0" fill="rgb(219,122,21)" rx="2" ry="2" />
<text x="1192.12" y="383.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="661" width="0.5" height="15.0" fill="rgb(239,88,29)" rx="2" ry="2" />
<text x="1192.48" y="671.5" ></text>
</g>
<g >
<title>camlIrmin__Node__fun_7322 (454 samples, 0.02%)</title><rect x="806.3" y="1477" width="0.3" height="15.0" fill="rgb(226,75,38)" rx="2" ry="2" />
<text x="809.27" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="437" width="0.3" height="15.0" fill="rgb(218,155,35)" rx="2" ry="2" />
<text x="1191.32" y="447.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,804 samples, 0.20%)</title><rect x="1137.0" y="1333" width="2.4" height="15.0" fill="rgb(245,71,4)" rx="2" ry="2" />
<text x="1140.03" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (1,473 samples, 0.08%)</title><rect x="953.4" y="1189" width="1.0" height="15.0" fill="rgb(250,142,4)" rx="2" ry="2" />
<text x="956.44" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1589" width="0.3" height="15.0" fill="rgb(246,218,13)" rx="2" ry="2" />
<text x="1192.12" y="1599.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_24599 (46,213 samples, 2.48%)</title><rect x="686.8" y="1781" width="29.3" height="15.0" fill="rgb(246,215,42)" rx="2" ry="2" />
<text x="689.78" y="1791.5" >ca..</text>
</g>
<g >
<title>caml_tuplify2 (4,015 samples, 0.22%)</title><rect x="173.2" y="1893" width="2.6" height="15.0" fill="rgb(221,118,39)" rx="2" ry="2" />
<text x="176.21" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (1,872 samples, 0.10%)</title><rect x="872.4" y="1189" width="1.2" height="15.0" fill="rgb(235,64,44)" rx="2" ry="2" />
<text x="875.38" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (521 samples, 0.03%)</title><rect x="1012.4" y="1285" width="0.4" height="15.0" fill="rgb(234,222,24)" rx="2" ry="2" />
<text x="1015.44" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,333 samples, 0.13%)</title><rect x="1108.8" y="1349" width="1.5" height="15.0" fill="rgb(237,117,53)" rx="2" ry="2" />
<text x="1111.81" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (320 samples, 0.02%)</title><rect x="770.5" y="1205" width="0.2" height="15.0" fill="rgb(245,151,45)" rx="2" ry="2" />
<text x="773.49" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (299 samples, 0.02%)</title><rect x="674.0" y="1813" width="0.2" height="15.0" fill="rgb(232,174,41)" rx="2" ry="2" />
<text x="676.97" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (580 samples, 0.03%)</title><rect x="702.3" y="1381" width="0.4" height="15.0" fill="rgb(243,55,26)" rx="2" ry="2" />
<text x="705.30" y="1391.5" ></text>
</g>
<g >
<title>unix_lseek_64 (211 samples, 0.01%)</title><rect x="830.2" y="1317" width="0.1" height="15.0" fill="rgb(230,227,39)" rx="2" ry="2" />
<text x="833.21" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (7,893 samples, 0.42%)</title><rect x="902.6" y="1397" width="5.0" height="15.0" fill="rgb(253,190,5)" rx="2" ry="2" />
<text x="905.61" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (208 samples, 0.01%)</title><rect x="904.3" y="1269" width="0.1" height="15.0" fill="rgb(243,156,0)" rx="2" ry="2" />
<text x="907.27" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1621" width="0.5" height="15.0" fill="rgb(230,196,14)" rx="2" ry="2" />
<text x="1192.48" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (543 samples, 0.03%)</title><rect x="761.2" y="1237" width="0.3" height="15.0" fill="rgb(225,170,42)" rx="2" ry="2" />
<text x="764.20" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (269 samples, 0.01%)</title><rect x="989.5" y="1173" width="0.1" height="15.0" fill="rgb(251,149,27)" rx="2" ry="2" />
<text x="992.46" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (4,051 samples, 0.22%)</title><rect x="950.7" y="1237" width="2.6" height="15.0" fill="rgb(216,131,13)" rx="2" ry="2" />
<text x="953.75" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (463 samples, 0.02%)</title><rect x="922.1" y="1253" width="0.3" height="15.0" fill="rgb(247,81,38)" rx="2" ry="2" />
<text x="925.08" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (754 samples, 0.04%)</title><rect x="675.1" y="1813" width="0.4" height="15.0" fill="rgb(232,173,32)" rx="2" ry="2" />
<text x="678.06" y="1823.5" ></text>
</g>
<g >
<title>caml_string_compare (901 samples, 0.05%)</title><rect x="1013.2" y="1237" width="0.6" height="15.0" fill="rgb(252,164,18)" rx="2" ry="2" />
<text x="1016.22" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (232 samples, 0.01%)</title><rect x="689.5" y="405" width="0.1" height="15.0" fill="rgb(247,228,23)" rx="2" ry="2" />
<text x="692.47" y="415.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,266 samples, 0.07%)</title><rect x="719.6" y="1429" width="0.8" height="15.0" fill="rgb(220,16,30)" rx="2" ry="2" />
<text x="722.60" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_5536 (40,716 samples, 2.19%)</title><rect x="689.8" y="1573" width="25.9" height="15.0" fill="rgb(228,196,10)" rx="2" ry="2" />
<text x="692.82" y="1583.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (186 samples, 0.01%)</title><rect x="1141.9" y="1349" width="0.1" height="15.0" fill="rgb(217,90,54)" rx="2" ry="2" />
<text x="1144.87" y="1359.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (4,387 samples, 0.24%)</title><rect x="1136.9" y="1349" width="2.8" height="15.0" fill="rgb(241,75,19)" rx="2" ry="2" />
<text x="1139.91" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (204 samples, 0.01%)</title><rect x="57.5" y="1845" width="0.1" height="15.0" fill="rgb(211,170,13)" rx="2" ry="2" />
<text x="60.49" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (332 samples, 0.02%)</title><rect x="986.0" y="1157" width="0.2" height="15.0" fill="rgb(230,199,8)" rx="2" ry="2" />
<text x="989.03" y="1167.5" ></text>
</g>
<g >
<title>camlThread__fun_2004 (989,826 samples, 53.22%)</title><rect x="57.7" y="1989" width="627.9" height="15.0" fill="rgb(229,31,32)" rx="2" ry="2" />
<text x="60.66" y="1999.5" >camlThread__fun_2004</text>
</g>
<g >
<title>caml_pread (179 samples, 0.01%)</title><rect x="1182.6" y="1205" width="0.1" height="15.0" fill="rgb(244,29,41)" rx="2" ry="2" />
<text x="1185.59" y="1215.5" ></text>
</g>
<g >
<title>caml_compare (668 samples, 0.04%)</title><rect x="791.3" y="1253" width="0.4" height="15.0" fill="rgb(211,121,1)" rx="2" ry="2" />
<text x="794.32" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (1,574 samples, 0.08%)</title><rect x="953.4" y="1205" width="1.0" height="15.0" fill="rgb(211,63,43)" rx="2" ry="2" />
<text x="956.39" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="773" width="0.3" height="15.0" fill="rgb(224,106,41)" rx="2" ry="2" />
<text x="1191.82" y="783.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (429 samples, 0.02%)</title><rect x="1189.1" y="149" width="0.3" height="15.0" fill="rgb(226,2,51)" rx="2" ry="2" />
<text x="1192.14" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (280 samples, 0.02%)</title><rect x="698.1" y="1333" width="0.2" height="15.0" fill="rgb(248,122,14)" rx="2" ry="2" />
<text x="701.08" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (410 samples, 0.02%)</title><rect x="689.4" y="1125" width="0.2" height="15.0" fill="rgb(238,88,3)" rx="2" ry="2" />
<text x="692.37" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (179 samples, 0.01%)</title><rect x="879.1" y="1205" width="0.1" height="15.0" fill="rgb(225,185,2)" rx="2" ry="2" />
<text x="882.07" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1749" width="0.3" height="15.0" fill="rgb(227,161,37)" rx="2" ry="2" />
<text x="1192.12" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="581" width="0.5" height="15.0" fill="rgb(210,176,33)" rx="2" ry="2" />
<text x="1192.48" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (481 samples, 0.03%)</title><rect x="782.7" y="1205" width="0.3" height="15.0" fill="rgb(207,197,39)" rx="2" ry="2" />
<text x="785.70" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (3,685 samples, 0.20%)</title><rect x="742.4" y="1285" width="2.3" height="15.0" fill="rgb(209,197,48)" rx="2" ry="2" />
<text x="745.38" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218 samples, 0.01%)</title><rect x="906.5" y="1189" width="0.2" height="15.0" fill="rgb(230,29,35)" rx="2" ry="2" />
<text x="909.52" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (202 samples, 0.01%)</title><rect x="338.6" y="1749" width="0.1" height="15.0" fill="rgb(252,76,3)" rx="2" ry="2" />
<text x="341.62" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,536 samples, 0.08%)</title><rect x="1118.2" y="1413" width="1.0" height="15.0" fill="rgb(212,173,18)" rx="2" ry="2" />
<text x="1121.22" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (340 samples, 0.02%)</title><rect x="1110.5" y="1253" width="0.2" height="15.0" fill="rgb(249,22,44)" rx="2" ry="2" />
<text x="1113.52" y="1263.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (333 samples, 0.02%)</title><rect x="1022.6" y="1317" width="0.2" height="15.0" fill="rgb(248,47,18)" rx="2" ry="2" />
<text x="1025.60" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,429 samples, 0.08%)</title><rect x="838.8" y="1237" width="0.9" height="15.0" fill="rgb(234,202,12)" rx="2" ry="2" />
<text x="841.76" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (627 samples, 0.03%)</title><rect x="881.4" y="1157" width="0.4" height="15.0" fill="rgb(225,204,20)" rx="2" ry="2" />
<text x="884.42" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (654 samples, 0.04%)</title><rect x="20.6" y="2005" width="0.4" height="15.0" fill="rgb(241,197,19)" rx="2" ry="2" />
<text x="23.61" y="2015.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_update (424 samples, 0.02%)</title><rect x="690.6" y="1397" width="0.3" height="15.0" fill="rgb(212,150,26)" rx="2" ry="2" />
<text x="693.59" y="1407.5" ></text>
</g>
<g >
<title>caml_pread (226 samples, 0.01%)</title><rect x="1171.7" y="1205" width="0.2" height="15.0" fill="rgb(215,64,19)" rx="2" ry="2" />
<text x="1174.72" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (273 samples, 0.01%)</title><rect x="820.5" y="1285" width="0.2" height="15.0" fill="rgb(226,59,1)" rx="2" ry="2" />
<text x="823.54" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (3,973 samples, 0.21%)</title><rect x="1180.6" y="1285" width="2.5" height="15.0" fill="rgb(215,70,49)" rx="2" ry="2" />
<text x="1183.59" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217 samples, 0.01%)</title><rect x="724.1" y="1205" width="0.1" height="15.0" fill="rgb(205,124,40)" rx="2" ry="2" />
<text x="727.07" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (260 samples, 0.01%)</title><rect x="816.9" y="1413" width="0.2" height="15.0" fill="rgb(245,63,17)" rx="2" ry="2" />
<text x="819.89" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (408 samples, 0.02%)</title><rect x="689.4" y="1077" width="0.2" height="15.0" fill="rgb(252,73,27)" rx="2" ry="2" />
<text x="692.37" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_1328 (352 samples, 0.02%)</title><rect x="440.6" y="1893" width="0.2" height="15.0" fill="rgb(234,30,9)" rx="2" ry="2" />
<text x="443.61" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (242 samples, 0.01%)</title><rect x="751.7" y="1253" width="0.2" height="15.0" fill="rgb(237,43,13)" rx="2" ry="2" />
<text x="754.71" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (231 samples, 0.01%)</title><rect x="845.4" y="1285" width="0.1" height="15.0" fill="rgb(248,6,23)" rx="2" ry="2" />
<text x="848.39" y="1295.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (530 samples, 0.03%)</title><rect x="113.2" y="1845" width="0.3" height="15.0" fill="rgb(221,130,47)" rx="2" ry="2" />
<text x="116.18" y="1855.5" ></text>
</g>
<g >
<title>caml_call_gc (312 samples, 0.02%)</title><rect x="672.1" y="1845" width="0.2" height="15.0" fill="rgb(211,224,19)" rx="2" ry="2" />
<text x="675.10" y="1855.5" ></text>
</g>
<g >
<title>__GI___select (1,101 samples, 0.06%)</title><rect x="685.8" y="2005" width="0.7" height="15.0" fill="rgb(222,192,17)" rx="2" ry="2" />
<text x="688.76" y="2015.5" ></text>
</g>
<g >
<title>caml_apply2 (252 samples, 0.01%)</title><rect x="1000.5" y="1221" width="0.1" height="15.0" fill="rgb(218,225,25)" rx="2" ry="2" />
<text x="1003.48" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (867 samples, 0.05%)</title><rect x="704.7" y="1285" width="0.6" height="15.0" fill="rgb(237,28,16)" rx="2" ry="2" />
<text x="707.73" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (1,117 samples, 0.06%)</title><rect x="744.0" y="1269" width="0.7" height="15.0" fill="rgb(219,12,9)" rx="2" ry="2" />
<text x="746.99" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (284 samples, 0.02%)</title><rect x="952.8" y="1141" width="0.2" height="15.0" fill="rgb(240,149,27)" rx="2" ry="2" />
<text x="955.81" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (727 samples, 0.04%)</title><rect x="989.8" y="1157" width="0.4" height="15.0" fill="rgb(248,197,5)" rx="2" ry="2" />
<text x="992.75" y="1167.5" ></text>
</g>
<g >
<title>caml_hash (988 samples, 0.05%)</title><rect x="883.2" y="1189" width="0.6" height="15.0" fill="rgb(237,226,31)" rx="2" ry="2" />
<text x="886.18" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="901" width="0.3" height="15.0" fill="rgb(221,123,37)" rx="2" ry="2" />
<text x="1191.82" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (244 samples, 0.01%)</title><rect x="700.5" y="1461" width="0.1" height="15.0" fill="rgb(219,33,46)" rx="2" ry="2" />
<text x="703.49" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (1,039 samples, 0.06%)</title><rect x="978.4" y="1141" width="0.6" height="15.0" fill="rgb(242,160,21)" rx="2" ry="2" />
<text x="981.36" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (382 samples, 0.02%)</title><rect x="808.6" y="1397" width="0.3" height="15.0" fill="rgb(249,75,24)" rx="2" ry="2" />
<text x="811.62" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15246 (170 samples, 0.01%)</title><rect x="1164.9" y="1413" width="0.1" height="15.0" fill="rgb(249,96,14)" rx="2" ry="2" />
<text x="1167.89" y="1423.5" ></text>
</g>
<g >
<title>caml_string_compare (476 samples, 0.03%)</title><rect x="802.9" y="1349" width="0.3" height="15.0" fill="rgb(216,7,33)" rx="2" ry="2" />
<text x="805.87" y="1359.5" ></text>
</g>
<g >
<title>caml_string_length (170 samples, 0.01%)</title><rect x="933.8" y="1269" width="0.1" height="15.0" fill="rgb(220,85,5)" rx="2" ry="2" />
<text x="936.82" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (365 samples, 0.02%)</title><rect x="689.4" y="917" width="0.2" height="15.0" fill="rgb(207,86,27)" rx="2" ry="2" />
<text x="692.39" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (232 samples, 0.01%)</title><rect x="996.4" y="1173" width="0.1" height="15.0" fill="rgb(232,15,51)" rx="2" ry="2" />
<text x="999.37" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (10,503 samples, 0.56%)</title><rect x="895.0" y="1445" width="6.7" height="15.0" fill="rgb(251,57,51)" rx="2" ry="2" />
<text x="897.99" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_to_current_3807 (98,443 samples, 5.29%)</title><rect x="1101.1" y="1589" width="62.5" height="15.0" fill="rgb(209,158,37)" rx="2" ry="2" />
<text x="1104.12" y="1599.5" >camlIr..</text>
</g>
<g >
<title>caml_call_gc (171 samples, 0.01%)</title><rect x="776.8" y="1173" width="0.2" height="15.0" fill="rgb(216,15,0)" rx="2" ry="2" />
<text x="779.85" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (179 samples, 0.01%)</title><rect x="909.1" y="1349" width="0.2" height="15.0" fill="rgb(244,149,52)" rx="2" ry="2" />
<text x="912.14" y="1359.5" ></text>
</g>
<g >
<title>camlUnix__read_1394 (162 samples, 0.01%)</title><rect x="858.3" y="1285" width="0.1" height="15.0" fill="rgb(228,82,16)" rx="2" ry="2" />
<text x="861.28" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (499 samples, 0.03%)</title><rect x="745.7" y="1221" width="0.3" height="15.0" fill="rgb(250,114,7)" rx="2" ry="2" />
<text x="748.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11827 (177 samples, 0.01%)</title><rect x="690.1" y="1525" width="0.1" height="15.0" fill="rgb(208,99,10)" rx="2" ry="2" />
<text x="693.09" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (183 samples, 0.01%)</title><rect x="705.8" y="1397" width="0.1" height="15.0" fill="rgb(235,59,35)" rx="2" ry="2" />
<text x="708.80" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (51,638 samples, 2.78%)</title><rect x="275.9" y="1909" width="32.7" height="15.0" fill="rgb(241,178,23)" rx="2" ry="2" />
<text x="278.85" y="1919.5" >ca..</text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,360 samples, 0.07%)</title><rect x="953.5" y="1173" width="0.8" height="15.0" fill="rgb(210,12,36)" rx="2" ry="2" />
<text x="956.45" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (182 samples, 0.01%)</title><rect x="789.5" y="1253" width="0.1" height="15.0" fill="rgb(220,78,32)" rx="2" ry="2" />
<text x="792.50" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (9,828 samples, 0.53%)</title><rect x="823.8" y="1365" width="6.2" height="15.0" fill="rgb(230,79,51)" rx="2" ry="2" />
<text x="826.75" y="1375.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (2,123 samples, 0.11%)</title><rect x="130.7" y="1829" width="1.4" height="15.0" fill="rgb(243,36,22)" rx="2" ry="2" />
<text x="133.72" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (220 samples, 0.01%)</title><rect x="952.9" y="1109" width="0.1" height="15.0" fill="rgb(232,199,42)" rx="2" ry="2" />
<text x="955.85" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (12,388 samples, 0.67%)</title><rect x="934.4" y="1349" width="7.8" height="15.0" fill="rgb(209,229,53)" rx="2" ry="2" />
<text x="937.36" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (1,131 samples, 0.06%)</title><rect x="1013.1" y="1269" width="0.7" height="15.0" fill="rgb(211,97,35)" rx="2" ry="2" />
<text x="1016.10" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (535 samples, 0.03%)</title><rect x="818.9" y="1285" width="0.3" height="15.0" fill="rgb(245,124,12)" rx="2" ry="2" />
<text x="821.88" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (425 samples, 0.02%)</title><rect x="729.1" y="965" width="0.3" height="15.0" fill="rgb(249,168,28)" rx="2" ry="2" />
<text x="732.14" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,768 samples, 0.20%)</title><rect x="1069.6" y="1285" width="2.4" height="15.0" fill="rgb(239,166,24)" rx="2" ry="2" />
<text x="1072.62" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_1138 (177 samples, 0.01%)</title><rect x="1095.7" y="1509" width="0.1" height="15.0" fill="rgb(217,84,19)" rx="2" ry="2" />
<text x="1098.68" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (220 samples, 0.01%)</title><rect x="1088.8" y="1397" width="0.1" height="15.0" fill="rgb(235,164,21)" rx="2" ry="2" />
<text x="1091.80" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (221 samples, 0.01%)</title><rect x="909.5" y="1333" width="0.1" height="15.0" fill="rgb(221,181,28)" rx="2" ry="2" />
<text x="912.47" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (4,063 samples, 0.22%)</title><rect x="229.1" y="1845" width="2.6" height="15.0" fill="rgb(245,125,24)" rx="2" ry="2" />
<text x="232.09" y="1855.5" ></text>
</g>
<g >
<title>sweep_slice (317 samples, 0.02%)</title><rect x="338.7" y="1781" width="0.2" height="15.0" fill="rgb(246,34,40)" rx="2" ry="2" />
<text x="341.75" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (297 samples, 0.02%)</title><rect x="1156.2" y="1253" width="0.2" height="15.0" fill="rgb(229,61,9)" rx="2" ry="2" />
<text x="1159.23" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (3,257 samples, 0.18%)</title><rect x="774.4" y="1205" width="2.1" height="15.0" fill="rgb(206,5,45)" rx="2" ry="2" />
<text x="777.41" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (354 samples, 0.02%)</title><rect x="1159.1" y="1173" width="0.2" height="15.0" fill="rgb(226,42,30)" rx="2" ry="2" />
<text x="1162.06" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (204 samples, 0.01%)</title><rect x="1178.7" y="1221" width="0.1" height="15.0" fill="rgb(237,166,17)" rx="2" ry="2" />
<text x="1181.67" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (459 samples, 0.02%)</title><rect x="341.7" y="1813" width="0.3" height="15.0" fill="rgb(229,166,5)" rx="2" ry="2" />
<text x="344.71" y="1823.5" ></text>
</g>
<g >
<title>caml_string_compare (178 samples, 0.01%)</title><rect x="725.5" y="1333" width="0.1" height="15.0" fill="rgb(222,65,10)" rx="2" ry="2" />
<text x="728.48" y="1343.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (601 samples, 0.03%)</title><rect x="971.5" y="1221" width="0.3" height="15.0" fill="rgb(242,168,16)" rx="2" ry="2" />
<text x="974.46" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__hash_3379 (304 samples, 0.02%)</title><rect x="1090.5" y="1429" width="0.2" height="15.0" fill="rgb(233,101,0)" rx="2" ry="2" />
<text x="1093.50" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (91,294 samples, 4.91%)</title><rect x="834.9" y="1349" width="57.9" height="15.0" fill="rgb(229,169,6)" rx="2" ry="2" />
<text x="837.91" y="1359.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (301 samples, 0.02%)</title><rect x="991.6" y="1173" width="0.2" height="15.0" fill="rgb(247,23,5)" rx="2" ry="2" />
<text x="994.61" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1717" width="0.3" height="15.0" fill="rgb(209,122,54)" rx="2" ry="2" />
<text x="1192.12" y="1727.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (342 samples, 0.02%)</title><rect x="821.6" y="1317" width="0.3" height="15.0" fill="rgb(217,125,18)" rx="2" ry="2" />
<text x="824.65" y="1327.5" ></text>
</g>
<g >
<title>__GI___ctype_init (3,130 samples, 0.17%)</title><rect x="51.5" y="2021" width="2.0" height="15.0" fill="rgb(236,224,2)" rx="2" ry="2" />
<text x="54.53" y="2031.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (2,115 samples, 0.11%)</title><rect x="56.3" y="1941" width="1.4" height="15.0" fill="rgb(210,184,6)" rx="2" ry="2" />
<text x="59.31" y="1951.5" ></text>
</g>
<g >
<title>mark_slice_darken (424 samples, 0.02%)</title><rect x="872.0" y="1093" width="0.3" height="15.0" fill="rgb(251,186,47)" rx="2" ry="2" />
<text x="875.01" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (514 samples, 0.03%)</title><rect x="937.2" y="933" width="0.4" height="15.0" fill="rgb(232,87,8)" rx="2" ry="2" />
<text x="940.24" y="943.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (205 samples, 0.01%)</title><rect x="993.3" y="1109" width="0.1" height="15.0" fill="rgb(249,167,6)" rx="2" ry="2" />
<text x="996.28" y="1119.5" ></text>
</g>
<g >
<title>caml_pread (1,367 samples, 0.07%)</title><rect x="31.3" y="2037" width="0.9" height="15.0" fill="rgb(228,102,16)" rx="2" ry="2" />
<text x="34.28" y="2047.5" ></text>
</g>
<g >
<title>caml_string_compare (185 samples, 0.01%)</title><rect x="804.9" y="1301" width="0.1" height="15.0" fill="rgb(222,121,43)" rx="2" ry="2" />
<text x="807.89" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (366 samples, 0.02%)</title><rect x="708.6" y="1461" width="0.2" height="15.0" fill="rgb(226,155,10)" rx="2" ry="2" />
<text x="711.58" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (179 samples, 0.01%)</title><rect x="1104.2" y="1397" width="0.1" height="15.0" fill="rgb(242,95,45)" rx="2" ry="2" />
<text x="1107.16" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (352 samples, 0.02%)</title><rect x="707.0" y="1365" width="0.2" height="15.0" fill="rgb(221,81,37)" rx="2" ry="2" />
<text x="709.98" y="1375.5" ></text>
</g>
<g >
<title>caml_pread (2,047 samples, 0.11%)</title><rect x="789.8" y="1221" width="1.3" height="15.0" fill="rgb(232,98,27)" rx="2" ry="2" />
<text x="792.81" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="581" width="0.3" height="15.0" fill="rgb(232,226,17)" rx="2" ry="2" />
<text x="1191.32" y="591.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (463 samples, 0.02%)</title><rect x="1031.4" y="1317" width="0.3" height="15.0" fill="rgb(216,92,49)" rx="2" ry="2" />
<text x="1034.44" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (220 samples, 0.01%)</title><rect x="1136.3" y="1333" width="0.1" height="15.0" fill="rgb(228,133,14)" rx="2" ry="2" />
<text x="1139.27" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (181 samples, 0.01%)</title><rect x="774.1" y="1141" width="0.1" height="15.0" fill="rgb(235,177,39)" rx="2" ry="2" />
<text x="777.12" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (416 samples, 0.02%)</title><rect x="700.0" y="1445" width="0.3" height="15.0" fill="rgb(229,0,41)" rx="2" ry="2" />
<text x="703.02" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (161 samples, 0.01%)</title><rect x="723.9" y="1349" width="0.1" height="15.0" fill="rgb(217,1,21)" rx="2" ry="2" />
<text x="726.91" y="1359.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (4,169 samples, 0.22%)</title><rect x="471.0" y="1877" width="2.6" height="15.0" fill="rgb(228,1,27)" rx="2" ry="2" />
<text x="473.97" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (196 samples, 0.01%)</title><rect x="1004.5" y="1253" width="0.1" height="15.0" fill="rgb(254,167,11)" rx="2" ry="2" />
<text x="1007.48" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1573" width="0.3" height="15.0" fill="rgb(235,134,54)" rx="2" ry="2" />
<text x="1192.12" y="1583.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (610 samples, 0.03%)</title><rect x="686.9" y="1669" width="0.4" height="15.0" fill="rgb(224,21,5)" rx="2" ry="2" />
<text x="689.92" y="1679.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (591 samples, 0.03%)</title><rect x="704.9" y="1173" width="0.4" height="15.0" fill="rgb(253,27,18)" rx="2" ry="2" />
<text x="707.90" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (1,609 samples, 0.09%)</title><rect x="805.0" y="1333" width="1.0" height="15.0" fill="rgb(230,159,30)" rx="2" ry="2" />
<text x="808.03" y="1343.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,026 samples, 0.06%)</title><rect x="817.3" y="1349" width="0.7" height="15.0" fill="rgb(222,89,18)" rx="2" ry="2" />
<text x="820.33" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (1,492 samples, 0.08%)</title><rect x="255.1" y="1877" width="0.9" height="15.0" fill="rgb(231,171,32)" rx="2" ry="2" />
<text x="258.09" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (4,917 samples, 0.26%)</title><rect x="702.2" y="1477" width="3.1" height="15.0" fill="rgb(250,121,28)" rx="2" ry="2" />
<text x="705.16" y="1487.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (162 samples, 0.01%)</title><rect x="1164.9" y="1397" width="0.1" height="15.0" fill="rgb(206,45,39)" rx="2" ry="2" />
<text x="1167.89" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,660 samples, 0.09%)</title><rect x="1180.8" y="1237" width="1.1" height="15.0" fill="rgb(244,26,31)" rx="2" ry="2" />
<text x="1183.82" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (3,613 samples, 0.19%)</title><rect x="243.6" y="1893" width="2.3" height="15.0" fill="rgb(231,8,12)" rx="2" ry="2" />
<text x="246.63" y="1903.5" ></text>
</g>
<g >
<title>caml_blit_bytes (182 samples, 0.01%)</title><rect x="978.6" y="1109" width="0.1" height="15.0" fill="rgb(225,87,6)" rx="2" ry="2" />
<text x="981.63" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (338 samples, 0.02%)</title><rect x="1144.9" y="1381" width="0.2" height="15.0" fill="rgb(230,176,32)" rx="2" ry="2" />
<text x="1147.90" y="1391.5" ></text>
</g>
<g >
<title>caml_string_length (235 samples, 0.01%)</title><rect x="1009.3" y="1317" width="0.2" height="15.0" fill="rgb(219,225,11)" rx="2" ry="2" />
<text x="1012.31" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288 samples, 0.02%)</title><rect x="1124.8" y="1221" width="0.1" height="15.0" fill="rgb(235,108,9)" rx="2" ry="2" />
<text x="1127.76" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1589" width="0.5" height="15.0" fill="rgb(235,84,8)" rx="2" ry="2" />
<text x="1192.48" y="1599.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (659 samples, 0.04%)</title><rect x="831.3" y="1285" width="0.5" height="15.0" fill="rgb(247,164,10)" rx="2" ry="2" />
<text x="834.33" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (167 samples, 0.01%)</title><rect x="827.8" y="1301" width="0.1" height="15.0" fill="rgb(215,198,19)" rx="2" ry="2" />
<text x="830.83" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (274 samples, 0.01%)</title><rect x="668.2" y="1733" width="0.2" height="15.0" fill="rgb(233,10,8)" rx="2" ry="2" />
<text x="671.23" y="1743.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1765" width="0.3" height="15.0" fill="rgb(206,88,2)" rx="2" ry="2" />
<text x="1192.12" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (198 samples, 0.01%)</title><rect x="821.7" y="1189" width="0.1" height="15.0" fill="rgb(235,193,29)" rx="2" ry="2" />
<text x="824.72" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (716 samples, 0.04%)</title><rect x="1176.1" y="1157" width="0.5" height="15.0" fill="rgb(233,192,29)" rx="2" ry="2" />
<text x="1179.13" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (166 samples, 0.01%)</title><rect x="1143.6" y="1333" width="0.2" height="15.0" fill="rgb(244,55,21)" rx="2" ry="2" />
<text x="1146.65" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (319 samples, 0.02%)</title><rect x="1134.9" y="1397" width="0.2" height="15.0" fill="rgb(210,178,52)" rx="2" ry="2" />
<text x="1137.94" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1707 (233 samples, 0.01%)</title><rect x="666.5" y="1877" width="0.1" height="15.0" fill="rgb(208,110,20)" rx="2" ry="2" />
<text x="669.46" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,243 samples, 0.44%)</title><rect x="1128.0" y="1365" width="5.3" height="15.0" fill="rgb(247,138,10)" rx="2" ry="2" />
<text x="1131.04" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (248 samples, 0.01%)</title><rect x="689.5" y="437" width="0.1" height="15.0" fill="rgb(212,205,47)" rx="2" ry="2" />
<text x="692.46" y="447.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (9,973 samples, 0.54%)</title><rect x="1119.4" y="1397" width="6.3" height="15.0" fill="rgb(239,57,5)" rx="2" ry="2" />
<text x="1122.35" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (445 samples, 0.02%)</title><rect x="689.4" y="1285" width="0.2" height="15.0" fill="rgb(243,32,2)" rx="2" ry="2" />
<text x="692.35" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (249 samples, 0.01%)</title><rect x="710.8" y="1301" width="0.2" height="15.0" fill="rgb(227,76,37)" rx="2" ry="2" />
<text x="713.81" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1413" width="0.5" height="15.0" fill="rgb(233,104,40)" rx="2" ry="2" />
<text x="1192.48" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (4,808 samples, 0.26%)</title><rect x="1176.8" y="1333" width="3.1" height="15.0" fill="rgb(206,41,29)" rx="2" ry="2" />
<text x="1179.82" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (3,818 samples, 0.21%)</title><rect x="985.7" y="1173" width="2.4" height="15.0" fill="rgb(212,63,24)" rx="2" ry="2" />
<text x="988.70" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="869" width="0.5" height="15.0" fill="rgb(229,164,13)" rx="2" ry="2" />
<text x="1192.48" y="879.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1237" width="0.3" height="15.0" fill="rgb(233,204,31)" rx="2" ry="2" />
<text x="1192.12" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (686 samples, 0.04%)</title><rect x="912.0" y="1125" width="0.4" height="15.0" fill="rgb(236,131,8)" rx="2" ry="2" />
<text x="914.95" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,466 samples, 0.08%)</title><rect x="1185.0" y="1189" width="1.0" height="15.0" fill="rgb(234,198,44)" rx="2" ry="2" />
<text x="1188.03" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (1,709 samples, 0.09%)</title><rect x="324.6" y="1829" width="1.1" height="15.0" fill="rgb(231,49,21)" rx="2" ry="2" />
<text x="327.57" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,814 samples, 0.15%)</title><rect x="903.5" y="1301" width="1.8" height="15.0" fill="rgb(211,61,25)" rx="2" ry="2" />
<text x="906.48" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307 samples, 0.02%)</title><rect x="1153.5" y="1253" width="0.2" height="15.0" fill="rgb(249,153,30)" rx="2" ry="2" />
<text x="1156.53" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (297 samples, 0.02%)</title><rect x="824.3" y="1125" width="0.2" height="15.0" fill="rgb(214,68,49)" rx="2" ry="2" />
<text x="827.33" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,083 samples, 0.86%)</title><rect x="644.8" y="1733" width="10.2" height="15.0" fill="rgb(228,175,10)" rx="2" ry="2" />
<text x="647.82" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (178 samples, 0.01%)</title><rect x="952.9" y="1093" width="0.1" height="15.0" fill="rgb(215,213,20)" rx="2" ry="2" />
<text x="955.88" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,370 samples, 0.07%)</title><rect x="913.9" y="1285" width="0.8" height="15.0" fill="rgb(221,105,9)" rx="2" ry="2" />
<text x="916.87" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (181 samples, 0.01%)</title><rect x="1109.6" y="1285" width="0.1" height="15.0" fill="rgb(217,121,8)" rx="2" ry="2" />
<text x="1112.59" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1589" width="0.2" height="15.0" fill="rgb(236,48,18)" rx="2" ry="2" />
<text x="1191.57" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (641 samples, 0.03%)</title><rect x="1134.5" y="1413" width="0.4" height="15.0" fill="rgb(244,108,34)" rx="2" ry="2" />
<text x="1137.48" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1125" width="0.3" height="15.0" fill="rgb(233,108,13)" rx="2" ry="2" />
<text x="1191.32" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1989" width="0.5" height="15.0" fill="rgb(225,89,6)" rx="2" ry="2" />
<text x="1192.48" y="1999.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (168 samples, 0.01%)</title><rect x="960.0" y="1157" width="0.1" height="15.0" fill="rgb(251,220,2)" rx="2" ry="2" />
<text x="963.03" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (261 samples, 0.01%)</title><rect x="1183.6" y="1285" width="0.2" height="15.0" fill="rgb(217,83,42)" rx="2" ry="2" />
<text x="1186.62" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (3,058 samples, 0.16%)</title><rect x="169.0" y="1813" width="2.0" height="15.0" fill="rgb(252,70,42)" rx="2" ry="2" />
<text x="172.04" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (4,351 samples, 0.23%)</title><rect x="857.9" y="1333" width="2.8" height="15.0" fill="rgb(227,134,13)" rx="2" ry="2" />
<text x="860.94" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (351 samples, 0.02%)</title><rect x="1157.5" y="1269" width="0.2" height="15.0" fill="rgb(221,1,3)" rx="2" ry="2" />
<text x="1160.50" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (161 samples, 0.01%)</title><rect x="763.5" y="1301" width="0.1" height="15.0" fill="rgb(247,107,47)" rx="2" ry="2" />
<text x="766.46" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (238 samples, 0.01%)</title><rect x="983.6" y="1061" width="0.1" height="15.0" fill="rgb(246,35,13)" rx="2" ry="2" />
<text x="986.56" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (6,847 samples, 0.37%)</title><rect x="913.0" y="1365" width="4.3" height="15.0" fill="rgb(244,198,47)" rx="2" ry="2" />
<text x="916.00" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1781" width="0.3" height="15.0" fill="rgb(212,83,27)" rx="2" ry="2" />
<text x="1192.12" y="1791.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (320 samples, 0.02%)</title><rect x="986.6" y="1125" width="0.2" height="15.0" fill="rgb(240,223,38)" rx="2" ry="2" />
<text x="989.62" y="1135.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (208 samples, 0.01%)</title><rect x="1097.1" y="1429" width="0.2" height="15.0" fill="rgb(219,134,37)" rx="2" ry="2" />
<text x="1100.15" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (495 samples, 0.03%)</title><rect x="709.3" y="1413" width="0.3" height="15.0" fill="rgb(212,97,27)" rx="2" ry="2" />
<text x="712.27" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (262 samples, 0.01%)</title><rect x="751.0" y="1237" width="0.1" height="15.0" fill="rgb(208,179,45)" rx="2" ry="2" />
<text x="753.97" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (305 samples, 0.02%)</title><rect x="1139.8" y="1301" width="0.2" height="15.0" fill="rgb(245,207,25)" rx="2" ry="2" />
<text x="1142.81" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (250 samples, 0.01%)</title><rect x="689.5" y="485" width="0.1" height="15.0" fill="rgb(237,26,21)" rx="2" ry="2" />
<text x="692.46" y="495.5" ></text>
</g>
<g >
<title>mark_slice_darken (160 samples, 0.01%)</title><rect x="1113.3" y="1445" width="0.1" height="15.0" fill="rgb(215,102,39)" rx="2" ry="2" />
<text x="1116.28" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (887 samples, 0.05%)</title><rect x="1049.8" y="1333" width="0.5" height="15.0" fill="rgb(247,21,21)" rx="2" ry="2" />
<text x="1052.78" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (192 samples, 0.01%)</title><rect x="990.8" y="1173" width="0.2" height="15.0" fill="rgb(235,113,14)" rx="2" ry="2" />
<text x="993.83" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (788 samples, 0.04%)</title><rect x="1022.4" y="1349" width="0.5" height="15.0" fill="rgb(237,42,6)" rx="2" ry="2" />
<text x="1025.38" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,116 samples, 0.06%)</title><rect x="697.2" y="1397" width="0.7" height="15.0" fill="rgb(213,14,35)" rx="2" ry="2" />
<text x="700.18" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1957" width="0.3" height="15.0" fill="rgb(243,195,33)" rx="2" ry="2" />
<text x="1191.32" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_3677 (13,773 samples, 0.74%)</title><rect x="1126.8" y="1493" width="8.7" height="15.0" fill="rgb(235,9,29)" rx="2" ry="2" />
<text x="1129.79" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (172 samples, 0.01%)</title><rect x="954.5" y="1109" width="0.1" height="15.0" fill="rgb(207,185,24)" rx="2" ry="2" />
<text x="957.53" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,404 samples, 0.13%)</title><rect x="861.4" y="1269" width="1.5" height="15.0" fill="rgb(223,213,45)" rx="2" ry="2" />
<text x="864.42" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="261" width="0.3" height="15.0" fill="rgb(214,128,40)" rx="2" ry="2" />
<text x="1191.82" y="271.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,518 samples, 0.08%)</title><rect x="758.4" y="1317" width="1.0" height="15.0" fill="rgb(226,92,20)" rx="2" ry="2" />
<text x="761.44" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (489 samples, 0.03%)</title><rect x="1034.6" y="1333" width="0.4" height="15.0" fill="rgb(224,224,3)" rx="2" ry="2" />
<text x="1037.65" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (206 samples, 0.01%)</title><rect x="975.3" y="1221" width="0.1" height="15.0" fill="rgb(207,49,11)" rx="2" ry="2" />
<text x="978.31" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (164 samples, 0.01%)</title><rect x="1147.7" y="1397" width="0.1" height="15.0" fill="rgb(230,197,36)" rx="2" ry="2" />
<text x="1150.71" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (272 samples, 0.01%)</title><rect x="1004.7" y="1269" width="0.2" height="15.0" fill="rgb(217,51,33)" rx="2" ry="2" />
<text x="1007.73" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (264 samples, 0.01%)</title><rect x="693.1" y="1381" width="0.2" height="15.0" fill="rgb(222,210,52)" rx="2" ry="2" />
<text x="696.15" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="357" width="0.3" height="15.0" fill="rgb(229,30,41)" rx="2" ry="2" />
<text x="1191.82" y="367.5" ></text>
</g>
<g >
<title>caml_string_length (414 samples, 0.02%)</title><rect x="894.6" y="1397" width="0.3" height="15.0" fill="rgb(251,152,49)" rx="2" ry="2" />
<text x="897.65" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (214 samples, 0.01%)</title><rect x="1179.3" y="1173" width="0.1" height="15.0" fill="rgb(227,218,9)" rx="2" ry="2" />
<text x="1182.27" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570 samples, 0.03%)</title><rect x="859.3" y="1205" width="0.4" height="15.0" fill="rgb(210,97,25)" rx="2" ry="2" />
<text x="862.30" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (250 samples, 0.01%)</title><rect x="817.4" y="1301" width="0.2" height="15.0" fill="rgb(227,17,19)" rx="2" ry="2" />
<text x="820.40" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,841 samples, 0.10%)</title><rect x="954.8" y="1221" width="1.2" height="15.0" fill="rgb(248,154,26)" rx="2" ry="2" />
<text x="957.83" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (690 samples, 0.04%)</title><rect x="1168.0" y="1237" width="0.4" height="15.0" fill="rgb(249,75,46)" rx="2" ry="2" />
<text x="1170.97" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (168 samples, 0.01%)</title><rect x="689.5" y="133" width="0.1" height="15.0" fill="rgb(250,98,43)" rx="2" ry="2" />
<text x="692.49" y="143.5" ></text>
</g>
<g >
<title>caml_call_gc (1,776 samples, 0.10%)</title><rect x="113.1" y="1893" width="1.2" height="15.0" fill="rgb(215,108,5)" rx="2" ry="2" />
<text x="116.13" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15246 (208 samples, 0.01%)</title><rect x="689.1" y="1573" width="0.1" height="15.0" fill="rgb(228,33,20)" rx="2" ry="2" />
<text x="692.08" y="1583.5" ></text>
</g>
<g >
<title>caml_modify (2,949 samples, 0.16%)</title><rect x="680.9" y="1925" width="1.9" height="15.0" fill="rgb(254,196,38)" rx="2" ry="2" />
<text x="683.93" y="1935.5" ></text>
</g>
<g >
<title>sweep_slice (173 samples, 0.01%)</title><rect x="524.4" y="1861" width="0.1" height="15.0" fill="rgb(228,65,24)" rx="2" ry="2" />
<text x="527.44" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__tuple_1329 (227 samples, 0.01%)</title><rect x="440.7" y="1877" width="0.1" height="15.0" fill="rgb(241,106,44)" rx="2" ry="2" />
<text x="443.69" y="1887.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (316 samples, 0.02%)</title><rect x="470.8" y="1877" width="0.2" height="15.0" fill="rgb(220,106,25)" rx="2" ry="2" />
<text x="473.77" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_to_current_3807 (55,482 samples, 2.98%)</title><rect x="1126.7" y="1509" width="35.2" height="15.0" fill="rgb(205,151,38)" rx="2" ry="2" />
<text x="1129.75" y="1519.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (192 samples, 0.01%)</title><rect x="960.6" y="1205" width="0.1" height="15.0" fill="rgb(217,77,32)" rx="2" ry="2" />
<text x="963.61" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (1,477 samples, 0.08%)</title><rect x="1168.6" y="1317" width="0.9" height="15.0" fill="rgb(233,42,19)" rx="2" ry="2" />
<text x="1171.57" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (1,584 samples, 0.09%)</title><rect x="434.8" y="1925" width="1.0" height="15.0" fill="rgb(225,113,43)" rx="2" ry="2" />
<text x="437.80" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (695 samples, 0.04%)</title><rect x="823.1" y="1365" width="0.5" height="15.0" fill="rgb(233,135,20)" rx="2" ry="2" />
<text x="826.14" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (919 samples, 0.05%)</title><rect x="899.7" y="1333" width="0.6" height="15.0" fill="rgb(218,85,21)" rx="2" ry="2" />
<text x="902.70" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (1,828 samples, 0.10%)</title><rect x="776.5" y="1205" width="1.1" height="15.0" fill="rgb(235,26,54)" rx="2" ry="2" />
<text x="779.48" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1253" width="0.5" height="15.0" fill="rgb(222,166,24)" rx="2" ry="2" />
<text x="1192.48" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (428 samples, 0.02%)</title><rect x="689.4" y="1141" width="0.2" height="15.0" fill="rgb(226,112,37)" rx="2" ry="2" />
<text x="692.36" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (251 samples, 0.01%)</title><rect x="677.2" y="1909" width="0.1" height="15.0" fill="rgb(246,77,33)" rx="2" ry="2" />
<text x="680.15" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1375 (236 samples, 0.01%)</title><rect x="1146.7" y="1413" width="0.2" height="15.0" fill="rgb(251,158,21)" rx="2" ry="2" />
<text x="1149.72" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (1,424 samples, 0.08%)</title><rect x="235.3" y="1877" width="0.9" height="15.0" fill="rgb(232,137,20)" rx="2" ry="2" />
<text x="238.32" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (321 samples, 0.02%)</title><rect x="1159.1" y="1157" width="0.2" height="15.0" fill="rgb(231,179,6)" rx="2" ry="2" />
<text x="1162.09" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (44,044 samples, 2.37%)</title><rect x="280.7" y="1893" width="27.9" height="15.0" fill="rgb(207,127,44)" rx="2" ry="2" />
<text x="283.67" y="1903.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (15,194 samples, 0.82%)</title><rect x="844.8" y="1317" width="9.7" height="15.0" fill="rgb(249,0,7)" rx="2" ry="2" />
<text x="847.84" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__mem_3835 (8,054 samples, 0.43%)</title><rect x="709.0" y="1541" width="5.1" height="15.0" fill="rgb(232,131,40)" rx="2" ry="2" />
<text x="712.01" y="1551.5" ></text>
</g>
<g >
<title>caml_apply2 (933 samples, 0.05%)</title><rect x="1066.3" y="1365" width="0.6" height="15.0" fill="rgb(252,19,22)" rx="2" ry="2" />
<text x="1069.26" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,351 samples, 0.07%)</title><rect x="693.9" y="1397" width="0.8" height="15.0" fill="rgb(217,150,19)" rx="2" ry="2" />
<text x="696.86" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (327 samples, 0.02%)</title><rect x="1110.5" y="1237" width="0.2" height="15.0" fill="rgb(222,199,13)" rx="2" ry="2" />
<text x="1113.53" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (1,134 samples, 0.06%)</title><rect x="884.6" y="1253" width="0.7" height="15.0" fill="rgb(243,226,33)" rx="2" ry="2" />
<text x="887.59" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (98,444 samples, 5.29%)</title><rect x="1101.1" y="1637" width="62.5" height="15.0" fill="rgb(231,1,51)" rx="2" ry="2" />
<text x="1104.12" y="1647.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (247 samples, 0.01%)</title><rect x="812.5" y="1461" width="0.1" height="15.0" fill="rgb(217,25,7)" rx="2" ry="2" />
<text x="815.47" y="1471.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (4,354 samples, 0.23%)</title><rect x="1177.1" y="1317" width="2.8" height="15.0" fill="rgb(236,106,33)" rx="2" ry="2" />
<text x="1180.10" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (5,244 samples, 0.28%)</title><rect x="1053.3" y="1365" width="3.3" height="15.0" fill="rgb(230,114,50)" rx="2" ry="2" />
<text x="1056.26" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (620 samples, 0.03%)</title><rect x="954.9" y="1157" width="0.4" height="15.0" fill="rgb(210,35,40)" rx="2" ry="2" />
<text x="957.89" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (247 samples, 0.01%)</title><rect x="1179.3" y="1237" width="0.1" height="15.0" fill="rgb(217,152,6)" rx="2" ry="2" />
<text x="1182.26" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (682 samples, 0.04%)</title><rect x="876.4" y="1205" width="0.5" height="15.0" fill="rgb(250,74,46)" rx="2" ry="2" />
<text x="879.44" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,719 samples, 0.15%)</title><rect x="757.7" y="1333" width="1.7" height="15.0" fill="rgb(246,153,33)" rx="2" ry="2" />
<text x="760.68" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (647 samples, 0.03%)</title><rect x="965.4" y="1269" width="0.4" height="15.0" fill="rgb(226,199,43)" rx="2" ry="2" />
<text x="968.42" y="1279.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (216 samples, 0.01%)</title><rect x="860.3" y="1237" width="0.2" height="15.0" fill="rgb(219,142,14)" rx="2" ry="2" />
<text x="863.35" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (469 samples, 0.03%)</title><rect x="1189.1" y="277" width="0.3" height="15.0" fill="rgb(205,107,3)" rx="2" ry="2" />
<text x="1192.12" y="287.5" ></text>
</g>
<g >
<title>compare_val (585 samples, 0.03%)</title><rect x="887.0" y="1221" width="0.4" height="15.0" fill="rgb(217,170,31)" rx="2" ry="2" />
<text x="890.04" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (208 samples, 0.01%)</title><rect x="689.5" y="277" width="0.1" height="15.0" fill="rgb(219,67,38)" rx="2" ry="2" />
<text x="692.49" y="287.5" ></text>
</g>
<g >
<title>caml_alloc_string (223 samples, 0.01%)</title><rect x="878.3" y="1173" width="0.1" height="15.0" fill="rgb(248,147,11)" rx="2" ry="2" />
<text x="881.28" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,114 samples, 0.06%)</title><rect x="801.8" y="1397" width="0.7" height="15.0" fill="rgb(214,122,15)" rx="2" ry="2" />
<text x="804.76" y="1407.5" ></text>
</g>
<g >
<title>caml_curry5_4 (352 samples, 0.02%)</title><rect x="1099.6" y="1477" width="0.2" height="15.0" fill="rgb(227,171,25)" rx="2" ry="2" />
<text x="1102.61" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (228 samples, 0.01%)</title><rect x="916.5" y="1205" width="0.1" height="15.0" fill="rgb(251,95,28)" rx="2" ry="2" />
<text x="919.48" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_1980 (184 samples, 0.01%)</title><rect x="1149.7" y="1301" width="0.1" height="15.0" fill="rgb(207,100,48)" rx="2" ry="2" />
<text x="1152.66" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1493 (500 samples, 0.03%)</title><rect x="1143.4" y="1349" width="0.4" height="15.0" fill="rgb(212,46,19)" rx="2" ry="2" />
<text x="1146.43" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1813" width="0.5" height="15.0" fill="rgb(217,160,24)" rx="2" ry="2" />
<text x="1192.48" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (4,539 samples, 0.24%)</title><rect x="1180.3" y="1333" width="2.9" height="15.0" fill="rgb(244,95,52)" rx="2" ry="2" />
<text x="1183.30" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1508 (220 samples, 0.01%)</title><rect x="439.1" y="1877" width="0.2" height="15.0" fill="rgb(230,119,51)" rx="2" ry="2" />
<text x="442.13" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="773" width="0.2" height="15.0" fill="rgb(239,188,47)" rx="2" ry="2" />
<text x="1191.57" y="783.5" ></text>
</g>
<g >
<title>mark_slice_darken (397 samples, 0.02%)</title><rect x="432.0" y="1797" width="0.2" height="15.0" fill="rgb(220,112,32)" rx="2" ry="2" />
<text x="434.96" y="1807.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,004 samples, 0.05%)</title><rect x="772.3" y="1157" width="0.6" height="15.0" fill="rgb(244,148,49)" rx="2" ry="2" />
<text x="775.29" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (631 samples, 0.03%)</title><rect x="831.3" y="1269" width="0.4" height="15.0" fill="rgb(242,202,30)" rx="2" ry="2" />
<text x="834.35" y="1279.5" ></text>
</g>
<g >
<title>__errno_location (334 samples, 0.02%)</title><rect x="55.5" y="1989" width="0.2" height="15.0" fill="rgb(216,59,54)" rx="2" ry="2" />
<text x="58.52" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="645" width="0.2" height="15.0" fill="rgb(206,61,9)" rx="2" ry="2" />
<text x="1191.57" y="655.5" ></text>
</g>
<g >
<title>mark_slice_darken (167 samples, 0.01%)</title><rect x="850.2" y="1157" width="0.1" height="15.0" fill="rgb(217,229,31)" rx="2" ry="2" />
<text x="853.21" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (359 samples, 0.02%)</title><rect x="1124.7" y="1253" width="0.2" height="15.0" fill="rgb(225,32,8)" rx="2" ry="2" />
<text x="1127.72" y="1263.5" ></text>
</g>
<g >
<title>caml_string_compare (647 samples, 0.03%)</title><rect x="799.0" y="1429" width="0.4" height="15.0" fill="rgb(250,168,40)" rx="2" ry="2" />
<text x="801.98" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (166 samples, 0.01%)</title><rect x="730.8" y="1285" width="0.1" height="15.0" fill="rgb(221,57,25)" rx="2" ry="2" />
<text x="733.78" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3755 (179 samples, 0.01%)</title><rect x="1059.5" y="1333" width="0.1" height="15.0" fill="rgb(253,30,9)" rx="2" ry="2" />
<text x="1062.46" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (8,335 samples, 0.45%)</title><rect x="1154.7" y="1349" width="5.3" height="15.0" fill="rgb(227,224,53)" rx="2" ry="2" />
<text x="1157.74" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (5,671 samples, 0.30%)</title><rect x="1010.2" y="1349" width="3.6" height="15.0" fill="rgb(253,41,29)" rx="2" ry="2" />
<text x="1013.25" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (446 samples, 0.02%)</title><rect x="1110.5" y="1333" width="0.2" height="15.0" fill="rgb(222,150,52)" rx="2" ry="2" />
<text x="1113.46" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1557" width="0.3" height="15.0" fill="rgb(220,109,53)" rx="2" ry="2" />
<text x="1192.12" y="1567.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (168 samples, 0.01%)</title><rect x="660.8" y="1909" width="0.1" height="15.0" fill="rgb(221,199,16)" rx="2" ry="2" />
<text x="663.76" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (470 samples, 0.03%)</title><rect x="922.1" y="1269" width="0.3" height="15.0" fill="rgb(237,198,11)" rx="2" ry="2" />
<text x="925.08" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (400 samples, 0.02%)</title><rect x="1110.5" y="1269" width="0.2" height="15.0" fill="rgb(227,114,23)" rx="2" ry="2" />
<text x="1113.48" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (573 samples, 0.03%)</title><rect x="1136.1" y="1365" width="0.4" height="15.0" fill="rgb(244,189,11)" rx="2" ry="2" />
<text x="1139.10" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (184 samples, 0.01%)</title><rect x="1113.3" y="1477" width="0.1" height="15.0" fill="rgb(239,162,47)" rx="2" ry="2" />
<text x="1116.26" y="1487.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (336 samples, 0.02%)</title><rect x="1091.4" y="1381" width="0.2" height="15.0" fill="rgb(213,26,24)" rx="2" ry="2" />
<text x="1094.39" y="1391.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,493 samples, 0.08%)</title><rect x="1118.2" y="1381" width="1.0" height="15.0" fill="rgb(219,17,41)" rx="2" ry="2" />
<text x="1121.25" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1573" width="0.3" height="15.0" fill="rgb(208,36,2)" rx="2" ry="2" />
<text x="1191.82" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1877" width="0.5" height="15.0" fill="rgb(228,21,31)" rx="2" ry="2" />
<text x="1192.48" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (2,254 samples, 0.12%)</title><rect x="742.5" y="1253" width="1.4" height="15.0" fill="rgb(226,160,48)" rx="2" ry="2" />
<text x="745.51" y="1263.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (514 samples, 0.03%)</title><rect x="664.7" y="1893" width="0.4" height="15.0" fill="rgb(210,88,25)" rx="2" ry="2" />
<text x="667.75" y="1903.5" ></text>
</g>
<g >
<title>mark_slice_darken (356 samples, 0.02%)</title><rect x="1185.6" y="1109" width="0.3" height="15.0" fill="rgb(223,97,11)" rx="2" ry="2" />
<text x="1188.64" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (167 samples, 0.01%)</title><rect x="118.3" y="1829" width="0.1" height="15.0" fill="rgb(221,63,29)" rx="2" ry="2" />
<text x="121.27" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (20,671 samples, 1.11%)</title><rect x="295.5" y="1845" width="13.1" height="15.0" fill="rgb(217,65,29)" rx="2" ry="2" />
<text x="298.50" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (582 samples, 0.03%)</title><rect x="912.0" y="1093" width="0.4" height="15.0" fill="rgb(217,221,50)" rx="2" ry="2" />
<text x="915.02" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,426 samples, 0.13%)</title><rect x="337.2" y="1765" width="1.5" height="15.0" fill="rgb(240,196,36)" rx="2" ry="2" />
<text x="340.21" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (4,134 samples, 0.22%)</title><rect x="836.0" y="1269" width="2.6" height="15.0" fill="rgb(211,94,17)" rx="2" ry="2" />
<text x="838.97" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1317" width="0.3" height="15.0" fill="rgb(227,52,39)" rx="2" ry="2" />
<text x="1192.12" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (1,739 samples, 0.09%)</title><rect x="986.3" y="1157" width="1.1" height="15.0" fill="rgb(240,141,54)" rx="2" ry="2" />
<text x="989.30" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (875 samples, 0.05%)</title><rect x="983.5" y="1125" width="0.6" height="15.0" fill="rgb(209,19,11)" rx="2" ry="2" />
<text x="986.55" y="1135.5" ></text>
</g>
<g >
<title>memmove (161 samples, 0.01%)</title><rect x="978.6" y="1093" width="0.1" height="15.0" fill="rgb(227,3,36)" rx="2" ry="2" />
<text x="981.64" y="1103.5" ></text>
</g>
<g >
<title>caml_string_compare (504 samples, 0.03%)</title><rect x="801.4" y="1381" width="0.3" height="15.0" fill="rgb(234,172,50)" rx="2" ry="2" />
<text x="804.36" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,583 samples, 0.09%)</title><rect x="838.7" y="1253" width="1.0" height="15.0" fill="rgb(205,120,13)" rx="2" ry="2" />
<text x="841.69" y="1263.5" ></text>
</g>
<g >
<title>caml_string_equal (1,938 samples, 0.10%)</title><rect x="1093.2" y="1429" width="1.2" height="15.0" fill="rgb(233,110,51)" rx="2" ry="2" />
<text x="1096.18" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="565" width="0.3" height="15.0" fill="rgb(223,200,9)" rx="2" ry="2" />
<text x="1192.12" y="575.5" ></text>
</g>
<g >
<title>caml_garbage_collection (21,723 samples, 1.17%)</title><rect x="294.8" y="1861" width="13.8" height="15.0" fill="rgb(235,21,41)" rx="2" ry="2" />
<text x="297.83" y="1871.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (226 samples, 0.01%)</title><rect x="839.5" y="1189" width="0.2" height="15.0" fill="rgb(223,218,0)" rx="2" ry="2" />
<text x="842.52" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (214 samples, 0.01%)</title><rect x="821.7" y="1205" width="0.1" height="15.0" fill="rgb(209,128,18)" rx="2" ry="2" />
<text x="824.71" y="1215.5" ></text>
</g>
<g >
<title>caml_string_compare (1,216 samples, 0.07%)</title><rect x="833.5" y="1285" width="0.8" height="15.0" fill="rgb(207,9,7)" rx="2" ry="2" />
<text x="836.51" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__length_aux_1002 (224 samples, 0.01%)</title><rect x="901.7" y="1445" width="0.1" height="15.0" fill="rgb(242,142,10)" rx="2" ry="2" />
<text x="904.67" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,797 samples, 0.10%)</title><rect x="1082.7" y="1381" width="1.1" height="15.0" fill="rgb(242,33,23)" rx="2" ry="2" />
<text x="1085.66" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (241 samples, 0.01%)</title><rect x="893.2" y="1381" width="0.2" height="15.0" fill="rgb(213,226,0)" rx="2" ry="2" />
<text x="896.23" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3780 (12,744 samples, 0.69%)</title><rect x="140.0" y="1893" width="8.1" height="15.0" fill="rgb(207,206,54)" rx="2" ry="2" />
<text x="142.99" y="1903.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (3,286 samples, 0.18%)</title><rect x="46.0" y="2021" width="2.0" height="15.0" fill="rgb(231,18,45)" rx="2" ry="2" />
<text x="48.96" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (501 samples, 0.03%)</title><rect x="694.4" y="1157" width="0.3" height="15.0" fill="rgb(240,104,34)" rx="2" ry="2" />
<text x="697.40" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (158 samples, 0.01%)</title><rect x="1014.3" y="1301" width="0.1" height="15.0" fill="rgb(250,116,18)" rx="2" ry="2" />
<text x="1017.30" y="1311.5" ></text>
</g>
<g >
<title>caml_pread (2,028 samples, 0.11%)</title><rect x="997.5" y="1173" width="1.3" height="15.0" fill="rgb(231,178,3)" rx="2" ry="2" />
<text x="1000.55" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (5,663 samples, 0.30%)</title><rect x="1086.4" y="1461" width="3.6" height="15.0" fill="rgb(236,55,9)" rx="2" ry="2" />
<text x="1089.40" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (262 samples, 0.01%)</title><rect x="853.5" y="1285" width="0.2" height="15.0" fill="rgb(215,182,3)" rx="2" ry="2" />
<text x="856.51" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (174 samples, 0.01%)</title><rect x="696.4" y="1349" width="0.1" height="15.0" fill="rgb(217,50,29)" rx="2" ry="2" />
<text x="699.37" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1589" width="0.3" height="15.0" fill="rgb(222,1,9)" rx="2" ry="2" />
<text x="1191.82" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (255 samples, 0.01%)</title><rect x="816.0" y="1333" width="0.1" height="15.0" fill="rgb(223,99,51)" rx="2" ry="2" />
<text x="818.98" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="517" width="0.3" height="15.0" fill="rgb(224,135,12)" rx="2" ry="2" />
<text x="1191.32" y="527.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (419 samples, 0.02%)</title><rect x="815.3" y="1317" width="0.3" height="15.0" fill="rgb(240,81,25)" rx="2" ry="2" />
<text x="818.35" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (1,203 samples, 0.06%)</title><rect x="827.2" y="1317" width="0.8" height="15.0" fill="rgb(223,216,6)" rx="2" ry="2" />
<text x="830.24" y="1327.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (192 samples, 0.01%)</title><rect x="401.9" y="1861" width="0.1" height="15.0" fill="rgb(225,81,18)" rx="2" ry="2" />
<text x="404.92" y="1871.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_1173 (98,444 samples, 5.29%)</title><rect x="1101.1" y="1685" width="62.5" height="15.0" fill="rgb(235,154,8)" rx="2" ry="2" />
<text x="1104.12" y="1695.5" >camlLw..</text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (1,215 samples, 0.07%)</title><rect x="788.9" y="1269" width="0.7" height="15.0" fill="rgb(219,124,11)" rx="2" ry="2" />
<text x="791.86" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,341 samples, 0.07%)</title><rect x="677.5" y="1893" width="0.8" height="15.0" fill="rgb(253,139,41)" rx="2" ry="2" />
<text x="680.48" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (1,339 samples, 0.07%)</title><rect x="1060.4" y="1333" width="0.8" height="15.0" fill="rgb(209,22,48)" rx="2" ry="2" />
<text x="1063.39" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1557" width="0.2" height="15.0" fill="rgb(249,131,8)" rx="2" ry="2" />
<text x="1191.57" y="1567.5" ></text>
</g>
<g >
<title>sweep_slice (248 samples, 0.01%)</title><rect x="348.1" y="1861" width="0.2" height="15.0" fill="rgb(221,173,32)" rx="2" ry="2" />
<text x="351.14" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (231 samples, 0.01%)</title><rect x="1169.4" y="853" width="0.1" height="15.0" fill="rgb(208,116,44)" rx="2" ry="2" />
<text x="1172.36" y="863.5" ></text>
</g>
<g >
<title>mark_slice (369 samples, 0.02%)</title><rect x="776.1" y="1125" width="0.2" height="15.0" fill="rgb(211,33,25)" rx="2" ry="2" />
<text x="779.10" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (170 samples, 0.01%)</title><rect x="1165.0" y="1093" width="0.1" height="15.0" fill="rgb(247,130,26)" rx="2" ry="2" />
<text x="1168.04" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1477" width="0.3" height="15.0" fill="rgb(213,140,15)" rx="2" ry="2" />
<text x="1191.32" y="1487.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (2,063 samples, 0.11%)</title><rect x="885.5" y="1221" width="1.3" height="15.0" fill="rgb(208,149,8)" rx="2" ry="2" />
<text x="888.46" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (245 samples, 0.01%)</title><rect x="922.2" y="1221" width="0.2" height="15.0" fill="rgb(227,129,40)" rx="2" ry="2" />
<text x="925.20" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (1,069 samples, 0.06%)</title><rect x="901.0" y="1301" width="0.6" height="15.0" fill="rgb(240,150,12)" rx="2" ry="2" />
<text x="903.96" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (386 samples, 0.02%)</title><rect x="1095.3" y="1477" width="0.3" height="15.0" fill="rgb(244,110,26)" rx="2" ry="2" />
<text x="1098.34" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,213 samples, 0.07%)</title><rect x="800.2" y="1429" width="0.8" height="15.0" fill="rgb(212,134,54)" rx="2" ry="2" />
<text x="803.23" y="1439.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (203 samples, 0.01%)</title><rect x="808.5" y="1397" width="0.1" height="15.0" fill="rgb(220,91,48)" rx="2" ry="2" />
<text x="811.49" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (163 samples, 0.01%)</title><rect x="918.0" y="1333" width="0.1" height="15.0" fill="rgb(250,144,19)" rx="2" ry="2" />
<text x="921.04" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (333 samples, 0.02%)</title><rect x="1057.5" y="1349" width="0.2" height="15.0" fill="rgb(240,207,33)" rx="2" ry="2" />
<text x="1060.53" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (388 samples, 0.02%)</title><rect x="1059.8" y="1333" width="0.2" height="15.0" fill="rgb(229,214,0)" rx="2" ry="2" />
<text x="1062.79" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__pre_hash_6099 (214 samples, 0.01%)</title><rect x="689.1" y="1621" width="0.1" height="15.0" fill="rgb(237,6,42)" rx="2" ry="2" />
<text x="692.08" y="1631.5" ></text>
</g>
<g >
<title>caml_string_equal (232 samples, 0.01%)</title><rect x="810.1" y="1445" width="0.1" height="15.0" fill="rgb(219,218,34)" rx="2" ry="2" />
<text x="813.09" y="1455.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,272 samples, 0.07%)</title><rect x="668.2" y="1813" width="0.8" height="15.0" fill="rgb(210,162,18)" rx="2" ry="2" />
<text x="671.21" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (197 samples, 0.01%)</title><rect x="808.9" y="1429" width="0.1" height="15.0" fill="rgb(212,225,0)" rx="2" ry="2" />
<text x="811.86" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1509" width="0.3" height="15.0" fill="rgb(254,118,14)" rx="2" ry="2" />
<text x="1191.82" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (183 samples, 0.01%)</title><rect x="980.9" y="1141" width="0.1" height="15.0" fill="rgb(209,40,38)" rx="2" ry="2" />
<text x="983.93" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (235 samples, 0.01%)</title><rect x="677.3" y="1893" width="0.2" height="15.0" fill="rgb(218,133,12)" rx="2" ry="2" />
<text x="680.33" y="1903.5" ></text>
</g>
<g >
<title>caml_call_gc (892 samples, 0.05%)</title><rect x="1123.9" y="1317" width="0.6" height="15.0" fill="rgb(222,81,25)" rx="2" ry="2" />
<text x="1126.95" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (197 samples, 0.01%)</title><rect x="714.4" y="1461" width="0.1" height="15.0" fill="rgb(250,13,22)" rx="2" ry="2" />
<text x="717.36" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (191 samples, 0.01%)</title><rect x="878.9" y="1173" width="0.1" height="15.0" fill="rgb(212,217,51)" rx="2" ry="2" />
<text x="881.87" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (918 samples, 0.05%)</title><rect x="1115.7" y="1413" width="0.6" height="15.0" fill="rgb(206,69,3)" rx="2" ry="2" />
<text x="1118.71" y="1423.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (170 samples, 0.01%)</title><rect x="270.5" y="1845" width="0.2" height="15.0" fill="rgb(253,144,3)" rx="2" ry="2" />
<text x="273.55" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,130 samples, 0.11%)</title><rect x="924.1" y="1349" width="1.3" height="15.0" fill="rgb(205,29,14)" rx="2" ry="2" />
<text x="927.08" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (872 samples, 0.05%)</title><rect x="749.3" y="1253" width="0.5" height="15.0" fill="rgb(234,189,30)" rx="2" ry="2" />
<text x="752.27" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (1,024 samples, 0.06%)</title><rect x="991.8" y="1173" width="0.7" height="15.0" fill="rgb(222,120,44)" rx="2" ry="2" />
<text x="994.80" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,447 samples, 0.08%)</title><rect x="790.1" y="1141" width="1.0" height="15.0" fill="rgb(240,75,37)" rx="2" ry="2" />
<text x="793.15" y="1151.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (299 samples, 0.02%)</title><rect x="774.8" y="1125" width="0.2" height="15.0" fill="rgb(211,146,23)" rx="2" ry="2" />
<text x="777.84" y="1135.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (4,737 samples, 0.25%)</title><rect x="1169.6" y="1317" width="3.0" height="15.0" fill="rgb(237,66,16)" rx="2" ry="2" />
<text x="1172.63" y="1327.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (21,835 samples, 1.17%)</title><rect x="767.6" y="1269" width="13.8" height="15.0" fill="rgb(208,57,52)" rx="2" ry="2" />
<text x="770.57" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (2,720 samples, 0.15%)</title><rect x="938.2" y="1285" width="1.8" height="15.0" fill="rgb(207,173,21)" rx="2" ry="2" />
<text x="941.24" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (38,884 samples, 2.09%)</title><rect x="1163.6" y="1749" width="24.7" height="15.0" fill="rgb(240,64,40)" rx="2" ry="2" />
<text x="1166.59" y="1759.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (165 samples, 0.01%)</title><rect x="714.4" y="1429" width="0.1" height="15.0" fill="rgb(241,86,28)" rx="2" ry="2" />
<text x="717.37" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,667 samples, 0.14%)</title><rect x="1174.9" y="1285" width="1.7" height="15.0" fill="rgb(205,120,37)" rx="2" ry="2" />
<text x="1177.89" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (431 samples, 0.02%)</title><rect x="1110.5" y="1301" width="0.2" height="15.0" fill="rgb(222,7,53)" rx="2" ry="2" />
<text x="1113.47" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,102 samples, 0.11%)</title><rect x="161.2" y="1813" width="1.4" height="15.0" fill="rgb(237,109,50)" rx="2" ry="2" />
<text x="164.24" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (312 samples, 0.02%)</title><rect x="689.4" y="709" width="0.2" height="15.0" fill="rgb(250,106,40)" rx="2" ry="2" />
<text x="692.43" y="719.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (336 samples, 0.02%)</title><rect x="1166.1" y="1173" width="0.2" height="15.0" fill="rgb(207,34,19)" rx="2" ry="2" />
<text x="1169.08" y="1183.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (298 samples, 0.02%)</title><rect x="1079.5" y="1349" width="0.2" height="15.0" fill="rgb(215,28,50)" rx="2" ry="2" />
<text x="1082.48" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (828 samples, 0.04%)</title><rect x="678.9" y="1893" width="0.5" height="15.0" fill="rgb(225,192,27)" rx="2" ry="2" />
<text x="681.89" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1653" width="0.3" height="15.0" fill="rgb(227,49,36)" rx="2" ry="2" />
<text x="1192.12" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1680 (620 samples, 0.03%)</title><rect x="963.5" y="1253" width="0.4" height="15.0" fill="rgb(237,43,1)" rx="2" ry="2" />
<text x="966.47" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (244 samples, 0.01%)</title><rect x="722.5" y="1269" width="0.2" height="15.0" fill="rgb(226,7,45)" rx="2" ry="2" />
<text x="725.51" y="1279.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (231 samples, 0.01%)</title><rect x="744.4" y="1205" width="0.1" height="15.0" fill="rgb(245,26,3)" rx="2" ry="2" />
<text x="747.38" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="789" width="0.3" height="15.0" fill="rgb(210,175,50)" rx="2" ry="2" />
<text x="1191.32" y="799.5" ></text>
</g>
<g >
<title>mark_slice (253 samples, 0.01%)</title><rect x="674.3" y="1829" width="0.2" height="15.0" fill="rgb(231,70,2)" rx="2" ry="2" />
<text x="677.30" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (390 samples, 0.02%)</title><rect x="1188.3" y="229" width="0.3" height="15.0" fill="rgb(208,45,15)" rx="2" ry="2" />
<text x="1191.32" y="239.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (15,391 samples, 0.83%)</title><rect x="946.3" y="1269" width="9.7" height="15.0" fill="rgb(229,158,42)" rx="2" ry="2" />
<text x="949.26" y="1279.5" ></text>
</g>
<g >
<title>caml_apply5 (4,967 samples, 0.27%)</title><rect x="702.2" y="1493" width="3.1" height="15.0" fill="rgb(207,105,22)" rx="2" ry="2" />
<text x="705.15" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1141" width="0.5" height="15.0" fill="rgb(209,73,12)" rx="2" ry="2" />
<text x="1192.48" y="1151.5" ></text>
</g>
<g >
<title>caml_apply2 (570 samples, 0.03%)</title><rect x="1075.4" y="1397" width="0.3" height="15.0" fill="rgb(238,33,51)" rx="2" ry="2" />
<text x="1078.36" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,289 samples, 0.07%)</title><rect x="924.6" y="1157" width="0.8" height="15.0" fill="rgb(219,177,30)" rx="2" ry="2" />
<text x="927.61" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (487 samples, 0.03%)</title><rect x="996.2" y="1189" width="0.3" height="15.0" fill="rgb(235,106,53)" rx="2" ry="2" />
<text x="999.21" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (3,467 samples, 0.19%)</title><rect x="768.6" y="1221" width="2.2" height="15.0" fill="rgb(246,36,52)" rx="2" ry="2" />
<text x="771.57" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1813" width="0.3" height="15.0" fill="rgb(212,122,43)" rx="2" ry="2" />
<text x="1191.32" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (104,657 samples, 5.63%)</title><rect x="1018.5" y="1445" width="66.3" height="15.0" fill="rgb(247,151,8)" rx="2" ry="2" />
<text x="1021.45" y="1455.5" >camlInd..</text>
</g>
<g >
<title>caml_page_table_lookup (214 samples, 0.01%)</title><rect x="325.5" y="1797" width="0.2" height="15.0" fill="rgb(243,196,16)" rx="2" ry="2" />
<text x="328.51" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (178 samples, 0.01%)</title><rect x="1186.7" y="1157" width="0.1" height="15.0" fill="rgb(217,84,44)" rx="2" ry="2" />
<text x="1189.73" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (380 samples, 0.02%)</title><rect x="824.3" y="1173" width="0.3" height="15.0" fill="rgb(206,74,0)" rx="2" ry="2" />
<text x="827.33" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (494 samples, 0.03%)</title><rect x="678.0" y="1845" width="0.3" height="15.0" fill="rgb(251,86,29)" rx="2" ry="2" />
<text x="681.01" y="1855.5" ></text>
</g>
<g >
<title>caml_garbage_collection (165 samples, 0.01%)</title><rect x="985.2" y="1125" width="0.1" height="15.0" fill="rgb(219,75,50)" rx="2" ry="2" />
<text x="988.17" y="1135.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (4,853 samples, 0.26%)</title><rect x="464.2" y="1877" width="3.1" height="15.0" fill="rgb(247,76,48)" rx="2" ry="2" />
<text x="467.20" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (682 samples, 0.04%)</title><rect x="1083.1" y="1349" width="0.4" height="15.0" fill="rgb(254,33,48)" rx="2" ry="2" />
<text x="1086.09" y="1359.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (415 samples, 0.02%)</title><rect x="665.1" y="1877" width="0.3" height="15.0" fill="rgb(244,169,26)" rx="2" ry="2" />
<text x="668.13" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (450 samples, 0.02%)</title><rect x="980.8" y="1157" width="0.3" height="15.0" fill="rgb(224,90,46)" rx="2" ry="2" />
<text x="983.82" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (430 samples, 0.02%)</title><rect x="884.2" y="1221" width="0.3" height="15.0" fill="rgb(207,208,23)" rx="2" ry="2" />
<text x="887.24" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (466 samples, 0.03%)</title><rect x="970.5" y="1173" width="0.3" height="15.0" fill="rgb(250,116,48)" rx="2" ry="2" />
<text x="973.50" y="1183.5" ></text>
</g>
<g >
<title>compare_val (741 samples, 0.04%)</title><rect x="1149.8" y="1285" width="0.4" height="15.0" fill="rgb(223,82,23)" rx="2" ry="2" />
<text x="1152.78" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__random__intaux_1787 (1,836 samples, 0.10%)</title><rect x="687.5" y="1669" width="1.1" height="15.0" fill="rgb(236,121,33)" rx="2" ry="2" />
<text x="690.47" y="1679.5" ></text>
</g>
<g >
<title>caml_call_gc (2,886 samples, 0.16%)</title><rect x="660.8" y="1941" width="1.8" height="15.0" fill="rgb(225,29,48)" rx="2" ry="2" />
<text x="663.76" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="261" width="0.5" height="15.0" fill="rgb(229,9,29)" rx="2" ry="2" />
<text x="1192.48" y="271.5" ></text>
</g>
<g >
<title>caml_sys_file_exists (556 samples, 0.03%)</title><rect x="664.7" y="1941" width="0.4" height="15.0" fill="rgb(211,17,34)" rx="2" ry="2" />
<text x="667.73" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (204 samples, 0.01%)</title><rect x="1071.9" y="1141" width="0.1" height="15.0" fill="rgb(209,175,6)" rx="2" ry="2" />
<text x="1074.88" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (365 samples, 0.02%)</title><rect x="780.2" y="1189" width="0.2" height="15.0" fill="rgb(245,36,18)" rx="2" ry="2" />
<text x="783.19" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (442 samples, 0.02%)</title><rect x="755.6" y="1301" width="0.3" height="15.0" fill="rgb(254,62,30)" rx="2" ry="2" />
<text x="758.57" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,123 samples, 0.17%)</title><rect x="1070.0" y="1237" width="2.0" height="15.0" fill="rgb(235,190,48)" rx="2" ry="2" />
<text x="1073.03" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (606,285 samples, 32.60%)</title><rect x="716.5" y="1653" width="384.6" height="15.0" fill="rgb(218,168,25)" rx="2" ry="2" />
<text x="719.48" y="1663.5" >camlIrmin_pack__Pack__batch_5159</text>
</g>
<g >
<title>camlLwt__try_bind_2801 (12,394 samples, 0.67%)</title><rect x="717.3" y="1477" width="7.8" height="15.0" fill="rgb(243,221,33)" rx="2" ry="2" />
<text x="720.26" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (231 samples, 0.01%)</title><rect x="705.1" y="1029" width="0.2" height="15.0" fill="rgb(210,85,37)" rx="2" ry="2" />
<text x="708.13" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (307 samples, 0.02%)</title><rect x="937.4" y="901" width="0.2" height="15.0" fill="rgb(247,194,33)" rx="2" ry="2" />
<text x="940.38" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (395 samples, 0.02%)</title><rect x="870.9" y="1157" width="0.3" height="15.0" fill="rgb(211,31,47)" rx="2" ry="2" />
<text x="873.93" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (495 samples, 0.03%)</title><rect x="46.2" y="1973" width="0.3" height="15.0" fill="rgb(205,7,29)" rx="2" ry="2" />
<text x="49.23" y="1983.5" ></text>
</g>
<g >
<title>camlThread__fun_1993 (162,312 samples, 8.73%)</title><rect x="552.8" y="1941" width="103.0" height="15.0" fill="rgb(243,59,1)" rx="2" ry="2" />
<text x="555.79" y="1951.5" >camlThread__..</text>
</g>
<g >
<title>futex_wake (359 samples, 0.02%)</title><rect x="1153.5" y="1301" width="0.2" height="15.0" fill="rgb(231,143,36)" rx="2" ry="2" />
<text x="1156.49" y="1311.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (168 samples, 0.01%)</title><rect x="1188.4" y="69" width="0.1" height="15.0" fill="rgb(211,102,20)" rx="2" ry="2" />
<text x="1191.36" y="79.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1365" width="0.5" height="15.0" fill="rgb(213,12,3)" rx="2" ry="2" />
<text x="1192.48" y="1375.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (244 samples, 0.01%)</title><rect x="1032.5" y="1253" width="0.1" height="15.0" fill="rgb(206,26,4)" rx="2" ry="2" />
<text x="1035.49" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__catch_2720 (705,195 samples, 37.91%)</title><rect x="716.2" y="1717" width="447.4" height="15.0" fill="rgb(234,78,44)" rx="2" ry="2" />
<text x="719.18" y="1727.5" >camlLwt__catch_2720</text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (4,456 samples, 0.24%)</title><rect x="1166.7" y="1333" width="2.8" height="15.0" fill="rgb(207,112,49)" rx="2" ry="2" />
<text x="1169.68" y="1343.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (660 samples, 0.04%)</title><rect x="1153.7" y="1317" width="0.5" height="15.0" fill="rgb(209,125,4)" rx="2" ry="2" />
<text x="1156.74" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185 samples, 0.01%)</title><rect x="906.5" y="1173" width="0.2" height="15.0" fill="rgb(209,30,21)" rx="2" ry="2" />
<text x="909.54" y="1183.5" ></text>
</g>
<g >
<title>caml_sys_file_exists (489 samples, 0.03%)</title><rect x="664.3" y="1925" width="0.3" height="15.0" fill="rgb(215,137,1)" rx="2" ry="2" />
<text x="667.34" y="1935.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (161 samples, 0.01%)</title><rect x="970.9" y="1205" width="0.1" height="15.0" fill="rgb(244,192,12)" rx="2" ry="2" />
<text x="973.87" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,475 samples, 0.19%)</title><rect x="1120.2" y="1333" width="2.3" height="15.0" fill="rgb(247,94,19)" rx="2" ry="2" />
<text x="1123.25" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="517" width="0.3" height="15.0" fill="rgb(220,107,27)" rx="2" ry="2" />
<text x="1192.12" y="527.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (5,668 samples, 0.30%)</title><rect x="1183.6" y="1349" width="3.6" height="15.0" fill="rgb(247,37,42)" rx="2" ry="2" />
<text x="1186.58" y="1359.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (6,719 samples, 0.36%)</title><rect x="585.1" y="1845" width="4.3" height="15.0" fill="rgb(252,83,47)" rx="2" ry="2" />
<text x="588.10" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__to_bin_v_6057 (181 samples, 0.01%)</title><rect x="1164.9" y="1445" width="0.1" height="15.0" fill="rgb(221,2,50)" rx="2" ry="2" />
<text x="1167.88" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,047 samples, 0.16%)</title><rect x="825.2" y="1205" width="2.0" height="15.0" fill="rgb(247,200,26)" rx="2" ry="2" />
<text x="828.23" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (183 samples, 0.01%)</title><rect x="965.9" y="1253" width="0.1" height="15.0" fill="rgb(214,192,38)" rx="2" ry="2" />
<text x="968.86" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (844 samples, 0.05%)</title><rect x="1108.0" y="1317" width="0.6" height="15.0" fill="rgb(232,21,4)" rx="2" ry="2" />
<text x="1111.03" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (748 samples, 0.04%)</title><rect x="909.7" y="1269" width="0.5" height="15.0" fill="rgb(208,55,25)" rx="2" ry="2" />
<text x="912.74" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (160 samples, 0.01%)</title><rect x="830.0" y="1365" width="0.1" height="15.0" fill="rgb(231,84,28)" rx="2" ry="2" />
<text x="833.00" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (234 samples, 0.01%)</title><rect x="1165.0" y="1477" width="0.1" height="15.0" fill="rgb(225,79,9)" rx="2" ry="2" />
<text x="1168.00" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,442 samples, 0.24%)</title><rect x="726.6" y="1317" width="2.8" height="15.0" fill="rgb(210,36,54)" rx="2" ry="2" />
<text x="729.61" y="1327.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.5 (1,405 samples, 0.08%)</title><rect x="48.5" y="1989" width="0.9" height="15.0" fill="rgb(243,223,37)" rx="2" ry="2" />
<text x="51.46" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__t_6997 (1,213 samples, 0.07%)</title><rect x="717.4" y="1413" width="0.8" height="15.0" fill="rgb(240,225,40)" rx="2" ry="2" />
<text x="720.40" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (351 samples, 0.02%)</title><rect x="1169.3" y="901" width="0.2" height="15.0" fill="rgb(237,52,15)" rx="2" ry="2" />
<text x="1172.28" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (272 samples, 0.01%)</title><rect x="756.5" y="1301" width="0.1" height="15.0" fill="rgb(253,198,24)" rx="2" ry="2" />
<text x="759.47" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (680 samples, 0.04%)</title><rect x="1169.1" y="1029" width="0.4" height="15.0" fill="rgb(244,192,10)" rx="2" ry="2" />
<text x="1172.07" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3579 (221 samples, 0.01%)</title><rect x="961.0" y="1189" width="0.1" height="15.0" fill="rgb(239,199,13)" rx="2" ry="2" />
<text x="963.96" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (3,723 samples, 0.20%)</title><rect x="431.9" y="1861" width="2.4" height="15.0" fill="rgb(233,52,0)" rx="2" ry="2" />
<text x="434.94" y="1871.5" ></text>
</g>
<g >
<title>caml_call_gc (290 samples, 0.02%)</title><rect x="672.9" y="1829" width="0.2" height="15.0" fill="rgb(240,45,53)" rx="2" ry="2" />
<text x="675.89" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,994 samples, 0.27%)</title><rect x="934.4" y="1301" width="3.2" height="15.0" fill="rgb(231,150,34)" rx="2" ry="2" />
<text x="937.42" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,766 samples, 0.09%)</title><rect x="789.9" y="1173" width="1.2" height="15.0" fill="rgb(229,56,20)" rx="2" ry="2" />
<text x="792.94" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (659 samples, 0.04%)</title><rect x="1024.8" y="1381" width="0.4" height="15.0" fill="rgb(211,176,9)" rx="2" ry="2" />
<text x="1027.79" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (177 samples, 0.01%)</title><rect x="1113.1" y="1477" width="0.1" height="15.0" fill="rgb(224,142,15)" rx="2" ry="2" />
<text x="1116.09" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (380 samples, 0.02%)</title><rect x="1178.8" y="1221" width="0.2" height="15.0" fill="rgb(216,47,27)" rx="2" ry="2" />
<text x="1181.80" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (290 samples, 0.02%)</title><rect x="748.8" y="1269" width="0.2" height="15.0" fill="rgb(249,60,48)" rx="2" ry="2" />
<text x="751.83" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1701" width="0.3" height="15.0" fill="rgb(249,190,29)" rx="2" ry="2" />
<text x="1191.32" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1525" width="0.5" height="15.0" fill="rgb(230,80,17)" rx="2" ry="2" />
<text x="1192.48" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (230 samples, 0.01%)</title><rect x="57.5" y="1877" width="0.1" height="15.0" fill="rgb(206,95,53)" rx="2" ry="2" />
<text x="60.48" y="1887.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (39,356 samples, 2.12%)</title><rect x="611.3" y="1813" width="24.9" height="15.0" fill="rgb(222,34,2)" rx="2" ry="2" />
<text x="614.28" y="1823.5" >_..</text>
</g>
<g >
<title>caml_alloc_string (162 samples, 0.01%)</title><rect x="860.5" y="1317" width="0.1" height="15.0" fill="rgb(213,79,2)" rx="2" ry="2" />
<text x="863.54" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (832 samples, 0.04%)</title><rect x="1042.0" y="1301" width="0.5" height="15.0" fill="rgb(209,162,36)" rx="2" ry="2" />
<text x="1044.95" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (309 samples, 0.02%)</title><rect x="689.4" y="661" width="0.2" height="15.0" fill="rgb(208,201,31)" rx="2" ry="2" />
<text x="692.43" y="671.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (353 samples, 0.02%)</title><rect x="1188.6" y="165" width="0.2" height="15.0" fill="rgb(246,18,43)" rx="2" ry="2" />
<text x="1191.59" y="175.5" ></text>
</g>
<g >
<title>caml_string_length (266 samples, 0.01%)</title><rect x="896.4" y="1365" width="0.2" height="15.0" fill="rgb(243,216,42)" rx="2" ry="2" />
<text x="899.42" y="1375.5" ></text>
</g>
<g >
<title>camlLwt_main__run_1134 (744,113 samples, 40.01%)</title><rect x="716.2" y="1845" width="472.1" height="15.0" fill="rgb(251,177,47)" rx="2" ry="2" />
<text x="719.18" y="1855.5" >camlLwt_main__run_1134</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_1603 (250 samples, 0.01%)</title><rect x="847.9" y="1237" width="0.2" height="15.0" fill="rgb(232,147,39)" rx="2" ry="2" />
<text x="850.94" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (495 samples, 0.03%)</title><rect x="824.3" y="1253" width="0.3" height="15.0" fill="rgb(229,68,33)" rx="2" ry="2" />
<text x="827.27" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (122,676 samples, 6.60%)</title><rect x="1017.2" y="1509" width="77.8" height="15.0" fill="rgb(232,123,5)" rx="2" ry="2" />
<text x="1020.19" y="1519.5" >camlLwt_..</text>
</g>
<g >
<title>caml_garbage_collection (204 samples, 0.01%)</title><rect x="987.9" y="1109" width="0.1" height="15.0" fill="rgb(241,142,54)" rx="2" ry="2" />
<text x="990.87" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1973" width="0.3" height="15.0" fill="rgb(214,164,40)" rx="2" ry="2" />
<text x="1191.32" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (464 samples, 0.02%)</title><rect x="790.8" y="1077" width="0.3" height="15.0" fill="rgb(222,41,44)" rx="2" ry="2" />
<text x="793.77" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (507 samples, 0.03%)</title><rect x="926.0" y="1317" width="0.4" height="15.0" fill="rgb(209,208,2)" rx="2" ry="2" />
<text x="929.04" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (14,399 samples, 0.77%)</title><rect x="823.1" y="1397" width="9.1" height="15.0" fill="rgb(212,20,49)" rx="2" ry="2" />
<text x="826.11" y="1407.5" ></text>
</g>
<g >
<title>caml_string_compare (364 samples, 0.02%)</title><rect x="900.0" y="1301" width="0.2" height="15.0" fill="rgb(213,114,46)" rx="2" ry="2" />
<text x="903.01" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (185 samples, 0.01%)</title><rect x="1182.6" y="1237" width="0.1" height="15.0" fill="rgb(253,125,40)" rx="2" ry="2" />
<text x="1185.59" y="1247.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (992 samples, 0.05%)</title><rect x="46.6" y="2005" width="0.6" height="15.0" fill="rgb(216,194,44)" rx="2" ry="2" />
<text x="49.56" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (316 samples, 0.02%)</title><rect x="1131.3" y="1301" width="0.2" height="15.0" fill="rgb(223,90,0)" rx="2" ry="2" />
<text x="1134.25" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (201 samples, 0.01%)</title><rect x="1165.0" y="1269" width="0.1" height="15.0" fill="rgb(207,204,39)" rx="2" ry="2" />
<text x="1168.02" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1246 (179 samples, 0.01%)</title><rect x="865.7" y="1221" width="0.1" height="15.0" fill="rgb(233,81,43)" rx="2" ry="2" />
<text x="868.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (2,396 samples, 0.13%)</title><rect x="1041.0" y="1333" width="1.5" height="15.0" fill="rgb(242,12,27)" rx="2" ry="2" />
<text x="1043.96" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (249 samples, 0.01%)</title><rect x="689.5" y="453" width="0.1" height="15.0" fill="rgb(213,149,36)" rx="2" ry="2" />
<text x="692.46" y="463.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1221" width="0.2" height="15.0" fill="rgb(207,7,17)" rx="2" ry="2" />
<text x="1191.57" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,385 samples, 0.07%)</title><rect x="997.9" y="1077" width="0.9" height="15.0" fill="rgb(225,128,44)" rx="2" ry="2" />
<text x="1000.92" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (236 samples, 0.01%)</title><rect x="753.0" y="1285" width="0.1" height="15.0" fill="rgb(246,89,29)" rx="2" ry="2" />
<text x="756.00" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (230 samples, 0.01%)</title><rect x="713.9" y="1477" width="0.1" height="15.0" fill="rgb(240,23,33)" rx="2" ry="2" />
<text x="716.87" y="1487.5" ></text>
</g>
<g >
<title>caml_call_gc (1,488 samples, 0.08%)</title><rect x="270.5" y="1893" width="1.0" height="15.0" fill="rgb(232,166,10)" rx="2" ry="2" />
<text x="273.55" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (546 samples, 0.03%)</title><rect x="689.3" y="1637" width="0.3" height="15.0" fill="rgb(222,193,8)" rx="2" ry="2" />
<text x="692.29" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (776 samples, 0.04%)</title><rect x="1102.1" y="1381" width="0.5" height="15.0" fill="rgb(231,83,32)" rx="2" ry="2" />
<text x="1105.09" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (4,332 samples, 0.23%)</title><rect x="705.7" y="1461" width="2.7" height="15.0" fill="rgb(253,174,52)" rx="2" ry="2" />
<text x="708.70" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (299 samples, 0.02%)</title><rect x="905.5" y="1301" width="0.1" height="15.0" fill="rgb(216,74,12)" rx="2" ry="2" />
<text x="908.45" y="1311.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (218 samples, 0.01%)</title><rect x="1042.0" y="1269" width="0.1" height="15.0" fill="rgb(216,7,50)" rx="2" ry="2" />
<text x="1044.95" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__stable_sort_1813 (4,325 samples, 0.23%)</title><rect x="676.8" y="1957" width="2.7" height="15.0" fill="rgb(210,126,25)" rx="2" ry="2" />
<text x="679.79" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1813" width="0.2" height="15.0" fill="rgb(235,88,10)" rx="2" ry="2" />
<text x="1191.57" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (15,771 samples, 0.85%)</title><rect x="1150.5" y="1461" width="10.0" height="15.0" fill="rgb(251,175,12)" rx="2" ry="2" />
<text x="1153.51" y="1471.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (361 samples, 0.02%)</title><rect x="759.6" y="1333" width="0.2" height="15.0" fill="rgb(242,85,29)" rx="2" ry="2" />
<text x="762.60" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (166 samples, 0.01%)</title><rect x="1016.2" y="1445" width="0.1" height="15.0" fill="rgb(232,133,8)" rx="2" ry="2" />
<text x="1019.17" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (7,635 samples, 0.41%)</title><rect x="1154.9" y="1333" width="4.8" height="15.0" fill="rgb(223,93,12)" rx="2" ry="2" />
<text x="1157.87" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1397" width="0.3" height="15.0" fill="rgb(232,155,49)" rx="2" ry="2" />
<text x="1192.12" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (3,455 samples, 0.19%)</title><rect x="206.1" y="1893" width="2.1" height="15.0" fill="rgb(253,149,46)" rx="2" ry="2" />
<text x="209.05" y="1903.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,892 samples, 0.10%)</title><rect x="970.8" y="1237" width="1.2" height="15.0" fill="rgb(254,109,49)" rx="2" ry="2" />
<text x="973.79" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__filter_map_inplace_bucket_2078 (4,941 samples, 0.27%)</title><rect x="679.7" y="1941" width="3.1" height="15.0" fill="rgb(247,102,0)" rx="2" ry="2" />
<text x="682.67" y="1951.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,571 samples, 0.08%)</title><rect x="855.9" y="1301" width="1.0" height="15.0" fill="rgb(235,5,53)" rx="2" ry="2" />
<text x="858.89" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_7268 (27,107 samples, 1.46%)</title><rect x="908.3" y="1445" width="17.2" height="15.0" fill="rgb(249,42,27)" rx="2" ry="2" />
<text x="911.32" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (925 samples, 0.05%)</title><rect x="744.0" y="1253" width="0.6" height="15.0" fill="rgb(230,35,5)" rx="2" ry="2" />
<text x="747.05" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (1,150 samples, 0.06%)</title><rect x="808.1" y="1413" width="0.8" height="15.0" fill="rgb(245,180,25)" rx="2" ry="2" />
<text x="811.13" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (261 samples, 0.01%)</title><rect x="1177.1" y="1285" width="0.2" height="15.0" fill="rgb(226,12,23)" rx="2" ry="2" />
<text x="1180.13" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (620 samples, 0.03%)</title><rect x="926.5" y="1333" width="0.4" height="15.0" fill="rgb(249,66,53)" rx="2" ry="2" />
<text x="929.54" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,117 samples, 0.06%)</title><rect x="801.0" y="1413" width="0.7" height="15.0" fill="rgb(254,93,25)" rx="2" ry="2" />
<text x="804.02" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (223 samples, 0.01%)</title><rect x="854.8" y="1317" width="0.2" height="15.0" fill="rgb(223,56,18)" rx="2" ry="2" />
<text x="857.84" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (442 samples, 0.02%)</title><rect x="939.1" y="1237" width="0.3" height="15.0" fill="rgb(242,57,31)" rx="2" ry="2" />
<text x="942.13" y="1247.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (249 samples, 0.01%)</title><rect x="341.5" y="1845" width="0.2" height="15.0" fill="rgb(242,157,35)" rx="2" ry="2" />
<text x="344.55" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (579 samples, 0.03%)</title><rect x="49.0" y="1925" width="0.3" height="15.0" fill="rgb(210,207,28)" rx="2" ry="2" />
<text x="51.97" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="965" width="0.3" height="15.0" fill="rgb(216,224,1)" rx="2" ry="2" />
<text x="1191.82" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__unsafe_find_7231 (94,606 samples, 5.09%)</title><rect x="832.8" y="1365" width="60.1" height="15.0" fill="rgb(225,170,2)" rx="2" ry="2" />
<text x="835.83" y="1375.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (197 samples, 0.01%)</title><rect x="1180.9" y="1189" width="0.2" height="15.0" fill="rgb(234,177,41)" rx="2" ry="2" />
<text x="1183.93" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (499 samples, 0.03%)</title><rect x="549.8" y="1893" width="0.3" height="15.0" fill="rgb(234,202,20)" rx="2" ry="2" />
<text x="552.81" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (493 samples, 0.03%)</title><rect x="900.4" y="1317" width="0.3" height="15.0" fill="rgb(208,146,22)" rx="2" ry="2" />
<text x="903.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,054 samples, 0.06%)</title><rect x="696.0" y="1365" width="0.6" height="15.0" fill="rgb(239,197,38)" rx="2" ry="2" />
<text x="698.97" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_1394 (530 samples, 0.03%)</title><rect x="810.2" y="1461" width="0.4" height="15.0" fill="rgb(248,31,10)" rx="2" ry="2" />
<text x="813.25" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (2,500 samples, 0.13%)</title><rect x="950.9" y="1189" width="1.6" height="15.0" fill="rgb(214,8,43)" rx="2" ry="2" />
<text x="953.90" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,200 samples, 0.06%)</title><rect x="819.2" y="1285" width="0.8" height="15.0" fill="rgb(223,71,15)" rx="2" ry="2" />
<text x="822.22" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (579 samples, 0.03%)</title><rect x="806.2" y="1493" width="0.4" height="15.0" fill="rgb(236,89,29)" rx="2" ry="2" />
<text x="809.23" y="1503.5" ></text>
</g>
<g >
<title>caml_thread_start (994,859 samples, 53.49%)</title><rect x="54.5" y="2021" width="631.1" height="15.0" fill="rgb(212,219,28)" rx="2" ry="2" />
<text x="57.47" y="2031.5" >caml_thread_start</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (1,950 samples, 0.10%)</title><rect x="262.4" y="1877" width="1.2" height="15.0" fill="rgb(236,164,16)" rx="2" ry="2" />
<text x="265.38" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,645 samples, 0.52%)</title><rect x="573.3" y="1861" width="6.1" height="15.0" fill="rgb(205,201,30)" rx="2" ry="2" />
<text x="576.31" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (730 samples, 0.04%)</title><rect x="811.9" y="1461" width="0.4" height="15.0" fill="rgb(232,45,37)" rx="2" ry="2" />
<text x="814.86" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (466 samples, 0.03%)</title><rect x="113.2" y="1813" width="0.3" height="15.0" fill="rgb(217,222,37)" rx="2" ry="2" />
<text x="116.18" y="1823.5" ></text>
</g>
<g >
<title>__GI___clone (1,004,611 samples, 54.01%)</title><rect x="49.4" y="2053" width="637.4" height="15.0" fill="rgb(206,99,24)" rx="2" ry="2" />
<text x="52.42" y="2063.5" >__GI___clone</text>
</g>
<g >
<title>mark_slice_darken (3,273 samples, 0.18%)</title><rect x="418.5" y="1813" width="2.1" height="15.0" fill="rgb(212,119,33)" rx="2" ry="2" />
<text x="421.49" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (396 samples, 0.02%)</title><rect x="978.5" y="1125" width="0.2" height="15.0" fill="rgb(212,133,28)" rx="2" ry="2" />
<text x="981.49" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (36,040 samples, 1.94%)</title><rect x="1165.2" y="1493" width="22.8" height="15.0" fill="rgb(209,104,7)" rx="2" ry="2" />
<text x="1168.17" y="1503.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (437 samples, 0.02%)</title><rect x="815.3" y="1333" width="0.3" height="15.0" fill="rgb(226,87,24)" rx="2" ry="2" />
<text x="818.34" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (610 samples, 0.03%)</title><rect x="1134.5" y="1397" width="0.4" height="15.0" fill="rgb(240,111,34)" rx="2" ry="2" />
<text x="1137.50" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (218 samples, 0.01%)</title><rect x="909.5" y="1317" width="0.1" height="15.0" fill="rgb(244,205,12)" rx="2" ry="2" />
<text x="912.48" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (46,043 samples, 2.48%)</title><rect x="20.2" y="2053" width="29.2" height="15.0" fill="rgb(251,208,0)" rx="2" ry="2" />
<text x="23.21" y="2063.5" >[u..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (429 samples, 0.02%)</title><rect x="689.4" y="1173" width="0.2" height="15.0" fill="rgb(242,86,12)" rx="2" ry="2" />
<text x="692.36" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,206 samples, 0.12%)</title><rect x="728.0" y="1157" width="1.4" height="15.0" fill="rgb(222,66,1)" rx="2" ry="2" />
<text x="731.01" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__fun_4537 (170 samples, 0.01%)</title><rect x="795.3" y="1317" width="0.1" height="15.0" fill="rgb(217,123,34)" rx="2" ry="2" />
<text x="798.26" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (2,883 samples, 0.16%)</title><rect x="943.4" y="1285" width="1.8" height="15.0" fill="rgb(221,216,34)" rx="2" ry="2" />
<text x="946.36" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (3,107 samples, 0.17%)</title><rect x="339.2" y="1797" width="1.9" height="15.0" fill="rgb(210,204,29)" rx="2" ry="2" />
<text x="342.17" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (515 samples, 0.03%)</title><rect x="1101.7" y="1349" width="0.4" height="15.0" fill="rgb(228,97,36)" rx="2" ry="2" />
<text x="1104.74" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (12,625 samples, 0.68%)</title><rect x="717.1" y="1493" width="8.1" height="15.0" fill="rgb(227,34,12)" rx="2" ry="2" />
<text x="720.14" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (255 samples, 0.01%)</title><rect x="1118.5" y="1253" width="0.1" height="15.0" fill="rgb(247,73,49)" rx="2" ry="2" />
<text x="1121.46" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (3,060 samples, 0.16%)</title><rect x="337.0" y="1797" width="1.9" height="15.0" fill="rgb(248,26,33)" rx="2" ry="2" />
<text x="340.01" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1029" width="0.3" height="15.0" fill="rgb(216,208,50)" rx="2" ry="2" />
<text x="1191.32" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (345 samples, 0.02%)</title><rect x="1180.3" y="1253" width="0.3" height="15.0" fill="rgb(229,154,34)" rx="2" ry="2" />
<text x="1183.35" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (411 samples, 0.02%)</title><rect x="1065.9" y="1349" width="0.3" height="15.0" fill="rgb(219,56,19)" rx="2" ry="2" />
<text x="1068.90" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (637 samples, 0.03%)</title><rect x="713.6" y="1493" width="0.4" height="15.0" fill="rgb(229,171,16)" rx="2" ry="2" />
<text x="716.63" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (3,453 samples, 0.19%)</title><rect x="1011.7" y="1317" width="2.1" height="15.0" fill="rgb(253,146,37)" rx="2" ry="2" />
<text x="1014.65" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,218 samples, 0.23%)</title><rect x="726.8" y="1301" width="2.6" height="15.0" fill="rgb(249,38,32)" rx="2" ry="2" />
<text x="729.75" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1029" width="0.2" height="15.0" fill="rgb(216,160,0)" rx="2" ry="2" />
<text x="1191.57" y="1039.5" ></text>
</g>
<g >
<title>__lseek64 (210 samples, 0.01%)</title><rect x="1151.2" y="1269" width="0.1" height="15.0" fill="rgb(212,97,42)" rx="2" ry="2" />
<text x="1154.18" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (510 samples, 0.03%)</title><rect x="868.6" y="1189" width="0.3" height="15.0" fill="rgb(249,154,10)" rx="2" ry="2" />
<text x="871.57" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (265 samples, 0.01%)</title><rect x="928.1" y="1237" width="0.1" height="15.0" fill="rgb(226,75,8)" rx="2" ry="2" />
<text x="931.07" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,025 samples, 0.06%)</title><rect x="856.0" y="1285" width="0.7" height="15.0" fill="rgb(229,39,42)" rx="2" ry="2" />
<text x="859.03" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,151 samples, 0.06%)</title><rect x="719.7" y="1397" width="0.7" height="15.0" fill="rgb(207,174,52)" rx="2" ry="2" />
<text x="722.66" y="1407.5" ></text>
</g>
<g >
<title>_pthread_cleanup_pop (161 samples, 0.01%)</title><rect x="636.2" y="1829" width="0.1" height="15.0" fill="rgb(209,95,24)" rx="2" ry="2" />
<text x="639.24" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1375 (158 samples, 0.01%)</title><rect x="920.6" y="1397" width="0.1" height="15.0" fill="rgb(209,40,43)" rx="2" ry="2" />
<text x="923.61" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (661 samples, 0.04%)</title><rect x="878.0" y="1189" width="0.5" height="15.0" fill="rgb(229,49,24)" rx="2" ry="2" />
<text x="881.04" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (7,840 samples, 0.42%)</title><rect x="896.7" y="1413" width="5.0" height="15.0" fill="rgb(212,39,8)" rx="2" ry="2" />
<text x="899.68" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (765 samples, 0.04%)</title><rect x="1144.4" y="1381" width="0.5" height="15.0" fill="rgb(222,26,21)" rx="2" ry="2" />
<text x="1147.42" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,687 samples, 0.14%)</title><rect x="830.4" y="1333" width="1.7" height="15.0" fill="rgb(205,94,9)" rx="2" ry="2" />
<text x="833.40" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (1,370 samples, 0.07%)</title><rect x="813.2" y="1493" width="0.8" height="15.0" fill="rgb(243,28,49)" rx="2" ry="2" />
<text x="816.18" y="1503.5" ></text>
</g>
<g >
<title>caml_call_gc (171 samples, 0.01%)</title><rect x="997.2" y="1205" width="0.2" height="15.0" fill="rgb(254,122,35)" rx="2" ry="2" />
<text x="1000.25" y="1215.5" ></text>
</g>
<g >
<title>do_compare_val (733 samples, 0.04%)</title><rect x="1149.8" y="1269" width="0.4" height="15.0" fill="rgb(231,117,2)" rx="2" ry="2" />
<text x="1152.78" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1045" width="0.5" height="15.0" fill="rgb(222,8,48)" rx="2" ry="2" />
<text x="1192.48" y="1055.5" ></text>
</g>
<g >
<title>caml_apply2 (532 samples, 0.03%)</title><rect x="1062.1" y="1333" width="0.3" height="15.0" fill="rgb(229,9,51)" rx="2" ry="2" />
<text x="1065.07" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (241 samples, 0.01%)</title><rect x="989.9" y="1141" width="0.1" height="15.0" fill="rgb(221,154,42)" rx="2" ry="2" />
<text x="992.87" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (160 samples, 0.01%)</title><rect x="843.3" y="1141" width="0.1" height="15.0" fill="rgb(218,152,15)" rx="2" ry="2" />
<text x="846.31" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="597" width="0.3" height="15.0" fill="rgb(220,98,28)" rx="2" ry="2" />
<text x="1191.82" y="607.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (331 samples, 0.02%)</title><rect x="821.3" y="1301" width="0.2" height="15.0" fill="rgb(237,46,14)" rx="2" ry="2" />
<text x="824.25" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (585 samples, 0.03%)</title><rect x="1039.4" y="1317" width="0.4" height="15.0" fill="rgb(227,105,53)" rx="2" ry="2" />
<text x="1042.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (261 samples, 0.01%)</title><rect x="1165.0" y="1509" width="0.2" height="15.0" fill="rgb(224,196,39)" rx="2" ry="2" />
<text x="1168.00" y="1519.5" ></text>
</g>
<g >
<title>sweep_slice (415 samples, 0.02%)</title><rect x="243.4" y="1813" width="0.2" height="15.0" fill="rgb(242,211,52)" rx="2" ry="2" />
<text x="246.36" y="1823.5" ></text>
</g>
<g >
<title>caml_string_compare (753 samples, 0.04%)</title><rect x="798.1" y="1445" width="0.5" height="15.0" fill="rgb(232,175,52)" rx="2" ry="2" />
<text x="801.11" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (517 samples, 0.03%)</title><rect x="918.9" y="1365" width="0.3" height="15.0" fill="rgb(233,173,2)" rx="2" ry="2" />
<text x="921.88" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (350 samples, 0.02%)</title><rect x="1118.4" y="1301" width="0.2" height="15.0" fill="rgb(222,19,29)" rx="2" ry="2" />
<text x="1121.40" y="1311.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (198 samples, 0.01%)</title><rect x="891.1" y="1301" width="0.1" height="15.0" fill="rgb(233,197,24)" rx="2" ry="2" />
<text x="894.12" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (206 samples, 0.01%)</title><rect x="916.3" y="1333" width="0.1" height="15.0" fill="rgb(214,169,0)" rx="2" ry="2" />
<text x="919.26" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,376 samples, 0.13%)</title><rect x="909.5" y="1349" width="1.5" height="15.0" fill="rgb(210,162,9)" rx="2" ry="2" />
<text x="912.47" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (316 samples, 0.02%)</title><rect x="1125.8" y="1413" width="0.2" height="15.0" fill="rgb(211,127,45)" rx="2" ry="2" />
<text x="1128.82" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (921 samples, 0.05%)</title><rect x="986.8" y="1125" width="0.6" height="15.0" fill="rgb(243,36,54)" rx="2" ry="2" />
<text x="989.82" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (8,222 samples, 0.44%)</title><rect x="1045.3" y="1349" width="5.2" height="15.0" fill="rgb(222,15,9)" rx="2" ry="2" />
<text x="1048.27" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3770 (296 samples, 0.02%)</title><rect x="1040.8" y="1333" width="0.2" height="15.0" fill="rgb(241,30,29)" rx="2" ry="2" />
<text x="1043.77" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (21,752 samples, 1.17%)</title><rect x="294.8" y="1877" width="13.8" height="15.0" fill="rgb(247,29,3)" rx="2" ry="2" />
<text x="297.81" y="1887.5" ></text>
</g>
<g >
<title>caml_call_gc (182 samples, 0.01%)</title><rect x="774.1" y="1157" width="0.1" height="15.0" fill="rgb(231,229,52)" rx="2" ry="2" />
<text x="777.12" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (231 samples, 0.01%)</title><rect x="1022.2" y="1349" width="0.1" height="15.0" fill="rgb(246,99,46)" rx="2" ry="2" />
<text x="1025.19" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (1,111 samples, 0.06%)</title><rect x="805.3" y="1317" width="0.7" height="15.0" fill="rgb(244,88,19)" rx="2" ry="2" />
<text x="808.33" y="1327.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (256 samples, 0.01%)</title><rect x="1104.8" y="1365" width="0.2" height="15.0" fill="rgb(254,68,31)" rx="2" ry="2" />
<text x="1107.84" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_values_5988 (436 samples, 0.02%)</title><rect x="797.4" y="1397" width="0.3" height="15.0" fill="rgb(208,39,32)" rx="2" ry="2" />
<text x="800.38" y="1407.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (309 samples, 0.02%)</title><rect x="1168.0" y="1221" width="0.2" height="15.0" fill="rgb(224,104,23)" rx="2" ry="2" />
<text x="1171.01" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,665 samples, 0.14%)</title><rect x="855.2" y="1317" width="1.7" height="15.0" fill="rgb(251,131,44)" rx="2" ry="2" />
<text x="858.20" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (9,614 samples, 0.52%)</title><rect x="1105.5" y="1413" width="6.1" height="15.0" fill="rgb(252,196,1)" rx="2" ry="2" />
<text x="1108.47" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1250 (528 samples, 0.03%)</title><rect x="1052.6" y="1381" width="0.3" height="15.0" fill="rgb(241,197,51)" rx="2" ry="2" />
<text x="1055.61" y="1391.5" ></text>
</g>
<g >
<title>camlCmdliner_term__fun_1863 (790,455 samples, 42.50%)</title><rect x="686.8" y="1861" width="501.5" height="15.0" fill="rgb(250,193,13)" rx="2" ry="2" />
<text x="689.78" y="1871.5" >camlCmdliner_term__fun_1863</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (225 samples, 0.01%)</title><rect x="1158.5" y="1269" width="0.2" height="15.0" fill="rgb(216,121,37)" rx="2" ry="2" />
<text x="1161.53" y="1279.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (276 samples, 0.01%)</title><rect x="1083.3" y="1333" width="0.2" height="15.0" fill="rgb(239,101,37)" rx="2" ry="2" />
<text x="1086.29" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__mem_4470 (357 samples, 0.02%)</title><rect x="1015.6" y="1509" width="0.2" height="15.0" fill="rgb(234,13,1)" rx="2" ry="2" />
<text x="1018.57" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (523 samples, 0.03%)</title><rect x="956.3" y="1269" width="0.4" height="15.0" fill="rgb(235,106,17)" rx="2" ry="2" />
<text x="959.35" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1333" width="0.3" height="15.0" fill="rgb(235,121,0)" rx="2" ry="2" />
<text x="1191.82" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (248 samples, 0.01%)</title><rect x="960.0" y="1173" width="0.1" height="15.0" fill="rgb(219,168,1)" rx="2" ry="2" />
<text x="962.98" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (210 samples, 0.01%)</title><rect x="1068.4" y="1365" width="0.1" height="15.0" fill="rgb(244,35,48)" rx="2" ry="2" />
<text x="1071.36" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (464 samples, 0.02%)</title><rect x="1189.5" y="117" width="0.3" height="15.0" fill="rgb(219,200,54)" rx="2" ry="2" />
<text x="1192.50" y="127.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="597" width="0.2" height="15.0" fill="rgb(222,167,24)" rx="2" ry="2" />
<text x="1191.57" y="607.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="565" width="0.3" height="15.0" fill="rgb(248,24,0)" rx="2" ry="2" />
<text x="1191.32" y="575.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (307 samples, 0.02%)</title><rect x="1105.0" y="1365" width="0.2" height="15.0" fill="rgb(224,127,25)" rx="2" ry="2" />
<text x="1108.02" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (595 samples, 0.03%)</title><rect x="666.6" y="1829" width="0.4" height="15.0" fill="rgb(231,117,32)" rx="2" ry="2" />
<text x="669.63" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (5,183 samples, 0.28%)</title><rect x="705.6" y="1509" width="3.3" height="15.0" fill="rgb(244,127,19)" rx="2" ry="2" />
<text x="708.65" y="1519.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (262 samples, 0.01%)</title><rect x="812.1" y="1429" width="0.2" height="15.0" fill="rgb(241,14,50)" rx="2" ry="2" />
<text x="815.10" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (414 samples, 0.02%)</title><rect x="813.5" y="1445" width="0.3" height="15.0" fill="rgb(242,14,52)" rx="2" ry="2" />
<text x="816.51" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (203 samples, 0.01%)</title><rect x="830.7" y="1237" width="0.1" height="15.0" fill="rgb(239,108,35)" rx="2" ry="2" />
<text x="833.66" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (483 samples, 0.03%)</title><rect x="402.1" y="1797" width="0.3" height="15.0" fill="rgb(234,122,50)" rx="2" ry="2" />
<text x="405.08" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (5,312 samples, 0.29%)</title><rect x="709.7" y="1429" width="3.4" height="15.0" fill="rgb(207,4,25)" rx="2" ry="2" />
<text x="712.71" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (168 samples, 0.01%)</title><rect x="1151.2" y="1237" width="0.1" height="15.0" fill="rgb(212,194,42)" rx="2" ry="2" />
<text x="1154.21" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_10518 (178,243 samples, 9.58%)</title><rect x="902.3" y="1509" width="113.0" height="15.0" fill="rgb(213,213,38)" rx="2" ry="2" />
<text x="905.25" y="1519.5" >camlIrmin__Ob..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,770 samples, 0.10%)</title><rect x="1078.9" y="1397" width="1.1" height="15.0" fill="rgb(238,186,35)" rx="2" ry="2" />
<text x="1081.86" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1717" width="0.5" height="15.0" fill="rgb(223,80,39)" rx="2" ry="2" />
<text x="1192.48" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12329 (5,568 samples, 0.30%)</title><rect x="807.2" y="1525" width="3.6" height="15.0" fill="rgb(230,5,38)" rx="2" ry="2" />
<text x="810.22" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1429" width="0.5" height="15.0" fill="rgb(209,162,51)" rx="2" ry="2" />
<text x="1192.48" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (193 samples, 0.01%)</title><rect x="1146.9" y="1413" width="0.2" height="15.0" fill="rgb(243,141,54)" rx="2" ry="2" />
<text x="1149.94" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (6,948 samples, 0.37%)</title><rect x="709.2" y="1477" width="4.4" height="15.0" fill="rgb(230,97,31)" rx="2" ry="2" />
<text x="712.21" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1685" width="0.3" height="15.0" fill="rgb(241,6,27)" rx="2" ry="2" />
<text x="1192.12" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="277" width="0.3" height="15.0" fill="rgb(241,119,9)" rx="2" ry="2" />
<text x="1191.32" y="287.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (190 samples, 0.01%)</title><rect x="401.9" y="1845" width="0.1" height="15.0" fill="rgb(209,18,39)" rx="2" ry="2" />
<text x="404.92" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (194 samples, 0.01%)</title><rect x="1186.7" y="1189" width="0.1" height="15.0" fill="rgb(225,12,33)" rx="2" ry="2" />
<text x="1189.72" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (715 samples, 0.04%)</title><rect x="1120.4" y="1301" width="0.4" height="15.0" fill="rgb(207,174,11)" rx="2" ry="2" />
<text x="1123.38" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (512 samples, 0.03%)</title><rect x="910.2" y="1301" width="0.4" height="15.0" fill="rgb(250,164,40)" rx="2" ry="2" />
<text x="913.23" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,656 samples, 0.09%)</title><rect x="826.1" y="1093" width="1.1" height="15.0" fill="rgb(234,129,3)" rx="2" ry="2" />
<text x="829.11" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (167 samples, 0.01%)</title><rect x="962.4" y="1189" width="0.1" height="15.0" fill="rgb(217,54,34)" rx="2" ry="2" />
<text x="965.41" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,150 samples, 0.06%)</title><rect x="929.7" y="1253" width="0.8" height="15.0" fill="rgb(247,11,9)" rx="2" ry="2" />
<text x="932.75" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (519 samples, 0.03%)</title><rect x="1122.6" y="1317" width="0.4" height="15.0" fill="rgb(228,81,27)" rx="2" ry="2" />
<text x="1125.63" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (2,276 samples, 0.12%)</title><rect x="324.5" y="1877" width="1.4" height="15.0" fill="rgb(237,128,53)" rx="2" ry="2" />
<text x="327.46" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (600 samples, 0.03%)</title><rect x="925.1" y="997" width="0.3" height="15.0" fill="rgb(244,180,33)" rx="2" ry="2" />
<text x="928.05" y="1007.5" ></text>
</g>
<g >
<title>mark_slice_darken (334 samples, 0.02%)</title><rect x="776.1" y="1109" width="0.2" height="15.0" fill="rgb(219,86,32)" rx="2" ry="2" />
<text x="779.12" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (248 samples, 0.01%)</title><rect x="1096.6" y="1461" width="0.1" height="15.0" fill="rgb(223,14,22)" rx="2" ry="2" />
<text x="1099.58" y="1471.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (360 samples, 0.02%)</title><rect x="1112.3" y="1525" width="0.2" height="15.0" fill="rgb(214,200,52)" rx="2" ry="2" />
<text x="1115.28" y="1535.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,250 samples, 0.07%)</title><rect x="668.2" y="1797" width="0.8" height="15.0" fill="rgb(213,135,36)" rx="2" ry="2" />
<text x="671.22" y="1807.5" ></text>
</g>
<g >
<title>caml_c_call (362 samples, 0.02%)</title><rect x="530.0" y="1925" width="0.3" height="15.0" fill="rgb(221,80,32)" rx="2" ry="2" />
<text x="533.03" y="1935.5" ></text>
</g>
<g >
<title>caml_garbage_collection (162 samples, 0.01%)</title><rect x="863.6" y="1237" width="0.1" height="15.0" fill="rgb(237,3,7)" rx="2" ry="2" />
<text x="866.63" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,021 samples, 0.11%)</title><rect x="159.7" y="1829" width="1.3" height="15.0" fill="rgb(252,107,5)" rx="2" ry="2" />
<text x="162.74" y="1839.5" ></text>
</g>
<g >
<title>sweep_slice (442 samples, 0.02%)</title><rect x="420.6" y="1829" width="0.2" height="15.0" fill="rgb(220,48,8)" rx="2" ry="2" />
<text x="423.57" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (822 samples, 0.04%)</title><rect x="1102.8" y="1397" width="0.5" height="15.0" fill="rgb(211,139,47)" rx="2" ry="2" />
<text x="1105.76" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (5,234 samples, 0.28%)</title><rect x="1183.8" y="1301" width="3.3" height="15.0" fill="rgb(229,45,20)" rx="2" ry="2" />
<text x="1186.79" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (193 samples, 0.01%)</title><rect x="700.5" y="1445" width="0.1" height="15.0" fill="rgb(216,30,47)" rx="2" ry="2" />
<text x="703.52" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,195 samples, 0.06%)</title><rect x="697.1" y="1413" width="0.8" height="15.0" fill="rgb(220,67,1)" rx="2" ry="2" />
<text x="700.13" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (4,735 samples, 0.25%)</title><rect x="691.7" y="1493" width="3.0" height="15.0" fill="rgb(208,173,39)" rx="2" ry="2" />
<text x="694.71" y="1503.5" ></text>
</g>
<g >
<title>mark_slice (545 samples, 0.03%)</title><rect x="660.9" y="1861" width="0.3" height="15.0" fill="rgb(246,22,18)" rx="2" ry="2" />
<text x="663.87" y="1871.5" ></text>
</g>
<g >
<title>caml_string_length (1,076 samples, 0.06%)</title><rect x="833.6" y="1269" width="0.7" height="15.0" fill="rgb(209,1,36)" rx="2" ry="2" />
<text x="836.60" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (234 samples, 0.01%)</title><rect x="822.6" y="1397" width="0.1" height="15.0" fill="rgb(246,211,38)" rx="2" ry="2" />
<text x="825.56" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (217 samples, 0.01%)</title><rect x="896.9" y="1381" width="0.1" height="15.0" fill="rgb(239,9,37)" rx="2" ry="2" />
<text x="899.88" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (203 samples, 0.01%)</title><rect x="736.9" y="1301" width="0.1" height="15.0" fill="rgb(205,175,44)" rx="2" ry="2" />
<text x="739.92" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (482 samples, 0.03%)</title><rect x="910.2" y="1285" width="0.4" height="15.0" fill="rgb(238,201,51)" rx="2" ry="2" />
<text x="913.25" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1893" width="0.2" height="15.0" fill="rgb(238,228,1)" rx="2" ry="2" />
<text x="1191.57" y="1903.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (173 samples, 0.01%)</title><rect x="1076.0" y="1365" width="0.1" height="15.0" fill="rgb(211,161,30)" rx="2" ry="2" />
<text x="1079.02" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (227 samples, 0.01%)</title><rect x="878.1" y="1173" width="0.2" height="15.0" fill="rgb(206,14,20)" rx="2" ry="2" />
<text x="881.14" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,406 samples, 0.08%)</title><rect x="764.5" y="1253" width="0.8" height="15.0" fill="rgb(232,146,34)" rx="2" ry="2" />
<text x="767.46" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (179 samples, 0.01%)</title><rect x="710.6" y="1349" width="0.2" height="15.0" fill="rgb(235,70,27)" rx="2" ry="2" />
<text x="713.64" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (3,497 samples, 0.19%)</title><rect x="977.8" y="1173" width="2.2" height="15.0" fill="rgb(222,141,1)" rx="2" ry="2" />
<text x="980.81" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (616 samples, 0.03%)</title><rect x="961.4" y="1205" width="0.4" height="15.0" fill="rgb(223,131,15)" rx="2" ry="2" />
<text x="964.44" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="309" width="0.2" height="15.0" fill="rgb(225,152,45)" rx="2" ry="2" />
<text x="1191.57" y="319.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (238 samples, 0.01%)</title><rect x="725.7" y="1317" width="0.1" height="15.0" fill="rgb(241,179,38)" rx="2" ry="2" />
<text x="728.68" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_2258 (584 samples, 0.03%)</title><rect x="1023.5" y="1397" width="0.4" height="15.0" fill="rgb(234,88,53)" rx="2" ry="2" />
<text x="1026.53" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1013" width="0.5" height="15.0" fill="rgb(213,226,16)" rx="2" ry="2" />
<text x="1192.48" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1781" width="0.3" height="15.0" fill="rgb(233,209,17)" rx="2" ry="2" />
<text x="1191.32" y="1791.5" ></text>
</g>
<g >
<title>mark_slice_darken (550 samples, 0.03%)</title><rect x="772.4" y="1077" width="0.3" height="15.0" fill="rgb(246,177,37)" rx="2" ry="2" />
<text x="775.36" y="1087.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (168 samples, 0.01%)</title><rect x="689.5" y="85" width="0.1" height="15.0" fill="rgb(220,138,32)" rx="2" ry="2" />
<text x="692.49" y="95.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="901" width="0.2" height="15.0" fill="rgb(207,228,5)" rx="2" ry="2" />
<text x="1191.57" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__read_4613 (198 samples, 0.01%)</title><rect x="969.8" y="1285" width="0.1" height="15.0" fill="rgb(237,21,15)" rx="2" ry="2" />
<text x="972.81" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (491 samples, 0.03%)</title><rect x="689.3" y="1445" width="0.3" height="15.0" fill="rgb(248,147,0)" rx="2" ry="2" />
<text x="692.33" y="1455.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (948 samples, 0.05%)</title><rect x="970.8" y="1221" width="0.6" height="15.0" fill="rgb(222,22,46)" rx="2" ry="2" />
<text x="973.81" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (441 samples, 0.02%)</title><rect x="872.9" y="1173" width="0.3" height="15.0" fill="rgb(224,44,23)" rx="2" ry="2" />
<text x="875.87" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__fun_4495 (192 samples, 0.01%)</title><rect x="1016.5" y="1509" width="0.1" height="15.0" fill="rgb(246,43,23)" rx="2" ry="2" />
<text x="1019.52" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1765" width="0.5" height="15.0" fill="rgb(249,212,30)" rx="2" ry="2" />
<text x="1192.48" y="1775.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (405 samples, 0.02%)</title><rect x="698.0" y="1413" width="0.3" height="15.0" fill="rgb(207,225,18)" rx="2" ry="2" />
<text x="701.02" y="1423.5" ></text>
</g>
<g >
<title>caml_hash (382 samples, 0.02%)</title><rect x="813.5" y="1429" width="0.3" height="15.0" fill="rgb(224,151,48)" rx="2" ry="2" />
<text x="816.53" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (221 samples, 0.01%)</title><rect x="992.7" y="1157" width="0.2" height="15.0" fill="rgb(205,69,35)" rx="2" ry="2" />
<text x="995.74" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (1,042 samples, 0.06%)</title><rect x="954.8" y="1205" width="0.7" height="15.0" fill="rgb(252,119,33)" rx="2" ry="2" />
<text x="957.85" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (261 samples, 0.01%)</title><rect x="711.0" y="1349" width="0.1" height="15.0" fill="rgb(241,203,24)" rx="2" ry="2" />
<text x="713.97" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (172 samples, 0.01%)</title><rect x="726.2" y="1317" width="0.2" height="15.0" fill="rgb(248,226,0)" rx="2" ry="2" />
<text x="729.24" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (353 samples, 0.02%)</title><rect x="698.0" y="1397" width="0.3" height="15.0" fill="rgb(236,103,12)" rx="2" ry="2" />
<text x="701.05" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,972 samples, 0.32%)</title><rect x="42.2" y="1861" width="3.8" height="15.0" fill="rgb(206,20,43)" rx="2" ry="2" />
<text x="45.16" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="837" width="0.5" height="15.0" fill="rgb(235,25,31)" rx="2" ry="2" />
<text x="1192.48" y="847.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (189 samples, 0.01%)</title><rect x="20.6" y="1989" width="0.1" height="15.0" fill="rgb(233,18,35)" rx="2" ry="2" />
<text x="23.61" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (316 samples, 0.02%)</title><rect x="993.8" y="1157" width="0.2" height="15.0" fill="rgb(232,46,33)" rx="2" ry="2" />
<text x="996.84" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (191 samples, 0.01%)</title><rect x="439.5" y="1861" width="0.1" height="15.0" fill="rgb(229,200,5)" rx="2" ry="2" />
<text x="442.46" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (319 samples, 0.02%)</title><rect x="750.8" y="1221" width="0.2" height="15.0" fill="rgb(233,69,3)" rx="2" ry="2" />
<text x="753.77" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (535,880 samples, 28.81%)</title><rect x="95.8" y="1941" width="340.0" height="15.0" fill="rgb(241,20,37)" rx="2" ry="2" />
<text x="98.83" y="1951.5" >camlIndex__decode_entry_1205</text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (158 samples, 0.01%)</title><rect x="934.4" y="1269" width="0.1" height="15.0" fill="rgb(219,72,9)" rx="2" ry="2" />
<text x="937.42" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1733" width="0.3" height="15.0" fill="rgb(248,53,9)" rx="2" ry="2" />
<text x="1192.12" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (654 samples, 0.04%)</title><rect x="853.9" y="1301" width="0.4" height="15.0" fill="rgb(205,148,13)" rx="2" ry="2" />
<text x="856.88" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,832 samples, 0.15%)</title><rect x="913.4" y="1317" width="1.8" height="15.0" fill="rgb(240,1,26)" rx="2" ry="2" />
<text x="916.40" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_29949 (41,066 samples, 2.21%)</title><rect x="689.7" y="1605" width="26.0" height="15.0" fill="rgb(216,88,10)" rx="2" ry="2" />
<text x="692.68" y="1615.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (516 samples, 0.03%)</title><rect x="803.5" y="1349" width="0.4" height="15.0" fill="rgb(249,85,30)" rx="2" ry="2" />
<text x="806.54" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="965" width="0.2" height="15.0" fill="rgb(230,43,8)" rx="2" ry="2" />
<text x="1191.57" y="975.5" ></text>
</g>
<g >
<title>camlIndex__fun_4728 (17,588 samples, 0.95%)</title><rect x="665.5" y="1941" width="11.1" height="15.0" fill="rgb(235,151,54)" rx="2" ry="2" />
<text x="668.45" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="277" width="0.2" height="15.0" fill="rgb(244,188,35)" rx="2" ry="2" />
<text x="1191.57" y="287.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,212 samples, 0.07%)</title><rect x="1104.6" y="1429" width="0.8" height="15.0" fill="rgb(241,112,31)" rx="2" ry="2" />
<text x="1107.61" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,804 samples, 0.20%)</title><rect x="1128.5" y="1333" width="2.4" height="15.0" fill="rgb(217,169,21)" rx="2" ry="2" />
<text x="1131.46" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1388 (19,278 samples, 1.04%)</title><rect x="496.4" y="1941" width="12.3" height="15.0" fill="rgb(237,204,2)" rx="2" ry="2" />
<text x="499.44" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1205" width="0.3" height="15.0" fill="rgb(253,214,45)" rx="2" ry="2" />
<text x="1191.82" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1669" width="0.3" height="15.0" fill="rgb(215,10,34)" rx="2" ry="2" />
<text x="1192.12" y="1679.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,006 samples, 0.05%)</title><rect x="582.6" y="1877" width="0.6" height="15.0" fill="rgb(231,80,8)" rx="2" ry="2" />
<text x="585.56" y="1887.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,022 samples, 0.05%)</title><rect x="927.9" y="1317" width="0.7" height="15.0" fill="rgb(238,213,34)" rx="2" ry="2" />
<text x="930.94" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__fun_4718 (626 samples, 0.03%)</title><rect x="680.5" y="1925" width="0.4" height="15.0" fill="rgb(218,57,7)" rx="2" ry="2" />
<text x="683.52" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (201 samples, 0.01%)</title><rect x="1146.1" y="1397" width="0.1" height="15.0" fill="rgb(241,173,33)" rx="2" ry="2" />
<text x="1149.08" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (973 samples, 0.05%)</title><rect x="815.8" y="1381" width="0.6" height="15.0" fill="rgb(206,156,6)" rx="2" ry="2" />
<text x="818.83" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1413" width="0.2" height="15.0" fill="rgb(225,9,12)" rx="2" ry="2" />
<text x="1191.57" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (357 samples, 0.02%)</title><rect x="1188.6" y="181" width="0.2" height="15.0" fill="rgb(217,173,24)" rx="2" ry="2" />
<text x="1191.59" y="191.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (5,940 samples, 0.32%)</title><rect x="109.4" y="1893" width="3.7" height="15.0" fill="rgb(216,63,35)" rx="2" ry="2" />
<text x="112.36" y="1903.5" ></text>
</g>
<g >
<title>caml_hash (332 samples, 0.02%)</title><rect x="758.8" y="1269" width="0.2" height="15.0" fill="rgb(241,22,17)" rx="2" ry="2" />
<text x="761.82" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (530 samples, 0.03%)</title><rect x="402.0" y="1813" width="0.4" height="15.0" fill="rgb(241,199,34)" rx="2" ry="2" />
<text x="405.05" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482 samples, 0.03%)</title><rect x="998.5" y="1029" width="0.3" height="15.0" fill="rgb(253,66,26)" rx="2" ry="2" />
<text x="1001.49" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (416 samples, 0.02%)</title><rect x="866.8" y="1157" width="0.3" height="15.0" fill="rgb(217,59,46)" rx="2" ry="2" />
<text x="869.83" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (298 samples, 0.02%)</title><rect x="670.0" y="1765" width="0.2" height="15.0" fill="rgb(241,166,40)" rx="2" ry="2" />
<text x="673.02" y="1775.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (7,679 samples, 0.41%)</title><rect x="902.6" y="1381" width="4.9" height="15.0" fill="rgb(236,126,21)" rx="2" ry="2" />
<text x="905.63" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__fun_4722 (4,154 samples, 0.22%)</title><rect x="682.9" y="1925" width="2.6" height="15.0" fill="rgb(254,6,28)" rx="2" ry="2" />
<text x="685.90" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (469 samples, 0.03%)</title><rect x="1189.1" y="213" width="0.3" height="15.0" fill="rgb(253,32,24)" rx="2" ry="2" />
<text x="1192.12" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6258 (2,149 samples, 0.12%)</title><rect x="1149.0" y="1349" width="1.3" height="15.0" fill="rgb(237,217,15)" rx="2" ry="2" />
<text x="1151.97" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (1,072 samples, 0.06%)</title><rect x="908.4" y="1317" width="0.7" height="15.0" fill="rgb(214,71,16)" rx="2" ry="2" />
<text x="911.44" y="1327.5" ></text>
</g>
<g >
<title>caml_int_compare (373 samples, 0.02%)</title><rect x="1073.6" y="1381" width="0.2" height="15.0" fill="rgb(220,54,17)" rx="2" ry="2" />
<text x="1076.58" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (303 samples, 0.02%)</title><rect x="1066.0" y="1333" width="0.2" height="15.0" fill="rgb(209,188,44)" rx="2" ry="2" />
<text x="1068.97" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (1,180 samples, 0.06%)</title><rect x="1035.8" y="1333" width="0.7" height="15.0" fill="rgb(220,188,14)" rx="2" ry="2" />
<text x="1038.79" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,162 samples, 0.06%)</title><rect x="1168.8" y="1205" width="0.7" height="15.0" fill="rgb(242,22,8)" rx="2" ry="2" />
<text x="1171.77" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (702 samples, 0.04%)</title><rect x="139.3" y="1813" width="0.5" height="15.0" fill="rgb(224,114,14)" rx="2" ry="2" />
<text x="142.31" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_entry_5986 (95,903 samples, 5.16%)</title><rect x="832.5" y="1397" width="60.9" height="15.0" fill="rgb(237,51,11)" rx="2" ry="2" />
<text x="835.54" y="1407.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (184 samples, 0.01%)</title><rect x="759.9" y="1333" width="0.1" height="15.0" fill="rgb(225,10,17)" rx="2" ry="2" />
<text x="762.88" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (530 samples, 0.03%)</title><rect x="747.4" y="1317" width="0.4" height="15.0" fill="rgb(215,61,21)" rx="2" ry="2" />
<text x="750.44" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,372 samples, 0.07%)</title><rect x="741.3" y="1253" width="0.8" height="15.0" fill="rgb(223,191,36)" rx="2" ry="2" />
<text x="744.28" y="1263.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (190 samples, 0.01%)</title><rect x="795.6" y="1317" width="0.1" height="15.0" fill="rgb(206,62,1)" rx="2" ry="2" />
<text x="798.55" y="1327.5" ></text>
</g>
<g >
<title>caml_oldify_one (1,684 samples, 0.09%)</title><rect x="30.2" y="2021" width="1.1" height="15.0" fill="rgb(205,217,2)" rx="2" ry="2" />
<text x="33.22" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (440 samples, 0.02%)</title><rect x="990.3" y="1157" width="0.3" height="15.0" fill="rgb(248,96,28)" rx="2" ry="2" />
<text x="993.28" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (159 samples, 0.01%)</title><rect x="732.8" y="1333" width="0.1" height="15.0" fill="rgb(230,213,19)" rx="2" ry="2" />
<text x="735.82" y="1343.5" ></text>
</g>
<g >
<title>caml_string_compare (181 samples, 0.01%)</title><rect x="900.6" y="1285" width="0.1" height="15.0" fill="rgb(246,116,22)" rx="2" ry="2" />
<text x="903.56" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (213 samples, 0.01%)</title><rect x="844.5" y="1205" width="0.1" height="15.0" fill="rgb(217,58,17)" rx="2" ry="2" />
<text x="847.47" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (6,587 samples, 0.35%)</title><rect x="928.7" y="1349" width="4.2" height="15.0" fill="rgb(247,25,0)" rx="2" ry="2" />
<text x="931.73" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (508 samples, 0.03%)</title><rect x="689.3" y="1509" width="0.3" height="15.0" fill="rgb(236,34,20)" rx="2" ry="2" />
<text x="692.32" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (4,250 samples, 0.23%)</title><rect x="1177.1" y="1301" width="2.7" height="15.0" fill="rgb(224,200,41)" rx="2" ry="2" />
<text x="1180.11" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__check_and_copy_to_lower_3801 (451 samples, 0.02%)</title><rect x="1014.2" y="1397" width="0.3" height="15.0" fill="rgb(250,187,33)" rx="2" ry="2" />
<text x="1017.22" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,269 samples, 0.07%)</title><rect x="711.7" y="1413" width="0.8" height="15.0" fill="rgb(205,207,21)" rx="2" ry="2" />
<text x="714.71" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (285 samples, 0.02%)</title><rect x="822.5" y="1413" width="0.2" height="15.0" fill="rgb(224,192,54)" rx="2" ry="2" />
<text x="825.53" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (205 samples, 0.01%)</title><rect x="708.0" y="1397" width="0.1" height="15.0" fill="rgb(241,217,44)" rx="2" ry="2" />
<text x="710.96" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (332 samples, 0.02%)</title><rect x="960.9" y="1205" width="0.2" height="15.0" fill="rgb(214,97,9)" rx="2" ry="2" />
<text x="963.89" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3718 (3,914 samples, 0.21%)</title><rect x="220.0" y="1893" width="2.5" height="15.0" fill="rgb(226,143,54)" rx="2" ry="2" />
<text x="223.05" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1253" width="0.3" height="15.0" fill="rgb(234,152,1)" rx="2" ry="2" />
<text x="1191.82" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (362 samples, 0.02%)</title><rect x="1159.1" y="1189" width="0.2" height="15.0" fill="rgb(249,166,29)" rx="2" ry="2" />
<text x="1162.06" y="1199.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,006 samples, 0.05%)</title><rect x="582.6" y="1861" width="0.6" height="15.0" fill="rgb(231,220,32)" rx="2" ry="2" />
<text x="585.56" y="1871.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (6,969 samples, 0.37%)</title><rect x="720.4" y="1413" width="4.5" height="15.0" fill="rgb(236,132,24)" rx="2" ry="2" />
<text x="723.44" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,154 samples, 0.06%)</title><rect x="927.9" y="1349" width="0.7" height="15.0" fill="rgb(237,21,51)" rx="2" ry="2" />
<text x="930.90" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (341 samples, 0.02%)</title><rect x="1059.6" y="1333" width="0.2" height="15.0" fill="rgb(216,77,33)" rx="2" ry="2" />
<text x="1062.57" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1205" width="0.5" height="15.0" fill="rgb(233,216,35)" rx="2" ry="2" />
<text x="1192.48" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (923 samples, 0.05%)</title><rect x="925.9" y="1349" width="0.6" height="15.0" fill="rgb(252,171,52)" rx="2" ry="2" />
<text x="928.87" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (580 samples, 0.03%)</title><rect x="859.3" y="1221" width="0.4" height="15.0" fill="rgb(247,64,13)" rx="2" ry="2" />
<text x="862.29" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (469 samples, 0.03%)</title><rect x="1189.1" y="229" width="0.3" height="15.0" fill="rgb(252,202,29)" rx="2" ry="2" />
<text x="1192.12" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (501 samples, 0.03%)</title><rect x="1063.6" y="1349" width="0.4" height="15.0" fill="rgb(215,89,25)" rx="2" ry="2" />
<text x="1066.65" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12331 (5,350 samples, 0.29%)</title><rect x="807.3" y="1493" width="3.3" height="15.0" fill="rgb(221,91,18)" rx="2" ry="2" />
<text x="810.25" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__filter_map_inplace_2091 (5,116 samples, 0.28%)</title><rect x="679.6" y="1957" width="3.2" height="15.0" fill="rgb(217,35,11)" rx="2" ry="2" />
<text x="682.56" y="1967.5" ></text>
</g>
<g >
<title>mark_slice (183 samples, 0.01%)</title><rect x="1113.3" y="1461" width="0.1" height="15.0" fill="rgb(253,125,43)" rx="2" ry="2" />
<text x="1116.26" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (421 samples, 0.02%)</title><rect x="46.3" y="1925" width="0.2" height="15.0" fill="rgb(244,73,13)" rx="2" ry="2" />
<text x="49.28" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (1,283 samples, 0.07%)</title><rect x="692.7" y="1429" width="0.8" height="15.0" fill="rgb(230,2,49)" rx="2" ry="2" />
<text x="695.72" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (1,731 samples, 0.09%)</title><rect x="159.7" y="1813" width="1.1" height="15.0" fill="rgb(226,42,0)" rx="2" ry="2" />
<text x="162.74" y="1823.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,221 samples, 0.23%)</title><rect x="229.0" y="1861" width="2.7" height="15.0" fill="rgb(211,142,29)" rx="2" ry="2" />
<text x="231.99" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,954 samples, 0.16%)</title><rect x="903.4" y="1317" width="1.9" height="15.0" fill="rgb(254,101,44)" rx="2" ry="2" />
<text x="906.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="469" width="0.5" height="15.0" fill="rgb(241,58,42)" rx="2" ry="2" />
<text x="1192.48" y="479.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,558 samples, 0.14%)</title><rect x="268.9" y="1829" width="1.6" height="15.0" fill="rgb(235,24,9)" rx="2" ry="2" />
<text x="271.92" y="1839.5" ></text>
</g>
<g >
<title>caml_garbage_collection (222 samples, 0.01%)</title><rect x="854.8" y="1301" width="0.2" height="15.0" fill="rgb(206,115,45)" rx="2" ry="2" />
<text x="857.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (6,746 samples, 0.36%)</title><rect x="846.1" y="1269" width="4.3" height="15.0" fill="rgb(217,100,43)" rx="2" ry="2" />
<text x="849.14" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (223 samples, 0.01%)</title><rect x="773.7" y="1189" width="0.2" height="15.0" fill="rgb(215,153,28)" rx="2" ry="2" />
<text x="776.73" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,382 samples, 0.24%)</title><rect x="43.2" y="1845" width="2.8" height="15.0" fill="rgb(219,224,43)" rx="2" ry="2" />
<text x="46.17" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (24,139 samples, 1.30%)</title><rect x="690.1" y="1541" width="15.3" height="15.0" fill="rgb(209,91,9)" rx="2" ry="2" />
<text x="693.07" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (13,721 samples, 0.74%)</title><rect x="1086.0" y="1477" width="8.7" height="15.0" fill="rgb(235,219,39)" rx="2" ry="2" />
<text x="1088.98" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1807 (3,999 samples, 0.22%)</title><rect x="937.6" y="1317" width="2.5" height="15.0" fill="rgb(240,227,9)" rx="2" ry="2" />
<text x="940.60" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (395 samples, 0.02%)</title><rect x="1188.3" y="1093" width="0.3" height="15.0" fill="rgb(206,114,51)" rx="2" ry="2" />
<text x="1191.32" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (938 samples, 0.05%)</title><rect x="694.1" y="1285" width="0.6" height="15.0" fill="rgb(252,79,41)" rx="2" ry="2" />
<text x="697.12" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (206 samples, 0.01%)</title><rect x="1184.6" y="1205" width="0.1" height="15.0" fill="rgb(214,202,47)" rx="2" ry="2" />
<text x="1187.58" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11501 (606,146 samples, 32.59%)</title><rect x="716.6" y="1557" width="384.5" height="15.0" fill="rgb(219,75,9)" rx="2" ry="2" />
<text x="719.55" y="1567.5" >camlIrmin_layers__Layered__fun_11501</text>
</g>
<g >
<title>caml_call_gc (164 samples, 0.01%)</title><rect x="1025.5" y="1397" width="0.1" height="15.0" fill="rgb(253,59,13)" rx="2" ry="2" />
<text x="1028.49" y="1407.5" ></text>
</g>
<g >
<title>caml_hash (1,644 samples, 0.09%)</title><rect x="778.8" y="1189" width="1.0" height="15.0" fill="rgb(208,32,41)" rx="2" ry="2" />
<text x="781.76" y="1199.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (182 samples, 0.01%)</title><rect x="993.3" y="1077" width="0.1" height="15.0" fill="rgb(234,58,32)" rx="2" ry="2" />
<text x="996.29" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (262 samples, 0.01%)</title><rect x="881.9" y="1189" width="0.2" height="15.0" fill="rgb(226,220,52)" rx="2" ry="2" />
<text x="884.92" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (187 samples, 0.01%)</title><rect x="579.3" y="1765" width="0.1" height="15.0" fill="rgb(234,210,19)" rx="2" ry="2" />
<text x="582.31" y="1775.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (2,670 samples, 0.14%)</title><rect x="662.6" y="1941" width="1.7" height="15.0" fill="rgb(253,193,39)" rx="2" ry="2" />
<text x="665.59" y="1951.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (907 samples, 0.05%)</title><rect x="1115.7" y="1397" width="0.6" height="15.0" fill="rgb(211,178,47)" rx="2" ry="2" />
<text x="1118.72" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (186 samples, 0.01%)</title><rect x="1111.8" y="1413" width="0.1" height="15.0" fill="rgb(248,18,43)" rx="2" ry="2" />
<text x="1114.76" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (703 samples, 0.04%)</title><rect x="1170.3" y="1205" width="0.5" height="15.0" fill="rgb(240,9,35)" rx="2" ry="2" />
<text x="1173.33" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (289 samples, 0.02%)</title><rect x="906.5" y="1253" width="0.2" height="15.0" fill="rgb(234,33,8)" rx="2" ry="2" />
<text x="909.47" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1221" width="0.3" height="15.0" fill="rgb(226,98,17)" rx="2" ry="2" />
<text x="1191.82" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (188 samples, 0.01%)</title><rect x="1154.6" y="1285" width="0.1" height="15.0" fill="rgb(253,121,22)" rx="2" ry="2" />
<text x="1157.56" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="757" width="0.5" height="15.0" fill="rgb(227,226,28)" rx="2" ry="2" />
<text x="1192.48" y="767.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (2,514 samples, 0.14%)</title><rect x="579.5" y="1893" width="1.6" height="15.0" fill="rgb(206,147,33)" rx="2" ry="2" />
<text x="582.46" y="1903.5" ></text>
</g>
<g >
<title>caml_obj_tag (273 samples, 0.01%)</title><rect x="1075.2" y="1381" width="0.2" height="15.0" fill="rgb(235,170,49)" rx="2" ry="2" />
<text x="1078.19" y="1391.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,089 samples, 0.06%)</title><rect x="817.3" y="1365" width="0.7" height="15.0" fill="rgb(246,179,35)" rx="2" ry="2" />
<text x="820.32" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (249 samples, 0.01%)</title><rect x="1169.7" y="1253" width="0.1" height="15.0" fill="rgb(234,191,46)" rx="2" ry="2" />
<text x="1172.67" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (1,316 samples, 0.07%)</title><rect x="1166.7" y="1269" width="0.8" height="15.0" fill="rgb(222,91,50)" rx="2" ry="2" />
<text x="1169.71" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,994 samples, 0.21%)</title><rect x="935.0" y="1237" width="2.6" height="15.0" fill="rgb(244,150,17)" rx="2" ry="2" />
<text x="938.05" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,659 samples, 0.09%)</title><rect x="1071.0" y="1221" width="1.0" height="15.0" fill="rgb(222,45,22)" rx="2" ry="2" />
<text x="1073.96" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (380 samples, 0.02%)</title><rect x="824.3" y="1141" width="0.3" height="15.0" fill="rgb(240,198,4)" rx="2" ry="2" />
<text x="827.33" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,775 samples, 0.20%)</title><rect x="727.0" y="1269" width="2.4" height="15.0" fill="rgb(223,21,21)" rx="2" ry="2" />
<text x="730.03" y="1279.5" ></text>
</g>
<g >
<title>caml_oldify_one (256 samples, 0.01%)</title><rect x="678.6" y="1893" width="0.2" height="15.0" fill="rgb(253,113,4)" rx="2" ry="2" />
<text x="681.60" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (347 samples, 0.02%)</title><rect x="1137.9" y="1285" width="0.2" height="15.0" fill="rgb(230,36,14)" rx="2" ry="2" />
<text x="1140.91" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1957" width="0.2" height="15.0" fill="rgb(208,31,28)" rx="2" ry="2" />
<text x="1191.57" y="1967.5" ></text>
</g>
<g >
<title>caml_apply2 (285 samples, 0.02%)</title><rect x="959.0" y="1205" width="0.2" height="15.0" fill="rgb(221,22,8)" rx="2" ry="2" />
<text x="962.00" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (370 samples, 0.02%)</title><rect x="689.4" y="949" width="0.2" height="15.0" fill="rgb(206,169,52)" rx="2" ry="2" />
<text x="692.39" y="959.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (3,498 samples, 0.19%)</title><rect x="706.0" y="1429" width="2.2" height="15.0" fill="rgb(240,140,49)" rx="2" ry="2" />
<text x="709.00" y="1439.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (529 samples, 0.03%)</title><rect x="113.2" y="1829" width="0.3" height="15.0" fill="rgb(252,216,42)" rx="2" ry="2" />
<text x="116.18" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (354 samples, 0.02%)</title><rect x="1144.4" y="1365" width="0.3" height="15.0" fill="rgb(245,45,7)" rx="2" ry="2" />
<text x="1147.44" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,209 samples, 0.07%)</title><rect x="215.6" y="1829" width="0.7" height="15.0" fill="rgb(209,32,38)" rx="2" ry="2" />
<text x="218.56" y="1839.5" ></text>
</g>
<g >
<title>caml_apply3 (961 samples, 0.05%)</title><rect x="660.1" y="1941" width="0.7" height="15.0" fill="rgb(253,55,48)" rx="2" ry="2" />
<text x="663.15" y="1951.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,110 samples, 0.06%)</title><rect x="911.7" y="1237" width="0.7" height="15.0" fill="rgb(253,51,9)" rx="2" ry="2" />
<text x="914.69" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (642 samples, 0.03%)</title><rect x="886.3" y="1077" width="0.4" height="15.0" fill="rgb(250,52,45)" rx="2" ry="2" />
<text x="889.31" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1541" width="0.3" height="15.0" fill="rgb(227,74,6)" rx="2" ry="2" />
<text x="1192.12" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (179 samples, 0.01%)</title><rect x="1158.1" y="1269" width="0.1" height="15.0" fill="rgb(217,26,19)" rx="2" ry="2" />
<text x="1161.12" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,277 samples, 0.07%)</title><rect x="704.5" y="1429" width="0.8" height="15.0" fill="rgb(242,94,53)" rx="2" ry="2" />
<text x="707.47" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (308 samples, 0.02%)</title><rect x="908.6" y="1237" width="0.2" height="15.0" fill="rgb(205,222,46)" rx="2" ry="2" />
<text x="911.58" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (2,556 samples, 0.14%)</title><rect x="346.7" y="1909" width="1.6" height="15.0" fill="rgb(205,100,31)" rx="2" ry="2" />
<text x="349.67" y="1919.5" ></text>
</g>
<g >
<title>caml_apply2 (692 samples, 0.04%)</title><rect x="441.1" y="1893" width="0.4" height="15.0" fill="rgb(228,76,28)" rx="2" ry="2" />
<text x="444.09" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="2037" width="0.3" height="15.0" fill="rgb(252,144,13)" rx="2" ry="2" />
<text x="1192.12" y="2047.5" ></text>
</g>
<g >
<title>mark_slice (294 samples, 0.02%)</title><rect x="1124.3" y="1237" width="0.2" height="15.0" fill="rgb(248,101,29)" rx="2" ry="2" />
<text x="1127.29" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_1432 (212 samples, 0.01%)</title><rect x="760.7" y="1317" width="0.2" height="15.0" fill="rgb(233,206,14)" rx="2" ry="2" />
<text x="763.74" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (885 samples, 0.05%)</title><rect x="863.2" y="1269" width="0.5" height="15.0" fill="rgb(219,21,44)" rx="2" ry="2" />
<text x="866.17" y="1279.5" ></text>
</g>
<g >
<title>caml_modify (3,798 samples, 0.20%)</title><rect x="93.3" y="1909" width="2.4" height="15.0" fill="rgb(252,166,43)" rx="2" ry="2" />
<text x="96.29" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (2,817 samples, 0.15%)</title><rect x="683.3" y="1893" width="1.8" height="15.0" fill="rgb(216,138,24)" rx="2" ry="2" />
<text x="686.27" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1061" width="0.2" height="15.0" fill="rgb(230,150,49)" rx="2" ry="2" />
<text x="1191.57" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11797 (5,520 samples, 0.30%)</title><rect x="705.5" y="1541" width="3.5" height="15.0" fill="rgb(243,146,24)" rx="2" ry="2" />
<text x="708.51" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="533" width="0.3" height="15.0" fill="rgb(230,156,0)" rx="2" ry="2" />
<text x="1192.12" y="543.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (184 samples, 0.01%)</title><rect x="1165.0" y="1189" width="0.1" height="15.0" fill="rgb(232,215,35)" rx="2" ry="2" />
<text x="1168.03" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (633 samples, 0.03%)</title><rect x="872.0" y="1125" width="0.4" height="15.0" fill="rgb(221,58,9)" rx="2" ry="2" />
<text x="874.98" y="1135.5" ></text>
</g>
<g >
<title>__lseek64 (171 samples, 0.01%)</title><rect x="1104.7" y="1381" width="0.1" height="15.0" fill="rgb(234,87,23)" rx="2" ry="2" />
<text x="1107.73" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1797" width="0.3" height="15.0" fill="rgb(232,148,48)" rx="2" ry="2" />
<text x="1192.12" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="741" width="0.3" height="15.0" fill="rgb(250,35,9)" rx="2" ry="2" />
<text x="1191.82" y="751.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,153 samples, 0.12%)</title><rect x="677.0" y="1941" width="1.3" height="15.0" fill="rgb(208,112,26)" rx="2" ry="2" />
<text x="679.96" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (703 samples, 0.04%)</title><rect x="798.9" y="1445" width="0.5" height="15.0" fill="rgb(208,81,54)" rx="2" ry="2" />
<text x="801.94" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (172 samples, 0.01%)</title><rect x="719.3" y="1381" width="0.1" height="15.0" fill="rgb(233,128,22)" rx="2" ry="2" />
<text x="722.29" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,888 samples, 0.10%)</title><rect x="989.6" y="1173" width="1.2" height="15.0" fill="rgb(210,214,32)" rx="2" ry="2" />
<text x="992.63" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3579 (226 samples, 0.01%)</title><rect x="849.5" y="1221" width="0.2" height="15.0" fill="rgb(240,172,1)" rx="2" ry="2" />
<text x="852.52" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3780 (372 samples, 0.02%)</title><rect x="1054.8" y="1333" width="0.2" height="15.0" fill="rgb(213,197,23)" rx="2" ry="2" />
<text x="1057.77" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1845" width="0.5" height="15.0" fill="rgb(220,124,13)" rx="2" ry="2" />
<text x="1192.48" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1925" width="0.2" height="15.0" fill="rgb(209,205,23)" rx="2" ry="2" />
<text x="1191.57" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1525" width="0.3" height="15.0" fill="rgb(214,168,44)" rx="2" ry="2" />
<text x="1191.32" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (523 samples, 0.03%)</title><rect x="689.3" y="1589" width="0.3" height="15.0" fill="rgb(234,165,19)" rx="2" ry="2" />
<text x="692.31" y="1599.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (11,038 samples, 0.59%)</title><rect x="381.9" y="1877" width="7.0" height="15.0" fill="rgb(236,3,42)" rx="2" ry="2" />
<text x="384.94" y="1887.5" ></text>
</g>
<g >
<title>caml_call_gc (570 samples, 0.03%)</title><rect x="1060.9" y="1317" width="0.3" height="15.0" fill="rgb(228,50,16)" rx="2" ry="2" />
<text x="1063.88" y="1327.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (336 samples, 0.02%)</title><rect x="1166.1" y="1141" width="0.2" height="15.0" fill="rgb(213,156,8)" rx="2" ry="2" />
<text x="1169.08" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (291 samples, 0.02%)</title><rect x="689.4" y="645" width="0.2" height="15.0" fill="rgb(239,37,31)" rx="2" ry="2" />
<text x="692.44" y="655.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,214 samples, 0.17%)</title><rect x="421.8" y="1893" width="2.0" height="15.0" fill="rgb(214,9,51)" rx="2" ry="2" />
<text x="424.79" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (320 samples, 0.02%)</title><rect x="705.7" y="1445" width="0.2" height="15.0" fill="rgb(210,46,21)" rx="2" ry="2" />
<text x="708.73" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1781" width="0.2" height="15.0" fill="rgb(243,118,53)" rx="2" ry="2" />
<text x="1191.57" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (202 samples, 0.01%)</title><rect x="909.3" y="1301" width="0.2" height="15.0" fill="rgb(210,55,37)" rx="2" ry="2" />
<text x="912.32" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (223 samples, 0.01%)</title><rect x="1165.0" y="1397" width="0.1" height="15.0" fill="rgb(228,162,33)" rx="2" ry="2" />
<text x="1168.01" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (436 samples, 0.02%)</title><rect x="692.9" y="1365" width="0.2" height="15.0" fill="rgb(228,111,32)" rx="2" ry="2" />
<text x="695.86" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (620 samples, 0.03%)</title><rect x="800.5" y="1413" width="0.4" height="15.0" fill="rgb(233,160,2)" rx="2" ry="2" />
<text x="803.53" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_5510 (17,220 samples, 0.93%)</title><rect x="1176.7" y="1397" width="10.9" height="15.0" fill="rgb(242,47,38)" rx="2" ry="2" />
<text x="1179.68" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3345 (164 samples, 0.01%)</title><rect x="827.4" y="1285" width="0.1" height="15.0" fill="rgb(205,175,23)" rx="2" ry="2" />
<text x="830.35" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (6,337 samples, 0.34%)</title><rect x="818.4" y="1365" width="4.0" height="15.0" fill="rgb(232,1,15)" rx="2" ry="2" />
<text x="821.37" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (286 samples, 0.02%)</title><rect x="848.4" y="1205" width="0.2" height="15.0" fill="rgb(218,102,43)" rx="2" ry="2" />
<text x="851.37" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193 samples, 0.01%)</title><rect x="1116.0" y="1269" width="0.1" height="15.0" fill="rgb(234,225,51)" rx="2" ry="2" />
<text x="1118.99" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="805" width="0.3" height="15.0" fill="rgb(235,93,4)" rx="2" ry="2" />
<text x="1191.32" y="815.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="501" width="0.3" height="15.0" fill="rgb(215,153,26)" rx="2" ry="2" />
<text x="1192.12" y="511.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (576 samples, 0.03%)</title><rect x="1132.5" y="1349" width="0.4" height="15.0" fill="rgb(233,127,17)" rx="2" ry="2" />
<text x="1135.53" y="1359.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (369 samples, 0.02%)</title><rect x="340.9" y="1781" width="0.2" height="15.0" fill="rgb(245,15,51)" rx="2" ry="2" />
<text x="343.91" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2725 (320 samples, 0.02%)</title><rect x="1049.6" y="1333" width="0.2" height="15.0" fill="rgb(205,229,33)" rx="2" ry="2" />
<text x="1052.58" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (964 samples, 0.05%)</title><rect x="924.8" y="1077" width="0.6" height="15.0" fill="rgb(240,123,29)" rx="2" ry="2" />
<text x="927.82" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3323 (2,073 samples, 0.11%)</title><rect x="370.7" y="1909" width="1.4" height="15.0" fill="rgb(216,17,29)" rx="2" ry="2" />
<text x="373.75" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1989" width="0.3" height="15.0" fill="rgb(254,77,6)" rx="2" ry="2" />
<text x="1191.82" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (532 samples, 0.03%)</title><rect x="696.7" y="1365" width="0.3" height="15.0" fill="rgb(227,218,11)" rx="2" ry="2" />
<text x="699.65" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (2,578 samples, 0.14%)</title><rect x="774.8" y="1173" width="1.7" height="15.0" fill="rgb(220,1,2)" rx="2" ry="2" />
<text x="777.84" y="1183.5" ></text>
</g>
<g >
<title>caml_c_call (3,668 samples, 0.20%)</title><rect x="17.9" y="2037" width="2.3" height="15.0" fill="rgb(228,27,43)" rx="2" ry="2" />
<text x="20.85" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (222 samples, 0.01%)</title><rect x="696.1" y="1349" width="0.1" height="15.0" fill="rgb(210,90,53)" rx="2" ry="2" />
<text x="699.11" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (744,113 samples, 40.01%)</title><rect x="716.2" y="1797" width="472.1" height="15.0" fill="rgb(251,104,25)" rx="2" ry="2" />
<text x="719.18" y="1807.5" >camlLwt__resolve_2309</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3490 (205 samples, 0.01%)</title><rect x="851.5" y="1253" width="0.1" height="15.0" fill="rgb(233,5,48)" rx="2" ry="2" />
<text x="854.50" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="949" width="0.3" height="15.0" fill="rgb(211,22,13)" rx="2" ry="2" />
<text x="1192.12" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6315 (3,413 samples, 0.18%)</title><rect x="921.9" y="1349" width="2.2" height="15.0" fill="rgb(212,109,11)" rx="2" ry="2" />
<text x="924.92" y="1359.5" ></text>
</g>
<g >
<title>caml_oldify_one (176 samples, 0.01%)</title><rect x="983.6" y="1045" width="0.1" height="15.0" fill="rgb(217,150,39)" rx="2" ry="2" />
<text x="986.60" y="1055.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (834 samples, 0.04%)</title><rect x="772.3" y="1125" width="0.6" height="15.0" fill="rgb(244,125,34)" rx="2" ry="2" />
<text x="775.32" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (294 samples, 0.02%)</title><rect x="881.5" y="1125" width="0.2" height="15.0" fill="rgb(242,69,41)" rx="2" ry="2" />
<text x="884.55" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (238 samples, 0.01%)</title><rect x="869.9" y="1173" width="0.2" height="15.0" fill="rgb(252,68,23)" rx="2" ry="2" />
<text x="872.93" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (254 samples, 0.01%)</title><rect x="797.7" y="1397" width="0.1" height="15.0" fill="rgb(241,31,32)" rx="2" ry="2" />
<text x="800.66" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,133 samples, 0.06%)</title><rect x="117.6" y="1813" width="0.7" height="15.0" fill="rgb(252,34,15)" rx="2" ry="2" />
<text x="120.55" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (1,399 samples, 0.08%)</title><rect x="1134.4" y="1429" width="0.9" height="15.0" fill="rgb(253,156,52)" rx="2" ry="2" />
<text x="1137.44" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (683 samples, 0.04%)</title><rect x="933.8" y="1317" width="0.4" height="15.0" fill="rgb(232,223,53)" rx="2" ry="2" />
<text x="936.77" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (224 samples, 0.01%)</title><rect x="1165.0" y="1429" width="0.1" height="15.0" fill="rgb(212,76,30)" rx="2" ry="2" />
<text x="1168.01" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (13,439 samples, 0.72%)</title><rect x="162.8" y="1893" width="8.5" height="15.0" fill="rgb(224,191,45)" rx="2" ry="2" />
<text x="165.78" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="469" width="0.3" height="15.0" fill="rgb(212,47,54)" rx="2" ry="2" />
<text x="1192.12" y="479.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1707 (318 samples, 0.02%)</title><rect x="438.1" y="1909" width="0.2" height="15.0" fill="rgb(209,65,18)" rx="2" ry="2" />
<text x="441.05" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,037 samples, 0.06%)</title><rect x="1157.8" y="1285" width="0.6" height="15.0" fill="rgb(252,48,51)" rx="2" ry="2" />
<text x="1160.75" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (36,134 samples, 1.94%)</title><rect x="1165.2" y="1525" width="22.9" height="15.0" fill="rgb(237,45,4)" rx="2" ry="2" />
<text x="1168.17" y="1535.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,280 samples, 0.12%)</title><rect x="763.9" y="1269" width="1.5" height="15.0" fill="rgb(240,153,40)" rx="2" ry="2" />
<text x="766.95" y="1279.5" ></text>
</g>
<g >
<title>caml_string_compare (538 samples, 0.03%)</title><rect x="1009.1" y="1333" width="0.4" height="15.0" fill="rgb(237,193,34)" rx="2" ry="2" />
<text x="1012.12" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1813" width="0.3" height="15.0" fill="rgb(231,117,49)" rx="2" ry="2" />
<text x="1192.12" y="1823.5" ></text>
</g>
<g >
<title>invert_pointer_at (249 samples, 0.01%)</title><rect x="775.4" y="1093" width="0.2" height="15.0" fill="rgb(214,176,33)" rx="2" ry="2" />
<text x="778.42" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (336 samples, 0.02%)</title><rect x="1166.1" y="1189" width="0.2" height="15.0" fill="rgb(239,187,40)" rx="2" ry="2" />
<text x="1169.08" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (905 samples, 0.05%)</title><rect x="911.8" y="1189" width="0.6" height="15.0" fill="rgb(253,116,34)" rx="2" ry="2" />
<text x="914.82" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (198 samples, 0.01%)</title><rect x="724.1" y="1189" width="0.1" height="15.0" fill="rgb(239,107,20)" rx="2" ry="2" />
<text x="727.08" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (3,705 samples, 0.20%)</title><rect x="683.0" y="1909" width="2.3" height="15.0" fill="rgb(253,144,9)" rx="2" ry="2" />
<text x="686.00" y="1919.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (318 samples, 0.02%)</title><rect x="857.1" y="1317" width="0.2" height="15.0" fill="rgb(211,150,35)" rx="2" ry="2" />
<text x="860.09" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (573 samples, 0.03%)</title><rect x="1176.2" y="1077" width="0.4" height="15.0" fill="rgb(240,147,4)" rx="2" ry="2" />
<text x="1179.22" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,454 samples, 0.08%)</title><rect x="885.8" y="1125" width="0.9" height="15.0" fill="rgb(238,137,50)" rx="2" ry="2" />
<text x="888.80" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,044 samples, 0.06%)</title><rect x="694.1" y="1317" width="0.6" height="15.0" fill="rgb(235,72,0)" rx="2" ry="2" />
<text x="697.05" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (165 samples, 0.01%)</title><rect x="708.8" y="1477" width="0.1" height="15.0" fill="rgb(249,93,39)" rx="2" ry="2" />
<text x="711.82" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (214 samples, 0.01%)</title><rect x="982.5" y="1141" width="0.1" height="15.0" fill="rgb(215,19,19)" rx="2" ry="2" />
<text x="985.49" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (751 samples, 0.04%)</title><rect x="670.6" y="1845" width="0.5" height="15.0" fill="rgb(249,107,9)" rx="2" ry="2" />
<text x="673.59" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (913 samples, 0.05%)</title><rect x="973.8" y="1189" width="0.6" height="15.0" fill="rgb(207,62,31)" rx="2" ry="2" />
<text x="976.79" y="1199.5" ></text>
</g>
<g >
<title>__libc_pread64 (312 samples, 0.02%)</title><rect x="712.7" y="1349" width="0.2" height="15.0" fill="rgb(251,37,2)" rx="2" ry="2" />
<text x="715.66" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (9,684 samples, 0.52%)</title><rect x="726.2" y="1381" width="6.2" height="15.0" fill="rgb(254,179,50)" rx="2" ry="2" />
<text x="729.21" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (194 samples, 0.01%)</title><rect x="1182.8" y="1269" width="0.2" height="15.0" fill="rgb(242,203,26)" rx="2" ry="2" />
<text x="1185.84" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (205 samples, 0.01%)</title><rect x="975.3" y="1205" width="0.1" height="15.0" fill="rgb(217,61,18)" rx="2" ry="2" />
<text x="978.31" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (8,934 samples, 0.48%)</title><rect x="126.4" y="1877" width="5.7" height="15.0" fill="rgb(222,215,11)" rx="2" ry="2" />
<text x="129.42" y="1887.5" ></text>
</g>
<g >
<title>caml_pread (341 samples, 0.02%)</title><rect x="698.1" y="1365" width="0.2" height="15.0" fill="rgb(210,4,40)" rx="2" ry="2" />
<text x="701.05" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,252 samples, 0.17%)</title><rect x="935.5" y="1189" width="2.1" height="15.0" fill="rgb(212,174,33)" rx="2" ry="2" />
<text x="938.52" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="2037" width="0.2" height="15.0" fill="rgb(228,143,15)" rx="2" ry="2" />
<text x="1191.57" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (469 samples, 0.03%)</title><rect x="1189.1" y="261" width="0.3" height="15.0" fill="rgb(212,207,11)" rx="2" ry="2" />
<text x="1192.12" y="271.5" ></text>
</g>
<g >
<title>mark_slice (1,789 samples, 0.10%)</title><rect x="661.3" y="1893" width="1.1" height="15.0" fill="rgb(214,124,45)" rx="2" ry="2" />
<text x="664.26" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="1605" width="0.5" height="15.0" fill="rgb(244,19,25)" rx="2" ry="2" />
<text x="1192.48" y="1615.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (185 samples, 0.01%)</title><rect x="1176.5" y="869" width="0.1" height="15.0" fill="rgb(219,82,33)" rx="2" ry="2" />
<text x="1179.47" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,620 samples, 0.19%)</title><rect x="1069.7" y="1269" width="2.3" height="15.0" fill="rgb(229,194,38)" rx="2" ry="2" />
<text x="1072.72" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (227 samples, 0.01%)</title><rect x="910.3" y="1269" width="0.2" height="15.0" fill="rgb(252,123,22)" rx="2" ry="2" />
<text x="913.32" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,513 samples, 0.14%)</title><rect x="710.0" y="1381" width="1.6" height="15.0" fill="rgb(205,205,16)" rx="2" ry="2" />
<text x="713.01" y="1391.5" ></text>
</g>
<g >
<title>__libc_pread64 (327 samples, 0.02%)</title><rect x="932.2" y="1237" width="0.2" height="15.0" fill="rgb(229,139,3)" rx="2" ry="2" />
<text x="935.17" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (946 samples, 0.05%)</title><rect x="862.1" y="1221" width="0.6" height="15.0" fill="rgb(245,90,2)" rx="2" ry="2" />
<text x="865.10" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1973" width="0.3" height="15.0" fill="rgb(235,187,4)" rx="2" ry="2" />
<text x="1192.12" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (1,953 samples, 0.11%)</title><rect x="1031.9" y="1317" width="1.3" height="15.0" fill="rgb(209,226,8)" rx="2" ry="2" />
<text x="1034.95" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (237 samples, 0.01%)</title><rect x="1186.7" y="1269" width="0.1" height="15.0" fill="rgb(240,50,12)" rx="2" ry="2" />
<text x="1189.70" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (495 samples, 0.03%)</title><rect x="971.1" y="1125" width="0.3" height="15.0" fill="rgb(250,209,47)" rx="2" ry="2" />
<text x="974.10" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,792 samples, 0.10%)</title><rect x="1139.7" y="1349" width="1.1" height="15.0" fill="rgb(215,96,49)" rx="2" ry="2" />
<text x="1142.69" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (347 samples, 0.02%)</title><rect x="849.4" y="1237" width="0.3" height="15.0" fill="rgb(216,195,45)" rx="2" ry="2" />
<text x="852.44" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="453" width="0.2" height="15.0" fill="rgb(229,201,53)" rx="2" ry="2" />
<text x="1191.57" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (380 samples, 0.02%)</title><rect x="777.0" y="1189" width="0.2" height="15.0" fill="rgb(237,20,30)" rx="2" ry="2" />
<text x="779.96" y="1199.5" ></text>
</g>
<g >
<title>unix_lseek_64 (201 samples, 0.01%)</title><rect x="955.4" y="1141" width="0.1" height="15.0" fill="rgb(205,208,10)" rx="2" ry="2" />
<text x="958.36" y="1151.5" ></text>
</g>
<g >
<title>__GI___pthread_setspecific (227 samples, 0.01%)</title><rect x="55.2" y="2005" width="0.1" height="15.0" fill="rgb(241,48,8)" rx="2" ry="2" />
<text x="58.16" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (292 samples, 0.02%)</title><rect x="1152.3" y="1365" width="0.2" height="15.0" fill="rgb(245,215,31)" rx="2" ry="2" />
<text x="1155.30" y="1375.5" ></text>
</g>
<g >
<title>caml_string_length (272 samples, 0.01%)</title><rect x="1008.5" y="1333" width="0.2" height="15.0" fill="rgb(248,50,39)" rx="2" ry="2" />
<text x="1011.50" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="689.4" y="1045" width="0.2" height="15.0" fill="rgb(223,45,43)" rx="2" ry="2" />
<text x="692.38" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (258 samples, 0.01%)</title><rect x="750.6" y="1237" width="0.2" height="15.0" fill="rgb(253,125,51)" rx="2" ry="2" />
<text x="753.59" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (174 samples, 0.01%)</title><rect x="992.5" y="1157" width="0.1" height="15.0" fill="rgb(217,10,21)" rx="2" ry="2" />
<text x="995.48" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1029" width="0.3" height="15.0" fill="rgb(228,181,5)" rx="2" ry="2" />
<text x="1191.82" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,442 samples, 0.24%)</title><rect x="934.8" y="1269" width="2.8" height="15.0" fill="rgb(226,7,6)" rx="2" ry="2" />
<text x="937.77" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (213 samples, 0.01%)</title><rect x="955.8" y="1173" width="0.1" height="15.0" fill="rgb(224,173,10)" rx="2" ry="2" />
<text x="958.80" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1477" width="0.3" height="15.0" fill="rgb(209,165,16)" rx="2" ry="2" />
<text x="1192.12" y="1487.5" ></text>
</g>
<g >
<title>camlDigestif_conv__to_raw_string_1954 (240 samples, 0.01%)</title><rect x="483.2" y="1925" width="0.2" height="15.0" fill="rgb(213,119,16)" rx="2" ry="2" />
<text x="486.21" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (188 samples, 0.01%)</title><rect x="1171.2" y="1221" width="0.1" height="15.0" fill="rgb(226,161,28)" rx="2" ry="2" />
<text x="1174.16" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (351 samples, 0.02%)</title><rect x="689.4" y="885" width="0.2" height="15.0" fill="rgb(245,156,49)" rx="2" ry="2" />
<text x="692.40" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (655 samples, 0.04%)</title><rect x="858.7" y="1237" width="0.4" height="15.0" fill="rgb(210,99,47)" rx="2" ry="2" />
<text x="861.68" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (764 samples, 0.04%)</title><rect x="1189.5" y="885" width="0.5" height="15.0" fill="rgb(251,12,45)" rx="2" ry="2" />
<text x="1192.48" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,113 samples, 0.06%)</title><rect x="817.3" y="1381" width="0.7" height="15.0" fill="rgb(237,128,53)" rx="2" ry="2" />
<text x="820.30" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (462 samples, 0.02%)</title><rect x="702.4" y="1365" width="0.3" height="15.0" fill="rgb(239,225,22)" rx="2" ry="2" />
<text x="705.37" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (96,951 samples, 5.21%)</title><rect x="114.3" y="1909" width="61.5" height="15.0" fill="rgb(227,219,40)" rx="2" ry="2" />
<text x="117.25" y="1919.5" >camlIr..</text>
</g>
<g >
<title>caml_major_collection_slice (2,275 samples, 0.12%)</title><rect x="775.0" y="1141" width="1.5" height="15.0" fill="rgb(209,36,37)" rx="2" ry="2" />
<text x="778.03" y="1151.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (114,325 samples, 6.15%)</title><rect x="583.2" y="1909" width="72.6" height="15.0" fill="rgb(221,142,0)" rx="2" ry="2" />
<text x="586.23" y="1919.5" >caml_lea..</text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (275 samples, 0.01%)</title><rect x="962.8" y="1237" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="965.83" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (7,638 samples, 0.41%)</title><rect x="429.5" y="1909" width="4.8" height="15.0" fill="rgb(233,141,8)" rx="2" ry="2" />
<text x="432.45" y="1919.5" ></text>
</g>
<g >
<title>caml_make_vect (1,897 samples, 0.10%)</title><rect x="678.3" y="1941" width="1.2" height="15.0" fill="rgb(225,43,2)" rx="2" ry="2" />
<text x="681.33" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (177 samples, 0.01%)</title><rect x="1119.5" y="1317" width="0.1" height="15.0" fill="rgb(243,37,43)" rx="2" ry="2" />
<text x="1122.53" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (41,337 samples, 2.22%)</title><rect x="689.7" y="1653" width="26.2" height="15.0" fill="rgb(249,34,10)" rx="2" ry="2" />
<text x="692.68" y="1663.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (356 samples, 0.02%)</title><rect x="1129.3" y="1285" width="0.2" height="15.0" fill="rgb(219,217,38)" rx="2" ry="2" />
<text x="1132.32" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (309 samples, 0.02%)</title><rect x="906.5" y="1269" width="0.2" height="15.0" fill="rgb(240,204,25)" rx="2" ry="2" />
<text x="909.46" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,800 samples, 0.26%)</title><rect x="824.1" y="1301" width="3.1" height="15.0" fill="rgb(242,113,36)" rx="2" ry="2" />
<text x="827.13" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,093 samples, 0.22%)</title><rect x="1069.4" y="1301" width="2.6" height="15.0" fill="rgb(231,62,17)" rx="2" ry="2" />
<text x="1072.42" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,074 samples, 0.06%)</title><rect x="1010.3" y="1333" width="0.7" height="15.0" fill="rgb(235,160,20)" rx="2" ry="2" />
<text x="1013.29" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (396 samples, 0.02%)</title><rect x="1185.6" y="1125" width="0.3" height="15.0" fill="rgb(223,119,53)" rx="2" ry="2" />
<text x="1188.61" y="1135.5" ></text>
</g>
<g >
<title>caml_call_gc (914 samples, 0.05%)</title><rect x="871.8" y="1157" width="0.6" height="15.0" fill="rgb(253,121,34)" rx="2" ry="2" />
<text x="874.81" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (2,218 samples, 0.12%)</title><rect x="840.0" y="1237" width="1.4" height="15.0" fill="rgb(239,59,41)" rx="2" ry="2" />
<text x="843.04" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (538 samples, 0.03%)</title><rect x="1009.9" y="1333" width="0.3" height="15.0" fill="rgb(229,0,21)" rx="2" ry="2" />
<text x="1012.86" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (297 samples, 0.02%)</title><rect x="904.6" y="1269" width="0.1" height="15.0" fill="rgb(247,18,24)" rx="2" ry="2" />
<text x="907.56" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (162 samples, 0.01%)</title><rect x="933.1" y="1349" width="0.1" height="15.0" fill="rgb(240,110,19)" rx="2" ry="2" />
<text x="936.07" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (606,285 samples, 32.60%)</title><rect x="716.5" y="1685" width="384.6" height="15.0" fill="rgb(229,149,29)" rx="2" ry="2" />
<text x="719.48" y="1695.5" >camlIrmin_pack__Pack__batch_5159</text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (1,524 samples, 0.08%)</title><rect x="1118.2" y="1397" width="1.0" height="15.0" fill="rgb(225,102,2)" rx="2" ry="2" />
<text x="1121.23" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (215 samples, 0.01%)</title><rect x="757.4" y="1333" width="0.1" height="15.0" fill="rgb(240,168,1)" rx="2" ry="2" />
<text x="760.35" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="389" width="0.2" height="15.0" fill="rgb(240,51,30)" rx="2" ry="2" />
<text x="1191.57" y="399.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (42,472 samples, 2.28%)</title><rect x="609.3" y="1829" width="26.9" height="15.0" fill="rgb(247,21,30)" rx="2" ry="2" />
<text x="612.30" y="1839.5" >_..</text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (895 samples, 0.05%)</title><rect x="707.3" y="1413" width="0.6" height="15.0" fill="rgb(229,212,14)" rx="2" ry="2" />
<text x="710.29" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (467 samples, 0.03%)</title><rect x="1141.1" y="1333" width="0.3" height="15.0" fill="rgb(220,50,52)" rx="2" ry="2" />
<text x="1144.08" y="1343.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (216 samples, 0.01%)</title><rect x="742.0" y="1205" width="0.1" height="15.0" fill="rgb(205,222,6)" rx="2" ry="2" />
<text x="745.01" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__pre_hash_6099 (182 samples, 0.01%)</title><rect x="1164.9" y="1461" width="0.1" height="15.0" fill="rgb(246,223,30)" rx="2" ry="2" />
<text x="1167.88" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,019 samples, 0.05%)</title><rect x="1168.9" y="1157" width="0.6" height="15.0" fill="rgb(233,80,21)" rx="2" ry="2" />
<text x="1171.86" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="2005" width="0.3" height="15.0" fill="rgb(249,69,46)" rx="2" ry="2" />
<text x="1191.82" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1973" width="0.2" height="15.0" fill="rgb(216,162,9)" rx="2" ry="2" />
<text x="1191.57" y="1983.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__do_bucket_2102 (4,250 samples, 0.23%)</title><rect x="682.8" y="1941" width="2.7" height="15.0" fill="rgb(252,153,7)" rx="2" ry="2" />
<text x="685.85" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (955 samples, 0.05%)</title><rect x="746.1" y="1253" width="0.6" height="15.0" fill="rgb(214,170,0)" rx="2" ry="2" />
<text x="749.06" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (3,455 samples, 0.19%)</title><rect x="339.0" y="1813" width="2.1" height="15.0" fill="rgb(244,200,23)" rx="2" ry="2" />
<text x="341.95" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (206 samples, 0.01%)</title><rect x="1162.7" y="1477" width="0.1" height="15.0" fill="rgb(213,16,32)" rx="2" ry="2" />
<text x="1165.70" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,512 samples, 0.08%)</title><rect x="936.6" y="1045" width="1.0" height="15.0" fill="rgb(238,186,33)" rx="2" ry="2" />
<text x="939.62" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1157" width="0.5" height="15.0" fill="rgb(235,113,42)" rx="2" ry="2" />
<text x="1192.48" y="1167.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (215 samples, 0.01%)</title><rect x="198.4" y="1861" width="0.1" height="15.0" fill="rgb(253,81,47)" rx="2" ry="2" />
<text x="201.38" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (6,474 samples, 0.35%)</title><rect x="720.7" y="1381" width="4.1" height="15.0" fill="rgb(209,119,28)" rx="2" ry="2" />
<text x="723.69" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="2053" width="0.3" height="15.0" fill="rgb(226,38,1)" rx="2" ry="2" />
<text x="1192.12" y="2063.5" ></text>
</g>
<g >
<title>__condvar_release_lock (1,054 samples, 0.06%)</title><rect x="572.6" y="1877" width="0.7" height="15.0" fill="rgb(238,83,1)" rx="2" ry="2" />
<text x="575.61" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="661" width="0.3" height="15.0" fill="rgb(244,202,4)" rx="2" ry="2" />
<text x="1191.32" y="671.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__of_list_5628 (166 samples, 0.01%)</title><rect x="943.2" y="1301" width="0.1" height="15.0" fill="rgb(208,124,44)" rx="2" ry="2" />
<text x="946.16" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (38,884 samples, 2.09%)</title><rect x="1163.6" y="1733" width="24.7" height="15.0" fill="rgb(226,147,33)" rx="2" ry="2" />
<text x="1166.59" y="1743.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (206 samples, 0.01%)</title><rect x="711.8" y="1365" width="0.1" height="15.0" fill="rgb(239,85,40)" rx="2" ry="2" />
<text x="714.80" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (601 samples, 0.03%)</title><rect x="56.9" y="1877" width="0.4" height="15.0" fill="rgb(211,164,52)" rx="2" ry="2" />
<text x="59.89" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (257 samples, 0.01%)</title><rect x="1189.8" y="165" width="0.2" height="15.0" fill="rgb(242,197,1)" rx="2" ry="2" />
<text x="1192.80" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (9,271 samples, 0.50%)</title><rect x="1008.0" y="1397" width="5.8" height="15.0" fill="rgb(219,93,9)" rx="2" ry="2" />
<text x="1010.96" y="1407.5" ></text>
</g>
<g >
<title>__libc_start_main (790,470 samples, 42.50%)</title><rect x="686.8" y="2037" width="501.5" height="15.0" fill="rgb(205,22,6)" rx="2" ry="2" />
<text x="689.78" y="2047.5" >__libc_start_main</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="469" width="0.2" height="15.0" fill="rgb(214,19,50)" rx="2" ry="2" />
<text x="1191.57" y="479.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,579 samples, 0.08%)</title><rect x="434.8" y="1909" width="1.0" height="15.0" fill="rgb(241,163,0)" rx="2" ry="2" />
<text x="437.80" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (425 samples, 0.02%)</title><rect x="926.1" y="1301" width="0.2" height="15.0" fill="rgb(254,50,10)" rx="2" ry="2" />
<text x="929.08" y="1311.5" ></text>
</g>
<g >
<title>__libc_pread64 (196 samples, 0.01%)</title><rect x="708.0" y="1349" width="0.1" height="15.0" fill="rgb(253,6,15)" rx="2" ry="2" />
<text x="710.97" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1525" width="0.2" height="15.0" fill="rgb(225,107,33)" rx="2" ry="2" />
<text x="1191.57" y="1535.5" ></text>
</g>
<g >
<title>caml_string_compare (464 samples, 0.02%)</title><rect x="803.6" y="1333" width="0.3" height="15.0" fill="rgb(207,183,0)" rx="2" ry="2" />
<text x="806.58" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (212 samples, 0.01%)</title><rect x="1144.1" y="1349" width="0.1" height="15.0" fill="rgb(228,93,29)" rx="2" ry="2" />
<text x="1147.06" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (541 samples, 0.03%)</title><rect x="1055.6" y="1333" width="0.3" height="15.0" fill="rgb(229,50,27)" rx="2" ry="2" />
<text x="1058.58" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (688 samples, 0.04%)</title><rect x="894.5" y="1429" width="0.4" height="15.0" fill="rgb(214,143,2)" rx="2" ry="2" />
<text x="897.47" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (489 samples, 0.03%)</title><rect x="1120.5" y="1285" width="0.3" height="15.0" fill="rgb(218,98,12)" rx="2" ry="2" />
<text x="1123.47" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11501 (41,443 samples, 2.23%)</title><rect x="1135.5" y="1493" width="26.3" height="15.0" fill="rgb(244,153,34)" rx="2" ry="2" />
<text x="1138.53" y="1503.5" >c..</text>
</g>
<g >
<title>camlLwt__try_bind_2801 (5,018 samples, 0.27%)</title><rect x="1180.3" y="1365" width="3.2" height="15.0" fill="rgb(235,165,48)" rx="2" ry="2" />
<text x="1183.28" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (175 samples, 0.01%)</title><rect x="1123.4" y="1301" width="0.1" height="15.0" fill="rgb(239,182,20)" rx="2" ry="2" />
<text x="1126.42" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (6,289 samples, 0.34%)</title><rect x="835.8" y="1285" width="4.0" height="15.0" fill="rgb(229,114,15)" rx="2" ry="2" />
<text x="838.85" y="1295.5" ></text>
</g>
<g >
<title>caml_curry4_1 (539 samples, 0.03%)</title><rect x="673.3" y="1845" width="0.3" height="15.0" fill="rgb(221,90,44)" rx="2" ry="2" />
<text x="676.26" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1285" width="0.3" height="15.0" fill="rgb(216,104,5)" rx="2" ry="2" />
<text x="1191.82" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (3,734 samples, 0.20%)</title><rect x="738.6" y="1269" width="2.4" height="15.0" fill="rgb(247,103,16)" rx="2" ry="2" />
<text x="741.61" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (950 samples, 0.05%)</title><rect x="908.5" y="1301" width="0.6" height="15.0" fill="rgb(246,203,33)" rx="2" ry="2" />
<text x="911.51" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (212 samples, 0.01%)</title><rect x="667.4" y="1845" width="0.1" height="15.0" fill="rgb(230,21,38)" rx="2" ry="2" />
<text x="670.40" y="1855.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (216 samples, 0.01%)</title><rect x="523.1" y="1893" width="0.2" height="15.0" fill="rgb(210,198,45)" rx="2" ry="2" />
<text x="526.13" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="917" width="0.3" height="15.0" fill="rgb(252,182,27)" rx="2" ry="2" />
<text x="1191.82" y="927.5" ></text>
</g>
<g >
<title>caml_hash (344 samples, 0.02%)</title><rect x="764.8" y="1205" width="0.2" height="15.0" fill="rgb(219,179,9)" rx="2" ry="2" />
<text x="767.80" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4794 (176 samples, 0.01%)</title><rect x="689.5" y="245" width="0.1" height="15.0" fill="rgb(243,160,38)" rx="2" ry="2" />
<text x="692.49" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (280 samples, 0.02%)</title><rect x="711.8" y="1381" width="0.1" height="15.0" fill="rgb(243,220,1)" rx="2" ry="2" />
<text x="714.77" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="789" width="0.3" height="15.0" fill="rgb(217,209,4)" rx="2" ry="2" />
<text x="1191.82" y="799.5" ></text>
</g>
<g >
<title>mark_slice_darken (429 samples, 0.02%)</title><rect x="673.3" y="1765" width="0.3" height="15.0" fill="rgb(235,154,26)" rx="2" ry="2" />
<text x="676.30" y="1775.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,189 samples, 0.06%)</title><rect x="1007.2" y="1397" width="0.8" height="15.0" fill="rgb(232,210,20)" rx="2" ry="2" />
<text x="1010.21" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (11,518 samples, 0.62%)</title><rect x="877.3" y="1253" width="7.3" height="15.0" fill="rgb(252,66,44)" rx="2" ry="2" />
<text x="880.28" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1125" width="0.3" height="15.0" fill="rgb(205,117,29)" rx="2" ry="2" />
<text x="1192.12" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1077" width="0.3" height="15.0" fill="rgb(206,94,20)" rx="2" ry="2" />
<text x="1192.12" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (269 samples, 0.01%)</title><rect x="1167.7" y="1237" width="0.2" height="15.0" fill="rgb(254,96,15)" rx="2" ry="2" />
<text x="1170.71" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_5536 (35,610 samples, 1.91%)</title><rect x="1165.3" y="1413" width="22.6" height="15.0" fill="rgb(207,113,54)" rx="2" ry="2" />
<text x="1168.33" y="1423.5" >c..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (312 samples, 0.02%)</title><rect x="689.4" y="693" width="0.2" height="15.0" fill="rgb(216,178,41)" rx="2" ry="2" />
<text x="692.43" y="703.5" ></text>
</g>
<g >
<title>caml_apply2 (337 samples, 0.02%)</title><rect x="963.0" y="1237" width="0.2" height="15.0" fill="rgb(249,56,54)" rx="2" ry="2" />
<text x="966.00" y="1247.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (261 samples, 0.01%)</title><rect x="774.9" y="1109" width="0.1" height="15.0" fill="rgb(227,211,47)" rx="2" ry="2" />
<text x="777.86" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (221 samples, 0.01%)</title><rect x="816.9" y="1381" width="0.2" height="15.0" fill="rgb(242,199,48)" rx="2" ry="2" />
<text x="819.91" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (5,258 samples, 0.28%)</title><rect x="1176.8" y="1349" width="3.3" height="15.0" fill="rgb(231,118,25)" rx="2" ry="2" />
<text x="1179.81" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (741 samples, 0.04%)</title><rect x="782.2" y="1205" width="0.4" height="15.0" fill="rgb(243,99,34)" rx="2" ry="2" />
<text x="785.17" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (230 samples, 0.01%)</title><rect x="733.1" y="1253" width="0.2" height="15.0" fill="rgb(206,157,18)" rx="2" ry="2" />
<text x="736.10" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (3,422 samples, 0.18%)</title><rect x="1148.2" y="1413" width="2.2" height="15.0" fill="rgb(235,148,48)" rx="2" ry="2" />
<text x="1151.19" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (11,161 samples, 0.60%)</title><rect x="1169.5" y="1349" width="7.1" height="15.0" fill="rgb(205,124,43)" rx="2" ry="2" />
<text x="1172.54" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_3869 (1,949 samples, 0.10%)</title><rect x="1149.0" y="1333" width="1.3" height="15.0" fill="rgb(246,50,45)" rx="2" ry="2" />
<text x="1152.05" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (238 samples, 0.01%)</title><rect x="1138.1" y="1285" width="0.2" height="15.0" fill="rgb(249,10,46)" rx="2" ry="2" />
<text x="1141.13" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (572 samples, 0.03%)</title><rect x="1004.0" y="1253" width="0.4" height="15.0" fill="rgb(210,66,50)" rx="2" ry="2" />
<text x="1007.01" y="1263.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_update (415 samples, 0.02%)</title><rect x="1189.5" y="69" width="0.3" height="15.0" fill="rgb(243,46,35)" rx="2" ry="2" />
<text x="1192.50" y="79.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_10518 (55,965 samples, 3.01%)</title><rect x="1126.7" y="1525" width="35.5" height="15.0" fill="rgb(249,189,54)" rx="2" ry="2" />
<text x="1129.69" y="1535.5" >cam..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (309 samples, 0.02%)</title><rect x="1110.5" y="1221" width="0.2" height="15.0" fill="rgb(208,66,43)" rx="2" ry="2" />
<text x="1113.54" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (8,924 samples, 0.48%)</title><rect x="902.5" y="1445" width="5.7" height="15.0" fill="rgb(225,100,5)" rx="2" ry="2" />
<text x="905.51" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (163 samples, 0.01%)</title><rect x="753.4" y="1237" width="0.1" height="15.0" fill="rgb(220,159,2)" rx="2" ry="2" />
<text x="756.40" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (510 samples, 0.03%)</title><rect x="987.7" y="1157" width="0.3" height="15.0" fill="rgb(235,190,4)" rx="2" ry="2" />
<text x="990.68" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (452 samples, 0.02%)</title><rect x="1105.5" y="1381" width="0.3" height="15.0" fill="rgb(228,124,39)" rx="2" ry="2" />
<text x="1108.51" y="1391.5" ></text>
</g>
<g >
<title>do_compaction (916 samples, 0.05%)</title><rect x="1185.0" y="1141" width="0.6" height="15.0" fill="rgb(209,50,7)" rx="2" ry="2" />
<text x="1188.03" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (18,062 samples, 0.97%)</title><rect x="865.5" y="1237" width="11.5" height="15.0" fill="rgb(216,28,47)" rx="2" ry="2" />
<text x="868.52" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (189 samples, 0.01%)</title><rect x="1119.7" y="1365" width="0.2" height="15.0" fill="rgb(249,144,3)" rx="2" ry="2" />
<text x="1122.75" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1624 (254 samples, 0.01%)</title><rect x="991.9" y="1157" width="0.2" height="15.0" fill="rgb(242,47,29)" rx="2" ry="2" />
<text x="994.92" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__read_1711 (163 samples, 0.01%)</title><rect x="1068.7" y="1381" width="0.1" height="15.0" fill="rgb(244,82,34)" rx="2" ry="2" />
<text x="1071.65" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (1,004 samples, 0.05%)</title><rect x="1166.8" y="1205" width="0.7" height="15.0" fill="rgb(239,23,4)" rx="2" ry="2" />
<text x="1169.82" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (4,871 samples, 0.26%)</title><rect x="702.2" y="1461" width="3.1" height="15.0" fill="rgb(240,22,50)" rx="2" ry="2" />
<text x="705.19" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (211 samples, 0.01%)</title><rect x="1116.0" y="1285" width="0.1" height="15.0" fill="rgb(224,175,12)" rx="2" ry="2" />
<text x="1118.98" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="789" width="0.3" height="15.0" fill="rgb(245,39,28)" rx="2" ry="2" />
<text x="1192.12" y="799.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__equal_4900 (1,137 samples, 0.06%)</title><rect x="688.9" y="1701" width="0.8" height="15.0" fill="rgb(225,182,8)" rx="2" ry="2" />
<text x="691.95" y="1711.5" ></text>
</g>
<g >
<title>mark_slice (616 samples, 0.03%)</title><rect x="772.3" y="1093" width="0.4" height="15.0" fill="rgb(225,133,15)" rx="2" ry="2" />
<text x="775.32" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (269 samples, 0.01%)</title><rect x="1183.6" y="1301" width="0.2" height="15.0" fill="rgb(243,33,0)" rx="2" ry="2" />
<text x="1186.62" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (215 samples, 0.01%)</title><rect x="908.8" y="1253" width="0.1" height="15.0" fill="rgb(228,174,1)" rx="2" ry="2" />
<text x="911.79" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__init_1018 (1,436 samples, 0.08%)</title><rect x="1163.7" y="1541" width="0.9" height="15.0" fill="rgb(228,176,34)" rx="2" ry="2" />
<text x="1166.74" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="1829" width="0.3" height="15.0" fill="rgb(209,224,4)" rx="2" ry="2" />
<text x="1192.12" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (478 samples, 0.03%)</title><rect x="1154.4" y="1317" width="0.3" height="15.0" fill="rgb(212,23,32)" rx="2" ry="2" />
<text x="1157.41" y="1327.5" ></text>
</g>
<g >
<title>unix_open (523 samples, 0.03%)</title><rect x="665.1" y="1941" width="0.3" height="15.0" fill="rgb(217,93,52)" rx="2" ry="2" />
<text x="668.08" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12324 (19,229 samples, 1.03%)</title><rect x="1101.2" y="1541" width="12.2" height="15.0" fill="rgb(215,159,12)" rx="2" ry="2" />
<text x="1104.23" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (237 samples, 0.01%)</title><rect x="809.1" y="1413" width="0.1" height="15.0" fill="rgb(242,37,22)" rx="2" ry="2" />
<text x="812.09" y="1423.5" ></text>
</g>
<g >
<title>caml_call_gc (304 samples, 0.02%)</title><rect x="676.0" y="1813" width="0.2" height="15.0" fill="rgb(235,140,0)" rx="2" ry="2" />
<text x="678.98" y="1823.5" ></text>
</g>
<g >
<title>caml_call_gc (611 samples, 0.03%)</title><rect x="686.9" y="1701" width="0.4" height="15.0" fill="rgb(222,127,53)" rx="2" ry="2" />
<text x="689.92" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4989 (12,891 samples, 0.69%)</title><rect x="717.1" y="1509" width="8.2" height="15.0" fill="rgb(239,218,5)" rx="2" ry="2" />
<text x="720.12" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,538 samples, 0.19%)</title><rect x="727.2" y="1253" width="2.2" height="15.0" fill="rgb(213,206,10)" rx="2" ry="2" />
<text x="730.18" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="1957" width="0.3" height="15.0" fill="rgb(235,229,3)" rx="2" ry="2" />
<text x="1191.82" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (340 samples, 0.02%)</title><rect x="1002.0" y="1205" width="0.3" height="15.0" fill="rgb(218,156,16)" rx="2" ry="2" />
<text x="1005.04" y="1215.5" ></text>
</g>
<g >
<title>unix_lseek_64 (3,190 samples, 0.17%)</title><rect x="970.2" y="1253" width="2.1" height="15.0" fill="rgb(230,129,30)" rx="2" ry="2" />
<text x="973.24" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,510 samples, 0.08%)</title><rect x="911.4" y="1333" width="1.0" height="15.0" fill="rgb(228,167,14)" rx="2" ry="2" />
<text x="914.43" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (250 samples, 0.01%)</title><rect x="819.4" y="1269" width="0.1" height="15.0" fill="rgb(211,94,47)" rx="2" ry="2" />
<text x="822.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (1,081 samples, 0.06%)</title><rect x="753.1" y="1285" width="0.7" height="15.0" fill="rgb(220,164,37)" rx="2" ry="2" />
<text x="756.15" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (353 samples, 0.02%)</title><rect x="664.4" y="1845" width="0.2" height="15.0" fill="rgb(229,187,1)" rx="2" ry="2" />
<text x="667.40" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (419 samples, 0.02%)</title><rect x="1125.4" y="1365" width="0.2" height="15.0" fill="rgb(212,221,49)" rx="2" ry="2" />
<text x="1128.35" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (362 samples, 0.02%)</title><rect x="925.2" y="949" width="0.2" height="15.0" fill="rgb(217,208,6)" rx="2" ry="2" />
<text x="928.20" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (6,195 samples, 0.33%)</title><rect x="1165.6" y="1349" width="3.9" height="15.0" fill="rgb(247,1,53)" rx="2" ry="2" />
<text x="1168.57" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (401 samples, 0.02%)</title><rect x="1012.0" y="1285" width="0.3" height="15.0" fill="rgb(218,100,2)" rx="2" ry="2" />
<text x="1015.02" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (387 samples, 0.02%)</title><rect x="1141.8" y="1365" width="0.2" height="15.0" fill="rgb(210,40,49)" rx="2" ry="2" />
<text x="1144.76" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (335 samples, 0.02%)</title><rect x="689.4" y="789" width="0.2" height="15.0" fill="rgb(252,110,1)" rx="2" ry="2" />
<text x="692.41" y="799.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (161 samples, 0.01%)</title><rect x="1109.6" y="1253" width="0.1" height="15.0" fill="rgb(208,82,5)" rx="2" ry="2" />
<text x="1112.60" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (928 samples, 0.05%)</title><rect x="952.7" y="1205" width="0.5" height="15.0" fill="rgb(229,165,15)" rx="2" ry="2" />
<text x="955.66" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,242 samples, 0.07%)</title><rect x="1024.7" y="1397" width="0.7" height="15.0" fill="rgb(251,224,3)" rx="2" ry="2" />
<text x="1027.65" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (482 samples, 0.03%)</title><rect x="1188.8" y="1653" width="0.3" height="15.0" fill="rgb(242,5,20)" rx="2" ry="2" />
<text x="1191.82" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1680 (676 samples, 0.04%)</title><rect x="754.5" y="1301" width="0.4" height="15.0" fill="rgb(240,164,43)" rx="2" ry="2" />
<text x="757.46" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,053 samples, 0.06%)</title><rect x="830.6" y="1253" width="0.7" height="15.0" fill="rgb(219,129,10)" rx="2" ry="2" />
<text x="833.65" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (397 samples, 0.02%)</title><rect x="1166.9" y="1173" width="0.2" height="15.0" fill="rgb(233,93,32)" rx="2" ry="2" />
<text x="1169.87" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="421" width="0.5" height="15.0" fill="rgb(215,8,12)" rx="2" ry="2" />
<text x="1192.48" y="431.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (526 samples, 0.03%)</title><rect x="1106.5" y="1301" width="0.4" height="15.0" fill="rgb(230,44,12)" rx="2" ry="2" />
<text x="1109.54" y="1311.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (526 samples, 0.03%)</title><rect x="1185.6" y="1157" width="0.3" height="15.0" fill="rgb(230,152,15)" rx="2" ry="2" />
<text x="1188.61" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__decode_bin_6335 (30,791 samples, 1.66%)</title><rect x="835.5" y="1333" width="19.5" height="15.0" fill="rgb(244,58,12)" rx="2" ry="2" />
<text x="838.51" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1909" width="0.5" height="15.0" fill="rgb(206,106,52)" rx="2" ry="2" />
<text x="1192.48" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (337 samples, 0.02%)</title><rect x="879.8" y="1205" width="0.2" height="15.0" fill="rgb(234,147,54)" rx="2" ry="2" />
<text x="882.79" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_2902 (247 samples, 0.01%)</title><rect x="788.6" y="1221" width="0.2" height="15.0" fill="rgb(215,179,50)" rx="2" ry="2" />
<text x="791.61" y="1231.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (204 samples, 0.01%)</title><rect x="243.6" y="1845" width="0.2" height="15.0" fill="rgb(252,105,5)" rx="2" ry="2" />
<text x="246.63" y="1855.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (199 samples, 0.01%)</title><rect x="881.4" y="1125" width="0.1" height="15.0" fill="rgb(252,158,9)" rx="2" ry="2" />
<text x="884.42" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (482 samples, 0.03%)</title><rect x="1038.9" y="1301" width="0.3" height="15.0" fill="rgb(224,219,27)" rx="2" ry="2" />
<text x="1041.88" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (549 samples, 0.03%)</title><rect x="674.2" y="1877" width="0.3" height="15.0" fill="rgb(252,128,28)" rx="2" ry="2" />
<text x="677.19" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (121,721 samples, 6.54%)</title><rect x="1017.5" y="1493" width="77.2" height="15.0" fill="rgb(243,36,37)" rx="2" ry="2" />
<text x="1020.49" y="1503.5" >camlIrmi..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="1637" width="0.5" height="15.0" fill="rgb(254,0,50)" rx="2" ry="2" />
<text x="1192.48" y="1647.5" ></text>
</g>
<g >
<title>caml_start_program (989,829 samples, 53.22%)</title><rect x="57.7" y="2005" width="627.9" height="15.0" fill="rgb(214,11,38)" rx="2" ry="2" />
<text x="60.66" y="2015.5" >caml_start_program</text>
</g>
<g >
<title>[[kernel.kallsyms]] (184 samples, 0.01%)</title><rect x="744.3" y="1141" width="0.1" height="15.0" fill="rgb(250,210,8)" rx="2" ry="2" />
<text x="747.26" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (594 samples, 0.03%)</title><rect x="904.8" y="1285" width="0.4" height="15.0" fill="rgb(228,226,19)" rx="2" ry="2" />
<text x="907.81" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (4,554 samples, 0.24%)</title><rect x="705.7" y="1493" width="2.8" height="15.0" fill="rgb(218,16,41)" rx="2" ry="2" />
<text x="708.66" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (899 samples, 0.05%)</title><rect x="940.8" y="1221" width="0.6" height="15.0" fill="rgb(217,166,50)" rx="2" ry="2" />
<text x="943.80" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (189 samples, 0.01%)</title><rect x="1000.8" y="1221" width="0.1" height="15.0" fill="rgb(234,117,54)" rx="2" ry="2" />
<text x="1003.77" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (319 samples, 0.02%)</title><rect x="908.6" y="1253" width="0.2" height="15.0" fill="rgb(209,198,54)" rx="2" ry="2" />
<text x="911.57" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (509 samples, 0.03%)</title><rect x="673.3" y="1813" width="0.3" height="15.0" fill="rgb(217,38,1)" rx="2" ry="2" />
<text x="676.27" y="1823.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,795 samples, 0.10%)</title><rect x="214.0" y="1813" width="1.2" height="15.0" fill="rgb(250,174,54)" rx="2" ry="2" />
<text x="217.05" y="1823.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (98,444 samples, 5.29%)</title><rect x="1101.1" y="1653" width="62.5" height="15.0" fill="rgb(216,65,34)" rx="2" ry="2" />
<text x="1104.12" y="1663.5" >camlLw..</text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (1,037 samples, 0.06%)</title><rect x="803.3" y="1365" width="0.6" height="15.0" fill="rgb(234,65,52)" rx="2" ry="2" />
<text x="806.28" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="309" width="0.5" height="15.0" fill="rgb(250,167,24)" rx="2" ry="2" />
<text x="1192.48" y="319.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (218 samples, 0.01%)</title><rect x="1042.0" y="1253" width="0.1" height="15.0" fill="rgb(217,107,14)" rx="2" ry="2" />
<text x="1044.95" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1429" width="0.2" height="15.0" fill="rgb(251,143,46)" rx="2" ry="2" />
<text x="1191.57" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (194 samples, 0.01%)</title><rect x="850.2" y="1173" width="0.1" height="15.0" fill="rgb(243,199,42)" rx="2" ry="2" />
<text x="853.20" y="1183.5" ></text>
</g>
<g >
<title>__lseek64 (158 samples, 0.01%)</title><rect x="926.1" y="1253" width="0.1" height="15.0" fill="rgb(222,125,5)" rx="2" ry="2" />
<text x="929.14" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (542 samples, 0.03%)</title><rect x="686.0" y="1989" width="0.4" height="15.0" fill="rgb(220,31,30)" rx="2" ry="2" />
<text x="689.02" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (373 samples, 0.02%)</title><rect x="1122.7" y="1301" width="0.2" height="15.0" fill="rgb(249,131,15)" rx="2" ry="2" />
<text x="1125.68" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,357 samples, 0.23%)</title><rect x="586.6" y="1797" width="2.8" height="15.0" fill="rgb(209,185,24)" rx="2" ry="2" />
<text x="589.60" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (304 samples, 0.02%)</title><rect x="928.0" y="1253" width="0.2" height="15.0" fill="rgb(212,151,33)" rx="2" ry="2" />
<text x="931.04" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (724 samples, 0.04%)</title><rect x="473.2" y="1861" width="0.4" height="15.0" fill="rgb(227,160,28)" rx="2" ry="2" />
<text x="476.15" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (8,389 samples, 0.45%)</title><rect x="950.7" y="1253" width="5.3" height="15.0" fill="rgb(254,159,52)" rx="2" ry="2" />
<text x="953.69" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (531 samples, 0.03%)</title><rect x="925.1" y="981" width="0.3" height="15.0" fill="rgb(253,69,40)" rx="2" ry="2" />
<text x="928.10" y="991.5" ></text>
</g>
<g >
<title>caml_call_gc (187 samples, 0.01%)</title><rect x="756.8" y="1317" width="0.2" height="15.0" fill="rgb(208,106,11)" rx="2" ry="2" />
<text x="759.84" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (281 samples, 0.02%)</title><rect x="919.5" y="1397" width="0.2" height="15.0" fill="rgb(227,14,12)" rx="2" ry="2" />
<text x="922.54" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1989" width="0.3" height="15.0" fill="rgb(217,40,49)" rx="2" ry="2" />
<text x="1191.32" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (406 samples, 0.02%)</title><rect x="958.7" y="1205" width="0.3" height="15.0" fill="rgb(219,146,5)" rx="2" ry="2" />
<text x="961.75" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (209 samples, 0.01%)</title><rect x="689.5" y="309" width="0.1" height="15.0" fill="rgb(208,178,35)" rx="2" ry="2" />
<text x="692.49" y="319.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (286 samples, 0.02%)</title><rect x="1138.3" y="1285" width="0.2" height="15.0" fill="rgb(232,26,47)" rx="2" ry="2" />
<text x="1141.31" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (893 samples, 0.05%)</title><rect x="846.8" y="1237" width="0.6" height="15.0" fill="rgb(244,116,12)" rx="2" ry="2" />
<text x="849.82" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="1829" width="0.5" height="15.0" fill="rgb(208,205,33)" rx="2" ry="2" />
<text x="1192.48" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (390 samples, 0.02%)</title><rect x="937.3" y="917" width="0.3" height="15.0" fill="rgb(213,40,54)" rx="2" ry="2" />
<text x="940.32" y="927.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="437" width="0.2" height="15.0" fill="rgb(221,101,10)" rx="2" ry="2" />
<text x="1191.57" y="447.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1508 (1,331 samples, 0.07%)</title><rect x="668.2" y="1845" width="0.8" height="15.0" fill="rgb(232,70,42)" rx="2" ry="2" />
<text x="671.17" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (3,019 samples, 0.16%)</title><rect x="1021.5" y="1381" width="1.9" height="15.0" fill="rgb(219,217,25)" rx="2" ry="2" />
<text x="1024.50" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (174 samples, 0.01%)</title><rect x="714.4" y="1445" width="0.1" height="15.0" fill="rgb(243,224,6)" rx="2" ry="2" />
<text x="717.37" y="1455.5" ></text>
</g>
<g >
<title>caml_compare (359 samples, 0.02%)</title><rect x="1175.8" y="1205" width="0.2" height="15.0" fill="rgb(213,28,30)" rx="2" ry="2" />
<text x="1178.76" y="1215.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (580 samples, 0.03%)</title><rect x="720.0" y="1349" width="0.3" height="15.0" fill="rgb(228,128,46)" rx="2" ry="2" />
<text x="722.96" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (904 samples, 0.05%)</title><rect x="765.7" y="1285" width="0.6" height="15.0" fill="rgb(219,10,11)" rx="2" ry="2" />
<text x="768.68" y="1295.5" ></text>
</g>
<g >
<title>sweep_slice (262 samples, 0.01%)</title><rect x="435.6" y="1877" width="0.2" height="15.0" fill="rgb(210,92,40)" rx="2" ry="2" />
<text x="438.64" y="1887.5" ></text>
</g>
<g >
<title>caml_compare (650 samples, 0.03%)</title><rect x="887.0" y="1237" width="0.4" height="15.0" fill="rgb(244,174,22)" rx="2" ry="2" />
<text x="890.00" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1381" width="0.3" height="15.0" fill="rgb(241,75,6)" rx="2" ry="2" />
<text x="1191.82" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (281 samples, 0.02%)</title><rect x="1148.7" y="1237" width="0.2" height="15.0" fill="rgb(225,3,7)" rx="2" ry="2" />
<text x="1151.67" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="981" width="0.5" height="15.0" fill="rgb(213,211,8)" rx="2" ry="2" />
<text x="1192.48" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (599 samples, 0.03%)</title><rect x="1050.0" y="1317" width="0.3" height="15.0" fill="rgb(217,99,33)" rx="2" ry="2" />
<text x="1052.96" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="453" width="0.3" height="15.0" fill="rgb(231,138,18)" rx="2" ry="2" />
<text x="1192.12" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (261 samples, 0.01%)</title><rect x="722.5" y="1285" width="0.2" height="15.0" fill="rgb(246,63,50)" rx="2" ry="2" />
<text x="725.50" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (267 samples, 0.01%)</title><rect x="689.5" y="565" width="0.1" height="15.0" fill="rgb(236,198,32)" rx="2" ry="2" />
<text x="692.45" y="575.5" ></text>
</g>
<g >
<title>caml_string_compare (485 samples, 0.03%)</title><rect x="898.5" y="1333" width="0.3" height="15.0" fill="rgb(219,39,54)" rx="2" ry="2" />
<text x="901.53" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1941" width="0.2" height="15.0" fill="rgb(221,2,2)" rx="2" ry="2" />
<text x="1191.57" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1173" width="0.3" height="15.0" fill="rgb(220,206,35)" rx="2" ry="2" />
<text x="1192.12" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (171 samples, 0.01%)</title><rect x="1110.8" y="1365" width="0.1" height="15.0" fill="rgb(232,183,33)" rx="2" ry="2" />
<text x="1113.77" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="1118.5" y="1269" width="0.1" height="15.0" fill="rgb(242,100,37)" rx="2" ry="2" />
<text x="1121.45" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="933" width="0.5" height="15.0" fill="rgb(220,143,10)" rx="2" ry="2" />
<text x="1192.48" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (619 samples, 0.03%)</title><rect x="823.2" y="1349" width="0.3" height="15.0" fill="rgb(238,124,7)" rx="2" ry="2" />
<text x="826.16" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1680 (159 samples, 0.01%)</title><rect x="1103.3" y="1397" width="0.1" height="15.0" fill="rgb(240,219,53)" rx="2" ry="2" />
<text x="1106.30" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,321 samples, 0.07%)</title><rect x="1104.6" y="1445" width="0.8" height="15.0" fill="rgb(236,214,45)" rx="2" ry="2" />
<text x="1107.55" y="1455.5" ></text>
</g>
<g >
<title>caml_alloc_shr (1,684 samples, 0.09%)</title><rect x="30.2" y="2005" width="1.1" height="15.0" fill="rgb(232,214,49)" rx="2" ry="2" />
<text x="33.22" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (999 samples, 0.05%)</title><rect x="750.5" y="1253" width="0.6" height="15.0" fill="rgb(222,50,47)" rx="2" ry="2" />
<text x="753.50" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (185 samples, 0.01%)</title><rect x="711.3" y="1333" width="0.1" height="15.0" fill="rgb(212,122,10)" rx="2" ry="2" />
<text x="714.29" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (632 samples, 0.03%)</title><rect x="704.9" y="1189" width="0.4" height="15.0" fill="rgb(232,204,10)" rx="2" ry="2" />
<text x="707.88" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (424 samples, 0.02%)</title><rect x="1132.6" y="1317" width="0.3" height="15.0" fill="rgb(212,155,31)" rx="2" ry="2" />
<text x="1135.59" y="1327.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (446 samples, 0.02%)</title><rect x="47.6" y="1989" width="0.2" height="15.0" fill="rgb(241,10,48)" rx="2" ry="2" />
<text x="50.55" y="1999.5" ></text>
</g>
<g >
<title>do_compare_val (910 samples, 0.05%)</title><rect x="1072.6" y="1349" width="0.6" height="15.0" fill="rgb(243,220,12)" rx="2" ry="2" />
<text x="1075.61" y="1359.5" ></text>
</g>
<g >
<title>caml_hash (692 samples, 0.04%)</title><rect x="1079.3" y="1365" width="0.4" height="15.0" fill="rgb(237,60,41)" rx="2" ry="2" />
<text x="1082.31" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (334 samples, 0.02%)</title><rect x="821.6" y="1301" width="0.3" height="15.0" fill="rgb(223,127,52)" rx="2" ry="2" />
<text x="824.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Store__set_tree_exn_7549 (36,923 samples, 1.99%)</title><rect x="1164.8" y="1589" width="23.4" height="15.0" fill="rgb(211,29,0)" rx="2" ry="2" />
<text x="1167.82" y="1599.5" >c..</text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (621 samples, 0.03%)</title><rect x="1136.1" y="1381" width="0.4" height="15.0" fill="rgb(250,141,32)" rx="2" ry="2" />
<text x="1139.09" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (217 samples, 0.01%)</title><rect x="996.0" y="1157" width="0.1" height="15.0" fill="rgb(205,53,0)" rx="2" ry="2" />
<text x="998.99" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (420 samples, 0.02%)</title><rect x="1132.0" y="1317" width="0.2" height="15.0" fill="rgb(238,92,33)" rx="2" ry="2" />
<text x="1134.98" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (700 samples, 0.04%)</title><rect x="704.8" y="1221" width="0.5" height="15.0" fill="rgb(231,26,13)" rx="2" ry="2" />
<text x="707.83" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1637" width="0.3" height="15.0" fill="rgb(243,124,9)" rx="2" ry="2" />
<text x="1192.12" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (486 samples, 0.03%)</title><rect x="1123.6" y="1317" width="0.3" height="15.0" fill="rgb(220,175,30)" rx="2" ry="2" />
<text x="1126.59" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (186 samples, 0.01%)</title><rect x="1162.4" y="1509" width="0.1" height="15.0" fill="rgb(241,46,29)" rx="2" ry="2" />
<text x="1165.36" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (198 samples, 0.01%)</title><rect x="1157.9" y="1269" width="0.1" height="15.0" fill="rgb(231,169,8)" rx="2" ry="2" />
<text x="1160.89" y="1279.5" ></text>
</g>
<g >
<title>caml_string_compare (440 samples, 0.02%)</title><rect x="899.3" y="1317" width="0.3" height="15.0" fill="rgb(245,164,36)" rx="2" ry="2" />
<text x="902.28" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,773 samples, 0.10%)</title><rect x="924.3" y="1269" width="1.1" height="15.0" fill="rgb(225,53,29)" rx="2" ry="2" />
<text x="927.31" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (276 samples, 0.01%)</title><rect x="994.1" y="1157" width="0.2" height="15.0" fill="rgb(217,10,18)" rx="2" ry="2" />
<text x="997.14" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (552 samples, 0.03%)</title><rect x="745.7" y="1237" width="0.3" height="15.0" fill="rgb(207,167,48)" rx="2" ry="2" />
<text x="748.66" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_1079 (294 samples, 0.02%)</title><rect x="1049.2" y="1333" width="0.1" height="15.0" fill="rgb(206,52,42)" rx="2" ry="2" />
<text x="1052.16" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,048 samples, 0.33%)</title><rect x="585.5" y="1829" width="3.9" height="15.0" fill="rgb(224,224,43)" rx="2" ry="2" />
<text x="588.53" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,037 samples, 0.06%)</title><rect x="911.7" y="1221" width="0.7" height="15.0" fill="rgb(243,177,14)" rx="2" ry="2" />
<text x="914.73" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (323 samples, 0.02%)</title><rect x="670.0" y="1781" width="0.2" height="15.0" fill="rgb(243,180,30)" rx="2" ry="2" />
<text x="673.02" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__append_string_1428 (293 samples, 0.02%)</title><rect x="702.7" y="1381" width="0.2" height="15.0" fill="rgb(213,127,27)" rx="2" ry="2" />
<text x="705.72" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (806 samples, 0.04%)</title><rect x="1057.0" y="1349" width="0.5" height="15.0" fill="rgb(219,208,49)" rx="2" ry="2" />
<text x="1060.02" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,704 samples, 0.15%)</title><rect x="732.9" y="1333" width="1.7" height="15.0" fill="rgb(232,91,1)" rx="2" ry="2" />
<text x="735.92" y="1343.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (428 samples, 0.02%)</title><rect x="1176.8" y="1253" width="0.3" height="15.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text x="1179.83" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1621" width="0.3" height="15.0" fill="rgb(229,117,21)" rx="2" ry="2" />
<text x="1191.32" y="1631.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (705,229 samples, 37.92%)</title><rect x="716.2" y="1765" width="447.4" height="15.0" fill="rgb(239,77,14)" rx="2" ry="2" />
<text x="719.18" y="1775.5" >camlLwt__iter_callback_list_2247</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1829" width="0.3" height="15.0" fill="rgb(224,187,41)" rx="2" ry="2" />
<text x="1191.82" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (566 samples, 0.03%)</title><rect x="717.4" y="1365" width="0.4" height="15.0" fill="rgb(237,153,21)" rx="2" ry="2" />
<text x="720.42" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="848.6" y="1221" width="0.1" height="15.0" fill="rgb(243,61,45)" rx="2" ry="2" />
<text x="851.55" y="1231.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,819 samples, 0.10%)</title><rect x="761.5" y="1285" width="1.2" height="15.0" fill="rgb(231,65,9)" rx="2" ry="2" />
<text x="764.55" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (199 samples, 0.01%)</title><rect x="907.7" y="1365" width="0.2" height="15.0" fill="rgb(254,38,38)" rx="2" ry="2" />
<text x="910.74" y="1375.5" ></text>
</g>
<g >
<title>caml_string_compare (640 samples, 0.03%)</title><rect x="1006.7" y="1381" width="0.4" height="15.0" fill="rgb(249,197,49)" rx="2" ry="2" />
<text x="1009.72" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (422 samples, 0.02%)</title><rect x="774.0" y="1173" width="0.2" height="15.0" fill="rgb(223,195,54)" rx="2" ry="2" />
<text x="776.97" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (9,879 samples, 0.53%)</title><rect x="1127.9" y="1381" width="6.3" height="15.0" fill="rgb(227,118,28)" rx="2" ry="2" />
<text x="1130.92" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,254 samples, 0.07%)</title><rect x="920.9" y="1397" width="0.8" height="15.0" fill="rgb(228,84,0)" rx="2" ry="2" />
<text x="923.87" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="581" width="0.3" height="15.0" fill="rgb(253,27,28)" rx="2" ry="2" />
<text x="1192.12" y="591.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (50,616 samples, 2.72%)</title><rect x="763.6" y="1333" width="32.1" height="15.0" fill="rgb(252,107,25)" rx="2" ry="2" />
<text x="766.56" y="1343.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (308 samples, 0.02%)</title><rect x="981.9" y="1125" width="0.2" height="15.0" fill="rgb(248,133,48)" rx="2" ry="2" />
<text x="984.90" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="2021" width="0.3" height="15.0" fill="rgb(229,58,29)" rx="2" ry="2" />
<text x="1191.82" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (485 samples, 0.03%)</title><rect x="845.0" y="1301" width="0.3" height="15.0" fill="rgb(240,19,5)" rx="2" ry="2" />
<text x="848.01" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="757" width="0.3" height="15.0" fill="rgb(248,152,42)" rx="2" ry="2" />
<text x="1191.32" y="767.5" ></text>
</g>
<g >
<title>caml_tuplify2 (6,839 samples, 0.37%)</title><rect x="348.3" y="1909" width="4.3" height="15.0" fill="rgb(227,68,25)" rx="2" ry="2" />
<text x="351.29" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,765 samples, 0.09%)</title><rect x="885.6" y="1173" width="1.1" height="15.0" fill="rgb(253,11,4)" rx="2" ry="2" />
<text x="888.60" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,509 samples, 0.19%)</title><rect x="1069.8" y="1253" width="2.2" height="15.0" fill="rgb(235,77,29)" rx="2" ry="2" />
<text x="1072.79" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (174 samples, 0.01%)</title><rect x="1034.3" y="1269" width="0.1" height="15.0" fill="rgb(229,142,18)" rx="2" ry="2" />
<text x="1037.33" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_1700 (3,045 samples, 0.16%)</title><rect x="750.3" y="1269" width="1.9" height="15.0" fill="rgb(227,25,20)" rx="2" ry="2" />
<text x="753.31" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (283 samples, 0.02%)</title><rect x="1119.5" y="1333" width="0.2" height="15.0" fill="rgb(252,128,44)" rx="2" ry="2" />
<text x="1122.49" y="1343.5" ></text>
</g>
<g >
<title>__lll_lock_wait (207 samples, 0.01%)</title><rect x="609.2" y="1813" width="0.1" height="15.0" fill="rgb(239,229,0)" rx="2" ry="2" />
<text x="612.17" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (664 samples, 0.04%)</title><rect x="694.3" y="1205" width="0.4" height="15.0" fill="rgb(214,108,20)" rx="2" ry="2" />
<text x="697.29" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (522 samples, 0.03%)</title><rect x="993.4" y="1109" width="0.3" height="15.0" fill="rgb(211,110,39)" rx="2" ry="2" />
<text x="996.41" y="1119.5" ></text>
</g>
<g >
<title>caml_apply5 (1,515 samples, 0.08%)</title><rect x="911.4" y="1381" width="1.0" height="15.0" fill="rgb(227,177,26)" rx="2" ry="2" />
<text x="914.43" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (176 samples, 0.01%)</title><rect x="791.0" y="1061" width="0.1" height="15.0" fill="rgb(236,86,2)" rx="2" ry="2" />
<text x="793.95" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (249 samples, 0.01%)</title><rect x="710.8" y="1317" width="0.2" height="15.0" fill="rgb(217,229,34)" rx="2" ry="2" />
<text x="713.81" y="1327.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (455 samples, 0.02%)</title><rect x="664.8" y="1861" width="0.3" height="15.0" fill="rgb(226,192,25)" rx="2" ry="2" />
<text x="667.78" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (200 samples, 0.01%)</title><rect x="731.3" y="1269" width="0.1" height="15.0" fill="rgb(247,12,45)" rx="2" ry="2" />
<text x="734.26" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (36,038 samples, 1.94%)</title><rect x="1165.2" y="1461" width="22.8" height="15.0" fill="rgb(249,18,40)" rx="2" ry="2" />
<text x="1168.17" y="1471.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3698 (184 samples, 0.01%)</title><rect x="992.3" y="1141" width="0.1" height="15.0" fill="rgb(247,229,39)" rx="2" ry="2" />
<text x="995.27" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,711 samples, 0.09%)</title><rect x="1137.7" y="1301" width="1.1" height="15.0" fill="rgb(216,132,33)" rx="2" ry="2" />
<text x="1140.72" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (361 samples, 0.02%)</title><rect x="717.8" y="1333" width="0.3" height="15.0" fill="rgb(247,161,5)" rx="2" ry="2" />
<text x="720.83" y="1343.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (166 samples, 0.01%)</title><rect x="862.4" y="1173" width="0.1" height="15.0" fill="rgb(246,225,6)" rx="2" ry="2" />
<text x="865.41" y="1183.5" ></text>
</g>
<g >
<title>do_compare_val (474 samples, 0.03%)</title><rect x="999.1" y="1173" width="0.3" height="15.0" fill="rgb(231,163,35)" rx="2" ry="2" />
<text x="1002.14" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,130 samples, 0.17%)</title><rect x="1122.5" y="1349" width="2.0" height="15.0" fill="rgb(221,175,29)" rx="2" ry="2" />
<text x="1125.53" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="469" width="0.3" height="15.0" fill="rgb(228,81,35)" rx="2" ry="2" />
<text x="1191.32" y="479.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="597" width="0.5" height="15.0" fill="rgb(234,207,49)" rx="2" ry="2" />
<text x="1192.48" y="607.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (301 samples, 0.02%)</title><rect x="786.2" y="1205" width="0.1" height="15.0" fill="rgb(251,182,7)" rx="2" ry="2" />
<text x="789.16" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (1,895 samples, 0.10%)</title><rect x="811.5" y="1477" width="1.2" height="15.0" fill="rgb(245,27,8)" rx="2" ry="2" />
<text x="814.46" y="1487.5" ></text>
</g>
<g >
<title>caml_apply5 (205 samples, 0.01%)</title><rect x="909.3" y="1349" width="0.2" height="15.0" fill="rgb(248,59,26)" rx="2" ry="2" />
<text x="912.32" y="1359.5" ></text>
</g>
<g >
<title>caml_hash (631 samples, 0.03%)</title><rect x="811.9" y="1445" width="0.4" height="15.0" fill="rgb(225,42,15)" rx="2" ry="2" />
<text x="814.92" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (411 samples, 0.02%)</title><rect x="906.4" y="1333" width="0.3" height="15.0" fill="rgb(212,107,23)" rx="2" ry="2" />
<text x="909.42" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (212 samples, 0.01%)</title><rect x="700.3" y="1445" width="0.1" height="15.0" fill="rgb(230,15,8)" rx="2" ry="2" />
<text x="703.29" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,373 samples, 0.07%)</title><rect x="885.9" y="1109" width="0.8" height="15.0" fill="rgb(216,44,30)" rx="2" ry="2" />
<text x="888.85" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_1141 (396 samples, 0.02%)</title><rect x="1127.4" y="1333" width="0.3" height="15.0" fill="rgb(229,106,33)" rx="2" ry="2" />
<text x="1130.42" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (881 samples, 0.05%)</title><rect x="937.0" y="981" width="0.6" height="15.0" fill="rgb(224,53,36)" rx="2" ry="2" />
<text x="940.02" y="991.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (37,059 samples, 1.99%)</title><rect x="1028.6" y="1397" width="23.5" height="15.0" fill="rgb(240,224,6)" rx="2" ry="2" />
<text x="1031.62" y="1407.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1461" width="0.3" height="15.0" fill="rgb(232,62,48)" rx="2" ry="2" />
<text x="1192.12" y="1471.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (205 samples, 0.01%)</title><rect x="1003.2" y="1253" width="0.1" height="15.0" fill="rgb(222,32,48)" rx="2" ry="2" />
<text x="1006.17" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (202 samples, 0.01%)</title><rect x="752.6" y="1173" width="0.2" height="15.0" fill="rgb(211,169,46)" rx="2" ry="2" />
<text x="755.64" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (194 samples, 0.01%)</title><rect x="1159.2" y="1141" width="0.1" height="15.0" fill="rgb(244,3,31)" rx="2" ry="2" />
<text x="1162.17" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__prim_1391 (831 samples, 0.04%)</title><rect x="508.1" y="1925" width="0.6" height="15.0" fill="rgb(235,205,51)" rx="2" ry="2" />
<text x="511.15" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (276 samples, 0.01%)</title><rect x="1132.7" y="1221" width="0.1" height="15.0" fill="rgb(223,199,33)" rx="2" ry="2" />
<text x="1135.67" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (306 samples, 0.02%)</title><rect x="928.0" y="1269" width="0.2" height="15.0" fill="rgb(246,53,5)" rx="2" ry="2" />
<text x="931.04" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (182 samples, 0.01%)</title><rect x="848.6" y="1189" width="0.1" height="15.0" fill="rgb(247,143,13)" rx="2" ry="2" />
<text x="851.59" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1615 (205 samples, 0.01%)</title><rect x="870.5" y="1173" width="0.1" height="15.0" fill="rgb(221,195,19)" rx="2" ry="2" />
<text x="873.50" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (237 samples, 0.01%)</title><rect x="1187.2" y="1317" width="0.1" height="15.0" fill="rgb(242,169,17)" rx="2" ry="2" />
<text x="1190.19" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1109" width="0.3" height="15.0" fill="rgb(254,195,24)" rx="2" ry="2" />
<text x="1191.82" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (553 samples, 0.03%)</title><rect x="1169.2" y="981" width="0.3" height="15.0" fill="rgb(254,116,52)" rx="2" ry="2" />
<text x="1172.15" y="991.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="1221" width="0.3" height="15.0" fill="rgb(214,91,9)" rx="2" ry="2" />
<text x="1191.32" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (3,797 samples, 0.20%)</title><rect x="836.1" y="1253" width="2.4" height="15.0" fill="rgb(223,176,14)" rx="2" ry="2" />
<text x="839.08" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,359 samples, 0.13%)</title><rect x="695.6" y="1397" width="1.5" height="15.0" fill="rgb(250,202,38)" rx="2" ry="2" />
<text x="698.56" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (214 samples, 0.01%)</title><rect x="1165.0" y="1333" width="0.1" height="15.0" fill="rgb(207,70,49)" rx="2" ry="2" />
<text x="1168.01" y="1343.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (163 samples, 0.01%)</title><rect x="346.7" y="1877" width="0.1" height="15.0" fill="rgb(232,6,49)" rx="2" ry="2" />
<text x="349.67" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (183 samples, 0.01%)</title><rect x="745.7" y="1173" width="0.2" height="15.0" fill="rgb(212,171,46)" rx="2" ry="2" />
<text x="748.74" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__already_in_dst_3660 (9,279 samples, 0.50%)</title><rect x="902.4" y="1461" width="5.8" height="15.0" fill="rgb(247,43,2)" rx="2" ry="2" />
<text x="905.36" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (381 samples, 0.02%)</title><rect x="1042.1" y="1237" width="0.3" height="15.0" fill="rgb(235,180,23)" rx="2" ry="2" />
<text x="1045.13" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_1980 (224 samples, 0.01%)</title><rect x="948.9" y="1189" width="0.2" height="15.0" fill="rgb(236,29,31)" rx="2" ry="2" />
<text x="951.94" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_1203 (325 samples, 0.02%)</title><rect x="441.2" y="1877" width="0.2" height="15.0" fill="rgb(218,103,45)" rx="2" ry="2" />
<text x="444.21" y="1887.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (255 samples, 0.01%)</title><rect x="423.4" y="1829" width="0.2" height="15.0" fill="rgb(222,141,52)" rx="2" ry="2" />
<text x="426.42" y="1839.5" ></text>
</g>
<g >
<title>caml_apply2 (372 samples, 0.02%)</title><rect x="751.9" y="1253" width="0.2" height="15.0" fill="rgb(254,223,0)" rx="2" ry="2" />
<text x="754.87" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (184 samples, 0.01%)</title><rect x="815.4" y="1269" width="0.1" height="15.0" fill="rgb(221,184,5)" rx="2" ry="2" />
<text x="818.39" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="1317" width="0.2" height="15.0" fill="rgb(244,52,17)" rx="2" ry="2" />
<text x="1191.57" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (168 samples, 0.01%)</title><rect x="867.9" y="1125" width="0.1" height="15.0" fill="rgb(207,61,51)" rx="2" ry="2" />
<text x="870.90" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3718 (191 samples, 0.01%)</title><rect x="771.9" y="1189" width="0.2" height="15.0" fill="rgb(206,57,49)" rx="2" ry="2" />
<text x="774.94" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (2,785 samples, 0.15%)</title><rect x="757.6" y="1349" width="1.8" height="15.0" fill="rgb(238,174,35)" rx="2" ry="2" />
<text x="760.64" y="1359.5" ></text>
</g>
<g >
<title>memmove (167 samples, 0.01%)</title><rect x="769.4" y="1141" width="0.1" height="15.0" fill="rgb(230,109,29)" rx="2" ry="2" />
<text x="772.38" y="1151.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (494 samples, 0.03%)</title><rect x="1189.5" y="149" width="0.3" height="15.0" fill="rgb(250,189,1)" rx="2" ry="2" />
<text x="1192.48" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (881 samples, 0.05%)</title><rect x="729.6" y="1317" width="0.5" height="15.0" fill="rgb(220,86,35)" rx="2" ry="2" />
<text x="732.56" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,865 samples, 0.15%)</title><rect x="524.7" y="1877" width="1.9" height="15.0" fill="rgb(209,216,52)" rx="2" ry="2" />
<text x="527.75" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (232 samples, 0.01%)</title><rect x="689.5" y="389" width="0.1" height="15.0" fill="rgb(214,212,48)" rx="2" ry="2" />
<text x="692.47" y="399.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (385 samples, 0.02%)</title><rect x="1150.0" y="1253" width="0.2" height="15.0" fill="rgb(209,168,14)" rx="2" ry="2" />
<text x="1152.96" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,111 samples, 0.06%)</title><rect x="1109.2" y="1333" width="0.7" height="15.0" fill="rgb(226,29,38)" rx="2" ry="2" />
<text x="1112.18" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (830 samples, 0.04%)</title><rect x="694.2" y="1253" width="0.5" height="15.0" fill="rgb(246,186,31)" rx="2" ry="2" />
<text x="697.19" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (197 samples, 0.01%)</title><rect x="804.2" y="1333" width="0.1" height="15.0" fill="rgb(238,227,38)" rx="2" ry="2" />
<text x="807.19" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (3,847 samples, 0.21%)</title><rect x="1046.7" y="1333" width="2.5" height="15.0" fill="rgb(222,3,52)" rx="2" ry="2" />
<text x="1049.72" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (466 samples, 0.03%)</title><rect x="717.8" y="1365" width="0.3" height="15.0" fill="rgb(217,16,24)" rx="2" ry="2" />
<text x="720.78" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,585 samples, 0.09%)</title><rect x="1180.9" y="1221" width="1.0" height="15.0" fill="rgb(234,167,6)" rx="2" ry="2" />
<text x="1183.86" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3841 (220 samples, 0.01%)</title><rect x="667.6" y="1861" width="0.1" height="15.0" fill="rgb(238,104,30)" rx="2" ry="2" />
<text x="670.56" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="389" width="0.5" height="15.0" fill="rgb(219,158,3)" rx="2" ry="2" />
<text x="1192.48" y="399.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (637 samples, 0.03%)</title><rect x="903.5" y="1285" width="0.4" height="15.0" fill="rgb(212,194,39)" rx="2" ry="2" />
<text x="906.50" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (611 samples, 0.03%)</title><rect x="1042.1" y="1269" width="0.4" height="15.0" fill="rgb(238,207,34)" rx="2" ry="2" />
<text x="1045.09" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (160 samples, 0.01%)</title><rect x="438.6" y="1877" width="0.1" height="15.0" fill="rgb(247,184,53)" rx="2" ry="2" />
<text x="441.60" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (993 samples, 0.05%)</title><rect x="967.7" y="1253" width="0.7" height="15.0" fill="rgb(235,168,4)" rx="2" ry="2" />
<text x="970.75" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (976 samples, 0.05%)</title><rect x="704.7" y="1317" width="0.6" height="15.0" fill="rgb(213,4,31)" rx="2" ry="2" />
<text x="707.66" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (2,579 samples, 0.14%)</title><rect x="885.3" y="1253" width="1.6" height="15.0" fill="rgb(236,134,47)" rx="2" ry="2" />
<text x="888.31" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (896 samples, 0.05%)</title><rect x="1078.2" y="1397" width="0.6" height="15.0" fill="rgb(205,10,11)" rx="2" ry="2" />
<text x="1081.24" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,184 samples, 0.06%)</title><rect x="936.8" y="1013" width="0.8" height="15.0" fill="rgb(216,162,17)" rx="2" ry="2" />
<text x="939.83" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,070 samples, 0.06%)</title><rect x="898.2" y="1365" width="0.7" height="15.0" fill="rgb(231,23,16)" rx="2" ry="2" />
<text x="901.23" y="1375.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (162 samples, 0.01%)</title><rect x="468.6" y="1845" width="0.1" height="15.0" fill="rgb(209,162,28)" rx="2" ry="2" />
<text x="471.60" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (1,646 samples, 0.09%)</title><rect x="693.7" y="1477" width="1.0" height="15.0" fill="rgb(230,161,32)" rx="2" ry="2" />
<text x="696.67" y="1487.5" ></text>
</g>
<g >
<title>do_compare_val (440 samples, 0.02%)</title><rect x="887.1" y="1205" width="0.3" height="15.0" fill="rgb(242,21,1)" rx="2" ry="2" />
<text x="890.13" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (606,285 samples, 32.60%)</title><rect x="716.5" y="1669" width="384.6" height="15.0" fill="rgb(215,39,9)" rx="2" ry="2" />
<text x="719.48" y="1679.5" >camlIrmin_pack__Pack__batch_5159</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (1,380 samples, 0.07%)</title><rect x="964.4" y="1269" width="0.9" height="15.0" fill="rgb(250,152,44)" rx="2" ry="2" />
<text x="967.40" y="1279.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (3,649 samples, 0.20%)</title><rect x="55.3" y="2005" width="2.4" height="15.0" fill="rgb(207,102,22)" rx="2" ry="2" />
<text x="58.34" y="2015.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (2,272 samples, 0.12%)</title><rect x="581.1" y="1877" width="1.5" height="15.0" fill="rgb(246,183,32)" rx="2" ry="2" />
<text x="584.12" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2725 (423 samples, 0.02%)</title><rect x="1166.0" y="1253" width="0.3" height="15.0" fill="rgb(231,47,34)" rx="2" ry="2" />
<text x="1169.04" y="1263.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (730 samples, 0.04%)</title><rect x="56.8" y="1925" width="0.5" height="15.0" fill="rgb(241,132,35)" rx="2" ry="2" />
<text x="59.81" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (471 samples, 0.03%)</title><rect x="1189.1" y="629" width="0.3" height="15.0" fill="rgb(254,15,42)" rx="2" ry="2" />
<text x="1192.12" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_1734 (3,084 samples, 0.17%)</title><rect x="774.5" y="1189" width="2.0" height="15.0" fill="rgb(254,179,40)" rx="2" ry="2" />
<text x="777.52" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (775 samples, 0.04%)</title><rect x="139.3" y="1829" width="0.5" height="15.0" fill="rgb(236,224,54)" rx="2" ry="2" />
<text x="142.26" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="689.4" y="1029" width="0.2" height="15.0" fill="rgb(252,101,6)" rx="2" ry="2" />
<text x="692.38" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (245 samples, 0.01%)</title><rect x="1071.9" y="1173" width="0.1" height="15.0" fill="rgb(232,135,26)" rx="2" ry="2" />
<text x="1074.86" y="1183.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (526 samples, 0.03%)</title><rect x="1153.4" y="1317" width="0.3" height="15.0" fill="rgb(206,97,2)" rx="2" ry="2" />
<text x="1156.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (167 samples, 0.01%)</title><rect x="1165.0" y="1077" width="0.1" height="15.0" fill="rgb(222,180,27)" rx="2" ry="2" />
<text x="1168.04" y="1087.5" ></text>
</g>
<g >
<title>caml_apply2 (331 samples, 0.02%)</title><rect x="689.1" y="1637" width="0.2" height="15.0" fill="rgb(216,64,6)" rx="2" ry="2" />
<text x="692.08" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__field_1738 (239 samples, 0.01%)</title><rect x="755.1" y="1317" width="0.2" height="15.0" fill="rgb(252,70,22)" rx="2" ry="2" />
<text x="758.12" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3373 (298 samples, 0.02%)</title><rect x="1037.1" y="1317" width="0.2" height="15.0" fill="rgb(221,144,40)" rx="2" ry="2" />
<text x="1040.09" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (180 samples, 0.01%)</title><rect x="675.7" y="1813" width="0.1" height="15.0" fill="rgb(221,189,44)" rx="2" ry="2" />
<text x="678.69" y="1823.5" ></text>
</g>
<g >
<title>memmove (2,770 samples, 0.15%)</title><rect x="550.5" y="1909" width="1.8" height="15.0" fill="rgb(235,124,49)" rx="2" ry="2" />
<text x="553.49" y="1919.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,181 samples, 0.06%)</title><rect x="733.0" y="1301" width="0.8" height="15.0" fill="rgb(216,120,26)" rx="2" ry="2" />
<text x="736.04" y="1311.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (7,530 samples, 0.40%)</title><rect x="584.6" y="1877" width="4.8" height="15.0" fill="rgb(254,50,21)" rx="2" ry="2" />
<text x="587.59" y="1887.5" ></text>
</g>
<g >
<title>caml_pread (469 samples, 0.03%)</title><rect x="1159.0" y="1269" width="0.3" height="15.0" fill="rgb(214,224,36)" rx="2" ry="2" />
<text x="1162.00" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (267 samples, 0.01%)</title><rect x="916.5" y="1237" width="0.1" height="15.0" fill="rgb(252,90,27)" rx="2" ry="2" />
<text x="919.45" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (478 samples, 0.03%)</title><rect x="824.3" y="1237" width="0.3" height="15.0" fill="rgb(235,74,25)" rx="2" ry="2" />
<text x="827.27" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__get_tree_5959 (13,469 samples, 0.72%)</title><rect x="933.7" y="1381" width="8.5" height="15.0" fill="rgb(238,104,1)" rx="2" ry="2" />
<text x="936.70" y="1391.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (190 samples, 0.01%)</title><rect x="1188.4" y="85" width="0.1" height="15.0" fill="rgb(241,70,50)" rx="2" ry="2" />
<text x="1191.36" y="95.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (311 samples, 0.02%)</title><rect x="1085.6" y="1429" width="0.2" height="15.0" fill="rgb(237,72,34)" rx="2" ry="2" />
<text x="1088.60" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (310 samples, 0.02%)</title><rect x="990.6" y="1157" width="0.2" height="15.0" fill="rgb(251,174,4)" rx="2" ry="2" />
<text x="993.56" y="1167.5" ></text>
</g>
<g >
<title>caml_hash (3,597 samples, 0.19%)</title><rect x="1046.9" y="1317" width="2.3" height="15.0" fill="rgb(237,102,54)" rx="2" ry="2" />
<text x="1049.88" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1841 (10,838 samples, 0.58%)</title><rect x="667.3" y="1877" width="6.9" height="15.0" fill="rgb(231,61,38)" rx="2" ry="2" />
<text x="670.32" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (508 samples, 0.03%)</title><rect x="689.3" y="1493" width="0.3" height="15.0" fill="rgb(225,142,8)" rx="2" ry="2" />
<text x="692.32" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="677" width="0.3" height="15.0" fill="rgb(237,73,38)" rx="2" ry="2" />
<text x="1191.32" y="687.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (184 samples, 0.01%)</title><rect x="1165.0" y="1157" width="0.1" height="15.0" fill="rgb(211,20,50)" rx="2" ry="2" />
<text x="1168.03" y="1167.5" ></text>
</g>
<g >
<title>camlLayered_bench__commit_15551 (1,926 samples, 0.10%)</title><rect x="1163.6" y="1605" width="1.2" height="15.0" fill="rgb(229,201,26)" rx="2" ry="2" />
<text x="1166.59" y="1615.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,092 samples, 0.44%)</title><rect x="1136.6" y="1365" width="5.2" height="15.0" fill="rgb(245,228,10)" rx="2" ry="2" />
<text x="1139.63" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (200 samples, 0.01%)</title><rect x="785.6" y="1125" width="0.2" height="15.0" fill="rgb(250,64,19)" rx="2" ry="2" />
<text x="788.64" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (337 samples, 0.02%)</title><rect x="783.0" y="1205" width="0.2" height="15.0" fill="rgb(209,133,6)" rx="2" ry="2" />
<text x="786.01" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (357 samples, 0.02%)</title><rect x="1188.6" y="213" width="0.2" height="15.0" fill="rgb(208,130,10)" rx="2" ry="2" />
<text x="1191.59" y="223.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1413" width="0.3" height="15.0" fill="rgb(206,102,53)" rx="2" ry="2" />
<text x="1192.12" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (206 samples, 0.01%)</title><rect x="1187.0" y="1285" width="0.1" height="15.0" fill="rgb(250,7,2)" rx="2" ry="2" />
<text x="1189.97" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_4475 (327 samples, 0.02%)</title><rect x="1104.3" y="1445" width="0.3" height="15.0" fill="rgb(214,96,18)" rx="2" ry="2" />
<text x="1107.34" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (372 samples, 0.02%)</title><rect x="1134.9" y="1413" width="0.2" height="15.0" fill="rgb(232,146,41)" rx="2" ry="2" />
<text x="1137.91" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (261 samples, 0.01%)</title><rect x="963.9" y="1253" width="0.1" height="15.0" fill="rgb(210,170,15)" rx="2" ry="2" />
<text x="966.87" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (261 samples, 0.01%)</title><rect x="960.2" y="1205" width="0.2" height="15.0" fill="rgb(216,227,0)" rx="2" ry="2" />
<text x="963.25" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (295 samples, 0.02%)</title><rect x="1103.5" y="1413" width="0.2" height="15.0" fill="rgb(214,127,23)" rx="2" ry="2" />
<text x="1106.50" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,120 samples, 0.06%)</title><rect x="733.1" y="1285" width="0.7" height="15.0" fill="rgb(228,104,48)" rx="2" ry="2" />
<text x="736.07" y="1295.5" ></text>
</g>
<g >
<title>memmove (4,169 samples, 0.22%)</title><rect x="471.0" y="1893" width="2.6" height="15.0" fill="rgb(252,133,6)" rx="2" ry="2" />
<text x="473.97" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (6,781 samples, 0.36%)</title><rect x="818.1" y="1381" width="4.3" height="15.0" fill="rgb(237,139,7)" rx="2" ry="2" />
<text x="821.12" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (752 samples, 0.04%)</title><rect x="1189.5" y="181" width="0.5" height="15.0" fill="rgb(232,95,34)" rx="2" ry="2" />
<text x="1192.48" y="191.5" ></text>
</g>
<g >
<title>camlIrmin__Node__fun_7322 (424 samples, 0.02%)</title><rect x="901.9" y="1461" width="0.3" height="15.0" fill="rgb(205,54,33)" rx="2" ry="2" />
<text x="904.89" y="1471.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,811 samples, 0.10%)</title><rect x="21.3" y="2021" width="1.1" height="15.0" fill="rgb(206,95,12)" rx="2" ry="2" />
<text x="24.26" y="2031.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (280 samples, 0.02%)</title><rect x="1025.0" y="1349" width="0.2" height="15.0" fill="rgb(221,52,42)" rx="2" ry="2" />
<text x="1027.98" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (540 samples, 0.03%)</title><rect x="1115.9" y="1349" width="0.4" height="15.0" fill="rgb(229,11,45)" rx="2" ry="2" />
<text x="1118.92" y="1359.5" ></text>
</g>
<g >
<title>caml_string_compare (819 samples, 0.04%)</title><rect x="901.1" y="1269" width="0.5" height="15.0" fill="rgb(211,129,25)" rx="2" ry="2" />
<text x="904.08" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (494 samples, 0.03%)</title><rect x="721.9" y="1253" width="0.3" height="15.0" fill="rgb(233,224,21)" rx="2" ry="2" />
<text x="724.90" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (1,060 samples, 0.06%)</title><rect x="959.5" y="1205" width="0.6" height="15.0" fill="rgb(223,196,12)" rx="2" ry="2" />
<text x="962.46" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (293 samples, 0.02%)</title><rect x="1180.9" y="1205" width="0.2" height="15.0" fill="rgb(207,176,41)" rx="2" ry="2" />
<text x="1183.88" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1687 (1,335 samples, 0.07%)</title><rect x="729.5" y="1333" width="0.8" height="15.0" fill="rgb(234,100,29)" rx="2" ry="2" />
<text x="732.49" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (290 samples, 0.02%)</title><rect x="1134.7" y="1381" width="0.2" height="15.0" fill="rgb(241,122,54)" rx="2" ry="2" />
<text x="1137.70" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (244 samples, 0.01%)</title><rect x="847.1" y="1221" width="0.1" height="15.0" fill="rgb(221,176,30)" rx="2" ry="2" />
<text x="850.09" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8961 (690 samples, 0.04%)</title><rect x="686.9" y="1749" width="0.4" height="15.0" fill="rgb(233,35,10)" rx="2" ry="2" />
<text x="689.90" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_entry_5986 (113,353 samples, 6.09%)</title><rect x="933.7" y="1397" width="71.9" height="15.0" fill="rgb(233,208,33)" rx="2" ry="2" />
<text x="936.69" y="1407.5" >camlIrmi..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2725 (3,335 samples, 0.18%)</title><rect x="409.4" y="1909" width="2.2" height="15.0" fill="rgb(218,72,8)" rx="2" ry="2" />
<text x="412.44" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,893 samples, 0.10%)</title><rect x="1131.1" y="1349" width="1.2" height="15.0" fill="rgb(243,183,29)" rx="2" ry="2" />
<text x="1134.11" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (3,235 samples, 0.17%)</title><rect x="807.6" y="1461" width="2.0" height="15.0" fill="rgb(239,74,44)" rx="2" ry="2" />
<text x="810.58" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (764 samples, 0.04%)</title><rect x="1189.5" y="789" width="0.5" height="15.0" fill="rgb(248,92,29)" rx="2" ry="2" />
<text x="1192.48" y="799.5" ></text>
</g>
<g >
<title>__libc_pread64 (309 samples, 0.02%)</title><rect x="821.7" y="1269" width="0.2" height="15.0" fill="rgb(251,141,50)" rx="2" ry="2" />
<text x="824.66" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (471 samples, 0.03%)</title><rect x="705.0" y="1125" width="0.3" height="15.0" fill="rgb(251,40,5)" rx="2" ry="2" />
<text x="707.98" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_4405 (312 samples, 0.02%)</title><rect x="844.0" y="1221" width="0.2" height="15.0" fill="rgb(228,83,25)" rx="2" ry="2" />
<text x="847.02" y="1231.5" ></text>
</g>
<g >
<title>__libc_pread64 (208 samples, 0.01%)</title><rect x="1171.7" y="1189" width="0.2" height="15.0" fill="rgb(241,26,23)" rx="2" ry="2" />
<text x="1174.73" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (337 samples, 0.02%)</title><rect x="1160.2" y="1381" width="0.2" height="15.0" fill="rgb(207,107,43)" rx="2" ry="2" />
<text x="1163.21" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (790 samples, 0.04%)</title><rect x="889.6" y="1253" width="0.5" height="15.0" fill="rgb(235,216,42)" rx="2" ry="2" />
<text x="892.58" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3281 (182 samples, 0.01%)</title><rect x="960.1" y="1205" width="0.1" height="15.0" fill="rgb(215,27,14)" rx="2" ry="2" />
<text x="963.13" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (349 samples, 0.02%)</title><rect x="928.8" y="1301" width="0.2" height="15.0" fill="rgb(208,28,28)" rx="2" ry="2" />
<text x="931.77" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (675 samples, 0.04%)</title><rect x="1161.2" y="1429" width="0.4" height="15.0" fill="rgb(210,216,26)" rx="2" ry="2" />
<text x="1164.22" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (377 samples, 0.02%)</title><rect x="818.1" y="1365" width="0.3" height="15.0" fill="rgb(233,88,20)" rx="2" ry="2" />
<text x="821.14" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="2021" width="0.5" height="15.0" fill="rgb(222,47,45)" rx="2" ry="2" />
<text x="1192.48" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_1436 (586 samples, 0.03%)</title><rect x="1102.2" y="1349" width="0.3" height="15.0" fill="rgb(205,36,53)" rx="2" ry="2" />
<text x="1105.17" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (826 samples, 0.04%)</title><rect x="1091.1" y="1413" width="0.6" height="15.0" fill="rgb(206,179,14)" rx="2" ry="2" />
<text x="1094.13" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15528 (1,484 samples, 0.08%)</title><rect x="1166.7" y="1285" width="0.9" height="15.0" fill="rgb(247,137,15)" rx="2" ry="2" />
<text x="1169.70" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (545 samples, 0.03%)</title><rect x="733.3" y="1253" width="0.3" height="15.0" fill="rgb(206,206,48)" rx="2" ry="2" />
<text x="736.25" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="997" width="0.2" height="15.0" fill="rgb(245,5,54)" rx="2" ry="2" />
<text x="1191.57" y="1007.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (223 samples, 0.01%)</title><rect x="1124.5" y="1349" width="0.2" height="15.0" fill="rgb(212,148,14)" rx="2" ry="2" />
<text x="1127.52" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (291 samples, 0.02%)</title><rect x="848.8" y="1237" width="0.2" height="15.0" fill="rgb(208,137,19)" rx="2" ry="2" />
<text x="851.80" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (2,516 samples, 0.14%)</title><rect x="940.5" y="1317" width="1.6" height="15.0" fill="rgb(251,116,33)" rx="2" ry="2" />
<text x="943.54" y="1327.5" ></text>
</g>
<g >
<title>unix_lseek_64 (3,023 samples, 0.16%)</title><rect x="858.6" y="1285" width="1.9" height="15.0" fill="rgb(220,130,5)" rx="2" ry="2" />
<text x="861.57" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (166 samples, 0.01%)</title><rect x="1165.0" y="1061" width="0.1" height="15.0" fill="rgb(206,161,43)" rx="2" ry="2" />
<text x="1168.04" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__closure_inner_12335 (329 samples, 0.02%)</title><rect x="716.2" y="1653" width="0.2" height="15.0" fill="rgb(218,74,30)" rx="2" ry="2" />
<text x="719.18" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (289 samples, 0.02%)</title><rect x="1188.4" y="117" width="0.1" height="15.0" fill="rgb(213,82,51)" rx="2" ry="2" />
<text x="1191.36" y="127.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="821" width="0.3" height="15.0" fill="rgb(249,162,48)" rx="2" ry="2" />
<text x="1191.82" y="831.5" ></text>
</g>
<g >
<title>sweep_slice (627 samples, 0.03%)</title><rect x="341.1" y="1813" width="0.4" height="15.0" fill="rgb(238,16,42)" rx="2" ry="2" />
<text x="344.14" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (805 samples, 0.04%)</title><rect x="1178.7" y="1237" width="0.5" height="15.0" fill="rgb(244,128,48)" rx="2" ry="2" />
<text x="1181.66" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (2,308 samples, 0.12%)</title><rect x="1157.3" y="1317" width="1.5" height="15.0" fill="rgb(246,0,51)" rx="2" ry="2" />
<text x="1160.34" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,957 samples, 0.11%)</title><rect x="674.9" y="1861" width="1.3" height="15.0" fill="rgb(222,42,41)" rx="2" ry="2" />
<text x="677.94" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (3,717 samples, 0.20%)</title><rect x="1106.3" y="1349" width="2.4" height="15.0" fill="rgb(224,197,35)" rx="2" ry="2" />
<text x="1109.32" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (1,295 samples, 0.07%)</title><rect x="1168.7" y="1269" width="0.8" height="15.0" fill="rgb(233,40,45)" rx="2" ry="2" />
<text x="1171.68" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (392 samples, 0.02%)</title><rect x="1130.4" y="1285" width="0.2" height="15.0" fill="rgb(225,47,0)" rx="2" ry="2" />
<text x="1133.36" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5120 (12,206 samples, 0.66%)</title><rect x="815.0" y="1429" width="7.7" height="15.0" fill="rgb(232,219,17)" rx="2" ry="2" />
<text x="818.00" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (424 samples, 0.02%)</title><rect x="692.9" y="1349" width="0.2" height="15.0" fill="rgb(232,117,35)" rx="2" ry="2" />
<text x="695.87" y="1359.5" ></text>
</g>
<g >
<title>caml_pread (199 samples, 0.01%)</title><rect x="708.0" y="1365" width="0.1" height="15.0" fill="rgb(245,123,21)" rx="2" ry="2" />
<text x="710.96" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (421 samples, 0.02%)</title><rect x="900.0" y="1317" width="0.2" height="15.0" fill="rgb(251,116,27)" rx="2" ry="2" />
<text x="902.97" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (7,462 samples, 0.40%)</title><rect x="912.7" y="1381" width="4.7" height="15.0" fill="rgb(239,116,8)" rx="2" ry="2" />
<text x="915.66" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,812 samples, 0.20%)</title><rect x="744.7" y="1285" width="2.4" height="15.0" fill="rgb(206,154,5)" rx="2" ry="2" />
<text x="747.71" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (854 samples, 0.05%)</title><rect x="439.8" y="1877" width="0.5" height="15.0" fill="rgb(254,40,20)" rx="2" ry="2" />
<text x="442.81" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (169 samples, 0.01%)</title><rect x="1132.1" y="1285" width="0.1" height="15.0" fill="rgb(237,222,15)" rx="2" ry="2" />
<text x="1135.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (764 samples, 0.04%)</title><rect x="1189.5" y="357" width="0.5" height="15.0" fill="rgb(247,46,4)" rx="2" ry="2" />
<text x="1192.48" y="367.5" ></text>
</g>
<g >
<title>caml_pread (206 samples, 0.01%)</title><rect x="1186.7" y="1221" width="0.1" height="15.0" fill="rgb(236,101,23)" rx="2" ry="2" />
<text x="1189.71" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (192 samples, 0.01%)</title><rect x="726.0" y="1381" width="0.1" height="15.0" fill="rgb(243,12,3)" rx="2" ry="2" />
<text x="729.02" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (436 samples, 0.02%)</title><rect x="731.2" y="1285" width="0.3" height="15.0" fill="rgb(220,90,41)" rx="2" ry="2" />
<text x="734.22" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (397 samples, 0.02%)</title><rect x="1107.1" y="1301" width="0.3" height="15.0" fill="rgb(231,213,52)" rx="2" ry="2" />
<text x="1110.14" y="1311.5" ></text>
</g>
<g >
<title>caml_compact_heap (401 samples, 0.02%)</title><rect x="686.9" y="1653" width="0.3" height="15.0" fill="rgb(213,22,2)" rx="2" ry="2" />
<text x="689.92" y="1663.5" ></text>
</g>
<g >
<title>caml_garbage_collection (4,692 samples, 0.25%)</title><rect x="168.3" y="1845" width="3.0" height="15.0" fill="rgb(221,23,45)" rx="2" ry="2" />
<text x="171.33" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="1301" width="0.2" height="15.0" fill="rgb(235,49,51)" rx="2" ry="2" />
<text x="1191.57" y="1311.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (181 samples, 0.01%)</title><rect x="1102.3" y="1317" width="0.2" height="15.0" fill="rgb(223,140,36)" rx="2" ry="2" />
<text x="1105.35" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (10,102 samples, 0.54%)</title><rect x="132.1" y="1877" width="6.4" height="15.0" fill="rgb(222,207,17)" rx="2" ry="2" />
<text x="135.09" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (383 samples, 0.02%)</title><rect x="702.4" y="1349" width="0.2" height="15.0" fill="rgb(253,185,38)" rx="2" ry="2" />
<text x="705.38" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="805" width="0.2" height="15.0" fill="rgb(239,4,37)" rx="2" ry="2" />
<text x="1191.57" y="815.5" ></text>
</g>
<g >
<title>mark_slice_darken (853 samples, 0.05%)</title><rect x="671.4" y="1765" width="0.5" height="15.0" fill="rgb(245,190,35)" rx="2" ry="2" />
<text x="674.40" y="1775.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,761 samples, 0.09%)</title><rect x="1177.5" y="1237" width="1.1" height="15.0" fill="rgb(251,115,31)" rx="2" ry="2" />
<text x="1180.50" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__tuple_1329 (1,246 samples, 0.07%)</title><rect x="671.3" y="1845" width="0.8" height="15.0" fill="rgb(214,24,43)" rx="2" ry="2" />
<text x="674.27" y="1855.5" ></text>
</g>
<g >
<title>mark_slice_darken (889 samples, 0.05%)</title><rect x="113.6" y="1829" width="0.5" height="15.0" fill="rgb(233,72,18)" rx="2" ry="2" />
<text x="116.58" y="1839.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,764 samples, 0.15%)</title><rect x="268.8" y="1845" width="1.7" height="15.0" fill="rgb(219,31,42)" rx="2" ry="2" />
<text x="271.79" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (168 samples, 0.01%)</title><rect x="1133.5" y="1349" width="0.1" height="15.0" fill="rgb(224,206,42)" rx="2" ry="2" />
<text x="1136.53" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (590 samples, 0.03%)</title><rect x="721.8" y="1285" width="0.4" height="15.0" fill="rgb(223,165,50)" rx="2" ry="2" />
<text x="724.84" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (482 samples, 0.03%)</title><rect x="1188.8" y="1749" width="0.3" height="15.0" fill="rgb(223,58,24)" rx="2" ry="2" />
<text x="1191.82" y="1759.5" ></text>
</g>
<g >
<title>camlCommon__fun_13972 (1,932 samples, 0.10%)</title><rect x="687.4" y="1685" width="1.2" height="15.0" fill="rgb(208,21,16)" rx="2" ry="2" />
<text x="690.41" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (404 samples, 0.02%)</title><rect x="1159.0" y="1221" width="0.3" height="15.0" fill="rgb(222,74,2)" rx="2" ry="2" />
<text x="1162.03" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2838 (2,133 samples, 0.11%)</title><rect x="909.6" y="1333" width="1.4" height="15.0" fill="rgb(234,131,41)" rx="2" ry="2" />
<text x="912.62" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (964 samples, 0.05%)</title><rect x="671.3" y="1781" width="0.6" height="15.0" fill="rgb(224,64,25)" rx="2" ry="2" />
<text x="674.33" y="1791.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (6,861 samples, 0.37%)</title><rect x="720.5" y="1397" width="4.3" height="15.0" fill="rgb(236,121,7)" rx="2" ry="2" />
<text x="723.45" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (9,915 samples, 0.53%)</title><rect x="1105.4" y="1445" width="6.3" height="15.0" fill="rgb(249,36,1)" rx="2" ry="2" />
<text x="1108.39" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (427 samples, 0.02%)</title><rect x="1056.2" y="1349" width="0.2" height="15.0" fill="rgb(227,117,9)" rx="2" ry="2" />
<text x="1059.16" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (624 samples, 0.03%)</title><rect x="1007.5" y="1381" width="0.4" height="15.0" fill="rgb(237,159,35)" rx="2" ry="2" />
<text x="1010.51" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (335 samples, 0.02%)</title><rect x="1184.1" y="1221" width="0.2" height="15.0" fill="rgb(240,146,1)" rx="2" ry="2" />
<text x="1187.10" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (317 samples, 0.02%)</title><rect x="470.8" y="1909" width="0.2" height="15.0" fill="rgb(220,142,13)" rx="2" ry="2" />
<text x="473.77" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (3,663 samples, 0.20%)</title><rect x="760.7" y="1333" width="2.3" height="15.0" fill="rgb(253,177,39)" rx="2" ry="2" />
<text x="763.72" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (284 samples, 0.02%)</title><rect x="906.5" y="1237" width="0.2" height="15.0" fill="rgb(250,71,12)" rx="2" ry="2" />
<text x="909.47" y="1247.5" ></text>
</g>
<g >
<title>caml_tuplify2 (262 samples, 0.01%)</title><rect x="777.8" y="1205" width="0.2" height="15.0" fill="rgb(254,177,28)" rx="2" ry="2" />
<text x="780.82" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (898 samples, 0.05%)</title><rect x="701.5" y="1477" width="0.6" height="15.0" fill="rgb(207,72,43)" rx="2" ry="2" />
<text x="704.51" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (336 samples, 0.02%)</title><rect x="689.4" y="805" width="0.2" height="15.0" fill="rgb(247,129,24)" rx="2" ry="2" />
<text x="692.41" y="815.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (249 samples, 0.01%)</title><rect x="849.3" y="1237" width="0.1" height="15.0" fill="rgb(249,66,27)" rx="2" ry="2" />
<text x="852.29" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (395 samples, 0.02%)</title><rect x="1188.3" y="1509" width="0.3" height="15.0" fill="rgb(221,157,9)" rx="2" ry="2" />
<text x="1191.32" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3735 (6,835 samples, 0.37%)</title><rect x="266.2" y="1877" width="4.3" height="15.0" fill="rgb(208,139,47)" rx="2" ry="2" />
<text x="269.21" y="1887.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (211 samples, 0.01%)</title><rect x="1016.2" y="1461" width="0.1" height="15.0" fill="rgb(243,189,22)" rx="2" ry="2" />
<text x="1019.17" y="1471.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (457 samples, 0.02%)</title><rect x="883.5" y="1173" width="0.3" height="15.0" fill="rgb(223,214,9)" rx="2" ry="2" />
<text x="886.52" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (370 samples, 0.02%)</title><rect x="820.5" y="1301" width="0.2" height="15.0" fill="rgb(214,110,14)" rx="2" ry="2" />
<text x="823.51" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1271 (209 samples, 0.01%)</title><rect x="1110.3" y="1365" width="0.1" height="15.0" fill="rgb(209,11,2)" rx="2" ry="2" />
<text x="1113.29" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (888 samples, 0.05%)</title><rect x="805.4" y="1301" width="0.6" height="15.0" fill="rgb(250,41,38)" rx="2" ry="2" />
<text x="808.44" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (463 samples, 0.02%)</title><rect x="1142.0" y="1365" width="0.3" height="15.0" fill="rgb(224,110,9)" rx="2" ry="2" />
<text x="1145.01" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (318 samples, 0.02%)</title><rect x="1145.3" y="1381" width="0.2" height="15.0" fill="rgb(249,6,35)" rx="2" ry="2" />
<text x="1148.34" y="1391.5" ></text>
</g>
<g >
<title>caml_compare (690 samples, 0.04%)</title><rect x="703.5" y="1365" width="0.5" height="15.0" fill="rgb(207,206,23)" rx="2" ry="2" />
<text x="706.54" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,702 samples, 0.09%)</title><rect x="820.4" y="1333" width="1.1" height="15.0" fill="rgb(219,105,14)" rx="2" ry="2" />
<text x="823.44" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (281 samples, 0.02%)</title><rect x="784.6" y="1205" width="0.2" height="15.0" fill="rgb(227,56,17)" rx="2" ry="2" />
<text x="787.59" y="1215.5" ></text>
</g>
<g >
<title>caml_apply5 (2,764 samples, 0.15%)</title><rect x="1174.9" y="1333" width="1.7" height="15.0" fill="rgb(220,212,1)" rx="2" ry="2" />
<text x="1177.86" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (896 samples, 0.05%)</title><rect x="926.5" y="1349" width="0.6" height="15.0" fill="rgb(208,150,19)" rx="2" ry="2" />
<text x="929.52" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313 samples, 0.02%)</title><rect x="1141.2" y="1221" width="0.2" height="15.0" fill="rgb(209,189,32)" rx="2" ry="2" />
<text x="1144.16" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="1045" width="0.2" height="15.0" fill="rgb(243,104,14)" rx="2" ry="2" />
<text x="1191.57" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (392 samples, 0.02%)</title><rect x="1188.6" y="357" width="0.2" height="15.0" fill="rgb(222,200,32)" rx="2" ry="2" />
<text x="1191.57" y="367.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.4 (229 samples, 0.01%)</title><rect x="762.6" y="1269" width="0.1" height="15.0" fill="rgb(206,58,9)" rx="2" ry="2" />
<text x="765.56" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (486 samples, 0.03%)</title><rect x="725.6" y="1349" width="0.3" height="15.0" fill="rgb(218,13,19)" rx="2" ry="2" />
<text x="728.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (2,397 samples, 0.13%)</title><rect x="978.2" y="1157" width="1.6" height="15.0" fill="rgb(230,178,46)" rx="2" ry="2" />
<text x="981.24" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (253 samples, 0.01%)</title><rect x="846.4" y="1253" width="0.1" height="15.0" fill="rgb(238,122,6)" rx="2" ry="2" />
<text x="849.38" y="1263.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (200 samples, 0.01%)</title><rect x="689.1" y="1557" width="0.1" height="15.0" fill="rgb(244,39,54)" rx="2" ry="2" />
<text x="692.08" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (163 samples, 0.01%)</title><rect x="473.5" y="1845" width="0.1" height="15.0" fill="rgb(223,5,20)" rx="2" ry="2" />
<text x="476.51" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (434 samples, 0.02%)</title><rect x="1189.1" y="165" width="0.3" height="15.0" fill="rgb(241,85,17)" rx="2" ry="2" />
<text x="1192.14" y="175.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (179 samples, 0.01%)</title><rect x="697.2" y="1365" width="0.1" height="15.0" fill="rgb(230,15,40)" rx="2" ry="2" />
<text x="700.21" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,303 samples, 0.18%)</title><rect x="727.3" y="1237" width="2.1" height="15.0" fill="rgb(235,125,17)" rx="2" ry="2" />
<text x="730.33" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (481 samples, 0.03%)</title><rect x="695.7" y="1365" width="0.3" height="15.0" fill="rgb(239,89,8)" rx="2" ry="2" />
<text x="698.66" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (403 samples, 0.02%)</title><rect x="1110.5" y="1285" width="0.2" height="15.0" fill="rgb(240,187,5)" rx="2" ry="2" />
<text x="1113.48" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (3,294 samples, 0.18%)</title><rect x="943.3" y="1301" width="2.1" height="15.0" fill="rgb(239,121,51)" rx="2" ry="2" />
<text x="946.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="1221" width="0.3" height="15.0" fill="rgb(243,96,51)" rx="2" ry="2" />
<text x="1192.12" y="1231.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,283 samples, 0.07%)</title><rect x="949.7" y="1189" width="0.8" height="15.0" fill="rgb(242,29,43)" rx="2" ry="2" />
<text x="952.71" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (509 samples, 0.03%)</title><rect x="673.3" y="1829" width="0.3" height="15.0" fill="rgb(239,150,28)" rx="2" ry="2" />
<text x="676.27" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,079 samples, 0.06%)</title><rect x="677.6" y="1877" width="0.7" height="15.0" fill="rgb(232,43,43)" rx="2" ry="2" />
<text x="680.64" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (2,611 samples, 0.14%)</title><rect x="1000.9" y="1237" width="1.6" height="15.0" fill="rgb(215,203,46)" rx="2" ry="2" />
<text x="1003.89" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164 samples, 0.01%)</title><rect x="1179.3" y="1141" width="0.1" height="15.0" fill="rgb(235,46,20)" rx="2" ry="2" />
<text x="1182.30" y="1151.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (2,771 samples, 0.15%)</title><rect x="830.4" y="1349" width="1.7" height="15.0" fill="rgb(247,161,23)" rx="2" ry="2" />
<text x="833.39" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (2,570 samples, 0.14%)</title><rect x="781.9" y="1237" width="1.6" height="15.0" fill="rgb(254,208,20)" rx="2" ry="2" />
<text x="784.87" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (2,303 samples, 0.12%)</title><rect x="920.3" y="1413" width="1.5" height="15.0" fill="rgb(237,225,53)" rx="2" ry="2" />
<text x="923.29" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181 samples, 0.01%)</title><rect x="1179.3" y="1157" width="0.1" height="15.0" fill="rgb(250,30,44)" rx="2" ry="2" />
<text x="1182.29" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,636 samples, 0.09%)</title><rect x="1120.8" y="1301" width="1.1" height="15.0" fill="rgb(220,46,20)" rx="2" ry="2" />
<text x="1123.84" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (2,860 samples, 0.15%)</title><rect x="811.2" y="1493" width="1.8" height="15.0" fill="rgb(207,119,24)" rx="2" ry="2" />
<text x="814.17" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (2,121 samples, 0.11%)</title><rect x="833.4" y="1317" width="1.3" height="15.0" fill="rgb(211,208,6)" rx="2" ry="2" />
<text x="836.37" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,489 samples, 0.08%)</title><rect x="117.4" y="1861" width="1.0" height="15.0" fill="rgb(243,215,41)" rx="2" ry="2" />
<text x="120.43" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="341" width="0.2" height="15.0" fill="rgb(231,140,27)" rx="2" ry="2" />
<text x="1191.57" y="351.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (9,168 samples, 0.49%)</title><rect x="1154.3" y="1381" width="5.8" height="15.0" fill="rgb(211,51,0)" rx="2" ry="2" />
<text x="1157.33" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (191 samples, 0.01%)</title><rect x="844.2" y="1173" width="0.2" height="15.0" fill="rgb(249,143,8)" rx="2" ry="2" />
<text x="847.25" y="1183.5" ></text>
</g>
<g >
<title>caml_hash (263 samples, 0.01%)</title><rect x="975.0" y="1189" width="0.1" height="15.0" fill="rgb(233,46,47)" rx="2" ry="2" />
<text x="977.95" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (336 samples, 0.02%)</title><rect x="1166.1" y="1205" width="0.2" height="15.0" fill="rgb(230,101,33)" rx="2" ry="2" />
<text x="1169.08" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (349 samples, 0.02%)</title><rect x="793.8" y="1269" width="0.2" height="15.0" fill="rgb(225,58,23)" rx="2" ry="2" />
<text x="796.76" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (175 samples, 0.01%)</title><rect x="673.1" y="1829" width="0.1" height="15.0" fill="rgb(206,178,40)" rx="2" ry="2" />
<text x="676.08" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3367 (196 samples, 0.01%)</title><rect x="819.5" y="1269" width="0.2" height="15.0" fill="rgb(226,83,28)" rx="2" ry="2" />
<text x="822.53" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (394 samples, 0.02%)</title><rect x="1176.3" y="981" width="0.3" height="15.0" fill="rgb(241,170,1)" rx="2" ry="2" />
<text x="1179.34" y="991.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2761 (6,282 samples, 0.34%)</title><rect x="1076.2" y="1413" width="3.9" height="15.0" fill="rgb(244,123,46)" rx="2" ry="2" />
<text x="1079.16" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1559 (678 samples, 0.04%)</title><rect x="1171.7" y="1237" width="0.4" height="15.0" fill="rgb(209,171,16)" rx="2" ry="2" />
<text x="1174.72" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_12303 (182 samples, 0.01%)</title><rect x="716.2" y="1637" width="0.1" height="15.0" fill="rgb(252,130,38)" rx="2" ry="2" />
<text x="719.18" y="1647.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (3,017 samples, 0.16%)</title><rect x="55.7" y="1989" width="2.0" height="15.0" fill="rgb(230,125,11)" rx="2" ry="2" />
<text x="58.74" y="1999.5" ></text>
</g>
<g >
<title>mark_slice (306 samples, 0.02%)</title><rect x="421.9" y="1829" width="0.2" height="15.0" fill="rgb(225,27,7)" rx="2" ry="2" />
<text x="424.90" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__go_3112 (989,770 samples, 53.21%)</title><rect x="57.7" y="1973" width="627.9" height="15.0" fill="rgb(243,110,3)" rx="2" ry="2" />
<text x="60.70" y="1983.5" >camlIndex__go_3112</text>
</g>
<g >
<title>caml_page_table_lookup (165 samples, 0.01%)</title><rect x="1075.3" y="1365" width="0.1" height="15.0" fill="rgb(210,4,31)" rx="2" ry="2" />
<text x="1078.26" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (653 samples, 0.04%)</title><rect x="954.9" y="1173" width="0.4" height="15.0" fill="rgb(246,115,11)" rx="2" ry="2" />
<text x="957.88" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (158 samples, 0.01%)</title><rect x="1139.6" y="1333" width="0.1" height="15.0" fill="rgb(214,166,54)" rx="2" ry="2" />
<text x="1142.55" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (776 samples, 0.04%)</title><rect x="1156.7" y="1269" width="0.5" height="15.0" fill="rgb(232,147,27)" rx="2" ry="2" />
<text x="1159.70" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="661" width="0.3" height="15.0" fill="rgb(218,160,28)" rx="2" ry="2" />
<text x="1192.12" y="671.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1707 (303 samples, 0.02%)</title><rect x="676.4" y="1893" width="0.2" height="15.0" fill="rgb(207,202,31)" rx="2" ry="2" />
<text x="679.41" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (164 samples, 0.01%)</title><rect x="893.1" y="1349" width="0.1" height="15.0" fill="rgb(234,90,50)" rx="2" ry="2" />
<text x="896.09" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (99,280 samples, 5.34%)</title><rect x="734.9" y="1429" width="62.9" height="15.0" fill="rgb(226,222,51)" rx="2" ry="2" />
<text x="737.86" y="1439.5" >camlSt..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1941" width="0.3" height="15.0" fill="rgb(205,191,8)" rx="2" ry="2" />
<text x="1191.82" y="1951.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,491 samples, 0.08%)</title><rect x="826.2" y="1077" width="1.0" height="15.0" fill="rgb(249,59,54)" rx="2" ry="2" />
<text x="829.22" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (946 samples, 0.05%)</title><rect x="1150.9" y="1365" width="0.6" height="15.0" fill="rgb(223,144,16)" rx="2" ry="2" />
<text x="1153.88" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11388 (161 samples, 0.01%)</title><rect x="689.9" y="1493" width="0.1" height="15.0" fill="rgb(234,8,34)" rx="2" ry="2" />
<text x="692.85" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (523 samples, 0.03%)</title><rect x="689.3" y="1605" width="0.3" height="15.0" fill="rgb(233,161,40)" rx="2" ry="2" />
<text x="692.31" y="1615.5" ></text>
</g>
<g >
<title>sweep_slice (224 samples, 0.01%)</title><rect x="271.3" y="1845" width="0.2" height="15.0" fill="rgb(220,197,29)" rx="2" ry="2" />
<text x="274.35" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="789" width="0.2" height="15.0" fill="rgb(223,117,21)" rx="2" ry="2" />
<text x="1191.57" y="799.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,389 samples, 0.13%)</title><rect x="432.5" y="1829" width="1.5" height="15.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text x="435.46" y="1839.5" ></text>
</g>
<g >
<title>caml_page_table_add (175 samples, 0.01%)</title><rect x="470.9" y="1829" width="0.1" height="15.0" fill="rgb(249,64,33)" rx="2" ry="2" />
<text x="473.86" y="1839.5" ></text>
</g>
<g >
<title>__lseek64 (359 samples, 0.02%)</title><rect x="744.2" y="1205" width="0.2" height="15.0" fill="rgb(250,189,14)" rx="2" ry="2" />
<text x="747.15" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (690 samples, 0.04%)</title><rect x="1015.9" y="1509" width="0.4" height="15.0" fill="rgb(235,163,23)" rx="2" ry="2" />
<text x="1018.86" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (395 samples, 0.02%)</title><rect x="1188.3" y="1637" width="0.3" height="15.0" fill="rgb(223,158,21)" rx="2" ry="2" />
<text x="1191.32" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (7,077 samples, 0.38%)</title><rect x="690.2" y="1509" width="4.5" height="15.0" fill="rgb(254,32,37)" rx="2" ry="2" />
<text x="693.22" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (266 samples, 0.01%)</title><rect x="853.3" y="1285" width="0.2" height="15.0" fill="rgb(217,188,16)" rx="2" ry="2" />
<text x="856.35" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (362 samples, 0.02%)</title><rect x="806.9" y="1477" width="0.3" height="15.0" fill="rgb(230,207,5)" rx="2" ry="2" />
<text x="809.95" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,545 samples, 0.08%)</title><rect x="741.2" y="1269" width="1.0" height="15.0" fill="rgb(237,196,53)" rx="2" ry="2" />
<text x="744.19" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (224 samples, 0.01%)</title><rect x="1165.0" y="1413" width="0.1" height="15.0" fill="rgb(231,208,12)" rx="2" ry="2" />
<text x="1168.01" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__fun_4537 (168 samples, 0.01%)</title><rect x="1003.0" y="1269" width="0.1" height="15.0" fill="rgb(243,67,50)" rx="2" ry="2" />
<text x="1006.02" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (339 samples, 0.02%)</title><rect x="932.2" y="1269" width="0.2" height="15.0" fill="rgb(237,165,41)" rx="2" ry="2" />
<text x="935.17" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,716 samples, 0.09%)</title><rect x="1106.9" y="1317" width="1.1" height="15.0" fill="rgb(222,98,14)" rx="2" ry="2" />
<text x="1109.92" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (339 samples, 0.02%)</title><rect x="1173.4" y="1285" width="0.2" height="15.0" fill="rgb(249,66,31)" rx="2" ry="2" />
<text x="1176.35" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (202 samples, 0.01%)</title><rect x="1165.0" y="1285" width="0.1" height="15.0" fill="rgb(233,68,22)" rx="2" ry="2" />
<text x="1168.02" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (415 samples, 0.02%)</title><rect x="673.6" y="1845" width="0.3" height="15.0" fill="rgb(210,10,26)" rx="2" ry="2" />
<text x="676.60" y="1855.5" ></text>
</g>
<g >
<title>__GI___nanosleep (5,178 samples, 0.28%)</title><rect x="563.8" y="1909" width="3.3" height="15.0" fill="rgb(219,204,36)" rx="2" ry="2" />
<text x="566.83" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (284 samples, 0.02%)</title><rect x="963.6" y="1237" width="0.2" height="15.0" fill="rgb(254,211,1)" rx="2" ry="2" />
<text x="966.57" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (325 samples, 0.02%)</title><rect x="1188.4" y="165" width="0.2" height="15.0" fill="rgb(216,51,49)" rx="2" ry="2" />
<text x="1191.36" y="175.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,661 samples, 0.14%)</title><rect x="721.1" y="1317" width="1.7" height="15.0" fill="rgb(237,102,21)" rx="2" ry="2" />
<text x="724.13" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (309 samples, 0.02%)</title><rect x="689.4" y="677" width="0.2" height="15.0" fill="rgb(224,194,15)" rx="2" ry="2" />
<text x="692.43" y="687.5" ></text>
</g>
<g >
<title>caml_string_length (498 samples, 0.03%)</title><rect x="1006.0" y="1381" width="0.3" height="15.0" fill="rgb(253,22,16)" rx="2" ry="2" />
<text x="1009.01" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (1,554 samples, 0.08%)</title><rect x="1155.7" y="1269" width="1.0" height="15.0" fill="rgb(208,50,25)" rx="2" ry="2" />
<text x="1158.70" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (1,095 samples, 0.06%)</title><rect x="714.3" y="1525" width="0.7" height="15.0" fill="rgb(214,194,13)" rx="2" ry="2" />
<text x="717.30" y="1535.5" ></text>
</g>
<g >
<title>caml_blit_bytes (186 samples, 0.01%)</title><rect x="769.4" y="1157" width="0.1" height="15.0" fill="rgb(234,58,51)" rx="2" ry="2" />
<text x="772.37" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="1605" width="0.3" height="15.0" fill="rgb(219,227,36)" rx="2" ry="2" />
<text x="1191.82" y="1615.5" ></text>
</g>
<g >
<title>futex_wake (301 samples, 0.02%)</title><rect x="719.8" y="1333" width="0.2" height="15.0" fill="rgb(226,63,22)" rx="2" ry="2" />
<text x="722.76" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (501 samples, 0.03%)</title><rect x="714.3" y="1509" width="0.3" height="15.0" fill="rgb(206,214,18)" rx="2" ry="2" />
<text x="717.30" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1013" width="0.2" height="15.0" fill="rgb(205,123,0)" rx="2" ry="2" />
<text x="1191.57" y="1023.5" ></text>
</g>
<g >
<title>sha1_do_chunk (167 samples, 0.01%)</title><rect x="691.3" y="1381" width="0.1" height="15.0" fill="rgb(231,10,11)" rx="2" ry="2" />
<text x="694.28" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (971 samples, 0.05%)</title><rect x="692.8" y="1397" width="0.6" height="15.0" fill="rgb(206,227,47)" rx="2" ry="2" />
<text x="695.81" y="1407.5" ></text>
</g>
<g >
<title>sweep_slice (2,513 samples, 0.14%)</title><rect x="307.0" y="1829" width="1.6" height="15.0" fill="rgb(220,29,45)" rx="2" ry="2" />
<text x="310.02" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (2,386 samples, 0.13%)</title><rect x="1064.1" y="1349" width="1.5" height="15.0" fill="rgb(219,203,12)" rx="2" ry="2" />
<text x="1067.06" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (513 samples, 0.03%)</title><rect x="1148.5" y="1253" width="0.4" height="15.0" fill="rgb(218,53,8)" rx="2" ry="2" />
<text x="1151.55" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_6253 (5,787 samples, 0.31%)</title><rect x="921.8" y="1397" width="3.7" height="15.0" fill="rgb(213,122,27)" rx="2" ry="2" />
<text x="924.78" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5159 (36,173 samples, 1.94%)</title><rect x="1165.2" y="1541" width="22.9" height="15.0" fill="rgb(245,107,45)" rx="2" ry="2" />
<text x="1168.17" y="1551.5" >c..</text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (159 samples, 0.01%)</title><rect x="700.9" y="1477" width="0.1" height="15.0" fill="rgb(216,155,16)" rx="2" ry="2" />
<text x="703.92" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1733" width="0.5" height="15.0" fill="rgb(205,215,27)" rx="2" ry="2" />
<text x="1192.48" y="1743.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,470 samples, 0.13%)</title><rect x="213.9" y="1861" width="1.5" height="15.0" fill="rgb(238,71,3)" rx="2" ry="2" />
<text x="216.86" y="1871.5" ></text>
</g>
<g >
<title>sweep_slice (160 samples, 0.01%)</title><rect x="872.3" y="1109" width="0.1" height="15.0" fill="rgb(241,138,10)" rx="2" ry="2" />
<text x="875.28" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__find_2857 (170 samples, 0.01%)</title><rect x="763.3" y="1333" width="0.1" height="15.0" fill="rgb(249,38,40)" rx="2" ry="2" />
<text x="766.33" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (434 samples, 0.02%)</title><rect x="926.6" y="1317" width="0.3" height="15.0" fill="rgb(224,151,26)" rx="2" ry="2" />
<text x="929.58" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_3292 (243 samples, 0.01%)</title><rect x="755.9" y="1301" width="0.2" height="15.0" fill="rgb(225,100,38)" rx="2" ry="2" />
<text x="758.90" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (258 samples, 0.01%)</title><rect x="877.8" y="1205" width="0.1" height="15.0" fill="rgb(205,114,32)" rx="2" ry="2" />
<text x="880.78" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (238 samples, 0.01%)</title><rect x="930.3" y="1237" width="0.1" height="15.0" fill="rgb(210,162,41)" rx="2" ry="2" />
<text x="933.28" y="1247.5" ></text>
</g>
<g >
<title>layered_bench.e (1,859,947 samples, 100.00%)</title><rect x="10.0" y="2069" width="1180.0" height="15.0" fill="rgb(232,186,11)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >layered_bench.e</text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (420 samples, 0.02%)</title><rect x="922.1" y="1237" width="0.3" height="15.0" fill="rgb(233,141,19)" rx="2" ry="2" />
<text x="925.10" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (2,187 samples, 0.12%)</title><rect x="1064.2" y="1333" width="1.4" height="15.0" fill="rgb(236,188,48)" rx="2" ry="2" />
<text x="1067.18" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (170 samples, 0.01%)</title><rect x="812.5" y="1445" width="0.1" height="15.0" fill="rgb(219,70,50)" rx="2" ry="2" />
<text x="815.51" y="1455.5" ></text>
</g>
<g >
<title>mark_slice (2,234 samples, 0.12%)</title><rect x="422.2" y="1861" width="1.4" height="15.0" fill="rgb(231,49,24)" rx="2" ry="2" />
<text x="425.16" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (2,970 samples, 0.16%)</title><rect x="1146.3" y="1429" width="1.9" height="15.0" fill="rgb(235,33,10)" rx="2" ry="2" />
<text x="1149.28" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1349" width="0.2" height="15.0" fill="rgb(218,218,48)" rx="2" ry="2" />
<text x="1191.57" y="1359.5" ></text>
</g>
<g >
<title>caml_c_call (796 samples, 0.04%)</title><rect x="558.5" y="1925" width="0.5" height="15.0" fill="rgb(234,11,2)" rx="2" ry="2" />
<text x="561.47" y="1935.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (246 samples, 0.01%)</title><rect x="162.4" y="1797" width="0.2" height="15.0" fill="rgb(250,207,12)" rx="2" ry="2" />
<text x="165.41" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (360 samples, 0.02%)</title><rect x="806.6" y="1509" width="0.2" height="15.0" fill="rgb(238,153,34)" rx="2" ry="2" />
<text x="809.61" y="1519.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (196 samples, 0.01%)</title><rect x="1130.5" y="1253" width="0.1" height="15.0" fill="rgb(252,128,3)" rx="2" ry="2" />
<text x="1133.49" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (800 samples, 0.04%)</title><rect x="1171.1" y="1253" width="0.5" height="15.0" fill="rgb(220,168,34)" rx="2" ry="2" />
<text x="1174.11" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3494 (250 samples, 0.01%)</title><rect x="697.2" y="1381" width="0.1" height="15.0" fill="rgb(242,164,9)" rx="2" ry="2" />
<text x="700.19" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (193 samples, 0.01%)</title><rect x="890.5" y="1253" width="0.1" height="15.0" fill="rgb(244,128,45)" rx="2" ry="2" />
<text x="893.52" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (466 samples, 0.03%)</title><rect x="1188.8" y="229" width="0.3" height="15.0" fill="rgb(225,159,45)" rx="2" ry="2" />
<text x="1191.83" y="239.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="501" width="0.3" height="15.0" fill="rgb(221,182,44)" rx="2" ry="2" />
<text x="1191.32" y="511.5" ></text>
</g>
<g >
<title>mark_slice_darken (421 samples, 0.02%)</title><rect x="341.7" y="1797" width="0.3" height="15.0" fill="rgb(230,112,29)" rx="2" ry="2" />
<text x="344.73" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__map__bal_1080 (219 samples, 0.01%)</title><rect x="945.2" y="1285" width="0.1" height="15.0" fill="rgb(248,126,30)" rx="2" ry="2" />
<text x="948.19" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Node__mem_3878 (396 samples, 0.02%)</title><rect x="1100.2" y="1493" width="0.2" height="15.0" fill="rgb(248,185,48)" rx="2" ry="2" />
<text x="1103.16" y="1503.5" ></text>
</g>
<g >
<title>caml_format_int (177 samples, 0.01%)</title><rect x="688.8" y="1701" width="0.1" height="15.0" fill="rgb(205,113,44)" rx="2" ry="2" />
<text x="691.77" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (428 samples, 0.02%)</title><rect x="439.0" y="1893" width="0.3" height="15.0" fill="rgb(220,190,7)" rx="2" ry="2" />
<text x="442.00" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__find_7253 (17,136 samples, 0.92%)</title><rect x="1115.3" y="1493" width="10.8" height="15.0" fill="rgb(224,147,8)" rx="2" ry="2" />
<text x="1118.28" y="1503.5" ></text>
</g>
<g >
<title>mark_slice (382 samples, 0.02%)</title><rect x="1171.9" y="1125" width="0.2" height="15.0" fill="rgb(234,150,28)" rx="2" ry="2" />
<text x="1174.87" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (40,127 samples, 2.16%)</title><rect x="975.4" y="1237" width="25.5" height="15.0" fill="rgb(205,152,7)" rx="2" ry="2" />
<text x="978.44" y="1247.5" >c..</text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (497 samples, 0.03%)</title><rect x="1119.4" y="1381" width="0.3" height="15.0" fill="rgb(206,83,36)" rx="2" ry="2" />
<text x="1122.39" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,092 samples, 0.06%)</title><rect x="830.6" y="1269" width="0.7" height="15.0" fill="rgb(223,126,22)" rx="2" ry="2" />
<text x="833.63" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (487 samples, 0.03%)</title><rect x="912.7" y="1365" width="0.3" height="15.0" fill="rgb(251,158,3)" rx="2" ry="2" />
<text x="915.69" y="1375.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (1,846 samples, 0.10%)</title><rect x="690.3" y="1477" width="1.1" height="15.0" fill="rgb(206,18,44)" rx="2" ry="2" />
<text x="693.25" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="437" width="0.3" height="15.0" fill="rgb(238,80,22)" rx="2" ry="2" />
<text x="1192.12" y="447.5" ></text>
</g>
<g >
<title>caml_garbage_collection (163 samples, 0.01%)</title><rect x="777.4" y="1141" width="0.1" height="15.0" fill="rgb(211,0,27)" rx="2" ry="2" />
<text x="780.41" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1493 (277 samples, 0.01%)</title><rect x="699.5" y="1413" width="0.1" height="15.0" fill="rgb(209,187,32)" rx="2" ry="2" />
<text x="702.47" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Search__fun_1810 (164 samples, 0.01%)</title><rect x="1051.5" y="1381" width="0.1" height="15.0" fill="rgb(237,212,27)" rx="2" ry="2" />
<text x="1054.49" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (469 samples, 0.03%)</title><rect x="689.3" y="1349" width="0.3" height="15.0" fill="rgb(231,86,49)" rx="2" ry="2" />
<text x="692.34" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (254 samples, 0.01%)</title><rect x="1005.4" y="1349" width="0.2" height="15.0" fill="rgb(229,4,31)" rx="2" ry="2" />
<text x="1008.41" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (1,237 samples, 0.07%)</title><rect x="797.8" y="1477" width="0.8" height="15.0" fill="rgb(217,10,40)" rx="2" ry="2" />
<text x="800.84" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1638 (542 samples, 0.03%)</title><rect x="802.1" y="1381" width="0.3" height="15.0" fill="rgb(233,111,22)" rx="2" ry="2" />
<text x="805.08" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (606,278 samples, 32.60%)</title><rect x="716.5" y="1589" width="384.6" height="15.0" fill="rgb(225,169,48)" rx="2" ry="2" />
<text x="719.48" y="1599.5" >camlLwt__apply_3372</text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (280 samples, 0.02%)</title><rect x="955.5" y="1173" width="0.2" height="15.0" fill="rgb(226,159,2)" rx="2" ry="2" />
<text x="958.52" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (190 samples, 0.01%)</title><rect x="1155.4" y="1237" width="0.1" height="15.0" fill="rgb(215,125,17)" rx="2" ry="2" />
<text x="1158.42" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (163 samples, 0.01%)</title><rect x="886.6" y="1045" width="0.1" height="15.0" fill="rgb(226,59,40)" rx="2" ry="2" />
<text x="889.62" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (471 samples, 0.03%)</title><rect x="1189.1" y="341" width="0.3" height="15.0" fill="rgb(228,88,54)" rx="2" ry="2" />
<text x="1192.12" y="351.5" ></text>
</g>
<g >
<title>camlIndex__mem_2995 (8,010 samples, 0.43%)</title><rect x="902.6" y="1413" width="5.0" height="15.0" fill="rgb(237,5,12)" rx="2" ry="2" />
<text x="905.55" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (357 samples, 0.02%)</title><rect x="1188.6" y="197" width="0.2" height="15.0" fill="rgb(231,200,47)" rx="2" ry="2" />
<text x="1191.59" y="207.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (471 samples, 0.03%)</title><rect x="1189.1" y="1957" width="0.3" height="15.0" fill="rgb(243,24,51)" rx="2" ry="2" />
<text x="1192.12" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (483 samples, 0.03%)</title><rect x="1109.9" y="1333" width="0.3" height="15.0" fill="rgb(247,229,2)" rx="2" ry="2" />
<text x="1112.90" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (161 samples, 0.01%)</title><rect x="1083.6" y="1365" width="0.2" height="15.0" fill="rgb(254,18,2)" rx="2" ry="2" />
<text x="1086.65" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_1955 (384 samples, 0.02%)</title><rect x="783.6" y="1221" width="0.3" height="15.0" fill="rgb(245,185,43)" rx="2" ry="2" />
<text x="786.65" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (4,989 samples, 0.27%)</title><rect x="695.3" y="1429" width="3.2" height="15.0" fill="rgb(213,58,41)" rx="2" ry="2" />
<text x="698.32" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (184 samples, 0.01%)</title><rect x="888.7" y="1253" width="0.1" height="15.0" fill="rgb(225,135,4)" rx="2" ry="2" />
<text x="891.65" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,367 samples, 0.07%)</title><rect x="31.3" y="2005" width="0.9" height="15.0" fill="rgb(249,218,50)" rx="2" ry="2" />
<text x="34.28" y="2015.5" ></text>
</g>
<g >
<title>caml_string_length (326 samples, 0.02%)</title><rect x="1012.9" y="1237" width="0.2" height="15.0" fill="rgb(214,136,17)" rx="2" ry="2" />
<text x="1015.89" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (189 samples, 0.01%)</title><rect x="675.7" y="1829" width="0.1" height="15.0" fill="rgb(216,155,36)" rx="2" ry="2" />
<text x="678.69" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1736 (248 samples, 0.01%)</title><rect x="979.5" y="1125" width="0.2" height="15.0" fill="rgb(252,148,12)" rx="2" ry="2" />
<text x="982.50" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (113,386 samples, 6.10%)</title><rect x="933.7" y="1413" width="71.9" height="15.0" fill="rgb(238,124,52)" rx="2" ry="2" />
<text x="936.67" y="1423.5" >camlStdl..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (222 samples, 0.01%)</title><rect x="1007.4" y="1381" width="0.1" height="15.0" fill="rgb(247,110,9)" rx="2" ry="2" />
<text x="1010.37" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (186 samples, 0.01%)</title><rect x="934.0" y="1269" width="0.1" height="15.0" fill="rgb(210,169,20)" rx="2" ry="2" />
<text x="937.01" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_1444 (1,433 samples, 0.08%)</title><rect x="1153.3" y="1381" width="0.9" height="15.0" fill="rgb(232,9,26)" rx="2" ry="2" />
<text x="1156.33" y="1391.5" ></text>
</g>
<g >
<title>caml_apply5 (1,295 samples, 0.07%)</title><rect x="1168.7" y="1301" width="0.8" height="15.0" fill="rgb(224,175,40)" rx="2" ry="2" />
<text x="1171.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__inode_6983 (187 samples, 0.01%)</title><rect x="823.8" y="1317" width="0.1" height="15.0" fill="rgb(210,49,54)" rx="2" ry="2" />
<text x="826.79" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,040 samples, 0.43%)</title><rect x="574.3" y="1829" width="5.1" height="15.0" fill="rgb(211,71,31)" rx="2" ry="2" />
<text x="577.32" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (1,004 samples, 0.05%)</title><rect x="772.3" y="1173" width="0.6" height="15.0" fill="rgb(247,112,4)" rx="2" ry="2" />
<text x="775.29" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (948 samples, 0.05%)</title><rect x="1168.9" y="1125" width="0.6" height="15.0" fill="rgb(229,45,17)" rx="2" ry="2" />
<text x="1171.90" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (289 samples, 0.02%)</title><rect x="1188.4" y="133" width="0.1" height="15.0" fill="rgb(228,143,41)" rx="2" ry="2" />
<text x="1191.36" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1493 (2,426 samples, 0.13%)</title><rect x="669.0" y="1861" width="1.6" height="15.0" fill="rgb(212,225,23)" rx="2" ry="2" />
<text x="672.01" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259 samples, 0.01%)</title><rect x="719.8" y="1269" width="0.2" height="15.0" fill="rgb(212,159,13)" rx="2" ry="2" />
<text x="722.79" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (355 samples, 0.02%)</title><rect x="1153.5" y="1285" width="0.2" height="15.0" fill="rgb(249,104,17)" rx="2" ry="2" />
<text x="1156.50" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__stack__pop_1015 (356 samples, 0.02%)</title><rect x="814.1" y="1509" width="0.2" height="15.0" fill="rgb(249,113,11)" rx="2" ry="2" />
<text x="817.12" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (10,499 samples, 0.56%)</title><rect x="1007.2" y="1413" width="6.6" height="15.0" fill="rgb(244,122,2)" rx="2" ry="2" />
<text x="1010.19" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (595 samples, 0.03%)</title><rect x="1148.5" y="1285" width="0.4" height="15.0" fill="rgb(216,127,49)" rx="2" ry="2" />
<text x="1151.50" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (161 samples, 0.01%)</title><rect x="689.9" y="1509" width="0.1" height="15.0" fill="rgb(254,105,33)" rx="2" ry="2" />
<text x="692.85" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (434 samples, 0.02%)</title><rect x="1189.1" y="197" width="0.3" height="15.0" fill="rgb(253,125,15)" rx="2" ry="2" />
<text x="1192.14" y="207.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,850 samples, 0.10%)</title><rect x="924.3" y="1285" width="1.1" height="15.0" fill="rgb(246,112,23)" rx="2" ry="2" />
<text x="927.26" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11305 (13,054 samples, 0.70%)</title><rect x="1127.1" y="1445" width="8.2" height="15.0" fill="rgb(249,31,1)" rx="2" ry="2" />
<text x="1130.05" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (487 samples, 0.03%)</title><rect x="761.8" y="1189" width="0.3" height="15.0" fill="rgb(207,128,13)" rx="2" ry="2" />
<text x="764.80" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,114 samples, 0.92%)</title><rect x="35.1" y="1957" width="10.9" height="15.0" fill="rgb(207,178,11)" rx="2" ry="2" />
<text x="38.09" y="1967.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (380 samples, 0.02%)</title><rect x="1166.9" y="1157" width="0.2" height="15.0" fill="rgb(221,72,7)" rx="2" ry="2" />
<text x="1169.88" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (471 samples, 0.03%)</title><rect x="1189.1" y="1045" width="0.3" height="15.0" fill="rgb(234,123,52)" rx="2" ry="2" />
<text x="1192.12" y="1055.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (400 samples, 0.02%)</title><rect x="295.0" y="1813" width="0.2" height="15.0" fill="rgb(235,90,6)" rx="2" ry="2" />
<text x="297.95" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (395 samples, 0.02%)</title><rect x="1188.3" y="741" width="0.3" height="15.0" fill="rgb(250,129,19)" rx="2" ry="2" />
<text x="1191.32" y="751.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (247 samples, 0.01%)</title><rect x="715.5" y="1557" width="0.1" height="15.0" fill="rgb(226,45,45)" rx="2" ry="2" />
<text x="718.45" y="1567.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,403 samples, 0.08%)</title><rect x="905.4" y="1333" width="0.9" height="15.0" fill="rgb(245,161,32)" rx="2" ry="2" />
<text x="908.38" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="1845" width="0.3" height="15.0" fill="rgb(240,42,31)" rx="2" ry="2" />
<text x="1191.32" y="1855.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (7,126 samples, 0.38%)</title><rect x="600.5" y="1829" width="4.5" height="15.0" fill="rgb(227,174,52)" rx="2" ry="2" />
<text x="603.48" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1640 (275 samples, 0.01%)</title><rect x="965.5" y="1253" width="0.1" height="15.0" fill="rgb(226,6,34)" rx="2" ry="2" />
<text x="968.47" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7218 (224 samples, 0.01%)</title><rect x="1188.9" y="101" width="0.2" height="15.0" fill="rgb(237,117,24)" rx="2" ry="2" />
<text x="1191.92" y="111.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,814 samples, 0.15%)</title><rect x="727.6" y="1205" width="1.8" height="15.0" fill="rgb(221,21,3)" rx="2" ry="2" />
<text x="730.64" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (257 samples, 0.01%)</title><rect x="1143.3" y="1349" width="0.1" height="15.0" fill="rgb(244,224,41)" rx="2" ry="2" />
<text x="1146.27" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (265 samples, 0.01%)</title><rect x="1132.7" y="1205" width="0.1" height="15.0" fill="rgb(231,160,21)" rx="2" ry="2" />
<text x="1135.68" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,221 samples, 0.23%)</title><rect x="934.9" y="1253" width="2.7" height="15.0" fill="rgb(244,42,8)" rx="2" ry="2" />
<text x="937.90" y="1263.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (527 samples, 0.03%)</title><rect x="664.7" y="1909" width="0.4" height="15.0" fill="rgb(240,197,15)" rx="2" ry="2" />
<text x="667.74" y="1919.5" ></text>
</g>
<g >
<title>caml_pread (233 samples, 0.01%)</title><rect x="1179.3" y="1205" width="0.1" height="15.0" fill="rgb(244,79,16)" rx="2" ry="2" />
<text x="1182.26" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (205 samples, 0.01%)</title><rect x="49.2" y="1829" width="0.1" height="15.0" fill="rgb(217,150,43)" rx="2" ry="2" />
<text x="52.21" y="1839.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (205 samples, 0.01%)</title><rect x="1166.4" y="1301" width="0.1" height="15.0" fill="rgb(251,169,25)" rx="2" ry="2" />
<text x="1169.40" y="1311.5" ></text>
</g>
<g >
<title>caml_string_compare (355 samples, 0.02%)</title><rect x="1012.0" y="1269" width="0.3" height="15.0" fill="rgb(243,45,33)" rx="2" ry="2" />
<text x="1015.05" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (212 samples, 0.01%)</title><rect x="1079.1" y="1381" width="0.1" height="15.0" fill="rgb(207,4,50)" rx="2" ry="2" />
<text x="1082.11" y="1391.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (347 samples, 0.02%)</title><rect x="972.0" y="1221" width="0.3" height="15.0" fill="rgb(219,86,30)" rx="2" ry="2" />
<text x="975.05" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__add_1393 (164 samples, 0.01%)</title><rect x="855.0" y="1333" width="0.1" height="15.0" fill="rgb(205,24,38)" rx="2" ry="2" />
<text x="858.04" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (22,036 samples, 1.18%)</title><rect x="1052.9" y="1381" width="14.0" height="15.0" fill="rgb(233,222,53)" rx="2" ry="2" />
<text x="1055.95" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (247 samples, 0.01%)</title><rect x="1125.8" y="1397" width="0.2" height="15.0" fill="rgb(218,165,5)" rx="2" ry="2" />
<text x="1128.84" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1841 (1,406 samples, 0.08%)</title><rect x="917.9" y="1349" width="0.9" height="15.0" fill="rgb(240,131,31)" rx="2" ry="2" />
<text x="920.87" y="1359.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (176 samples, 0.01%)</title><rect x="421.8" y="1861" width="0.1" height="15.0" fill="rgb(240,166,22)" rx="2" ry="2" />
<text x="424.79" y="1871.5" ></text>
</g>
<g >
<title>mark_slice_darken (190 samples, 0.01%)</title><rect x="667.8" y="1733" width="0.1" height="15.0" fill="rgb(221,134,51)" rx="2" ry="2" />
<text x="670.82" y="1743.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (996 samples, 0.05%)</title><rect x="1064.9" y="1317" width="0.7" height="15.0" fill="rgb(230,168,36)" rx="2" ry="2" />
<text x="1067.94" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (182 samples, 0.01%)</title><rect x="679.4" y="1909" width="0.1" height="15.0" fill="rgb(240,114,38)" rx="2" ry="2" />
<text x="682.42" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (923 samples, 0.05%)</title><rect x="1011.7" y="1301" width="0.6" height="15.0" fill="rgb(205,195,37)" rx="2" ry="2" />
<text x="1014.74" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,532 samples, 0.08%)</title><rect x="967.6" y="1269" width="1.0" height="15.0" fill="rgb(218,213,50)" rx="2" ry="2" />
<text x="970.60" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (2,318 samples, 0.12%)</title><rect x="161.1" y="1829" width="1.5" height="15.0" fill="rgb(224,63,24)" rx="2" ry="2" />
<text x="164.10" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_1739 (1,093 samples, 0.06%)</title><rect x="962.1" y="1237" width="0.7" height="15.0" fill="rgb(235,209,8)" rx="2" ry="2" />
<text x="965.14" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (290 samples, 0.02%)</title><rect x="689.4" y="613" width="0.2" height="15.0" fill="rgb(236,132,1)" rx="2" ry="2" />
<text x="692.44" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (349 samples, 0.02%)</title><rect x="889.7" y="1237" width="0.2" height="15.0" fill="rgb(230,196,40)" rx="2" ry="2" />
<text x="892.72" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (249 samples, 0.01%)</title><rect x="689.5" y="469" width="0.1" height="15.0" fill="rgb(251,104,35)" rx="2" ry="2" />
<text x="692.46" y="479.5" ></text>
</g>
<g >
<title>camlCmdliner__eval_2378 (790,455 samples, 42.50%)</title><rect x="686.8" y="1909" width="501.5" height="15.0" fill="rgb(234,111,35)" rx="2" ry="2" />
<text x="689.78" y="1919.5" >camlCmdliner__eval_2378</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (171 samples, 0.01%)</title><rect x="753.4" y="1253" width="0.1" height="15.0" fill="rgb(244,134,22)" rx="2" ry="2" />
<text x="756.40" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (1,492 samples, 0.08%)</title><rect x="117.4" y="1877" width="1.0" height="15.0" fill="rgb(225,105,45)" rx="2" ry="2" />
<text x="120.43" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (268 samples, 0.01%)</title><rect x="1167.7" y="1221" width="0.2" height="15.0" fill="rgb(218,78,9)" rx="2" ry="2" />
<text x="1170.71" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (248 samples, 0.01%)</title><rect x="721.6" y="1285" width="0.1" height="15.0" fill="rgb(241,147,5)" rx="2" ry="2" />
<text x="724.56" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="645" width="0.3" height="15.0" fill="rgb(234,30,1)" rx="2" ry="2" />
<text x="1191.82" y="655.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5111 (1,543 samples, 0.08%)</title><rect x="1153.3" y="1397" width="1.0" height="15.0" fill="rgb(238,183,45)" rx="2" ry="2" />
<text x="1156.28" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (611 samples, 0.03%)</title><rect x="655.4" y="1781" width="0.4" height="15.0" fill="rgb(245,20,12)" rx="2" ry="2" />
<text x="658.37" y="1791.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_1173 (1,349 samples, 0.07%)</title><rect x="1014.1" y="1445" width="0.8" height="15.0" fill="rgb(215,36,26)" rx="2" ry="2" />
<text x="1017.07" y="1455.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,603 samples, 0.14%)</title><rect x="929.3" y="1301" width="1.7" height="15.0" fill="rgb(217,57,14)" rx="2" ry="2" />
<text x="932.31" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (3,450 samples, 0.19%)</title><rect x="206.1" y="1877" width="2.1" height="15.0" fill="rgb(222,103,2)" rx="2" ry="2" />
<text x="209.05" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (211 samples, 0.01%)</title><rect x="711.3" y="1349" width="0.1" height="15.0" fill="rgb(205,116,42)" rx="2" ry="2" />
<text x="714.28" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (656 samples, 0.04%)</title><rect x="20.6" y="2021" width="0.4" height="15.0" fill="rgb(233,90,4)" rx="2" ry="2" />
<text x="23.61" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (3,341 samples, 0.18%)</title><rect x="803.9" y="1365" width="2.2" height="15.0" fill="rgb(231,23,8)" rx="2" ry="2" />
<text x="806.93" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (519 samples, 0.03%)</title><rect x="524.1" y="1861" width="0.3" height="15.0" fill="rgb(222,93,50)" rx="2" ry="2" />
<text x="527.11" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="293" width="0.5" height="15.0" fill="rgb(215,131,41)" rx="2" ry="2" />
<text x="1192.48" y="303.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_1709 (404 samples, 0.02%)</title><rect x="1129.9" y="1285" width="0.3" height="15.0" fill="rgb(231,17,41)" rx="2" ry="2" />
<text x="1132.90" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (182 samples, 0.01%)</title><rect x="700.3" y="1429" width="0.1" height="15.0" fill="rgb(239,117,4)" rx="2" ry="2" />
<text x="703.30" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (392 samples, 0.02%)</title><rect x="1188.6" y="1749" width="0.2" height="15.0" fill="rgb(216,159,21)" rx="2" ry="2" />
<text x="1191.57" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_1735 (4,539 samples, 0.24%)</title><rect x="1031.8" y="1333" width="2.8" height="15.0" fill="rgb(233,73,21)" rx="2" ry="2" />
<text x="1034.77" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1507 (468 samples, 0.03%)</title><rect x="876.0" y="1189" width="0.3" height="15.0" fill="rgb(254,87,25)" rx="2" ry="2" />
<text x="879.03" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_6341 (1,312 samples, 0.07%)</title><rect x="744.8" y="1253" width="0.8" height="15.0" fill="rgb(205,167,36)" rx="2" ry="2" />
<text x="747.79" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_1680 (639 samples, 0.03%)</title><rect x="851.9" y="1285" width="0.4" height="15.0" fill="rgb(212,31,41)" rx="2" ry="2" />
<text x="854.89" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15528 (2,868 samples, 0.15%)</title><rect x="909.5" y="1397" width="1.8" height="15.0" fill="rgb(241,213,45)" rx="2" ry="2" />
<text x="912.45" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4989 (12,988 samples, 0.70%)</title><rect x="814.8" y="1493" width="8.2" height="15.0" fill="rgb(226,162,52)" rx="2" ry="2" />
<text x="817.76" y="1503.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1541 (474 samples, 0.03%)</title><rect x="1159.0" y="1285" width="0.3" height="15.0" fill="rgb(234,164,25)" rx="2" ry="2" />
<text x="1162.00" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1707 (295 samples, 0.02%)</title><rect x="442.7" y="1925" width="0.2" height="15.0" fill="rgb(228,149,16)" rx="2" ry="2" />
<text x="445.71" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_1598 (311 samples, 0.02%)</title><rect x="959.6" y="1189" width="0.2" height="15.0" fill="rgb(239,47,26)" rx="2" ry="2" />
<text x="962.57" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="965" width="0.3" height="15.0" fill="rgb(209,189,46)" rx="2" ry="2" />
<text x="1191.32" y="975.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (379 samples, 0.02%)</title><rect x="665.5" y="1845" width="0.2" height="15.0" fill="rgb(218,75,23)" rx="2" ry="2" />
<text x="668.50" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1095 (363 samples, 0.02%)</title><rect x="1178.3" y="1205" width="0.3" height="15.0" fill="rgb(218,48,6)" rx="2" ry="2" />
<text x="1181.32" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,753 samples, 0.31%)</title><rect x="14.2" y="2053" width="3.6" height="15.0" fill="rgb(247,206,27)" rx="2" ry="2" />
<text x="17.19" y="2063.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (7,262 samples, 0.39%)</title><rect x="1018.9" y="1397" width="4.6" height="15.0" fill="rgb(226,202,32)" rx="2" ry="2" />
<text x="1021.92" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (196 samples, 0.01%)</title><rect x="1169.4" y="837" width="0.1" height="15.0" fill="rgb(209,117,32)" rx="2" ry="2" />
<text x="1172.38" y="847.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_1055 (194 samples, 0.01%)</title><rect x="1098.6" y="1477" width="0.1" height="15.0" fill="rgb(214,198,50)" rx="2" ry="2" />
<text x="1101.60" y="1487.5" ></text>
</g>
<g >
<title>__lseek64 (573 samples, 0.03%)</title><rect x="949.7" y="1173" width="0.4" height="15.0" fill="rgb(225,223,0)" rx="2" ry="2" />
<text x="952.73" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1254 (1,698 samples, 0.09%)</title><rect x="931.0" y="1301" width="1.0" height="15.0" fill="rgb(216,188,49)" rx="2" ry="2" />
<text x="933.96" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (11,117 samples, 0.60%)</title><rect x="781.8" y="1253" width="7.0" height="15.0" fill="rgb(210,58,46)" rx="2" ry="2" />
<text x="784.76" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__fun_11479 (98,443 samples, 5.29%)</title><rect x="1101.1" y="1557" width="62.5" height="15.0" fill="rgb(226,164,22)" rx="2" ry="2" />
<text x="1104.12" y="1567.5" >camlIr..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="885" width="0.3" height="15.0" fill="rgb(226,123,31)" rx="2" ry="2" />
<text x="1191.82" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3616 (186 samples, 0.01%)</title><rect x="959.1" y="1189" width="0.1" height="15.0" fill="rgb(249,151,9)" rx="2" ry="2" />
<text x="962.07" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,072 samples, 0.11%)</title><rect x="924.1" y="1333" width="1.3" height="15.0" fill="rgb(248,227,15)" rx="2" ry="2" />
<text x="927.12" y="1343.5" ></text>
</g>
<g >
<title>caml_string_compare (2,045 samples, 0.11%)</title><rect x="943.5" y="1253" width="1.3" height="15.0" fill="rgb(237,57,33)" rx="2" ry="2" />
<text x="946.50" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__map__bal_1080 (219 samples, 0.01%)</title><rect x="834.7" y="1317" width="0.2" height="15.0" fill="rgb(218,176,12)" rx="2" ry="2" />
<text x="837.71" y="1327.5" ></text>
</g>
<g >
<title>unix_lseek_64 (205 samples, 0.01%)</title><rect x="844.1" y="1173" width="0.1" height="15.0" fill="rgb(253,185,10)" rx="2" ry="2" />
<text x="847.07" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (313 samples, 0.02%)</title><rect x="702.4" y="1317" width="0.2" height="15.0" fill="rgb(254,105,12)" rx="2" ry="2" />
<text x="705.41" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (276 samples, 0.01%)</title><rect x="692.5" y="1445" width="0.2" height="15.0" fill="rgb(221,177,15)" rx="2" ry="2" />
<text x="695.51" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1141" width="0.3" height="15.0" fill="rgb(214,76,39)" rx="2" ry="2" />
<text x="1191.82" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (410 samples, 0.02%)</title><rect x="1159.0" y="1237" width="0.3" height="15.0" fill="rgb(231,151,7)" rx="2" ry="2" />
<text x="1162.03" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,231 samples, 0.12%)</title><rect x="973.1" y="1221" width="1.4" height="15.0" fill="rgb(224,126,25)" rx="2" ry="2" />
<text x="976.12" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3355 (282 samples, 0.02%)</title><rect x="904.1" y="1269" width="0.2" height="15.0" fill="rgb(227,135,49)" rx="2" ry="2" />
<text x="907.09" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (482 samples, 0.03%)</title><rect x="1188.8" y="1701" width="0.3" height="15.0" fill="rgb(250,65,14)" rx="2" ry="2" />
<text x="1191.82" y="1711.5" ></text>
</g>
<g >
<title>mark_slice (617 samples, 0.03%)</title><rect x="138.8" y="1797" width="0.4" height="15.0" fill="rgb(230,130,44)" rx="2" ry="2" />
<text x="141.82" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_1627 (531 samples, 0.03%)</title><rect x="984.3" y="1141" width="0.3" height="15.0" fill="rgb(250,32,46)" rx="2" ry="2" />
<text x="987.26" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (2,773 samples, 0.15%)</title><rect x="161.0" y="1877" width="1.8" height="15.0" fill="rgb(221,212,44)" rx="2" ry="2" />
<text x="164.02" y="1887.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_2287 (38,884 samples, 2.09%)</title><rect x="1163.6" y="1765" width="24.7" height="15.0" fill="rgb(240,14,48)" rx="2" ry="2" />
<text x="1166.59" y="1775.5" >c..</text>
</g>
<g >
<title>camlIrmin__Node__pred_4989 (17,591 samples, 0.95%)</title><rect x="1115.2" y="1509" width="11.2" height="15.0" fill="rgb(243,182,54)" rx="2" ry="2" />
<text x="1118.23" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3841 (293 samples, 0.02%)</title><rect x="438.8" y="1893" width="0.2" height="15.0" fill="rgb(251,222,5)" rx="2" ry="2" />
<text x="441.77" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (506 samples, 0.03%)</title><rect x="689.3" y="1477" width="0.3" height="15.0" fill="rgb(250,189,4)" rx="2" ry="2" />
<text x="692.32" y="1487.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_1173 (244 samples, 0.01%)</title><rect x="1162.3" y="1525" width="0.2" height="15.0" fill="rgb(233,6,15)" rx="2" ry="2" />
<text x="1165.33" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__compare_1729 (230 samples, 0.01%)</title><rect x="802.7" y="1365" width="0.1" height="15.0" fill="rgb(213,1,20)" rx="2" ry="2" />
<text x="805.68" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (23,070 samples, 1.24%)</title><rect x="1135.8" y="1445" width="14.6" height="15.0" fill="rgb(217,113,53)" rx="2" ry="2" />
<text x="1138.80" y="1455.5" ></text>
</g>
<g >
<title>caml_compare (1,265 samples, 0.07%)</title><rect x="1072.4" y="1381" width="0.8" height="15.0" fill="rgb(225,13,36)" rx="2" ry="2" />
<text x="1075.39" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (504 samples, 0.03%)</title><rect x="717.4" y="1333" width="0.4" height="15.0" fill="rgb(237,84,42)" rx="2" ry="2" />
<text x="720.45" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_string (342 samples, 0.02%)</title><rect x="867.1" y="1157" width="0.2" height="15.0" fill="rgb(233,100,10)" rx="2" ry="2" />
<text x="870.10" y="1167.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (206 samples, 0.01%)</title><rect x="268.8" y="1829" width="0.1" height="15.0" fill="rgb(222,95,50)" rx="2" ry="2" />
<text x="271.79" y="1839.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (247 samples, 0.01%)</title><rect x="667.8" y="1781" width="0.2" height="15.0" fill="rgb(216,135,32)" rx="2" ry="2" />
<text x="670.81" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_1510 (306 samples, 0.02%)</title><rect x="876.1" y="1173" width="0.2" height="15.0" fill="rgb(206,146,28)" rx="2" ry="2" />
<text x="879.13" y="1183.5" ></text>
</g>
<g >
<title>caml_apply5 (271 samples, 0.01%)</title><rect x="1167.7" y="1269" width="0.2" height="15.0" fill="rgb(207,11,48)" rx="2" ry="2" />
<text x="1170.71" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (34,067 samples, 1.83%)</title><rect x="118.4" y="1893" width="21.6" height="15.0" fill="rgb(224,160,20)" rx="2" ry="2" />
<text x="121.38" y="1903.5" >c..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="57.5" y="1893" width="0.1" height="15.0" fill="rgb(245,135,36)" rx="2" ry="2" />
<text x="60.45" y="1903.5" ></text>
</g>
<g >
<title>camlLayered_bench__add_tree_15545 (1,687 samples, 0.09%)</title><rect x="1163.7" y="1589" width="1.1" height="15.0" fill="rgb(246,0,26)" rx="2" ry="2" />
<text x="1166.72" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3220 (242 samples, 0.01%)</title><rect x="1065.7" y="1349" width="0.2" height="15.0" fill="rgb(238,31,53)" rx="2" ry="2" />
<text x="1068.70" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (3,084 samples, 0.17%)</title><rect x="1090.2" y="1461" width="2.0" height="15.0" fill="rgb(249,86,30)" rx="2" ry="2" />
<text x="1093.22" y="1471.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (328 samples, 0.02%)</title><rect x="170.8" y="1781" width="0.2" height="15.0" fill="rgb(249,96,3)" rx="2" ry="2" />
<text x="173.77" y="1791.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (106,676 samples, 5.74%)</title><rect x="1018.1" y="1461" width="67.7" height="15.0" fill="rgb(252,218,30)" rx="2" ry="2" />
<text x="1021.13" y="1471.5" >camlInd..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3086 (534 samples, 0.03%)</title><rect x="1147.4" y="1397" width="0.3" height="15.0" fill="rgb(251,73,3)" rx="2" ry="2" />
<text x="1150.37" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_4466 (438 samples, 0.02%)</title><rect x="1179.9" y="1333" width="0.2" height="15.0" fill="rgb(234,208,45)" rx="2" ry="2" />
<text x="1182.87" y="1343.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_15541 (2,416 samples, 0.13%)</title><rect x="687.4" y="1733" width="1.5" height="15.0" fill="rgb(251,158,37)" rx="2" ry="2" />
<text x="690.35" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (331 samples, 0.02%)</title><rect x="48.3" y="1893" width="0.2" height="15.0" fill="rgb(244,227,49)" rx="2" ry="2" />
<text x="51.25" y="1903.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (344 samples, 0.02%)</title><rect x="1124.3" y="1269" width="0.2" height="15.0" fill="rgb(228,71,15)" rx="2" ry="2" />
<text x="1127.29" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (790 samples, 0.04%)</title><rect x="827.3" y="1301" width="0.5" height="15.0" fill="rgb(239,127,44)" rx="2" ry="2" />
<text x="830.30" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1861" width="0.5" height="15.0" fill="rgb(243,112,19)" rx="2" ry="2" />
<text x="1192.48" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_1221 (479 samples, 0.03%)</title><rect x="669.9" y="1829" width="0.3" height="15.0" fill="rgb(216,229,54)" rx="2" ry="2" />
<text x="672.92" y="1839.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (316 samples, 0.02%)</title><rect x="1089.2" y="1365" width="0.2" height="15.0" fill="rgb(232,163,28)" rx="2" ry="2" />
<text x="1092.16" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (227 samples, 0.01%)</title><rect x="746.7" y="1189" width="0.1" height="15.0" fill="rgb(211,227,30)" rx="2" ry="2" />
<text x="749.69" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (3,038 samples, 0.16%)</title><rect x="1184.1" y="1237" width="1.9" height="15.0" fill="rgb(236,72,10)" rx="2" ry="2" />
<text x="1187.08" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (336 samples, 0.02%)</title><rect x="694.5" y="1093" width="0.2" height="15.0" fill="rgb(226,74,16)" rx="2" ry="2" />
<text x="697.50" y="1103.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (611 samples, 0.03%)</title><rect x="655.4" y="1797" width="0.4" height="15.0" fill="rgb(209,117,23)" rx="2" ry="2" />
<text x="658.37" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (2,698 samples, 0.15%)</title><rect x="913.5" y="1301" width="1.7" height="15.0" fill="rgb(208,22,44)" rx="2" ry="2" />
<text x="916.49" y="1311.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (428 samples, 0.02%)</title><rect x="664.3" y="1909" width="0.3" height="15.0" fill="rgb(233,105,27)" rx="2" ry="2" />
<text x="667.35" y="1919.5" ></text>
</g>
<g >
<title>caml_garbage_collection (167 samples, 0.01%)</title><rect x="979.6" y="1093" width="0.1" height="15.0" fill="rgb(245,34,43)" rx="2" ry="2" />
<text x="982.55" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (471 samples, 0.03%)</title><rect x="1189.1" y="1093" width="0.3" height="15.0" fill="rgb(254,105,39)" rx="2" ry="2" />
<text x="1192.12" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (259 samples, 0.01%)</title><rect x="918.9" y="1349" width="0.2" height="15.0" fill="rgb(236,74,53)" rx="2" ry="2" />
<text x="921.90" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (253 samples, 0.01%)</title><rect x="1137.3" y="1269" width="0.2" height="15.0" fill="rgb(219,135,9)" rx="2" ry="2" />
<text x="1140.33" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (371 samples, 0.02%)</title><rect x="1132.6" y="1269" width="0.2" height="15.0" fill="rgb(226,114,17)" rx="2" ry="2" />
<text x="1135.61" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (1,074 samples, 0.06%)</title><rect x="787.4" y="1221" width="0.7" height="15.0" fill="rgb(241,107,9)" rx="2" ry="2" />
<text x="790.41" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (289 samples, 0.02%)</title><rect x="1144.9" y="1365" width="0.2" height="15.0" fill="rgb(205,125,34)" rx="2" ry="2" />
<text x="1147.92" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (232 samples, 0.01%)</title><rect x="928.8" y="1285" width="0.2" height="15.0" fill="rgb(212,38,29)" rx="2" ry="2" />
<text x="931.84" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_5478 (24,414 samples, 1.31%)</title><rect x="690.0" y="1557" width="15.4" height="15.0" fill="rgb(208,172,21)" rx="2" ry="2" />
<text x="692.96" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="2037" width="0.3" height="15.0" fill="rgb(234,165,46)" rx="2" ry="2" />
<text x="1191.82" y="2047.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (764 samples, 0.04%)</title><rect x="1189.5" y="1893" width="0.5" height="15.0" fill="rgb(222,207,19)" rx="2" ry="2" />
<text x="1192.48" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_3869 (1,213 samples, 0.07%)</title><rect x="1175.2" y="1237" width="0.8" height="15.0" fill="rgb(217,162,41)" rx="2" ry="2" />
<text x="1178.23" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (372 samples, 0.02%)</title><rect x="689.4" y="965" width="0.2" height="15.0" fill="rgb(228,25,29)" rx="2" ry="2" />
<text x="692.39" y="975.5" ></text>
</g>
<g >
<title>memmove (2,507 samples, 0.13%)</title><rect x="130.5" y="1845" width="1.6" height="15.0" fill="rgb(210,99,29)" rx="2" ry="2" />
<text x="133.50" y="1855.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (174 samples, 0.01%)</title><rect x="138.2" y="1813" width="0.1" height="15.0" fill="rgb(217,218,14)" rx="2" ry="2" />
<text x="141.19" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (764 samples, 0.04%)</title><rect x="1189.5" y="1781" width="0.5" height="15.0" fill="rgb(214,68,41)" rx="2" ry="2" />
<text x="1192.48" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_3709 (10,333 samples, 0.56%)</title><rect x="1119.2" y="1429" width="6.6" height="15.0" fill="rgb(250,228,29)" rx="2" ry="2" />
<text x="1122.22" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_1733 (877 samples, 0.05%)</title><rect x="849.8" y="1253" width="0.6" height="15.0" fill="rgb(236,174,43)" rx="2" ry="2" />
<text x="852.81" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (437 samples, 0.02%)</title><rect x="1176.8" y="1301" width="0.3" height="15.0" fill="rgb(247,107,48)" rx="2" ry="2" />
<text x="1179.82" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_1082 (228 samples, 0.01%)</title><rect x="882.9" y="1205" width="0.2" height="15.0" fill="rgb(212,10,8)" rx="2" ry="2" />
<text x="885.94" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (159 samples, 0.01%)</title><rect x="794.6" y="1269" width="0.1" height="15.0" fill="rgb(205,171,37)" rx="2" ry="2" />
<text x="797.56" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (304 samples, 0.02%)</title><rect x="674.0" y="1845" width="0.2" height="15.0" fill="rgb(220,30,5)" rx="2" ry="2" />
<text x="676.97" y="1855.5" ></text>
</g>
<g >
<title>caml_modify (212 samples, 0.01%)</title><rect x="813.0" y="1493" width="0.1" height="15.0" fill="rgb(222,181,7)" rx="2" ry="2" />
<text x="816.00" y="1503.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (616 samples, 0.03%)</title><rect x="660.9" y="1893" width="0.4" height="15.0" fill="rgb(206,211,42)" rx="2" ry="2" />
<text x="663.87" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (887 samples, 0.05%)</title><rect x="924.9" y="1061" width="0.5" height="15.0" fill="rgb(213,66,54)" rx="2" ry="2" />
<text x="927.87" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7835 (392 samples, 0.02%)</title><rect x="1188.6" y="885" width="0.2" height="15.0" fill="rgb(232,13,30)" rx="2" ry="2" />
<text x="1191.57" y="895.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (465 samples, 0.03%)</title><rect x="689.3" y="1301" width="0.3" height="15.0" fill="rgb(228,73,4)" rx="2" ry="2" />
<text x="692.34" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (14,711 samples, 0.79%)</title><rect x="297.7" y="1813" width="9.3" height="15.0" fill="rgb(254,117,4)" rx="2" ry="2" />
<text x="300.68" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (662 samples, 0.04%)</title><rect x="1151.6" y="1333" width="0.4" height="15.0" fill="rgb(216,194,43)" rx="2" ry="2" />
<text x="1154.62" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (180 samples, 0.01%)</title><rect x="734.3" y="1301" width="0.1" height="15.0" fill="rgb(208,37,35)" rx="2" ry="2" />
<text x="737.29" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (2,794 samples, 0.15%)</title><rect x="206.2" y="1845" width="1.7" height="15.0" fill="rgb(214,44,24)" rx="2" ry="2" />
<text x="209.15" y="1855.5" ></text>
</g>
<g >
<title>caml_pread (5,228 samples, 0.28%)</title><rect x="1068.8" y="1349" width="3.3" height="15.0" fill="rgb(227,225,40)" rx="2" ry="2" />
<text x="1071.80" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (943 samples, 0.05%)</title><rect x="704.7" y="1301" width="0.6" height="15.0" fill="rgb(230,45,16)" rx="2" ry="2" />
<text x="707.68" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (19,995 samples, 1.08%)</title><rect x="768.4" y="1237" width="12.7" height="15.0" fill="rgb(229,25,51)" rx="2" ry="2" />
<text x="771.39" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (1,203 samples, 0.06%)</title><rect x="711.7" y="1397" width="0.8" height="15.0" fill="rgb(213,185,14)" rx="2" ry="2" />
<text x="714.75" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_3299 (234 samples, 0.01%)</title><rect x="903.6" y="1253" width="0.1" height="15.0" fill="rgb(250,58,37)" rx="2" ry="2" />
<text x="906.59" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (961 samples, 0.05%)</title><rect x="1123.0" y="1317" width="0.6" height="15.0" fill="rgb(227,129,31)" rx="2" ry="2" />
<text x="1125.96" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="885" width="0.3" height="15.0" fill="rgb(241,127,49)" rx="2" ry="2" />
<text x="1191.32" y="895.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (282 samples, 0.02%)</title><rect x="974.9" y="1205" width="0.2" height="15.0" fill="rgb(209,28,17)" rx="2" ry="2" />
<text x="977.94" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (409 samples, 0.02%)</title><rect x="689.4" y="1093" width="0.2" height="15.0" fill="rgb(244,57,4)" rx="2" ry="2" />
<text x="692.37" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249 samples, 0.01%)</title><rect x="719.8" y="1253" width="0.2" height="15.0" fill="rgb(218,28,3)" rx="2" ry="2" />
<text x="722.79" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1205 (325 samples, 0.02%)</title><rect x="691.9" y="1317" width="0.2" height="15.0" fill="rgb(229,27,47)" rx="2" ry="2" />
<text x="694.88" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_3540 (562 samples, 0.03%)</title><rect x="697.3" y="1381" width="0.4" height="15.0" fill="rgb(248,95,44)" rx="2" ry="2" />
<text x="700.35" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5164 (161 samples, 0.01%)</title><rect x="689.9" y="1477" width="0.1" height="15.0" fill="rgb(238,222,4)" rx="2" ry="2" />
<text x="692.85" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1263 (563 samples, 0.03%)</title><rect x="1159.0" y="1317" width="0.3" height="15.0" fill="rgb(218,160,53)" rx="2" ry="2" />
<text x="1161.96" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,203 samples, 0.06%)</title><rect x="717.4" y="1397" width="0.8" height="15.0" fill="rgb(248,35,53)" rx="2" ry="2" />
<text x="720.41" y="1407.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (672 samples, 0.04%)</title><rect x="1104.8" y="1381" width="0.5" height="15.0" fill="rgb(250,8,0)" rx="2" ry="2" />
<text x="1107.83" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_1740 (1,091 samples, 0.06%)</title><rect x="1151.6" y="1365" width="0.7" height="15.0" fill="rgb(246,9,1)" rx="2" ry="2" />
<text x="1154.57" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_3873 (546 samples, 0.03%)</title><rect x="1101.7" y="1365" width="0.4" height="15.0" fill="rgb(226,12,20)" rx="2" ry="2" />
<text x="1104.73" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (2,082 samples, 0.11%)</title><rect x="940.7" y="1269" width="1.3" height="15.0" fill="rgb(222,65,6)" rx="2" ry="2" />
<text x="943.67" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4799 (392 samples, 0.02%)</title><rect x="1188.6" y="1653" width="0.2" height="15.0" fill="rgb(209,140,33)" rx="2" ry="2" />
<text x="1191.57" y="1663.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (3,468 samples, 0.19%)</title><rect x="1177.3" y="1269" width="2.2" height="15.0" fill="rgb(209,188,6)" rx="2" ry="2" />
<text x="1180.34" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2693 (369 samples, 0.02%)</title><rect x="669.2" y="1845" width="0.2" height="15.0" fill="rgb(215,74,26)" rx="2" ry="2" />
<text x="672.20" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_3330 (387 samples, 0.02%)</title><rect x="968.0" y="1237" width="0.2" height="15.0" fill="rgb(210,59,30)" rx="2" ry="2" />
<text x="970.95" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_layers__Layered__add_to_dst_3240 (27,153 samples, 1.46%)</title><rect x="908.3" y="1461" width="17.2" height="15.0" fill="rgb(207,102,28)" rx="2" ry="2" />
<text x="911.30" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_6238 (6,386 samples, 0.34%)</title><rect x="908.3" y="1429" width="4.1" height="15.0" fill="rgb(245,48,2)" rx="2" ry="2" />
<text x="911.35" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (189 samples, 0.01%)</title><rect x="689.0" y="1637" width="0.1" height="15.0" fill="rgb(212,37,53)" rx="2" ry="2" />
<text x="691.96" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_6326 (1,424 samples, 0.08%)</title><rect x="693.8" y="1429" width="0.9" height="15.0" fill="rgb(222,35,30)" rx="2" ry="2" />
<text x="696.81" y="1439.5" ></text>
</g>
<g >
<title>caml_string_compare (563 samples, 0.03%)</title><rect x="1008.3" y="1349" width="0.4" height="15.0" fill="rgb(212,110,31)" rx="2" ry="2" />
<text x="1011.32" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4838 (395 samples, 0.02%)</title><rect x="1188.3" y="725" width="0.3" height="15.0" fill="rgb(206,183,38)" rx="2" ry="2" />
<text x="1191.32" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (606,280 samples, 32.60%)</title><rect x="716.5" y="1605" width="384.6" height="15.0" fill="rgb(230,103,28)" rx="2" ry="2" />
<text x="719.48" y="1615.5" >camlStdlib__list__rmap_f_1143</text>
</g>
<g >
<title>caml_finish_major_cycle (203 samples, 0.01%)</title><rect x="687.2" y="1637" width="0.1" height="15.0" fill="rgb(227,64,19)" rx="2" ry="2" />
<text x="690.17" y="1647.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (2,504 samples, 0.13%)</title><rect x="1113.5" y="1525" width="1.5" height="15.0" fill="rgb(242,210,41)" rx="2" ry="2" />
<text x="1116.45" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (392 samples, 0.02%)</title><rect x="1188.6" y="2021" width="0.2" height="15.0" fill="rgb(224,92,6)" rx="2" ry="2" />
<text x="1191.57" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (237 samples, 0.01%)</title><rect x="694.6" y="1061" width="0.1" height="15.0" fill="rgb(245,186,12)" rx="2" ry="2" />
<text x="697.56" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (237 samples, 0.01%)</title><rect x="932.2" y="1141" width="0.2" height="15.0" fill="rgb(221,30,52)" rx="2" ry="2" />
<text x="935.22" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_2484 (176 samples, 0.01%)</title><rect x="1141.5" y="1349" width="0.1" height="15.0" fill="rgb(253,96,28)" rx="2" ry="2" />
<text x="1144.48" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (482 samples, 0.03%)</title><rect x="1188.8" y="677" width="0.3" height="15.0" fill="rgb(217,166,7)" rx="2" ry="2" />
<text x="1191.82" y="687.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (531 samples, 0.03%)</title><rect x="689.0" y="1653" width="0.3" height="15.0" fill="rgb(219,212,53)" rx="2" ry="2" />
<text x="691.95" y="1663.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (223 samples, 0.01%)</title><rect x="669.1" y="1829" width="0.1" height="15.0" fill="rgb(211,34,24)" rx="2" ry="2" />
<text x="672.05" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (396 samples, 0.02%)</title><rect x="665.5" y="1893" width="0.2" height="15.0" fill="rgb(241,131,20)" rx="2" ry="2" />
<text x="668.49" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (762 samples, 0.04%)</title><rect x="937.1" y="965" width="0.5" height="15.0" fill="rgb(236,98,47)" rx="2" ry="2" />
<text x="940.09" y="975.5" ></text>
</g>
<g >
<title>mark_slice (544 samples, 0.03%)</title><rect x="548.0" y="1861" width="0.3" height="15.0" fill="rgb(231,67,4)" rx="2" ry="2" />
<text x="550.96" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (668 samples, 0.04%)</title><rect x="998.4" y="1045" width="0.4" height="15.0" fill="rgb(234,35,0)" rx="2" ry="2" />
<text x="1001.37" y="1055.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2947 (4,485 samples, 0.24%)</title><rect x="705.7" y="1477" width="2.8" height="15.0" fill="rgb(212,190,48)" rx="2" ry="2" />
<text x="708.69" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (442 samples, 0.02%)</title><rect x="689.4" y="1221" width="0.2" height="15.0" fill="rgb(226,159,53)" rx="2" ry="2" />
<text x="692.35" y="1231.5" ></text>
</g>
<g >
<title>caml_int_compare (179 samples, 0.01%)</title><rect x="999.6" y="1205" width="0.1" height="15.0" fill="rgb(251,208,47)" rx="2" ry="2" />
<text x="1002.60" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_6986 (761 samples, 0.04%)</title><rect x="815.2" y="1365" width="0.4" height="15.0" fill="rgb(210,120,43)" rx="2" ry="2" />
<text x="818.16" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4831 (482 samples, 0.03%)</title><rect x="1188.8" y="485" width="0.3" height="15.0" fill="rgb(235,84,14)" rx="2" ry="2" />
<text x="1191.82" y="495.5" ></text>
</g>
<g >
<title>camlStdlib__random__bits_1782 (453 samples, 0.02%)</title><rect x="688.3" y="1653" width="0.3" height="15.0" fill="rgb(241,161,53)" rx="2" ry="2" />
<text x="691.35" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_15701 (176 samples, 0.01%)</title><rect x="1126.2" y="1477" width="0.1" height="15.0" fill="rgb(217,187,4)" rx="2" ry="2" />
<text x="1129.16" y="1487.5" ></text>
</g>
<g >
<title>caml_string_length (438 samples, 0.02%)</title><rect x="1006.8" y="1365" width="0.3" height="15.0" fill="rgb(216,91,11)" rx="2" ry="2" />
<text x="1009.85" y="1375.5" ></text>
</g>
<g >
<title>caml_hash (308 samples, 0.02%)</title><rect x="794.2" y="1237" width="0.2" height="15.0" fill="rgb(247,21,7)" rx="2" ry="2" />
<text x="797.19" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (663 samples, 0.04%)</title><rect x="790.6" y="1093" width="0.5" height="15.0" fill="rgb(242,185,11)" rx="2" ry="2" />
<text x="793.64" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (736 samples, 0.04%)</title><rect x="886.9" y="1253" width="0.5" height="15.0" fill="rgb(218,156,16)" rx="2" ry="2" />
<text x="889.94" y="1263.5" ></text>
</g>
<g >
<title>caml_thread_tick (1,799 samples, 0.10%)</title><rect x="685.6" y="2021" width="1.2" height="15.0" fill="rgb(219,63,52)" rx="2" ry="2" />
<text x="688.63" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313 samples, 0.02%)</title><rect x="1071.8" y="1189" width="0.2" height="15.0" fill="rgb(227,210,23)" rx="2" ry="2" />
<text x="1074.82" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,520 samples, 0.14%)</title><rect x="565.5" y="1829" width="1.6" height="15.0" fill="rgb(219,90,16)" rx="2" ry="2" />
<text x="568.51" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (434 samples, 0.02%)</title><rect x="57.0" y="1845" width="0.3" height="15.0" fill="rgb(234,136,14)" rx="2" ry="2" />
<text x="60.00" y="1855.5" ></text>
</g>
<g >
<title>mark_slice (260 samples, 0.01%)</title><rect x="676.0" y="1765" width="0.2" height="15.0" fill="rgb(233,11,20)" rx="2" ry="2" />
<text x="678.99" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int8_1618 (180 samples, 0.01%)</title><rect x="850.9" y="1237" width="0.1" height="15.0" fill="rgb(246,140,48)" rx="2" ry="2" />
<text x="853.89" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2847 (2,890 samples, 0.16%)</title><rect x="732.8" y="1349" width="1.8" height="15.0" fill="rgb(210,59,35)" rx="2" ry="2" />
<text x="735.81" y="1359.5" ></text>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment