Skip to content

Instantly share code, notes, and snippets.

@zpodlovics
Created September 2, 2018 07:51
Show Gist options
  • Save zpodlovics/8990c388b390aef83ef357d607d8683c to your computer and use it in GitHub Desktop.
Save zpodlovics/8990c388b390aef83ef357d607d8683c 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="838" onload="init(evt)" viewBox="0 0 1200 838" 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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
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") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("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.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "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.style["opacity"] = "1.0";
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.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="838.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="821" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="821" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="261" width="0.1" height="15.0" fill="rgb(242,14,3)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (28 samples, 0.16%)</title><rect x="921.2" y="373" width="1.9" height="15.0" fill="rgb(205,74,18)" rx="2" ry="2" />
<text text-anchor="" x="924.18" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (51 samples, 0.30%)</title><rect x="804.2" y="325" width="3.5" height="15.0" fill="rgb(236,161,8)" rx="2" ry="2" />
<text text-anchor="" x="807.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1180.7" y="709" width="0.6" height="15.0" fill="rgb(205,209,29)" rx="2" ry="2" />
<text text-anchor="" x="1183.71" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="308.5" y="293" width="0.8" height="15.0" fill="rgb(212,94,39)" rx="2" ry="2" />
<text text-anchor="" x="311.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.08%)</title><rect x="1188.2" y="501" width="1.0" height="15.0" fill="rgb(230,131,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9ScavengerC1EPNS0_4HeapEbPNS0_8WorklistISt4pairIPNS0_10HeapObjectEiELi256EEESA_i (2 samples, 0.01%)</title><rect x="827.9" y="309" width="0.2" height="15.0" fill="rgb(210,69,48)" rx="2" ry="2" />
<text text-anchor="" x="830.93" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="325" width="0.2" height="15.0" fill="rgb(219,183,12)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (244 samples, 1.41%)</title><rect x="791.0" y="341" width="16.7" height="15.0" fill="rgb(216,128,9)" rx="2" ry="2" />
<text text-anchor="" x="794.04" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="165" width="0.1" height="15.0" fill="rgb(241,194,0)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="824.6" y="357" width="0.1" height="15.0" fill="rgb(253,102,41)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (23 samples, 0.13%)</title><rect x="571.1" y="357" width="1.5" height="15.0" fill="rgb(214,211,5)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (3 samples, 0.02%)</title><rect x="822.6" y="325" width="0.2" height="15.0" fill="rgb(205,169,44)" rx="2" ry="2" />
<text text-anchor="" x="825.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (355 samples, 2.06%)</title><rect x="937.7" y="357" width="24.3" height="15.0" fill="rgb(233,22,3)" rx="2" ry="2" />
<text text-anchor="" x="940.71" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (52 samples, 0.30%)</title><rect x="1185.6" y="517" width="3.6" height="15.0" fill="rgb(211,209,7)" rx="2" ry="2" />
<text text-anchor="" x="1188.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="181" width="0.2" height="15.0" fill="rgb(249,223,2)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="581" width="0.5" height="15.0" fill="rgb(249,18,48)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="613" width="0.5" height="15.0" fill="rgb(211,44,17)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (15 samples, 0.09%)</title><rect x="11.4" y="741" width="1.0" height="15.0" fill="rgb(252,163,24)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (4 samples, 0.02%)</title><rect x="811.5" y="309" width="0.2" height="15.0" fill="rgb(227,95,39)" rx="2" ry="2" />
<text text-anchor="" x="814.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (2 samples, 0.01%)</title><rect x="400.9" y="197" width="0.1" height="15.0" fill="rgb(239,206,41)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="645" width="0.6" height="15.0" fill="rgb(253,160,37)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="613" width="1134.5" height="15.0" fill="rgb(240,106,19)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (16,679 samples, 96.56%)</title><rect x="10.0" y="757" width="1139.4" height="15.0" fill="rgb(226,194,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (29 samples, 0.17%)</title><rect x="805.7" y="309" width="2.0" height="15.0" fill="rgb(252,71,12)" rx="2" ry="2" />
<text text-anchor="" x="808.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1149.5" y="741" width="0.1" height="15.0" fill="rgb(205,208,12)" rx="2" ry="2" />
<text text-anchor="" x="1152.49" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1062.3" y="325" width="0.2" height="15.0" fill="rgb(250,144,38)" rx="2" ry="2" />
<text text-anchor="" x="1065.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeD1Ev (3 samples, 0.02%)</title><rect x="1177.2" y="693" width="0.2" height="15.0" fill="rgb(253,153,13)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (16,607 samples, 96.14%)</title><rect x="12.5" y="677" width="1134.5" height="15.0" fill="rgb(249,57,43)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="1146.6" y="213" width="0.3" height="15.0" fill="rgb(222,58,5)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="613" width="0.2" height="15.0" fill="rgb(227,109,32)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (16 samples, 0.09%)</title><rect x="645.4" y="357" width="1.1" height="15.0" fill="rgb(228,121,27)" rx="2" ry="2" />
<text text-anchor="" x="648.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (1,248 samples, 7.23%)</title><rect x="639.7" y="373" width="85.2" height="15.0" fill="rgb(252,51,0)" rx="2" ry="2" />
<text text-anchor="" x="642.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="565" width="0.5" height="15.0" fill="rgb(227,71,4)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap8ScavengeEv (8 samples, 0.05%)</title><rect x="1044.6" y="229" width="0.5" height="15.0" fill="rgb(248,100,23)" rx="2" ry="2" />
<text text-anchor="" x="1047.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="261" width="0.1" height="15.0" fill="rgb(228,13,35)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (5 samples, 0.03%)</title><rect x="981.9" y="341" width="0.4" height="15.0" fill="rgb(215,189,13)" rx="2" ry="2" />
<text text-anchor="" x="984.91" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="309" width="0.1" height="15.0" fill="rgb(228,179,5)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="645" width="1134.5" height="15.0" fill="rgb(206,129,34)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (21 samples, 0.12%)</title><rect x="768.4" y="341" width="1.4" height="15.0" fill="rgb(214,167,11)" rx="2" ry="2" />
<text text-anchor="" x="771.36" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="261" width="0.1" height="15.0" fill="rgb(213,21,21)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (165 samples, 0.96%)</title><rect x="557.6" y="357" width="11.3" height="15.0" fill="rgb(220,183,35)" rx="2" ry="2" />
<text text-anchor="" x="560.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (20 samples, 0.12%)</title><rect x="571.3" y="325" width="1.3" height="15.0" fill="rgb(227,226,49)" rx="2" ry="2" />
<text text-anchor="" x="574.27" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="277" width="0.1" height="15.0" fill="rgb(239,18,15)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="389" width="0.1" height="15.0" fill="rgb(214,98,32)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1180.5" y="549" width="0.1" height="15.0" fill="rgb(215,89,5)" rx="2" ry="2" />
<text text-anchor="" x="1183.50" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeD1Ev (2 samples, 0.01%)</title><rect x="1149.5" y="757" width="0.1" height="15.0" fill="rgb(245,16,7)" rx="2" ry="2" />
<text text-anchor="" x="1152.49" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="814.8" y="229" width="0.4" height="15.0" fill="rgb(206,12,31)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="293" width="0.2" height="15.0" fill="rgb(233,40,52)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf (4 samples, 0.02%)</title><rect x="1189.7" y="773" width="0.3" height="15.0" fill="rgb(245,144,10)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv (2 samples, 0.01%)</title><rect x="828.1" y="309" width="0.1" height="15.0" fill="rgb(219,3,2)" rx="2" ry="2" />
<text text-anchor="" x="831.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="401.2" y="325" width="0.2" height="15.0" fill="rgb(228,96,13)" rx="2" ry="2" />
<text text-anchor="" x="404.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="293" width="0.2" height="15.0" fill="rgb(213,5,15)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (30 samples, 0.17%)</title><rect x="555.4" y="341" width="2.1" height="15.0" fill="rgb(235,185,50)" rx="2" ry="2" />
<text text-anchor="" x="558.42" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="213" width="0.2" height="15.0" fill="rgb(209,90,15)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="581" width="0.1" height="15.0" fill="rgb(224,38,0)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1181.3" y="725" width="0.2" height="15.0" fill="rgb(243,163,3)" rx="2" ry="2" />
<text text-anchor="" x="1184.32" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (4 samples, 0.02%)</title><rect x="400.9" y="309" width="0.3" height="15.0" fill="rgb(231,6,38)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="687.5" y="229" width="0.5" height="15.0" fill="rgb(209,95,50)" rx="2" ry="2" />
<text text-anchor="" x="690.55" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="261" width="0.2" height="15.0" fill="rgb(206,119,6)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="38.0" y="277" width="0.1" height="15.0" fill="rgb(206,224,4)" rx="2" ry="2" />
<text text-anchor="" x="41.01" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="309" width="0.1" height="15.0" fill="rgb(205,14,9)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="325" width="0.6" height="15.0" fill="rgb(236,134,54)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer4Task11RunInternalEv (385 samples, 2.23%)</title><rect x="1151.3" y="709" width="26.3" height="15.0" fill="rgb(247,191,43)" rx="2" ry="2" />
<text text-anchor="" x="1154.33" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="309" width="0.2" height="15.0" fill="rgb(247,160,23)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="533" width="0.1" height="15.0" fill="rgb(221,69,23)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="557.5" y="357" width="0.1" height="15.0" fill="rgb(239,7,48)" rx="2" ry="2" />
<text text-anchor="" x="560.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal38Runtime_CompileOptimized_NotConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (8 samples, 0.05%)</title><rect x="1133.0" y="405" width="0.5" height="15.0" fill="rgb(250,91,21)" rx="2" ry="2" />
<text text-anchor="" x="1135.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="629" width="0.2" height="15.0" fill="rgb(208,223,30)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="229" width="0.1" height="15.0" fill="rgb(243,194,34)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="661" width="0.2" height="15.0" fill="rgb(208,222,36)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="570.3" y="357" width="0.2" height="15.0" fill="rgb(213,63,45)" rx="2" ry="2" />
<text text-anchor="" x="573.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (3 samples, 0.02%)</title><rect x="1038.8" y="293" width="0.2" height="15.0" fill="rgb(248,193,42)" rx="2" ry="2" />
<text text-anchor="" x="1041.75" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (13 samples, 0.08%)</title><rect x="825.6" y="309" width="0.9" height="15.0" fill="rgb(216,142,37)" rx="2" ry="2" />
<text text-anchor="" x="828.61" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="373" width="0.5" height="15.0" fill="rgb(215,139,37)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="341" width="0.1" height="15.0" fill="rgb(233,58,24)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="814.5" y="293" width="0.7" height="15.0" fill="rgb(223,128,7)" rx="2" ry="2" />
<text text-anchor="" x="817.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer29MoveAllEntriesToRememberedSetEv (6 samples, 0.03%)</title><rect x="824.9" y="325" width="0.4" height="15.0" fill="rgb(209,166,8)" rx="2" ry="2" />
<text text-anchor="" x="827.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="245" width="0.1" height="15.0" fill="rgb(249,94,6)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="485" width="1134.5" height="15.0" fill="rgb(209,60,50)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="10.1" y="725" width="0.2" height="15.0" fill="rgb(253,107,51)" rx="2" ry="2" />
<text text-anchor="" x="13.07" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="613" width="0.1" height="15.0" fill="rgb(243,50,1)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19SpaceWithLinearArea20InlineAllocationStepEmmmm (2 samples, 0.01%)</title><rect x="824.6" y="325" width="0.1" height="15.0" fill="rgb(245,120,46)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="341" width="0.1" height="15.0" fill="rgb(228,109,10)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="565" width="0.2" height="15.0" fill="rgb(230,186,9)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="213" width="0.1" height="15.0" fill="rgb(247,150,4)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (7 samples, 0.04%)</title><rect x="1039.9" y="277" width="0.5" height="15.0" fill="rgb(218,184,41)" rx="2" ry="2" />
<text text-anchor="" x="1042.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (5 samples, 0.03%)</title><rect x="400.8" y="341" width="0.4" height="15.0" fill="rgb(253,54,2)" rx="2" ry="2" />
<text text-anchor="" x="403.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="69" width="0.3" height="15.0" fill="rgb(212,103,45)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (8 samples, 0.05%)</title><rect x="825.7" y="293" width="0.5" height="15.0" fill="rgb(237,195,46)" rx="2" ry="2" />
<text text-anchor="" x="828.68" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.7" y="677" width="0.2" height="15.0" fill="rgb(219,13,34)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="245" width="0.2" height="15.0" fill="rgb(207,49,24)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (7 samples, 0.04%)</title><rect x="1133.0" y="341" width="0.5" height="15.0" fill="rgb(228,48,2)" rx="2" ry="2" />
<text text-anchor="" x="1136.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="569.0" y="357" width="0.2" height="15.0" fill="rgb(228,222,14)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="597" width="0.6" height="15.0" fill="rgb(219,46,11)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="277" width="0.1" height="15.0" fill="rgb(252,128,21)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (14 samples, 0.08%)</title><rect x="1147.4" y="741" width="0.9" height="15.0" fill="rgb(206,17,43)" rx="2" ry="2" />
<text text-anchor="" x="1150.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor10InitializeEv (17 samples, 0.10%)</title><rect x="1063.1" y="341" width="1.1" height="15.0" fill="rgb(252,150,21)" rx="2" ry="2" />
<text text-anchor="" x="1066.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1062.3" y="341" width="0.2" height="15.0" fill="rgb(221,214,54)" rx="2" ry="2" />
<text text-anchor="" x="1065.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (8 samples, 0.05%)</title><rect x="1133.0" y="389" width="0.5" height="15.0" fill="rgb(218,79,42)" rx="2" ry="2" />
<text text-anchor="" x="1135.96" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (3,191 samples, 18.47%)</title><rect x="906.2" y="389" width="218.0" height="15.0" fill="rgb(243,205,39)" rx="2" ry="2" />
<text text-anchor="" x="909.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal8JSObject33De..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (13 samples, 0.08%)</title><rect x="823.0" y="405" width="0.9" height="15.0" fill="rgb(247,116,16)" rx="2" ry="2" />
<text text-anchor="" x="826.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (16 samples, 0.09%)</title><rect x="308.2" y="373" width="1.1" height="15.0" fill="rgb(222,18,45)" rx="2" ry="2" />
<text text-anchor="" x="311.19" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (66 samples, 0.38%)</title><rect x="824.6" y="405" width="4.5" height="15.0" fill="rgb(227,136,9)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1181.1" y="629" width="0.2" height="15.0" fill="rgb(231,124,45)" rx="2" ry="2" />
<text text-anchor="" x="1184.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="293" width="0.2" height="15.0" fill="rgb(209,182,35)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="213" width="0.2" height="15.0" fill="rgb(249,174,16)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (17,273 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(232,220,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer9ReduceTopEv (2 samples, 0.01%)</title><rect x="811.3" y="261" width="0.2" height="15.0" fill="rgb(223,78,16)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger22CheckAndScavengeObjectEPNS0_4HeapEm.constprop.280 (2 samples, 0.01%)</title><rect x="1178.0" y="661" width="0.1" height="15.0" fill="rgb(235,131,24)" rx="2" ry="2" />
<text text-anchor="" x="1180.98" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="293" width="0.2" height="15.0" fill="rgb(213,174,9)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="937.6" y="325" width="0.1" height="15.0" fill="rgb(210,156,7)" rx="2" ry="2" />
<text text-anchor="" x="940.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb1EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (5 samples, 0.03%)</title><rect x="1146.6" y="437" width="0.4" height="15.0" fill="rgb(243,204,15)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="405" width="0.6" height="15.0" fill="rgb(210,204,33)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="229" width="0.2" height="15.0" fill="rgb(218,51,41)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="181" width="0.3" height="15.0" fill="rgb(208,176,49)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="261" width="0.1" height="15.0" fill="rgb(206,54,14)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal14FeedbackVector7GetKindENS0_12FeedbackSlotE (56 samples, 0.32%)</title><rect x="1142.5" y="405" width="3.8" height="15.0" fill="rgb(228,207,14)" rx="2" ry="2" />
<text text-anchor="" x="1145.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="517" width="0.1" height="15.0" fill="rgb(217,27,25)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="309" width="0.1" height="15.0" fill="rgb(215,109,50)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13StandardFrame20IterateCompiledFrameEPNS0_11RootVisitorE (3 samples, 0.02%)</title><rect x="827.1" y="293" width="0.2" height="15.0" fill="rgb(214,142,31)" rx="2" ry="2" />
<text text-anchor="" x="830.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="309" width="0.2" height="15.0" fill="rgb(244,108,17)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,602 samples, 96.12%)</title><rect x="12.5" y="453" width="1134.1" height="15.0" fill="rgb(239,84,50)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.6" y="597" width="0.1" height="15.0" fill="rgb(227,219,6)" rx="2" ry="2" />
<text text-anchor="" x="1181.59" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="819.5" y="389" width="0.2" height="15.0" fill="rgb(226,86,24)" rx="2" ry="2" />
<text text-anchor="" x="822.53" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (67 samples, 0.39%)</title><rect x="1015.7" y="325" width="4.5" height="15.0" fill="rgb(245,45,35)" rx="2" ry="2" />
<text text-anchor="" x="1018.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="565" width="0.3" height="15.0" fill="rgb(221,71,19)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="341" width="0.5" height="15.0" fill="rgb(216,19,37)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="709" width="0.3" height="15.0" fill="rgb(214,155,26)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor10InitializeEv (48 samples, 0.28%)</title><rect x="1115.1" y="325" width="3.3" height="15.0" fill="rgb(217,156,5)" rx="2" ry="2" />
<text text-anchor="" x="1118.13" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="308.3" y="357" width="1.0" height="15.0" fill="rgb(243,148,20)" rx="2" ry="2" />
<text text-anchor="" x="311.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="325" width="0.1" height="15.0" fill="rgb(207,188,30)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="517" width="1134.5" height="15.0" fill="rgb(233,173,7)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="565" width="0.1" height="15.0" fill="rgb(215,73,41)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (503 samples, 2.91%)</title><rect x="1086.4" y="341" width="34.4" height="15.0" fill="rgb(228,1,31)" rx="2" ry="2" />
<text text-anchor="" x="1089.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="261" width="0.2" height="15.0" fill="rgb(217,133,53)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (2 samples, 0.01%)</title><rect x="811.5" y="277" width="0.1" height="15.0" fill="rgb(254,69,8)" rx="2" ry="2" />
<text text-anchor="" x="814.47" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="165" width="0.1" height="15.0" fill="rgb(212,167,5)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (13 samples, 0.08%)</title><rect x="308.4" y="325" width="0.9" height="15.0" fill="rgb(233,216,48)" rx="2" ry="2" />
<text text-anchor="" x="311.40" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="325" width="0.3" height="15.0" fill="rgb(207,92,13)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="245" width="0.1" height="15.0" fill="rgb(236,118,47)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="277" width="0.1" height="15.0" fill="rgb(250,221,24)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler22GetOptimizedCodeForOSRENS0_6HandleINS0_10JSFunctionEEENS0_9BailoutIdEPNS0_15JavaScriptFrameE (6 samples, 0.03%)</title><rect x="811.3" y="357" width="0.4" height="15.0" fill="rgb(208,108,37)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (388 samples, 2.25%)</title><rect x="613.2" y="341" width="26.5" height="15.0" fill="rgb(244,28,53)" rx="2" ry="2" />
<text text-anchor="" x="616.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="277" width="0.1" height="15.0" fill="rgb(235,55,50)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="373" width="0.6" height="15.0" fill="rgb(228,202,3)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="814.8" y="213" width="0.4" height="15.0" fill="rgb(226,181,22)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="597" width="0.2" height="15.0" fill="rgb(231,207,30)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10PagedSpace11AllocateRawEiNS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="1146.6" y="197" width="0.3" height="15.0" fill="rgb(227,29,32)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="213" width="0.2" height="15.0" fill="rgb(248,47,7)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="814.4" y="325" width="0.8" height="15.0" fill="rgb(237,77,30)" rx="2" ry="2" />
<text text-anchor="" x="817.41" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.02%)</title><rect x="1150.3" y="757" width="0.2" height="15.0" fill="rgb(247,173,54)" rx="2" ry="2" />
<text text-anchor="" x="1153.31" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="961.8" y="341" width="0.2" height="15.0" fill="rgb(243,4,26)" rx="2" ry="2" />
<text text-anchor="" x="964.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="693" width="0.6" height="15.0" fill="rgb(250,46,11)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="149" width="0.3" height="15.0" fill="rgb(206,147,2)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="373" width="0.1" height="15.0" fill="rgb(212,16,28)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.11%)</title><rect x="571.3" y="293" width="1.3" height="15.0" fill="rgb(249,24,53)" rx="2" ry="2" />
<text text-anchor="" x="574.34" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1062.4" y="277" width="0.1" height="15.0" fill="rgb(226,67,24)" rx="2" ry="2" />
<text text-anchor="" x="1065.39" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory28NewOneByteInternalizedStringENS0_6VectorIKhEEj (4 samples, 0.02%)</title><rect x="1146.6" y="277" width="0.3" height="15.0" fill="rgb(244,150,26)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="1151.1" y="709" width="0.2" height="15.0" fill="rgb(218,38,23)" rx="2" ry="2" />
<text text-anchor="" x="1154.13" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (8 samples, 0.05%)</title><rect x="1133.0" y="373" width="0.5" height="15.0" fill="rgb(211,92,14)" rx="2" ry="2" />
<text text-anchor="" x="1135.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="229" width="0.1" height="15.0" fill="rgb(249,151,28)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl17AllocateRegistersEPKNS0_21RegisterConfigurationEPNS1_14CallDescriptorEb (2 samples, 0.01%)</title><rect x="1133.0" y="309" width="0.2" height="15.0" fill="rgb(231,5,27)" rx="2" ry="2" />
<text text-anchor="" x="1136.03" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (321 samples, 1.86%)</title><rect x="431.8" y="325" width="21.9" height="15.0" fill="rgb(236,32,30)" rx="2" ry="2" />
<text text-anchor="" x="434.78" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (6 samples, 0.03%)</title><rect x="1149.0" y="741" width="0.4" height="15.0" fill="rgb(242,164,25)" rx="2" ry="2" />
<text text-anchor="" x="1152.01" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Bitmap5ClearEv (4 samples, 0.02%)</title><rect x="827.5" y="293" width="0.2" height="15.0" fill="rgb(213,192,54)" rx="2" ry="2" />
<text text-anchor="" x="830.45" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (325 samples, 1.88%)</title><rect x="1064.2" y="341" width="22.2" height="15.0" fill="rgb(225,107,33)" rx="2" ry="2" />
<text text-anchor="" x="1067.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="309" width="0.6" height="15.0" fill="rgb(213,108,4)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1062.3" y="309" width="0.2" height="15.0" fill="rgb(207,176,31)" rx="2" ry="2" />
<text text-anchor="" x="1065.32" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="309.2" y="229" width="0.1" height="15.0" fill="rgb(225,223,8)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="309" width="0.2" height="15.0" fill="rgb(216,204,18)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="229" width="0.1" height="15.0" fill="rgb(205,225,36)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="245" width="0.2" height="15.0" fill="rgb(208,141,47)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="645" width="0.6" height="15.0" fill="rgb(206,157,7)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (95 samples, 0.55%)</title><rect x="1182.7" y="597" width="6.5" height="15.0" fill="rgb(249,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1185.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (406 samples, 2.35%)</title><rect x="724.9" y="373" width="27.7" height="15.0" fill="rgb(226,170,10)" rx="2" ry="2" />
<text text-anchor="" x="727.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (12 samples, 0.07%)</title><rect x="814.3" y="357" width="0.9" height="15.0" fill="rgb(205,25,35)" rx="2" ry="2" />
<text text-anchor="" x="817.34" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="229" width="0.2" height="15.0" fill="rgb(242,7,8)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (14 samples, 0.08%)</title><rect x="1133.5" y="405" width="1.0" height="15.0" fill="rgb(227,93,39)" rx="2" ry="2" />
<text text-anchor="" x="1136.50" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="709" width="0.2" height="15.0" fill="rgb(252,16,10)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="693" width="0.2" height="15.0" fill="rgb(213,187,47)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="167.6" y="277" width="0.5" height="15.0" fill="rgb(213,172,21)" rx="2" ry="2" />
<text text-anchor="" x="170.60" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="565" width="0.2" height="15.0" fill="rgb(252,147,47)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (104 samples, 0.60%)</title><rect x="1182.1" y="693" width="7.1" height="15.0" fill="rgb(221,130,21)" rx="2" ry="2" />
<text text-anchor="" x="1185.08" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="165" width="0.2" height="15.0" fill="rgb(218,63,10)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (1,245 samples, 7.21%)</title><rect x="965.9" y="357" width="85.1" height="15.0" fill="rgb(218,170,0)" rx="2" ry="2" />
<text text-anchor="" x="968.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="325" width="0.5" height="15.0" fill="rgb(222,210,46)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (62 samples, 0.36%)</title><rect x="1184.9" y="533" width="4.3" height="15.0" fill="rgb(238,206,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.94" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="309" width="0.2" height="15.0" fill="rgb(210,55,26)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map14GetBackPointerEv (18 samples, 0.10%)</title><rect x="1048.1" y="341" width="1.2" height="15.0" fill="rgb(243,81,36)" rx="2" ry="2" />
<text text-anchor="" x="1051.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="814.3" y="341" width="0.9" height="15.0" fill="rgb(214,3,7)" rx="2" ry="2" />
<text text-anchor="" x="817.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (11 samples, 0.06%)</title><rect x="1044.5" y="261" width="0.7" height="15.0" fill="rgb(226,74,34)" rx="2" ry="2" />
<text text-anchor="" x="1047.49" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (8 samples, 0.05%)</title><rect x="821.8" y="325" width="0.5" height="15.0" fill="rgb(223,127,13)" rx="2" ry="2" />
<text text-anchor="" x="824.78" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="677" width="0.3" height="15.0" fill="rgb(241,168,11)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="789.8" y="341" width="0.3" height="15.0" fill="rgb(223,137,20)" rx="2" ry="2" />
<text text-anchor="" x="792.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (40 samples, 0.23%)</title><rect x="516.6" y="325" width="2.7" height="15.0" fill="rgb(234,177,15)" rx="2" ry="2" />
<text text-anchor="" x="519.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (178 samples, 1.03%)</title><rect x="1102.9" y="325" width="12.2" height="15.0" fill="rgb(226,52,54)" rx="2" ry="2" />
<text text-anchor="" x="1105.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (487 samples, 2.82%)</title><rect x="522.0" y="341" width="33.3" height="15.0" fill="rgb(232,200,15)" rx="2" ry="2" />
<text text-anchor="" x="525.02" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v814ScriptCompiler22CompileUnboundInternalEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (5 samples, 0.03%)</title><rect x="1146.6" y="389" width="0.4" height="15.0" fill="rgb(249,209,48)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map20UnusedPropertyFieldsEv (13 samples, 0.08%)</title><rect x="1046.9" y="325" width="0.9" height="15.0" fill="rgb(232,228,21)" rx="2" ry="2" />
<text text-anchor="" x="1049.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="229" width="0.1" height="15.0" fill="rgb(225,25,54)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="725" width="0.6" height="15.0" fill="rgb(217,157,44)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="569.8" y="357" width="0.2" height="15.0" fill="rgb(229,170,37)" rx="2" ry="2" />
<text text-anchor="" x="572.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="245" width="0.1" height="15.0" fill="rgb(206,212,1)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="229" width="0.2" height="15.0" fill="rgb(225,128,50)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (127 samples, 0.74%)</title><rect x="1124.3" y="389" width="8.7" height="15.0" fill="rgb(243,207,19)" rx="2" ry="2" />
<text text-anchor="" x="1127.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="597" width="0.5" height="15.0" fill="rgb(246,119,22)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="10.7" y="741" width="0.4" height="15.0" fill="rgb(236,120,8)" rx="2" ry="2" />
<text text-anchor="" x="13.68" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (3 samples, 0.02%)</title><rect x="1180.4" y="725" width="0.2" height="15.0" fill="rgb(244,113,14)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="814.8" y="245" width="0.4" height="15.0" fill="rgb(238,145,10)" rx="2" ry="2" />
<text text-anchor="" x="817.82" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer19StoreBufferOverflowEPNS0_7IsolateE (24 samples, 0.14%)</title><rect x="571.0" y="373" width="1.6" height="15.0" fill="rgb(221,111,53)" rx="2" ry="2" />
<text text-anchor="" x="574.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="309" width="0.2" height="15.0" fill="rgb(212,175,52)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.7" y="645" width="0.2" height="15.0" fill="rgb(215,216,4)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (8 samples, 0.05%)</title><rect x="1062.5" y="341" width="0.6" height="15.0" fill="rgb(252,135,54)" rx="2" ry="2" />
<text text-anchor="" x="1065.52" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="565" width="0.2" height="15.0" fill="rgb(229,190,42)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (269 samples, 1.56%)</title><rect x="1026.9" y="325" width="18.3" height="15.0" fill="rgb(209,116,45)" rx="2" ry="2" />
<text text-anchor="" x="1029.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (66 samples, 0.38%)</title><rect x="824.6" y="373" width="4.5" height="15.0" fill="rgb(240,132,45)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (73 samples, 0.42%)</title><rect x="1184.2" y="549" width="5.0" height="15.0" fill="rgb(233,67,4)" rx="2" ry="2" />
<text text-anchor="" x="1187.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (107 samples, 0.62%)</title><rect x="1181.9" y="709" width="7.3" height="15.0" fill="rgb(242,211,8)" rx="2" ry="2" />
<text text-anchor="" x="1184.87" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="400.4" y="357" width="0.2" height="15.0" fill="rgb(241,150,3)" rx="2" ry="2" />
<text text-anchor="" x="403.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (6 samples, 0.03%)</title><rect x="774.9" y="357" width="0.4" height="15.0" fill="rgb(238,199,28)" rx="2" ry="2" />
<text text-anchor="" x="777.92" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1178.7" y="693" width="0.2" height="15.0" fill="rgb(219,97,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="565" width="1134.5" height="15.0" fill="rgb(222,24,6)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger7ProcessEPNS0_14OneshotBarrierE (5 samples, 0.03%)</title><rect x="825.8" y="261" width="0.4" height="15.0" fill="rgb(246,194,30)" rx="2" ry="2" />
<text text-anchor="" x="828.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16CopyArrayAndGrowINS0_13PropertyArrayEEENS0_6HandleIT_EES6_iNS0_13PretenureFlagE (265 samples, 1.53%)</title><rect x="1027.1" y="309" width="18.1" height="15.0" fill="rgb(220,43,22)" rx="2" ry="2" />
<text text-anchor="" x="1030.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="181" width="0.1" height="15.0" fill="rgb(207,35,8)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="229" width="0.1" height="15.0" fill="rgb(238,111,32)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="937.6" y="341" width="0.1" height="15.0" fill="rgb(232,92,32)" rx="2" ry="2" />
<text text-anchor="" x="940.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="965.8" y="245" width="0.1" height="15.0" fill="rgb(218,63,48)" rx="2" ry="2" />
<text text-anchor="" x="968.79" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (761 samples, 4.41%)</title><rect x="401.7" y="357" width="52.0" height="15.0" fill="rgb(251,72,49)" rx="2" ry="2" />
<text text-anchor="" x="404.72" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="677" width="0.2" height="15.0" fill="rgb(253,26,48)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (9 samples, 0.05%)</title><rect x="803.6" y="325" width="0.6" height="15.0" fill="rgb(239,120,35)" rx="2" ry="2" />
<text text-anchor="" x="806.61" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="197" width="0.1" height="15.0" fill="rgb(247,91,6)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (10 samples, 0.06%)</title><rect x="821.6" y="341" width="0.7" height="15.0" fill="rgb(231,193,19)" rx="2" ry="2" />
<text text-anchor="" x="824.65" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="37.9" y="293" width="0.2" height="15.0" fill="rgb(231,153,0)" rx="2" ry="2" />
<text text-anchor="" x="40.94" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="293" width="0.1" height="15.0" fill="rgb(227,168,35)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="533" width="1134.5" height="15.0" fill="rgb(235,2,33)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="213" width="0.1" height="15.0" fill="rgb(212,168,42)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="693" width="1.0" height="15.0" fill="rgb(233,113,9)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1178.5" y="629" width="0.2" height="15.0" fill="rgb(248,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1181.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="383.3" y="261" width="0.3" height="15.0" fill="rgb(232,161,32)" rx="2" ry="2" />
<text text-anchor="" x="386.27" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="277" width="0.2" height="15.0" fill="rgb(208,107,46)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="687.5" y="245" width="0.5" height="15.0" fill="rgb(236,159,12)" rx="2" ry="2" />
<text text-anchor="" x="690.55" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14PrepareJobImplEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="811.3" y="309" width="0.2" height="15.0" fill="rgb(243,133,45)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeC2EPS1_NS2_7ScopeIdE (2 samples, 0.01%)</title><rect x="1177.7" y="677" width="0.1" height="15.0" fill="rgb(250,225,49)" rx="2" ry="2" />
<text text-anchor="" x="1180.70" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.01%)</title><rect x="808.2" y="357" width="0.1" height="15.0" fill="rgb(217,77,1)" rx="2" ry="2" />
<text text-anchor="" x="811.19" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="383.3" y="229" width="0.3" height="15.0" fill="rgb(243,1,36)" rx="2" ry="2" />
<text text-anchor="" x="386.34" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="661" width="1.0" height="15.0" fill="rgb(254,120,8)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.02%)</title><rect x="726.2" y="357" width="0.3" height="15.0" fill="rgb(242,128,31)" rx="2" ry="2" />
<text text-anchor="" x="729.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (4 samples, 0.02%)</title><rect x="569.0" y="325" width="0.2" height="15.0" fill="rgb(254,62,52)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="277" width="0.2" height="15.0" fill="rgb(212,48,46)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (5 samples, 0.03%)</title><rect x="981.0" y="341" width="0.4" height="15.0" fill="rgb(214,173,17)" rx="2" ry="2" />
<text text-anchor="" x="984.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="245" width="0.1" height="15.0" fill="rgb(218,209,9)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="277" width="0.1" height="15.0" fill="rgb(205,142,16)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="261" width="0.1" height="15.0" fill="rgb(225,148,2)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="687.5" y="213" width="0.5" height="15.0" fill="rgb(207,227,10)" rx="2" ry="2" />
<text text-anchor="" x="690.55" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="549" width="0.5" height="15.0" fill="rgb(253,91,25)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node10contextify16ContextifyScript3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE (5 samples, 0.03%)</title><rect x="1146.6" y="421" width="0.4" height="15.0" fill="rgb(210,98,35)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="165" width="0.1" height="15.0" fill="rgb(248,98,21)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEiPPc (16,612 samples, 96.17%)</title><rect x="12.4" y="725" width="1134.8" height="15.0" fill="rgb(251,204,35)" rx="2" ry="2" />
<text text-anchor="" x="15.39" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEiPPc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (9 samples, 0.05%)</title><rect x="568.3" y="325" width="0.6" height="15.0" fill="rgb(212,228,50)" rx="2" ry="2" />
<text text-anchor="" x="571.27" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="308.5" y="277" width="0.8" height="15.0" fill="rgb(239,6,46)" rx="2" ry="2" />
<text text-anchor="" x="311.47" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="373" width="0.3" height="15.0" fill="rgb(249,190,23)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal36Runtime_CompileForOnStackReplacementEiPPNS0_6ObjectEPNS0_7IsolateE (6 samples, 0.03%)</title><rect x="811.3" y="373" width="0.4" height="15.0" fill="rgb(207,185,26)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (53 samples, 0.31%)</title><rect x="807.7" y="373" width="3.6" height="15.0" fill="rgb(253,189,11)" rx="2" ry="2" />
<text text-anchor="" x="810.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="245" width="0.2" height="15.0" fill="rgb(254,165,28)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="277" width="0.2" height="15.0" fill="rgb(220,96,50)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="1177.4" y="693" width="0.2" height="15.0" fill="rgb(243,184,1)" rx="2" ry="2" />
<text text-anchor="" x="1180.36" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="383.3" y="245" width="0.3" height="15.0" fill="rgb(252,16,46)" rx="2" ry="2" />
<text text-anchor="" x="386.34" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.8" y="677" width="0.5" height="15.0" fill="rgb(216,64,2)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="645" width="0.2" height="15.0" fill="rgb(239,25,51)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory36AllocateRawOneByteInternalizedStringEij (4 samples, 0.02%)</title><rect x="1146.6" y="261" width="0.3" height="15.0" fill="rgb(244,33,6)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (28 samples, 0.16%)</title><rect x="481.6" y="325" width="1.9" height="15.0" fill="rgb(236,217,46)" rx="2" ry="2" />
<text text-anchor="" x="484.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="325" width="0.2" height="15.0" fill="rgb(206,102,37)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="293" width="0.6" height="15.0" fill="rgb(208,184,22)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (68 samples, 0.39%)</title><rect x="769.9" y="357" width="4.6" height="15.0" fill="rgb(214,154,41)" rx="2" ry="2" />
<text text-anchor="" x="772.86" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="389" width="0.6" height="15.0" fill="rgb(212,206,53)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (6 samples, 0.03%)</title><rect x="820.9" y="373" width="0.4" height="15.0" fill="rgb(217,147,27)" rx="2" ry="2" />
<text text-anchor="" x="823.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (31 samples, 0.18%)</title><rect x="820.7" y="389" width="2.1" height="15.0" fill="rgb(234,12,2)" rx="2" ry="2" />
<text text-anchor="" x="823.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="501" width="1134.5" height="15.0" fill="rgb(248,103,45)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (6 samples, 0.03%)</title><rect x="403.2" y="341" width="0.4" height="15.0" fill="rgb(210,174,54)" rx="2" ry="2" />
<text text-anchor="" x="406.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (9 samples, 0.05%)</title><rect x="558.0" y="341" width="0.6" height="15.0" fill="rgb(238,210,6)" rx="2" ry="2" />
<text text-anchor="" x="561.02" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (224 samples, 1.30%)</title><rect x="754.5" y="357" width="15.3" height="15.0" fill="rgb(206,15,54)" rx="2" ry="2" />
<text text-anchor="" x="757.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="570.0" y="357" width="0.3" height="15.0" fill="rgb(220,31,7)" rx="2" ry="2" />
<text text-anchor="" x="572.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (3 samples, 0.02%)</title><rect x="1179.7" y="677" width="0.2" height="15.0" fill="rgb(247,178,7)" rx="2" ry="2" />
<text text-anchor="" x="1182.68" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1178.5" y="677" width="0.2" height="15.0" fill="rgb(206,96,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.45" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (22 samples, 0.13%)</title><rect x="571.1" y="341" width="1.5" height="15.0" fill="rgb(236,7,12)" rx="2" ry="2" />
<text text-anchor="" x="574.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (3 samples, 0.02%)</title><rect x="400.9" y="245" width="0.2" height="15.0" fill="rgb(220,189,29)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (248 samples, 1.44%)</title><rect x="752.9" y="373" width="16.9" height="15.0" fill="rgb(251,29,15)" rx="2" ry="2" />
<text text-anchor="" x="755.85" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (94 samples, 0.54%)</title><rect x="1182.8" y="581" width="6.4" height="15.0" fill="rgb(224,195,8)" rx="2" ry="2" />
<text text-anchor="" x="1185.76" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (29 samples, 0.17%)</title><rect x="1177.6" y="709" width="2.0" height="15.0" fill="rgb(238,79,6)" rx="2" ry="2" />
<text text-anchor="" x="1180.64" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (16,612 samples, 96.17%)</title><rect x="12.4" y="741" width="1134.8" height="15.0" fill="rgb(225,121,38)" rx="2" ry="2" />
<text text-anchor="" x="15.39" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (2 samples, 0.01%)</title><rect x="822.5" y="325" width="0.1" height="15.0" fill="rgb(246,62,3)" rx="2" ry="2" />
<text text-anchor="" x="825.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap8ScavengeEv (46 samples, 0.27%)</title><rect x="825.3" y="325" width="3.2" height="15.0" fill="rgb(243,69,29)" rx="2" ry="2" />
<text text-anchor="" x="828.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="213" width="0.2" height="15.0" fill="rgb(221,213,39)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (69 samples, 0.40%)</title><rect x="769.8" y="373" width="4.7" height="15.0" fill="rgb(229,162,16)" rx="2" ry="2" />
<text text-anchor="" x="772.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.11%)</title><rect x="571.3" y="261" width="1.3" height="15.0" fill="rgb(209,71,14)" rx="2" ry="2" />
<text text-anchor="" x="574.34" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="814.9" y="197" width="0.3" height="15.0" fill="rgb(210,28,40)" rx="2" ry="2" />
<text text-anchor="" x="817.88" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="383.4" y="213" width="0.2" height="15.0" fill="rgb(251,84,41)" rx="2" ry="2" />
<text text-anchor="" x="386.41" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (4 samples, 0.02%)</title><rect x="400.9" y="277" width="0.3" height="15.0" fill="rgb(252,178,5)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="293" width="0.1" height="15.0" fill="rgb(208,174,20)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="401.6" y="325" width="0.1" height="15.0" fill="rgb(205,131,29)" rx="2" ry="2" />
<text text-anchor="" x="404.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8Compiler30GetSharedFunctionInfoForScriptENS0_6HandleINS0_6StringEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS_9ExtensionEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSD_13NoCacheReasonENS0_11NativesFlagE (5 samples, 0.03%)</title><rect x="1146.6" y="373" width="0.4" height="15.0" fill="rgb(234,138,19)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (16 samples, 0.09%)</title><rect x="308.2" y="389" width="1.1" height="15.0" fill="rgb(232,107,25)" rx="2" ry="2" />
<text text-anchor="" x="311.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="629" width="0.6" height="15.0" fill="rgb(209,53,13)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor10InitializeEv (2 samples, 0.01%)</title><rect x="822.3" y="325" width="0.2" height="15.0" fill="rgb(238,88,36)" rx="2" ry="2" />
<text text-anchor="" x="825.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="197" width="0.2" height="15.0" fill="rgb(228,200,32)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (3 samples, 0.02%)</title><rect x="575.3" y="357" width="0.2" height="15.0" fill="rgb(238,57,7)" rx="2" ry="2" />
<text text-anchor="" x="578.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal18BodyDescriptorBase15IteratePointersINS0_15ScavengeVisitorEEEvPNS0_10HeapObjectEiiPT_.isra.197 (2 samples, 0.01%)</title><rect x="826.0" y="245" width="0.2" height="15.0" fill="rgb(231,116,10)" rx="2" ry="2" />
<text text-anchor="" x="829.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (474 samples, 2.74%)</title><rect x="688.0" y="341" width="32.3" height="15.0" fill="rgb(215,224,32)" rx="2" ry="2" />
<text text-anchor="" x="690.96" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="687.5" y="341" width="0.5" height="15.0" fill="rgb(225,77,14)" rx="2" ry="2" />
<text text-anchor="" x="690.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (8 samples, 0.05%)</title><rect x="483.8" y="341" width="0.6" height="15.0" fill="rgb(228,76,6)" rx="2" ry="2" />
<text text-anchor="" x="486.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="549" width="1134.5" height="15.0" fill="rgb(245,52,38)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="687.5" y="277" width="0.5" height="15.0" fill="rgb(207,112,36)" rx="2" ry="2" />
<text text-anchor="" x="690.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1188.9" y="485" width="0.3" height="15.0" fill="rgb(213,122,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="309" width="0.1" height="15.0" fill="rgb(231,4,2)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (41 samples, 0.24%)</title><rect x="1041.7" y="261" width="2.8" height="15.0" fill="rgb(231,124,7)" rx="2" ry="2" />
<text text-anchor="" x="1044.69" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="677" width="0.6" height="15.0" fill="rgb(248,153,18)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (380 samples, 2.20%)</title><rect x="726.7" y="357" width="25.9" height="15.0" fill="rgb(218,49,6)" rx="2" ry="2" />
<text text-anchor="" x="729.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (8 samples, 0.05%)</title><rect x="753.6" y="357" width="0.6" height="15.0" fill="rgb(221,50,30)" rx="2" ry="2" />
<text text-anchor="" x="756.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (3 samples, 0.02%)</title><rect x="821.4" y="341" width="0.2" height="15.0" fill="rgb(221,218,46)" rx="2" ry="2" />
<text text-anchor="" x="824.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (16 samples, 0.09%)</title><rect x="571.5" y="245" width="1.1" height="15.0" fill="rgb(213,206,19)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="824.6" y="341" width="0.1" height="15.0" fill="rgb(207,6,35)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.08%)</title><rect x="308.3" y="341" width="1.0" height="15.0" fill="rgb(209,47,25)" rx="2" ry="2" />
<text text-anchor="" x="311.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (10 samples, 0.06%)</title><rect x="1178.9" y="693" width="0.6" height="15.0" fill="rgb(228,171,28)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (9 samples, 0.05%)</title><rect x="1180.6" y="725" width="0.7" height="15.0" fill="rgb(213,87,37)" rx="2" ry="2" />
<text text-anchor="" x="1183.64" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="181" width="0.1" height="15.0" fill="rgb(249,136,45)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="325" width="0.2" height="15.0" fill="rgb(220,107,33)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (407 samples, 2.36%)</title><rect x="483.5" y="357" width="27.8" height="15.0" fill="rgb(246,219,33)" rx="2" ry="2" />
<text text-anchor="" x="486.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (358 samples, 2.07%)</title><rect x="1151.4" y="693" width="24.5" height="15.0" fill="rgb(222,195,4)" rx="2" ry="2" />
<text text-anchor="" x="1154.40" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (57 samples, 0.33%)</title><rect x="824.9" y="341" width="3.9" height="15.0" fill="rgb(223,116,2)" rx="2" ry="2" />
<text text-anchor="" x="827.86" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="752.6" y="373" width="0.3" height="15.0" fill="rgb(214,27,32)" rx="2" ry="2" />
<text text-anchor="" x="755.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="167.7" y="261" width="0.4" height="15.0" fill="rgb(243,177,7)" rx="2" ry="2" />
<text text-anchor="" x="170.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="687.7" y="197" width="0.3" height="15.0" fill="rgb(222,220,3)" rx="2" ry="2" />
<text text-anchor="" x="690.68" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="293" width="0.1" height="15.0" fill="rgb(220,156,41)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="677" width="0.2" height="15.0" fill="rgb(237,69,40)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="133" width="0.3" height="15.0" fill="rgb(218,210,45)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (54 samples, 0.31%)</title><rect x="641.7" y="357" width="3.7" height="15.0" fill="rgb(251,93,8)" rx="2" ry="2" />
<text text-anchor="" x="644.71" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (150 samples, 0.87%)</title><rect x="558.6" y="341" width="10.3" height="15.0" fill="rgb(239,67,47)" rx="2" ry="2" />
<text text-anchor="" x="561.64" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (17 samples, 0.10%)</title><rect x="812.5" y="373" width="1.2" height="15.0" fill="rgb(217,163,38)" rx="2" ry="2" />
<text text-anchor="" x="815.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="572.2" y="197" width="0.4" height="15.0" fill="rgb(207,0,47)" rx="2" ry="2" />
<text text-anchor="" x="575.16" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="357" width="0.3" height="15.0" fill="rgb(212,64,1)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="325" width="0.2" height="15.0" fill="rgb(237,51,47)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>node (17,269 samples, 99.98%)</title><rect x="10.0" y="773" width="1179.7" height="15.0" fill="rgb(221,12,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >node</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (186 samples, 1.08%)</title><rect x="540.3" y="325" width="12.7" height="15.0" fill="rgb(251,161,48)" rx="2" ry="2" />
<text text-anchor="" x="543.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform27MonotonicallyIncreasingTimeEv (2 samples, 0.01%)</title><rect x="1177.0" y="661" width="0.1" height="15.0" fill="rgb(239,98,28)" rx="2" ry="2" />
<text text-anchor="" x="1179.95" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="661" width="0.1" height="15.0" fill="rgb(221,48,35)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (44 samples, 0.25%)</title><rect x="808.3" y="357" width="3.0" height="15.0" fill="rgb(226,153,52)" rx="2" ry="2" />
<text text-anchor="" x="811.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="213" width="0.1" height="15.0" fill="rgb(254,44,33)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="357" width="0.5" height="15.0" fill="rgb(241,168,47)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.7" y="661" width="0.2" height="15.0" fill="rgb(214,34,14)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="677" width="0.1" height="15.0" fill="rgb(232,124,44)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="1146.6" y="229" width="0.3" height="15.0" fill="rgb(244,83,23)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="325" width="0.2" height="15.0" fill="rgb(254,3,7)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13PropertyArray3setEiPNS0_6ObjectE (33 samples, 0.19%)</title><rect x="1024.5" y="325" width="2.3" height="15.0" fill="rgb(224,85,16)" rx="2" ry="2" />
<text text-anchor="" x="1027.54" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="197" width="0.1" height="15.0" fill="rgb(230,197,11)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="341" width="0.1" height="15.0" fill="rgb(223,164,32)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="53" width="0.3" height="15.0" fill="rgb(208,123,43)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1179.3" y="501" width="0.2" height="15.0" fill="rgb(249,1,34)" rx="2" ry="2" />
<text text-anchor="" x="1182.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="341" width="0.2" height="15.0" fill="rgb(216,9,0)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="341" width="0.3" height="15.0" fill="rgb(245,196,40)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTask13RunInParallelEv (7 samples, 0.04%)</title><rect x="825.7" y="277" width="0.5" height="15.0" fill="rgb(250,215,28)" rx="2" ry="2" />
<text text-anchor="" x="828.68" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (67 samples, 0.39%)</title><rect x="720.3" y="341" width="4.6" height="15.0" fill="rgb(219,200,46)" rx="2" ry="2" />
<text text-anchor="" x="723.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="661" width="0.6" height="15.0" fill="rgb(225,96,10)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="261" width="0.1" height="15.0" fill="rgb(239,21,50)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12GraphReducer10ReduceNodeEPNS1_4NodeE (2 samples, 0.01%)</title><rect x="811.3" y="277" width="0.2" height="15.0" fill="rgb(251,107,23)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (6 samples, 0.03%)</title><rect x="824.9" y="309" width="0.4" height="15.0" fill="rgb(241,152,12)" rx="2" ry="2" />
<text text-anchor="" x="827.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4nodeL16BackgroundRunnerEPv (568 samples, 3.29%)</title><rect x="1150.6" y="741" width="38.8" height="15.0" fill="rgb(250,69,31)" rx="2" ry="2" />
<text text-anchor="" x="1153.58" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="570.5" y="357" width="0.1" height="15.0" fill="rgb(219,131,18)" rx="2" ry="2" />
<text text-anchor="" x="573.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (3 samples, 0.02%)</title><rect x="981.4" y="341" width="0.2" height="15.0" fill="rgb(250,107,4)" rx="2" ry="2" />
<text text-anchor="" x="984.37" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="1146.6" y="453" width="0.4" height="15.0" fill="rgb(233,31,31)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="1179.9" y="709" width="0.2" height="15.0" fill="rgb(249,193,46)" rx="2" ry="2" />
<text text-anchor="" x="1182.89" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (15 samples, 0.09%)</title><rect x="818.5" y="389" width="1.0" height="15.0" fill="rgb(237,35,40)" rx="2" ry="2" />
<text text-anchor="" x="821.50" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType4castEPNS0_6ObjectE (11 samples, 0.06%)</title><rect x="1120.0" y="325" width="0.8" height="15.0" fill="rgb(238,201,41)" rx="2" ry="2" />
<text text-anchor="" x="1123.05" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="597" width="0.2" height="15.0" fill="rgb(209,190,33)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="261" width="0.2" height="15.0" fill="rgb(207,162,30)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (16 samples, 0.09%)</title><rect x="1121.5" y="357" width="1.1" height="15.0" fill="rgb(213,216,9)" rx="2" ry="2" />
<text text-anchor="" x="1124.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="1146.3" y="421" width="0.3" height="15.0" fill="rgb(254,7,19)" rx="2" ry="2" />
<text text-anchor="" x="1149.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="813.9" y="373" width="0.2" height="15.0" fill="rgb(205,57,48)" rx="2" ry="2" />
<text text-anchor="" x="816.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (6 samples, 0.03%)</title><rect x="1149.8" y="757" width="0.4" height="15.0" fill="rgb(218,138,50)" rx="2" ry="2" />
<text text-anchor="" x="1152.76" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (2 samples, 0.01%)</title><rect x="400.9" y="213" width="0.1" height="15.0" fill="rgb(233,97,35)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (17 samples, 0.10%)</title><rect x="519.8" y="341" width="1.2" height="15.0" fill="rgb(225,91,13)" rx="2" ry="2" />
<text text-anchor="" x="522.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer19StoreBufferOverflowEPNS0_7IsolateE (15 samples, 0.09%)</title><rect x="814.1" y="389" width="1.1" height="15.0" fill="rgb(234,106,39)" rx="2" ry="2" />
<text text-anchor="" x="817.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="811.0" y="341" width="0.3" height="15.0" fill="rgb(214,103,48)" rx="2" ry="2" />
<text text-anchor="" x="813.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (13 samples, 0.08%)</title><rect x="819.7" y="389" width="0.9" height="15.0" fill="rgb(222,8,34)" rx="2" ry="2" />
<text text-anchor="" x="822.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="741" width="0.3" height="15.0" fill="rgb(216,58,35)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="293" width="0.1" height="15.0" fill="rgb(206,166,30)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_121GetIdentityHashHelperEPNS0_7IsolateEPNS0_10JSReceiverE.isra.363 (33 samples, 0.19%)</title><rect x="1022.1" y="309" width="2.2" height="15.0" fill="rgb(221,183,19)" rx="2" ry="2" />
<text text-anchor="" x="1025.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (7 samples, 0.04%)</title><rect x="1133.0" y="357" width="0.5" height="15.0" fill="rgb(216,119,2)" rx="2" ry="2" />
<text text-anchor="" x="1136.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="261" width="0.2" height="15.0" fill="rgb(249,57,4)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_ (16,611 samples, 96.17%)</title><rect x="12.5" y="709" width="1134.7" height="15.0" fill="rgb(227,14,50)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (6 samples, 0.03%)</title><rect x="811.3" y="341" width="0.4" height="15.0" fill="rgb(230,215,38)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map14GetBackPointerEv (25 samples, 0.14%)</title><rect x="1045.2" y="325" width="1.7" height="15.0" fill="rgb(254,182,32)" rx="2" ry="2" />
<text text-anchor="" x="1048.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (90 samples, 0.52%)</title><rect x="864.8" y="389" width="6.2" height="15.0" fill="rgb(241,34,32)" rx="2" ry="2" />
<text text-anchor="" x="867.82" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="213" width="0.1" height="15.0" fill="rgb(217,217,22)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="341" width="0.2" height="15.0" fill="rgb(216,211,1)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (13 samples, 0.08%)</title><rect x="814.3" y="373" width="0.9" height="15.0" fill="rgb(242,197,40)" rx="2" ry="2" />
<text text-anchor="" x="817.27" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.02%)</title><rect x="774.2" y="341" width="0.3" height="15.0" fill="rgb(237,132,51)" rx="2" ry="2" />
<text text-anchor="" x="777.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="597" width="0.3" height="15.0" fill="rgb(241,111,6)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12BinarySearchILNS0_10SearchModeE1ENS0_15DescriptorArrayEEEiPT0_PNS0_4NameEiPi (4 samples, 0.02%)</title><rect x="883.7" y="373" width="0.3" height="15.0" fill="rgb(252,25,43)" rx="2" ry="2" />
<text text-anchor="" x="886.75" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="309" width="0.3" height="15.0" fill="rgb(210,124,37)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="557.5" y="325" width="0.1" height="15.0" fill="rgb(217,121,33)" rx="2" ry="2" />
<text text-anchor="" x="560.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="309" width="0.2" height="15.0" fill="rgb(222,76,3)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="229" width="0.2" height="15.0" fill="rgb(223,145,16)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="608.3" y="229" width="0.1" height="15.0" fill="rgb(221,157,1)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (456 samples, 2.64%)</title><rect x="874.8" y="389" width="31.1" height="15.0" fill="rgb(233,52,40)" rx="2" ry="2" />
<text text-anchor="" x="877.80" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="325" width="0.1" height="15.0" fill="rgb(220,132,5)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.11%)</title><rect x="571.3" y="309" width="1.3" height="15.0" fill="rgb(237,65,35)" rx="2" ry="2" />
<text text-anchor="" x="574.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (66 samples, 0.38%)</title><rect x="824.6" y="389" width="4.5" height="15.0" fill="rgb(245,148,21)" rx="2" ry="2" />
<text text-anchor="" x="827.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="613" width="0.6" height="15.0" fill="rgb(215,29,7)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (64 samples, 0.37%)</title><rect x="824.7" y="357" width="4.4" height="15.0" fill="rgb(208,3,37)" rx="2" ry="2" />
<text text-anchor="" x="827.72" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (8 samples, 0.05%)</title><rect x="569.2" y="357" width="0.6" height="15.0" fill="rgb(244,188,5)" rx="2" ry="2" />
<text text-anchor="" x="572.22" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="557.5" y="341" width="0.1" height="15.0" fill="rgb(237,112,13)" rx="2" ry="2" />
<text text-anchor="" x="560.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="961.8" y="325" width="0.2" height="15.0" fill="rgb(219,213,24)" rx="2" ry="2" />
<text text-anchor="" x="964.76" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="357" width="0.6" height="15.0" fill="rgb(228,158,0)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="309" width="0.2" height="15.0" fill="rgb(234,89,24)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="645" width="0.3" height="15.0" fill="rgb(237,131,25)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (4,448 samples, 25.75%)</title><rect x="829.1" y="405" width="303.9" height="15.0" fill="rgb(232,77,24)" rx="2" ry="2" />
<text text-anchor="" x="832.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal35Runtime_DefineDataPrope..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="1180.8" y="693" width="0.5" height="15.0" fill="rgb(214,184,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.78" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StringTable9LookupKeyEPNS0_7IsolateEPNS0_14StringTableKeyE (5 samples, 0.03%)</title><rect x="1146.6" y="309" width="0.4" height="15.0" fill="rgb(243,92,47)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTaskD0Ev (4 samples, 0.02%)</title><rect x="1180.1" y="725" width="0.3" height="15.0" fill="rgb(248,184,19)" rx="2" ry="2" />
<text text-anchor="" x="1183.09" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (2 samples, 0.01%)</title><rect x="511.3" y="341" width="0.1" height="15.0" fill="rgb(243,206,53)" rx="2" ry="2" />
<text text-anchor="" x="514.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (406 samples, 2.35%)</title><rect x="455.8" y="341" width="27.7" height="15.0" fill="rgb(254,138,9)" rx="2" ry="2" />
<text text-anchor="" x="458.75" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="308.5" y="309" width="0.8" height="15.0" fill="rgb(241,24,32)" rx="2" ry="2" />
<text text-anchor="" x="311.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (4 samples, 0.02%)</title><rect x="400.9" y="293" width="0.3" height="15.0" fill="rgb(212,64,8)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (7 samples, 0.04%)</title><rect x="557.0" y="325" width="0.5" height="15.0" fill="rgb(205,48,30)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="245" width="0.2" height="15.0" fill="rgb(207,125,37)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116FinalizeTopLevelEPNS0_9ParseInfoEPNS0_7IsolateEPNS0_25UnoptimizedCompilationJobEPSt12forward_listISt10unique_ptrIS6_St14default_deleteIS6_EESaISC_EE (5 samples, 0.03%)</title><rect x="1146.6" y="341" width="0.4" height="15.0" fill="rgb(244,171,44)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[vdso]] (2 samples, 0.01%)</title><rect x="1149.5" y="725" width="0.1" height="15.0" fill="rgb(231,6,33)" rx="2" ry="2" />
<text text-anchor="" x="1152.49" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="213" width="0.1" height="15.0" fill="rgb(233,213,32)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (233 samples, 1.35%)</title><rect x="1159.9" y="677" width="16.0" height="15.0" fill="rgb(246,24,28)" rx="2" ry="2" />
<text text-anchor="" x="1162.94" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="687.5" y="309" width="0.5" height="15.0" fill="rgb(243,57,23)" rx="2" ry="2" />
<text text-anchor="" x="690.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (60 samples, 0.35%)</title><rect x="1020.2" y="325" width="4.1" height="15.0" fill="rgb(236,173,14)" rx="2" ry="2" />
<text text-anchor="" x="1023.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="645" width="0.1" height="15.0" fill="rgb(251,193,43)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="613" width="0.3" height="15.0" fill="rgb(241,42,42)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1178.5" y="645" width="0.2" height="15.0" fill="rgb(229,45,9)" rx="2" ry="2" />
<text text-anchor="" x="1181.45" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1062.3" y="293" width="0.2" height="15.0" fill="rgb(208,77,13)" rx="2" ry="2" />
<text text-anchor="" x="1065.32" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (527 samples, 3.05%)</title><rect x="519.3" y="357" width="36.0" height="15.0" fill="rgb(239,3,10)" rx="2" ry="2" />
<text text-anchor="" x="522.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="497.8" y="213" width="0.2" height="15.0" fill="rgb(215,228,51)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="85" width="0.3" height="15.0" fill="rgb(214,34,34)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="357" width="0.1" height="15.0" fill="rgb(235,114,35)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="277" width="0.2" height="15.0" fill="rgb(234,59,27)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="965.7" y="293" width="0.2" height="15.0" fill="rgb(229,4,37)" rx="2" ry="2" />
<text text-anchor="" x="968.72" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="613" width="0.2" height="15.0" fill="rgb(225,97,8)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="501" width="0.1" height="15.0" fill="rgb(208,133,46)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.7" y="613" width="0.2" height="15.0" fill="rgb(254,186,22)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="400.5" y="325" width="0.1" height="15.0" fill="rgb(216,170,34)" rx="2" ry="2" />
<text text-anchor="" x="403.49" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="383.5" y="197" width="0.1" height="15.0" fill="rgb(224,59,53)" rx="2" ry="2" />
<text text-anchor="" x="386.48" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (10 samples, 0.06%)</title><rect x="1044.5" y="245" width="0.7" height="15.0" fill="rgb(239,56,17)" rx="2" ry="2" />
<text text-anchor="" x="1047.49" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (24 samples, 0.14%)</title><rect x="873.2" y="389" width="1.6" height="15.0" fill="rgb(237,129,37)" rx="2" ry="2" />
<text text-anchor="" x="876.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="401.6" y="341" width="0.1" height="15.0" fill="rgb(222,154,5)" rx="2" ry="2" />
<text text-anchor="" x="404.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="245" width="0.1" height="15.0" fill="rgb(252,143,5)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (13 samples, 0.08%)</title><rect x="1175.9" y="693" width="0.8" height="15.0" fill="rgb(226,47,20)" rx="2" ry="2" />
<text text-anchor="" x="1178.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="814.6" y="277" width="0.6" height="15.0" fill="rgb(209,132,50)" rx="2" ry="2" />
<text text-anchor="" x="817.61" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="629" width="0.1" height="15.0" fill="rgb(243,154,25)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="10.1" y="741" width="0.5" height="15.0" fill="rgb(241,82,0)" rx="2" ry="2" />
<text text-anchor="" x="13.07" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="421" width="0.3" height="15.0" fill="rgb(208,108,16)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (436 samples, 2.52%)</title><rect x="453.7" y="357" width="29.8" height="15.0" fill="rgb(215,71,50)" rx="2" ry="2" />
<text text-anchor="" x="456.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (24 samples, 0.14%)</title><rect x="1122.6" y="357" width="1.6" height="15.0" fill="rgb(221,135,52)" rx="2" ry="2" />
<text text-anchor="" x="1125.57" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (4 samples, 0.02%)</title><rect x="400.9" y="325" width="0.3" height="15.0" fill="rgb(254,89,25)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="229" width="0.1" height="15.0" fill="rgb(220,92,51)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (964 samples, 5.58%)</title><rect x="982.3" y="341" width="65.8" height="15.0" fill="rgb(229,117,17)" rx="2" ry="2" />
<text text-anchor="" x="985.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.08%)</title><rect x="571.7" y="229" width="0.9" height="15.0" fill="rgb(237,189,18)" rx="2" ry="2" />
<text text-anchor="" x="574.68" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (164 samples, 0.95%)</title><rect x="741.4" y="341" width="11.2" height="15.0" fill="rgb(253,207,50)" rx="2" ry="2" />
<text text-anchor="" x="744.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (470 samples, 2.72%)</title><rect x="775.6" y="357" width="32.1" height="15.0" fill="rgb(217,61,37)" rx="2" ry="2" />
<text text-anchor="" x="778.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1178.5" y="661" width="0.2" height="15.0" fill="rgb(221,197,46)" rx="2" ry="2" />
<text text-anchor="" x="1181.45" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (13 samples, 0.08%)</title><rect x="515.7" y="325" width="0.9" height="15.0" fill="rgb(226,170,51)" rx="2" ry="2" />
<text text-anchor="" x="518.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="277" width="0.1" height="15.0" fill="rgb(250,63,26)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (24 samples, 0.14%)</title><rect x="739.8" y="341" width="1.6" height="15.0" fill="rgb(225,19,1)" rx="2" ry="2" />
<text text-anchor="" x="742.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="293" width="0.2" height="15.0" fill="rgb(227,228,46)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="1179.1" y="517" width="0.4" height="15.0" fill="rgb(226,63,41)" rx="2" ry="2" />
<text text-anchor="" x="1182.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v814ScriptCompiler20CompileUnboundScriptEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (5 samples, 0.03%)</title><rect x="1146.6" y="405" width="0.4" height="15.0" fill="rgb(226,178,14)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="293" width="0.5" height="15.0" fill="rgb(210,189,10)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (32 samples, 0.19%)</title><rect x="555.3" y="357" width="2.2" height="15.0" fill="rgb(237,197,32)" rx="2" ry="2" />
<text text-anchor="" x="558.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (86 samples, 0.50%)</title><rect x="1183.3" y="565" width="5.9" height="15.0" fill="rgb(253,115,39)" rx="2" ry="2" />
<text text-anchor="" x="1186.31" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (99 samples, 0.57%)</title><rect x="1182.4" y="613" width="6.8" height="15.0" fill="rgb(245,72,38)" rx="2" ry="2" />
<text text-anchor="" x="1185.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (22 samples, 0.13%)</title><rect x="821.3" y="373" width="1.5" height="15.0" fill="rgb(239,65,10)" rx="2" ry="2" />
<text text-anchor="" x="824.31" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (9,587 samples, 55.50%)</title><rect x="168.1" y="405" width="654.9" height="15.0" fill="rgb(209,165,39)" rx="2" ry="2" />
<text text-anchor="" x="171.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="167.8" y="245" width="0.3" height="15.0" fill="rgb(251,213,48)" rx="2" ry="2" />
<text text-anchor="" x="170.81" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,602 samples, 96.12%)</title><rect x="12.5" y="437" width="1134.1" height="15.0" fill="rgb(207,155,22)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.8" y="645" width="0.5" height="15.0" fill="rgb(208,51,1)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="197" width="0.1" height="15.0" fill="rgb(244,22,14)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace4FlipEv (2 samples, 0.01%)</title><rect x="827.7" y="309" width="0.2" height="15.0" fill="rgb(239,79,41)" rx="2" ry="2" />
<text text-anchor="" x="830.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="497.8" y="229" width="0.2" height="15.0" fill="rgb(241,197,32)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="661" width="0.6" height="15.0" fill="rgb(252,7,46)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (2 samples, 0.01%)</title><rect x="1133.0" y="325" width="0.2" height="15.0" fill="rgb(227,101,53)" rx="2" ry="2" />
<text text-anchor="" x="1136.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="572.1" y="213" width="0.5" height="15.0" fill="rgb(206,65,46)" rx="2" ry="2" />
<text text-anchor="" x="575.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="1027.0" y="309" width="0.1" height="15.0" fill="rgb(225,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1030.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="293" width="0.1" height="15.0" fill="rgb(242,99,10)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal22SerializerDeserializer7IterateEPNS0_7IsolateEPNS0_11RootVisitorE (6 samples, 0.03%)</title><rect x="826.7" y="309" width="0.4" height="15.0" fill="rgb(212,82,20)" rx="2" ry="2" />
<text text-anchor="" x="829.70" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="813.7" y="373" width="0.1" height="15.0" fill="rgb(226,93,33)" rx="2" ry="2" />
<text text-anchor="" x="816.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (34 samples, 0.20%)</title><rect x="553.0" y="325" width="2.3" height="15.0" fill="rgb(233,204,11)" rx="2" ry="2" />
<text text-anchor="" x="555.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___printf_fp_l (3 samples, 0.02%)</title><rect x="10.8" y="709" width="0.2" height="15.0" fill="rgb(216,84,22)" rx="2" ry="2" />
<text text-anchor="" x="13.82" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="572.2" y="181" width="0.4" height="15.0" fill="rgb(219,172,52)" rx="2" ry="2" />
<text text-anchor="" x="575.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="325" width="0.1" height="15.0" fill="rgb(247,224,12)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="608.3" y="213" width="0.1" height="15.0" fill="rgb(245,26,53)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (103 samples, 0.60%)</title><rect x="1182.1" y="645" width="7.1" height="15.0" fill="rgb(228,14,37)" rx="2" ry="2" />
<text text-anchor="" x="1185.14" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="565" width="0.6" height="15.0" fill="rgb(236,67,30)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="1189.2" y="725" width="0.2" height="15.0" fill="rgb(233,107,24)" rx="2" ry="2" />
<text text-anchor="" x="1192.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (2 samples, 0.01%)</title><rect x="822.9" y="389" width="0.1" height="15.0" fill="rgb(226,189,0)" rx="2" ry="2" />
<text text-anchor="" x="825.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (5 samples, 0.03%)</title><rect x="1178.4" y="693" width="0.3" height="15.0" fill="rgb(242,14,44)" rx="2" ry="2" />
<text text-anchor="" x="1181.39" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler9Scheduler15ComputeScheduleEPNS0_4ZoneEPNS1_5GraphENS_4base5FlagsINS2_4FlagEiEE (2 samples, 0.01%)</title><rect x="1133.2" y="309" width="0.1" height="15.0" fill="rgb(232,50,34)" rx="2" ry="2" />
<text text-anchor="" x="1136.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType3AnyEv (6 samples, 0.03%)</title><rect x="1119.6" y="325" width="0.4" height="15.0" fill="rgb(213,36,31)" rx="2" ry="2" />
<text text-anchor="" x="1122.64" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (32 samples, 0.19%)</title><rect x="871.0" y="389" width="2.2" height="15.0" fill="rgb(252,66,8)" rx="2" ry="2" />
<text text-anchor="" x="873.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (27 samples, 0.16%)</title><rect x="816.7" y="389" width="1.8" height="15.0" fill="rgb(241,80,38)" rx="2" ry="2" />
<text text-anchor="" x="819.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="401.2" y="341" width="0.2" height="15.0" fill="rgb(236,221,44)" rx="2" ry="2" />
<text text-anchor="" x="404.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (69 samples, 0.40%)</title><rect x="608.4" y="341" width="4.8" height="15.0" fill="rgb(235,57,17)" rx="2" ry="2" />
<text text-anchor="" x="611.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="549" width="0.6" height="15.0" fill="rgb(252,59,10)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="661" width="0.2" height="15.0" fill="rgb(249,133,18)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="213" width="0.1" height="15.0" fill="rgb(222,30,30)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (96 samples, 0.56%)</title><rect x="761.8" y="341" width="6.6" height="15.0" fill="rgb(247,45,28)" rx="2" ry="2" />
<text text-anchor="" x="764.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (84 samples, 0.49%)</title><rect x="915.4" y="373" width="5.8" height="15.0" fill="rgb(207,112,8)" rx="2" ry="2" />
<text text-anchor="" x="918.44" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map20UnusedPropertyFieldsEv (15 samples, 0.09%)</title><rect x="1049.3" y="341" width="1.1" height="15.0" fill="rgb(254,187,41)" rx="2" ry="2" />
<text text-anchor="" x="1052.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="709" width="1.0" height="15.0" fill="rgb(230,34,13)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.7" y="629" width="0.2" height="15.0" fill="rgb(224,99,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.73" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (6 samples, 0.03%)</title><rect x="10.7" y="725" width="0.4" height="15.0" fill="rgb(232,153,9)" rx="2" ry="2" />
<text text-anchor="" x="13.68" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="293" width="0.1" height="15.0" fill="rgb(233,61,20)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="693" width="0.3" height="15.0" fill="rgb(232,26,29)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="581" width="0.2" height="15.0" fill="rgb(216,54,6)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Isolate7IterateEPNS0_11RootVisitorEPNS0_14ThreadLocalTopE (4 samples, 0.02%)</title><rect x="827.1" y="309" width="0.3" height="15.0" fill="rgb(227,210,7)" rx="2" ry="2" />
<text text-anchor="" x="830.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (4 samples, 0.02%)</title><rect x="569.0" y="341" width="0.2" height="15.0" fill="rgb(222,66,45)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8NewSpace25ResetLinearAllocationAreaEv (4 samples, 0.02%)</title><rect x="827.5" y="309" width="0.2" height="15.0" fill="rgb(206,106,16)" rx="2" ry="2" />
<text text-anchor="" x="830.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (2,927 samples, 16.95%)</title><rect x="924.3" y="373" width="199.9" height="15.0" fill="rgb(231,218,52)" rx="2" ry="2" />
<text text-anchor="" x="927.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal6Object15Ad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16 samples, 0.09%)</title><rect x="400.6" y="357" width="1.1" height="15.0" fill="rgb(232,57,13)" rx="2" ry="2" />
<text text-anchor="" x="403.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="165" width="0.3" height="15.0" fill="rgb(249,2,23)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (980 samples, 5.67%)</title><rect x="572.7" y="373" width="67.0" height="15.0" fill="rgb(228,15,8)" rx="2" ry="2" />
<text text-anchor="" x="575.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (4 samples, 0.02%)</title><rect x="811.5" y="325" width="0.2" height="15.0" fill="rgb(206,119,13)" rx="2" ry="2" />
<text text-anchor="" x="814.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="261" width="0.2" height="15.0" fill="rgb(211,206,43)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger14ScavengeObjectEPPNS0_19HeapObjectReferenceEPNS0_10HeapObjectE.constprop.284 (2 samples, 0.01%)</title><rect x="826.0" y="229" width="0.2" height="15.0" fill="rgb(210,128,17)" rx="2" ry="2" />
<text text-anchor="" x="829.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (5 samples, 0.03%)</title><rect x="484.4" y="341" width="0.3" height="15.0" fill="rgb(219,180,54)" rx="2" ry="2" />
<text text-anchor="" x="487.38" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="645" width="1.0" height="15.0" fill="rgb(230,172,29)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (4 samples, 0.02%)</title><rect x="821.0" y="357" width="0.3" height="15.0" fill="rgb(243,57,29)" rx="2" ry="2" />
<text text-anchor="" x="824.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="677" width="1.0" height="15.0" fill="rgb(222,142,28)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="533" width="0.6" height="15.0" fill="rgb(232,14,23)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="629" width="1134.5" height="15.0" fill="rgb(233,116,1)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="570.6" y="357" width="0.3" height="15.0" fill="rgb(211,65,2)" rx="2" ry="2" />
<text text-anchor="" x="573.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal3Map6UpdateENS0_6HandleIS1_EE (10 samples, 0.06%)</title><rect x="1120.8" y="341" width="0.7" height="15.0" fill="rgb(222,136,23)" rx="2" ry="2" />
<text text-anchor="" x="1123.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1,148 samples, 6.65%)</title><rect x="646.5" y="357" width="78.4" height="15.0" fill="rgb(217,200,50)" rx="2" ry="2" />
<text text-anchor="" x="649.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (17 samples, 0.10%)</title><rect x="923.1" y="373" width="1.2" height="15.0" fill="rgb(236,28,22)" rx="2" ry="2" />
<text text-anchor="" x="926.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15AstValueFactory11InternalizeEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="1146.6" y="325" width="0.4" height="15.0" fill="rgb(219,228,1)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_121GetIdentityHashHelperEPNS0_7IsolateEPNS0_10JSReceiverE.isra.363 (3 samples, 0.02%)</title><rect x="1024.3" y="325" width="0.2" height="15.0" fill="rgb(219,203,7)" rx="2" ry="2" />
<text text-anchor="" x="1027.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (103 samples, 0.60%)</title><rect x="1182.1" y="661" width="7.1" height="15.0" fill="rgb(214,44,33)" rx="2" ry="2" />
<text text-anchor="" x="1185.14" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="165" width="0.2" height="15.0" fill="rgb(229,223,26)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="572.4" y="149" width="0.2" height="15.0" fill="rgb(239,198,8)" rx="2" ry="2" />
<text text-anchor="" x="575.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16CopyArrayAndGrowINS0_13PropertyArrayEEENS0_6HandleIT_EES6_iNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="822.1" y="293" width="0.2" height="15.0" fill="rgb(221,31,53)" rx="2" ry="2" />
<text text-anchor="" x="825.13" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="309" width="0.1" height="15.0" fill="rgb(223,123,1)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (20 samples, 0.12%)</title><rect x="821.4" y="357" width="1.4" height="15.0" fill="rgb(240,89,45)" rx="2" ry="2" />
<text text-anchor="" x="824.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="597" width="1134.5" height="15.0" fill="rgb(245,192,50)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (2,742 samples, 15.87%)</title><rect x="383.6" y="373" width="187.3" height="15.0" fill="rgb(249,134,21)" rx="2" ry="2" />
<text text-anchor="" x="386.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (389 samples, 2.25%)</title><rect x="484.7" y="341" width="26.6" height="15.0" fill="rgb(239,160,47)" rx="2" ry="2" />
<text text-anchor="" x="487.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="293" width="0.1" height="15.0" fill="rgb(242,90,1)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (15 samples, 0.09%)</title><rect x="402.1" y="341" width="1.1" height="15.0" fill="rgb(253,97,3)" rx="2" ry="2" />
<text text-anchor="" x="405.13" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (4 samples, 0.02%)</title><rect x="775.3" y="357" width="0.3" height="15.0" fill="rgb(220,161,2)" rx="2" ry="2" />
<text text-anchor="" x="778.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="309" width="0.1" height="15.0" fill="rgb(219,49,24)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12BinarySearchILNS0_10SearchModeE1ENS0_15DescriptorArrayEEEiPT0_PNS0_4NameEiPi (136 samples, 0.79%)</title><rect x="896.7" y="357" width="9.2" height="15.0" fill="rgb(247,113,51)" rx="2" ry="2" />
<text text-anchor="" x="899.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="325" width="0.1" height="15.0" fill="rgb(235,131,50)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (16,607 samples, 96.14%)</title><rect x="12.5" y="661" width="1134.5" height="15.0" fill="rgb(214,226,3)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="277" width="0.2" height="15.0" fill="rgb(245,80,5)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1178.5" y="613" width="0.2" height="15.0" fill="rgb(205,10,12)" rx="2" ry="2" />
<text text-anchor="" x="1181.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="687.5" y="293" width="0.5" height="15.0" fill="rgb(212,173,43)" rx="2" ry="2" />
<text text-anchor="" x="690.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="629" width="1.0" height="15.0" fill="rgb(222,89,10)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (115 samples, 0.67%)</title><rect x="511.4" y="341" width="7.9" height="15.0" fill="rgb(213,163,28)" rx="2" ry="2" />
<text text-anchor="" x="514.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10ExecuteJobEv (3 samples, 0.02%)</title><rect x="1179.7" y="693" width="0.2" height="15.0" fill="rgb(222,175,27)" rx="2" ry="2" />
<text text-anchor="" x="1182.68" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map21GetInObjectPropertiesEv (9 samples, 0.05%)</title><rect x="1050.4" y="341" width="0.6" height="15.0" fill="rgb(249,155,29)" rx="2" ry="2" />
<text text-anchor="" x="1053.36" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="661" width="0.3" height="15.0" fill="rgb(209,24,52)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="608.2" y="261" width="0.2" height="15.0" fill="rgb(231,120,10)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="581" width="0.2" height="15.0" fill="rgb(236,51,5)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (21 samples, 0.12%)</title><rect x="815.2" y="389" width="1.5" height="15.0" fill="rgb(237,101,29)" rx="2" ry="2" />
<text text-anchor="" x="818.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1132.8" y="373" width="0.2" height="15.0" fill="rgb(244,82,35)" rx="2" ry="2" />
<text text-anchor="" x="1135.82" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="197" width="0.1" height="15.0" fill="rgb(216,87,13)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (3 samples, 0.02%)</title><rect x="726.5" y="357" width="0.2" height="15.0" fill="rgb(247,180,22)" rx="2" ry="2" />
<text text-anchor="" x="729.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="373" width="0.1" height="15.0" fill="rgb(238,184,49)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.02%)</title><rect x="1147.0" y="677" width="0.2" height="15.0" fill="rgb(227,148,46)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_115CompileToplevelEPNS0_9ParseInfoEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="1146.6" y="357" width="0.4" height="15.0" fill="rgb(237,44,19)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14CancelableTask3RunEv (421 samples, 2.44%)</title><rect x="1151.3" y="725" width="28.8" height="15.0" fill="rgb(206,36,33)" rx="2" ry="2" />
<text text-anchor="" x="1154.33" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (321 samples, 1.86%)</title><rect x="884.0" y="373" width="21.9" height="15.0" fill="rgb(222,136,20)" rx="2" ry="2" />
<text text-anchor="" x="887.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="629" width="0.2" height="15.0" fill="rgb(238,190,18)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="497.9" y="197" width="0.1" height="15.0" fill="rgb(234,23,43)" rx="2" ry="2" />
<text text-anchor="" x="500.90" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="277" width="0.1" height="15.0" fill="rgb(205,194,48)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="400.5" y="341" width="0.1" height="15.0" fill="rgb(216,67,36)" rx="2" ry="2" />
<text text-anchor="" x="403.49" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="101" width="0.3" height="15.0" fill="rgb(215,168,20)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (18 samples, 0.10%)</title><rect x="1118.4" y="325" width="1.2" height="15.0" fill="rgb(207,184,46)" rx="2" ry="2" />
<text text-anchor="" x="1121.41" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal3Map21GetInObjectPropertiesEv (4 samples, 0.02%)</title><rect x="1047.8" y="325" width="0.3" height="15.0" fill="rgb(234,8,35)" rx="2" ry="2" />
<text text-anchor="" x="1050.84" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="229" width="0.1" height="15.0" fill="rgb(218,228,20)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (104 samples, 0.60%)</title><rect x="1182.1" y="677" width="7.1" height="15.0" fill="rgb(205,61,46)" rx="2" ry="2" />
<text text-anchor="" x="1185.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="469" width="1134.5" height="15.0" fill="rgb(222,42,16)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (71 samples, 0.41%)</title><rect x="1040.4" y="277" width="4.8" height="15.0" fill="rgb(225,58,11)" rx="2" ry="2" />
<text text-anchor="" x="1043.39" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="245" width="0.1" height="15.0" fill="rgb(245,93,19)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="1178.9" y="581" width="0.6" height="15.0" fill="rgb(238,162,33)" rx="2" ry="2" />
<text text-anchor="" x="1181.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8GCTracer15BackgroundScopeC2EPS1_NS2_7ScopeIdE (5 samples, 0.03%)</title><rect x="1176.8" y="693" width="0.4" height="15.0" fill="rgb(211,207,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (4 samples, 0.02%)</title><rect x="905.9" y="389" width="0.3" height="15.0" fill="rgb(207,144,51)" rx="2" ry="2" />
<text text-anchor="" x="908.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (21 samples, 0.12%)</title><rect x="453.9" y="341" width="1.4" height="15.0" fill="rgb(244,24,36)" rx="2" ry="2" />
<text text-anchor="" x="456.91" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9FieldType3AnyEv (8 samples, 0.05%)</title><rect x="1114.4" y="309" width="0.6" height="15.0" fill="rgb(228,203,12)" rx="2" ry="2" />
<text text-anchor="" x="1117.44" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="549" width="0.1" height="15.0" fill="rgb(230,144,15)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="754.2" y="357" width="0.3" height="15.0" fill="rgb(205,31,9)" rx="2" ry="2" />
<text text-anchor="" x="757.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (112 samples, 0.65%)</title><rect x="1181.5" y="725" width="7.7" height="15.0" fill="rgb(245,200,10)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13DoubleToInt32Ed (149 samples, 0.86%)</title><rect x="471.4" y="325" width="10.2" height="15.0" fill="rgb(243,180,21)" rx="2" ry="2" />
<text text-anchor="" x="474.40" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (1,032 samples, 5.97%)</title><rect x="1051.0" y="357" width="70.5" height="15.0" fill="rgb(230,92,13)" rx="2" ry="2" />
<text text-anchor="" x="1053.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="613" width="0.2" height="15.0" fill="rgb(244,201,29)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (4 samples, 0.02%)</title><rect x="826.2" y="293" width="0.3" height="15.0" fill="rgb(252,92,53)" rx="2" ry="2" />
<text text-anchor="" x="829.22" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (14 samples, 0.08%)</title><rect x="790.1" y="341" width="0.9" height="15.0" fill="rgb(239,191,53)" rx="2" ry="2" />
<text text-anchor="" x="793.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="725" width="0.3" height="15.0" fill="rgb(229,217,7)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="277" width="0.2" height="15.0" fill="rgb(227,26,32)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="752.4" y="293" width="0.2" height="15.0" fill="rgb(220,4,21)" rx="2" ry="2" />
<text text-anchor="" x="755.44" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl21ComputeScheduledGraphEv (2 samples, 0.01%)</title><rect x="1133.2" y="325" width="0.1" height="15.0" fill="rgb(246,1,9)" rx="2" ry="2" />
<text text-anchor="" x="1136.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (7 samples, 0.04%)</title><rect x="822.3" y="341" width="0.5" height="15.0" fill="rgb(229,75,6)" rx="2" ry="2" />
<text text-anchor="" x="825.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.2" y="645" width="0.2" height="15.0" fill="rgb(214,180,22)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="572.3" y="165" width="0.3" height="15.0" fill="rgb(221,9,14)" rx="2" ry="2" />
<text text-anchor="" x="575.30" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (19 samples, 0.11%)</title><rect x="571.3" y="277" width="1.3" height="15.0" fill="rgb(236,55,36)" rx="2" ry="2" />
<text text-anchor="" x="574.34" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="757" width="0.3" height="15.0" fill="rgb(252,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="197" width="0.1" height="15.0" fill="rgb(235,115,19)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15TransitionArray13SearchDetailsEiNS0_12PropertyKindENS0_18PropertyAttributesEPi (10 samples, 0.06%)</title><rect x="1119.0" y="309" width="0.6" height="15.0" fill="rgb(240,83,15)" rx="2" ry="2" />
<text text-anchor="" x="1121.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal13PropertyArray3setEiPNS0_6ObjectE (5 samples, 0.03%)</title><rect x="981.6" y="341" width="0.3" height="15.0" fill="rgb(243,207,1)" rx="2" ry="2" />
<text text-anchor="" x="984.57" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="540.1" y="277" width="0.2" height="15.0" fill="rgb(237,44,25)" rx="2" ry="2" />
<text text-anchor="" x="543.12" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.02%)</title><rect x="826.2" y="277" width="0.2" height="15.0" fill="rgb(246,164,23)" rx="2" ry="2" />
<text text-anchor="" x="829.22" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (92 samples, 0.53%)</title><rect x="1039.0" y="293" width="6.2" height="15.0" fill="rgb(214,178,22)" rx="2" ry="2" />
<text text-anchor="" x="1041.96" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="389" width="0.3" height="15.0" fill="rgb(237,47,5)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="629" width="0.2" height="15.0" fill="rgb(227,45,38)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="629" width="0.3" height="15.0" fill="rgb(235,117,1)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="581" width="0.3" height="15.0" fill="rgb(212,196,43)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="687.5" y="325" width="0.5" height="15.0" fill="rgb(251,78,29)" rx="2" ry="2" />
<text text-anchor="" x="690.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal23OptimizedCompilationJob10PrepareJobEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="811.3" y="325" width="0.2" height="15.0" fill="rgb(209,71,24)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="383.2" y="277" width="0.4" height="15.0" fill="rgb(226,32,4)" rx="2" ry="2" />
<text text-anchor="" x="386.20" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory26AllocateRawWithImmortalMapEiNS0_13PretenureFlagEPNS0_3MapENS0_19AllocationAlignmentE.constprop.141 (4 samples, 0.02%)</title><rect x="1146.6" y="245" width="0.3" height="15.0" fill="rgb(220,30,7)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="325" width="0.1" height="15.0" fill="rgb(231,192,15)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (15 samples, 0.09%)</title><rect x="521.0" y="341" width="1.0" height="15.0" fill="rgb(234,186,36)" rx="2" ry="2" />
<text text-anchor="" x="523.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (3 samples, 0.02%)</title><rect x="1179.7" y="661" width="0.2" height="15.0" fill="rgb(205,223,37)" rx="2" ry="2" />
<text text-anchor="" x="1182.68" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal10CancelableD2Ev (3 samples, 0.02%)</title><rect x="1150.9" y="709" width="0.2" height="15.0" fill="rgb(245,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1153.86" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="453.6" y="197" width="0.1" height="15.0" fill="rgb(226,102,43)" rx="2" ry="2" />
<text text-anchor="" x="456.57" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (574 samples, 3.32%)</title><rect x="1150.5" y="757" width="39.2" height="15.0" fill="rgb(211,173,47)" rx="2" ry="2" />
<text text-anchor="" x="1153.51" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex_wait.constprop.3 (9 samples, 0.05%)</title><rect x="1148.3" y="741" width="0.6" height="15.0" fill="rgb(247,149,43)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11StoreBuffer4TaskD0Ev (8 samples, 0.05%)</title><rect x="1150.8" y="725" width="0.5" height="15.0" fill="rgb(251,104,53)" rx="2" ry="2" />
<text text-anchor="" x="1153.79" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="117" width="0.3" height="15.0" fill="rgb(210,186,53)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (11 samples, 0.06%)</title><rect x="811.7" y="373" width="0.8" height="15.0" fill="rgb(208,96,24)" rx="2" ry="2" />
<text text-anchor="" x="814.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal16LargeObjectSpace8FindPageEm (4 samples, 0.02%)</title><rect x="825.0" y="293" width="0.3" height="15.0" fill="rgb(230,199,47)" rx="2" ry="2" />
<text text-anchor="" x="827.99" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="752.5" y="197" width="0.1" height="15.0" fill="rgb(220,10,52)" rx="2" ry="2" />
<text text-anchor="" x="755.51" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl11CreateGraphEv (2 samples, 0.01%)</title><rect x="811.3" y="293" width="0.2" height="15.0" fill="rgb(229,224,19)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="814.7" y="261" width="0.5" height="15.0" fill="rgb(252,14,29)" rx="2" ry="2" />
<text text-anchor="" x="817.68" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger12ScavengePageEPNS0_11MemoryChunkE (4 samples, 0.02%)</title><rect x="1177.8" y="677" width="0.3" height="15.0" fill="rgb(231,182,35)" rx="2" ry="2" />
<text text-anchor="" x="1180.84" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="37.8" y="405" width="0.3" height="15.0" fill="rgb(227,55,35)" rx="2" ry="2" />
<text text-anchor="" x="40.80" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="261" width="0.1" height="15.0" fill="rgb(240,136,34)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1177.2" y="677" width="0.2" height="15.0" fill="rgb(230,5,39)" rx="2" ry="2" />
<text text-anchor="" x="1180.23" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (165 samples, 0.96%)</title><rect x="500.0" y="325" width="11.3" height="15.0" fill="rgb(226,30,5)" rx="2" ry="2" />
<text text-anchor="" x="503.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (102 samples, 0.59%)</title><rect x="1182.2" y="629" width="7.0" height="15.0" fill="rgb(218,202,18)" rx="2" ry="2" />
<text text-anchor="" x="1185.21" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="181" width="0.2" height="15.0" fill="rgb(246,103,53)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (50 samples, 0.29%)</title><rect x="428.4" y="325" width="3.4" height="15.0" fill="rgb(208,103,33)" rx="2" ry="2" />
<text text-anchor="" x="431.36" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal30AstRawStringInternalizationKey8AsHandleEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="1146.6" y="293" width="0.3" height="15.0" fill="rgb(252,23,18)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (15 samples, 0.09%)</title><rect x="914.4" y="373" width="1.0" height="15.0" fill="rgb(249,124,12)" rx="2" ry="2" />
<text text-anchor="" x="917.42" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,607 samples, 96.14%)</title><rect x="12.5" y="581" width="1134.5" height="15.0" fill="rgb(241,227,24)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="822.1" y="309" width="0.2" height="15.0" fill="rgb(212,193,54)" rx="2" ry="2" />
<text text-anchor="" x="825.13" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (16,611 samples, 96.17%)</title><rect x="12.5" y="693" width="1134.7" height="15.0" fill="rgb(227,152,18)" rx="2" ry="2" />
<text text-anchor="" x="15.46" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4node15LoadEnvironmentEPNS_11EnvironmentE</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="167.5" y="341" width="0.6" height="15.0" fill="rgb(236,195,8)" rx="2" ry="2" />
<text text-anchor="" x="170.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (3 samples, 0.02%)</title><rect x="400.9" y="261" width="0.2" height="15.0" fill="rgb(236,19,9)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (939 samples, 5.44%)</title><rect x="575.5" y="357" width="64.2" height="15.0" fill="rgb(209,171,46)" rx="2" ry="2" />
<text text-anchor="" x="578.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="497.8" y="261" width="0.2" height="15.0" fill="rgb(211,92,43)" rx="2" ry="2" />
<text text-anchor="" x="500.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="471.3" y="181" width="0.1" height="15.0" fill="rgb(214,119,50)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1159.8" y="597" width="0.1" height="15.0" fill="rgb(233,217,17)" rx="2" ry="2" />
<text text-anchor="" x="1162.80" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (58 samples, 0.34%)</title><rect x="962.0" y="357" width="3.9" height="15.0" fill="rgb(223,108,17)" rx="2" ry="2" />
<text text-anchor="" x="964.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal9Scavenger12ScavengePageEPNS0_11MemoryChunkE (2 samples, 0.01%)</title><rect x="825.7" y="261" width="0.1" height="15.0" fill="rgb(241,155,40)" rx="2" ry="2" />
<text text-anchor="" x="828.68" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="569.0" y="197" width="0.2" height="15.0" fill="rgb(228,80,6)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (117 samples, 0.68%)</title><rect x="1134.5" y="405" width="8.0" height="15.0" fill="rgb(253,45,9)" rx="2" ry="2" />
<text text-anchor="" x="1137.46" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="597" width="0.2" height="15.0" fill="rgb(207,38,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (16,221 samples, 93.91%)</title><rect x="38.1" y="421" width="1108.2" height="15.0" fill="rgb(239,4,45)" rx="2" ry="2" />
<text text-anchor="" x="41.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZThn40_N2v88internal14CancelableTask3RunEv (4 samples, 0.02%)</title><rect x="1189.4" y="741" width="0.3" height="15.0" fill="rgb(251,111,49)" rx="2" ry="2" />
<text text-anchor="" x="1192.39" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (486 samples, 2.81%)</title><rect x="774.5" y="373" width="33.2" height="15.0" fill="rgb(248,124,39)" rx="2" ry="2" />
<text text-anchor="" x="777.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.06%)</title><rect x="814.5" y="309" width="0.7" height="15.0" fill="rgb(231,169,20)" rx="2" ry="2" />
<text text-anchor="" x="817.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="213" width="0.1" height="15.0" fill="rgb(238,6,36)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="608.3" y="245" width="0.1" height="15.0" fill="rgb(230,76,3)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (17 samples, 0.10%)</title><rect x="574.1" y="357" width="1.2" height="15.0" fill="rgb(219,166,49)" rx="2" ry="2" />
<text text-anchor="" x="577.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="308.8" y="261" width="0.5" height="15.0" fill="rgb(226,172,50)" rx="2" ry="2" />
<text text-anchor="" x="311.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="308.9" y="245" width="0.4" height="15.0" fill="rgb(213,107,15)" rx="2" ry="2" />
<text text-anchor="" x="311.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="677" width="0.6" height="15.0" fill="rgb(249,154,31)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="325" width="0.1" height="15.0" fill="rgb(241,148,39)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1147.0" y="645" width="0.2" height="15.0" fill="rgb(230,97,17)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1086.3" y="181" width="0.1" height="15.0" fill="rgb(239,35,14)" rx="2" ry="2" />
<text text-anchor="" x="1089.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (29 samples, 0.17%)</title><rect x="498.0" y="325" width="2.0" height="15.0" fill="rgb(219,146,45)" rx="2" ry="2" />
<text text-anchor="" x="501.04" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14ScavengingTask13RunInParallelEv (7 samples, 0.04%)</title><rect x="1177.7" y="693" width="0.5" height="15.0" fill="rgb(252,138,12)" rx="2" ry="2" />
<text text-anchor="" x="1180.70" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="629" width="0.6" height="15.0" fill="rgb(249,55,24)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1146.6" y="37" width="0.3" height="15.0" fill="rgb(243,95,34)" rx="2" ry="2" />
<text text-anchor="" x="1149.62" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="11.4" y="725" width="1.0" height="15.0" fill="rgb(208,193,33)" rx="2" ry="2" />
<text text-anchor="" x="14.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (9 samples, 0.05%)</title><rect x="1148.3" y="709" width="0.6" height="15.0" fill="rgb(241,58,44)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="883.6" y="357" width="0.1" height="15.0" fill="rgb(250,171,25)" rx="2" ry="2" />
<text text-anchor="" x="886.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="581" width="0.2" height="15.0" fill="rgb(240,167,47)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (7,390 samples, 42.78%)</title><rect x="309.3" y="389" width="504.8" height="15.0" fill="rgb(205,44,25)" rx="2" ry="2" />
<text text-anchor="" x="312.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-15233.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="826.3" y="245" width="0.1" height="15.0" fill="rgb(237,60,38)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="1148.4" y="533" width="0.5" height="15.0" fill="rgb(224,52,31)" rx="2" ry="2" />
<text text-anchor="" x="1151.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal4Heap31MonotonicallyIncreasingTimeInMsEv (2 samples, 0.01%)</title><rect x="1177.0" y="677" width="0.1" height="15.0" fill="rgb(240,171,12)" rx="2" ry="2" />
<text text-anchor="" x="1179.95" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEv (4 samples, 0.02%)</title><rect x="1179.6" y="709" width="0.3" height="15.0" fill="rgb(223,141,17)" rx="2" ry="2" />
<text text-anchor="" x="1182.62" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (734 samples, 4.25%)</title><rect x="403.6" y="341" width="50.1" height="15.0" fill="rgb(247,128,29)" rx="2" ry="2" />
<text text-anchor="" x="406.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator5StartILb0EEEvv (10 samples, 0.06%)</title><rect x="823.9" y="405" width="0.7" height="15.0" fill="rgb(237,14,22)" rx="2" ry="2" />
<text text-anchor="" x="826.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.05%)</title><rect x="383.1" y="309" width="0.5" height="15.0" fill="rgb(229,34,10)" rx="2" ry="2" />
<text text-anchor="" x="386.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler19LinearScanAllocator17AllocateRegistersEv (2 samples, 0.01%)</title><rect x="1133.0" y="293" width="0.2" height="15.0" fill="rgb(238,178,26)" rx="2" ry="2" />
<text text-anchor="" x="1136.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="309" width="0.1" height="15.0" fill="rgb(247,212,32)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="815.0" y="181" width="0.2" height="15.0" fill="rgb(228,86,17)" rx="2" ry="2" />
<text text-anchor="" x="818.02" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="864.7" y="341" width="0.1" height="15.0" fill="rgb(220,166,12)" rx="2" ry="2" />
<text text-anchor="" x="867.69" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="789.7" y="261" width="0.1" height="15.0" fill="rgb(244,170,2)" rx="2" ry="2" />
<text text-anchor="" x="792.68" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal6Object12BooleanValueEv (6 samples, 0.03%)</title><rect x="455.3" y="341" width="0.5" height="15.0" fill="rgb(224,152,36)" rx="2" ry="2" />
<text text-anchor="" x="458.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="687.5" y="261" width="0.5" height="15.0" fill="rgb(216,33,17)" rx="2" ry="2" />
<text text-anchor="" x="690.55" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1180.8" y="661" width="0.5" height="15.0" fill="rgb(235,80,26)" rx="2" ry="2" />
<text text-anchor="" x="1183.85" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="961.8" y="245" width="0.2" height="15.0" fill="rgb(244,190,33)" rx="2" ry="2" />
<text text-anchor="" x="964.83" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="980.9" y="245" width="0.1" height="15.0" fill="rgb(247,77,11)" rx="2" ry="2" />
<text text-anchor="" x="983.89" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="937.6" y="357" width="0.1" height="15.0" fill="rgb(252,209,51)" rx="2" ry="2" />
<text text-anchor="" x="940.58" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (117 samples, 0.68%)</title><rect x="511.3" y="357" width="8.0" height="15.0" fill="rgb(249,3,53)" rx="2" ry="2" />
<text text-anchor="" x="514.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal8compiler12PipelineImpl18SelectInstructionsEPNS1_7LinkageE (2 samples, 0.01%)</title><rect x="811.5" y="293" width="0.1" height="15.0" fill="rgb(248,39,37)" rx="2" ry="2" />
<text text-anchor="" x="814.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (2 samples, 0.01%)</title><rect x="1178.2" y="693" width="0.2" height="15.0" fill="rgb(244,76,54)" rx="2" ry="2" />
<text text-anchor="" x="1181.25" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-15233.map] (2 samples, 0.01%)</title><rect x="400.9" y="229" width="0.1" height="15.0" fill="rgb(216,20,48)" rx="2" ry="2" />
<text text-anchor="" x="403.90" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.03%)</title><rect x="1149.0" y="725" width="0.4" height="15.0" fill="rgb(219,62,50)" rx="2" ry="2" />
<text text-anchor="" x="1152.01" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1180.4" y="661" width="0.2" height="15.0" fill="rgb(205,157,54)" rx="2" ry="2" />
<text text-anchor="" x="1183.44" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment