Skip to content

Instantly share code, notes, and snippets.

@zpodlovics
Created August 30, 2018 22:35
Show Gist options
  • Save zpodlovics/266d35c2064af1ecad1733ecb21a2d56 to your computer and use it in GitHub Desktop.
Save zpodlovics/266d35c2064af1ecad1733ecb21a2d56 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="886" onload="init(evt)" viewBox="0 0 1200 886" 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="886.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="869" 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="869" 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="1180.6" y="661" width="0.2" height="15.0" fill="rgb(235,25,28)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (19 samples, 0.11%)</title><rect x="875.2" y="437" width="1.3" height="15.0" fill="rgb(254,5,50)" rx="2" ry="2" />
<text text-anchor="" x="878.20" 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]] (79 samples, 0.46%)</title><rect x="1183.8" y="613" width="5.4" height="15.0" fill="rgb(223,30,6)" rx="2" ry="2" />
<text text-anchor="" x="1186.77" 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>vfprintf (6 samples, 0.03%)</title><rect x="10.5" y="773" width="0.4" height="15.0" fill="rgb(240,106,5)" rx="2" ry="2" />
<text text-anchor="" x="13.48" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="408.7" y="373" width="0.3" height="15.0" fill="rgb(235,123,2)" rx="2" ry="2" />
<text text-anchor="" x="411.72" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (6 samples, 0.03%)</title><rect x="482.0" y="389" width="0.4" height="15.0" fill="rgb(250,193,18)" rx="2" ry="2" />
<text text-anchor="" x="484.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>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (15 samples, 0.09%)</title><rect x="825.2" y="453" width="1.1" height="15.0" fill="rgb(221,103,32)" rx="2" ry="2" />
<text text-anchor="" x="828.23" 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>_ZN2v88internal4Heap8ScavengeEv (9 samples, 0.05%)</title><rect x="1047.8" y="277" width="0.6" height="15.0" fill="rgb(249,90,7)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (4,398 samples, 25.51%)</title><rect x="832.5" y="453" width="301.0" height="15.0" fill="rgb(227,31,39)" rx="2" ry="2" />
<text text-anchor="" x="835.49" y="463.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]] (4 samples, 0.02%)</title><rect x="1189.7" y="757" width="0.3" height="15.0" fill="rgb(243,140,16)" 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="1133.4" y="421" width="0.1" height="15.0" fill="rgb(207,208,27)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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="448.4" y="357" width="0.1" height="15.0" fill="rgb(254,105,23)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="409.1" y="389" width="0.2" height="15.0" fill="rgb(219,28,8)" rx="2" ry="2" />
<text text-anchor="" x="412.06" 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>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (25 samples, 0.15%)</title><rect x="823.2" y="437" width="1.7" height="15.0" fill="rgb(213,134,27)" rx="2" ry="2" />
<text text-anchor="" x="826.18" 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>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (18 samples, 0.10%)</title><rect x="909.4" y="421" width="1.2" height="15.0" fill="rgb(241,124,16)" rx="2" ry="2" />
<text text-anchor="" x="912.36" 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>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (4 samples, 0.02%)</title><rect x="1148.2" y="373" width="0.3" height="15.0" fill="rgb(239,174,52)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="571.9" y="325" width="0.1" height="15.0" fill="rgb(246,32,12)" rx="2" ry="2" />
<text text-anchor="" x="574.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]] (3 samples, 0.02%)</title><rect x="1179.1" y="693" width="0.2" height="15.0" fill="rgb(244,150,17)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (19 samples, 0.11%)</title><rect x="1178.4" y="757" width="1.3" height="15.0" fill="rgb(218,17,46)" rx="2" ry="2" />
<text text-anchor="" x="1181.36" 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="1181.2" y="693" width="0.2" height="15.0" fill="rgb(215,49,38)" rx="2" ry="2" />
<text text-anchor="" x="1184.24" 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>pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.04%)</title><rect x="828.7" y="325" width="0.5" height="15.0" fill="rgb(219,136,40)" rx="2" ry="2" />
<text text-anchor="" x="831.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>_ZN2v88internal14LookupIterator14WriteDataValueENS0_6HandleINS0_6ObjectEEEb (4 samples, 0.02%)</title><rect x="642.2" y="357" width="0.3" height="15.0" fill="rgb(240,17,19)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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="721.0" y="325" width="0.2" height="15.0" fill="rgb(243,83,9)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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="1178.8" y="661" width="0.3" height="15.0" fill="rgb(236,29,17)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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>[perf-30995.map] (16,595 samples, 96.26%)</title><rect x="12.3" y="613" width="1135.9" height="15.0" fill="rgb(253,134,22)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (20 samples, 0.12%)</title><rect x="876.5" y="437" width="1.4" height="15.0" fill="rgb(250,157,37)" rx="2" ry="2" />
<text text-anchor="" x="879.50" 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]] (10 samples, 0.06%)</title><rect x="309.7" y="325" width="0.7" height="15.0" fill="rgb(223,13,38)" rx="2" ry="2" />
<text text-anchor="" x="312.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]] (48 samples, 0.28%)</title><rect x="1185.9" y="581" width="3.3" height="15.0" fill="rgb(251,213,2)" rx="2" ry="2" />
<text text-anchor="" x="1188.89" 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]] (2 samples, 0.01%)</title><rect x="641.0" y="309" width="0.1" height="15.0" fill="rgb(211,26,8)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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="428.0" y="245" width="0.2" height="15.0" fill="rgb(230,54,50)" rx="2" ry="2" />
<text text-anchor="" x="430.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]] (11 samples, 0.06%)</title><rect x="309.6" y="341" width="0.8" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" />
<text text-anchor="" x="312.60" 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="407.2" y="293" width="0.3" height="15.0" fill="rgb(236,117,10)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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]] (6 samples, 0.03%)</title><rect x="1188.8" y="549" width="0.4" height="15.0" fill="rgb(210,145,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.77" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="408.0" y="373" width="0.2" height="15.0" fill="rgb(220,128,19)" rx="2" ry="2" />
<text text-anchor="" x="410.97" 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]] (17 samples, 0.10%)</title><rect x="11.1" y="773" width="1.2" height="15.0" fill="rgb(253,2,43)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_18SharedFunctionInfoEEENS1_18ClearExceptionFlagE (5 samples, 0.03%)</title><rect x="1148.2" y="581" width="0.4" height="15.0" fill="rgb(235,156,46)" rx="2" ry="2" />
<text text-anchor="" x="1151.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>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (469 samples, 2.72%)</title><rect x="1089.8" y="389" width="32.1" height="15.0" fill="rgb(224,148,11)" rx="2" ry="2" />
<text text-anchor="" x="1092.79" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (15 samples, 0.09%)</title><rect x="650.3" y="405" width="1.1" height="15.0" fill="rgb(224,49,21)" rx="2" ry="2" />
<text text-anchor="" x="653.34" 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]] (5 samples, 0.03%)</title><rect x="1179.3" y="693" width="0.4" height="15.0" fill="rgb(254,45,1)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="197" width="0.2" height="15.0" fill="rgb(251,85,26)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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="799.3" y="213" width="0.1" height="15.0" fill="rgb(251,27,39)" rx="2" ry="2" />
<text text-anchor="" x="802.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>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (81 samples, 0.47%)</title><rect x="910.6" y="421" width="5.5" height="15.0" fill="rgb(231,150,0)" rx="2" ry="2" />
<text text-anchor="" x="913.59" 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]] (4 samples, 0.02%)</title><rect x="385.1" y="373" width="0.3" height="15.0" fill="rgb(222,138,40)" rx="2" ry="2" />
<text text-anchor="" x="388.10" 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>_ZN2v88internal8compiler12PipelineImpl3RunINS1_16LoopPeelingPhaseEEEvv (3 samples, 0.02%)</title><rect x="1179.8" y="693" width="0.2" height="15.0" fill="rgb(236,215,31)" rx="2" ry="2" />
<text text-anchor="" x="1182.80" 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="407.2" y="373" width="0.3" height="15.0" fill="rgb(241,25,27)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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="868.8" y="389" width="0.5" height="15.0" fill="rgb(219,206,48)" rx="2" ry="2" />
<text text-anchor="" x="871.84" 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-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="277" width="0.2" height="15.0" fill="rgb(243,72,18)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (324 samples, 1.88%)</title><rect x="510.1" y="373" width="22.2" height="15.0" fill="rgb(206,13,20)" rx="2" ry="2" />
<text text-anchor="" x="513.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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="721.0" y="245" width="0.2" height="15.0" fill="rgb(226,100,51)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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>pthread_cond_signal@@GLIBC_2.3.2 (32 samples, 0.19%)</title><rect x="645.1" y="389" width="2.2" height="15.0" fill="rgb(209,203,39)" rx="2" ry="2" />
<text text-anchor="" x="648.14" 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="828.9" y="149" width="0.3" height="15.0" fill="rgb(210,189,23)" rx="2" ry="2" />
<text text-anchor="" x="831.93" 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="1142.5" y="389" width="0.1" height="15.0" fill="rgb(218,79,5)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (75 samples, 0.44%)</title><rect x="1016.5" y="373" width="5.1" height="15.0" fill="rgb(207,30,52)" rx="2" ry="2" />
<text text-anchor="" x="1019.48" 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]] (4 samples, 0.02%)</title><rect x="642.2" y="245" width="0.3" height="15.0" fill="rgb(235,54,44)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal14LookupIterator12NextInternalILb0EEEvPNS0_3MapEPNS0_10JSReceiverE (86 samples, 0.50%)</title><rect x="869.3" y="437" width="5.9" height="15.0" fill="rgb(214,85,16)" rx="2" ry="2" />
<text text-anchor="" x="872.31" 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]] (17 samples, 0.10%)</title><rect x="11.1" y="757" width="1.2" height="15.0" fill="rgb(250,72,0)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (78 samples, 0.45%)</title><rect x="827.1" y="405" width="5.4" height="15.0" fill="rgb(230,3,32)" rx="2" ry="2" />
<text text-anchor="" x="830.15" 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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="325" width="0.2" height="15.0" fill="rgb(227,39,44)" rx="2" ry="2" />
<text text-anchor="" x="410.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="642.2" y="293" width="0.3" height="15.0" fill="rgb(212,228,42)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>pthread_cond_wait@@GLIBC_2.3.2 (5 samples, 0.03%)</title><rect x="1179.3" y="741" width="0.4" height="15.0" fill="rgb(223,78,32)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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>_ZNK2v88internal3Map20UnusedPropertyFieldsEv (13 samples, 0.08%)</title><rect x="1050.2" y="373" width="0.8" height="15.0" fill="rgb(242,192,52)" rx="2" ry="2" />
<text text-anchor="" x="1053.16" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (266 samples, 1.54%)</title><rect x="430.3" y="373" width="18.2" height="15.0" fill="rgb(221,228,21)" rx="2" ry="2" />
<text text-anchor="" x="433.28" 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 (14 samples, 0.08%)</title><rect x="1053.1" y="389" width="1.0" height="15.0" fill="rgb(245,3,40)" rx="2" ry="2" />
<text text-anchor="" x="1056.10" 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="1105.3" y="309" width="0.2" height="15.0" fill="rgb(213,217,15)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (121 samples, 0.70%)</title><rect x="1125.2" y="437" width="8.3" height="15.0" fill="rgb(223,180,8)" rx="2" ry="2" />
<text text-anchor="" x="1128.25" 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]] (5 samples, 0.03%)</title><rect x="869.0" y="309" width="0.3" height="15.0" fill="rgb(223,65,41)" rx="2" ry="2" />
<text text-anchor="" x="871.97" 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="1133.4" y="325" width="0.1" height="15.0" fill="rgb(225,144,25)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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>_ZN2v88internal11StoreBuffer29MoveAllEntriesToRememberedSetEv (7 samples, 0.04%)</title><rect x="827.4" y="373" width="0.5" height="15.0" fill="rgb(226,33,16)" rx="2" ry="2" />
<text text-anchor="" x="830.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>pthread_cond_broadcast@@GLIBC_2.3.2 (3 samples, 0.02%)</title><rect x="1179.1" y="741" width="0.2" height="15.0" fill="rgb(222,147,53)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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="448.4" y="277" width="0.1" height="15.0" fill="rgb(228,90,6)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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>_ZN2v88internal13DoubleToInt32Ed (41 samples, 0.24%)</title><rect x="723.0" y="405" width="2.8" height="15.0" fill="rgb(225,229,21)" rx="2" ry="2" />
<text text-anchor="" x="726.04" 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>_IO_vsnprintf (8 samples, 0.05%)</title><rect x="10.3" y="789" width="0.6" height="15.0" fill="rgb(251,16,15)" rx="2" ry="2" />
<text text-anchor="" x="13.34" 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>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (3,274 samples, 18.99%)</title><rect x="901.1" y="437" width="224.1" height="15.0" fill="rgb(246,26,23)" rx="2" ry="2" />
<text text-anchor="" x="904.07" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88internal8JSObject33Def..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeSetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (203 samples, 1.18%)</title><rect x="628.3" y="389" width="13.9" height="15.0" fill="rgb(225,119,6)" rx="2" ry="2" />
<text text-anchor="" x="631.30" 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>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (19 samples, 0.11%)</title><rect x="823.6" y="405" width="1.3" height="15.0" fill="rgb(233,144,46)" rx="2" ry="2" />
<text text-anchor="" x="826.59" 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="647.2" y="165" width="0.1" height="15.0" fill="rgb(211,209,12)" rx="2" ry="2" />
<text text-anchor="" x="650.20" 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>_ZN2v88internal6Object12BooleanValueEv (12 samples, 0.07%)</title><rect x="612.0" y="373" width="0.8" height="15.0" fill="rgb(253,195,3)" rx="2" ry="2" />
<text text-anchor="" x="615.01" 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]] (30 samples, 0.17%)</title><rect x="645.3" y="373" width="2.0" height="15.0" fill="rgb(226,213,12)" rx="2" ry="2" />
<text text-anchor="" x="648.28" 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>_ZN2v88internal33FixStaleLeftTrimmedHandlesVisitor17VisitRootPointersENS0_4RootEPKcPPNS0_6ObjectES7_ (2 samples, 0.01%)</title><rect x="829.5" y="341" width="0.1" height="15.0" fill="rgb(250,191,16)" rx="2" ry="2" />
<text text-anchor="" x="832.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>_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_10JSFunctionEEENS1_18ClearExceptionFlagE (5 samples, 0.03%)</title><rect x="1148.2" y="597" width="0.4" height="15.0" fill="rgb(254,64,12)" rx="2" ry="2" />
<text text-anchor="" x="1151.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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (448 samples, 2.60%)</title><rect x="690.5" y="389" width="30.7" height="15.0" fill="rgb(237,207,32)" rx="2" ry="2" />
<text text-anchor="" x="693.52" 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>_ZN2v88internal6Object12BooleanValueEv (24 samples, 0.14%)</title><rect x="479.6" y="373" width="1.6" height="15.0" fill="rgb(208,28,23)" rx="2" ry="2" />
<text text-anchor="" x="482.56" 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>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="644.5" y="405" width="0.4" height="15.0" fill="rgb(251,125,18)" rx="2" ry="2" />
<text text-anchor="" x="647.53" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (24 samples, 0.14%)</title><rect x="537.5" y="373" width="1.6" height="15.0" fill="rgb(216,101,34)" rx="2" ry="2" />
<text text-anchor="" x="540.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]] (2 samples, 0.01%)</title><rect x="448.4" y="325" width="0.1" height="15.0" fill="rgb(212,155,23)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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="10.0" y="789" width="0.3" height="15.0" fill="rgb(209,140,35)" 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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.6" y="661" width="0.2" height="15.0" fill="rgb(214,212,35)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (49 samples, 0.28%)</title><rect x="623.9" y="357" width="3.4" height="15.0" fill="rgb(212,36,44)" rx="2" ry="2" />
<text text-anchor="" x="626.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1178.8" y="645" width="0.3" height="15.0" fill="rgb(242,228,29)" rx="2" ry="2" />
<text text-anchor="" x="1181.84" 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>_ZN2v88internal6Object12BooleanValueEv (15 samples, 0.09%)</title><rect x="814.1" y="389" width="1.0" height="15.0" fill="rgb(238,32,26)" rx="2" ry="2" />
<text text-anchor="" x="817.08" 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>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (3 samples, 0.02%)</title><rect x="816.5" y="357" width="0.2" height="15.0" fill="rgb(208,143,38)" rx="2" ry="2" />
<text text-anchor="" x="819.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]] (2 samples, 0.01%)</title><rect x="1142.5" y="421" width="0.1" height="15.0" fill="rgb(236,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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]] (4 samples, 0.02%)</title><rect x="1148.6" y="677" width="0.3" height="15.0" fill="rgb(227,162,23)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (15 samples, 0.09%)</title><rect x="919.2" y="421" width="1.0" height="15.0" fill="rgb(231,18,9)" rx="2" ry="2" />
<text text-anchor="" x="922.21" 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]] (86 samples, 0.50%)</title><rect x="1183.3" y="661" width="5.9" height="15.0" fill="rgb(242,143,17)" rx="2" ry="2" />
<text text-anchor="" x="1186.29" 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="869.2" y="293" width="0.1" height="15.0" fill="rgb(252,32,23)" rx="2" ry="2" />
<text text-anchor="" x="872.18" 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]] (12 samples, 0.07%)</title><rect x="157.4" y="421" width="0.8" height="15.0" fill="rgb(233,170,30)" rx="2" ry="2" />
<text text-anchor="" x="160.37" 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]] (4 samples, 0.02%)</title><rect x="1189.7" y="805" width="0.3" height="15.0" fill="rgb(249,221,35)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="815.5" font-size="12" font-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="1105.3" y="373" width="0.2" height="15.0" fill="rgb(239,84,34)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (83 samples, 0.48%)</title><rect x="826.8" y="421" width="5.7" height="15.0" fill="rgb(234,98,5)" rx="2" ry="2" />
<text text-anchor="" x="829.81" 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="1180.6" y="677" width="0.2" height="15.0" fill="rgb(221,221,15)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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 (46 samples, 0.27%)</title><rect x="1044.6" y="309" width="3.2" height="15.0" fill="rgb(252,1,45)" rx="2" ry="2" />
<text text-anchor="" x="1047.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]] (4 samples, 0.02%)</title><rect x="427.9" y="341" width="0.3" height="15.0" fill="rgb(232,142,35)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (80 samples, 0.46%)</title><rect x="1043.2" y="325" width="5.5" height="15.0" fill="rgb(222,109,37)" rx="2" ry="2" />
<text text-anchor="" x="1046.18" 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="406.8" y="309" width="0.3" height="15.0" fill="rgb(236,105,22)" rx="2" ry="2" />
<text text-anchor="" x="409.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>_ZN2v88internal19Runtime_CompileLazyEiPPNS0_6ObjectEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="1148.2" y="613" width="0.4" height="15.0" fill="rgb(220,211,49)" rx="2" ry="2" />
<text text-anchor="" x="1151.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>[[kernel.kallsyms]] (28 samples, 0.16%)</title><rect x="645.4" y="309" width="1.9" height="15.0" fill="rgb(233,60,8)" rx="2" ry="2" />
<text text-anchor="" x="648.42" 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="611.6" y="309" width="0.1" height="15.0" fill="rgb(210,59,52)" rx="2" ry="2" />
<text text-anchor="" x="614.60" 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>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (4 samples, 0.02%)</title><rect x="818.5" y="421" width="0.2" height="15.0" fill="rgb(251,164,1)" rx="2" ry="2" />
<text text-anchor="" x="821.46" 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>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (4 samples, 0.02%)</title><rect x="1148.2" y="293" width="0.3" height="15.0" fill="rgb(210,138,11)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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 (790 samples, 4.58%)</title><rect x="539.1" y="405" width="54.1" height="15.0" fill="rgb(208,175,13)" rx="2" ry="2" />
<text text-anchor="" x="542.11" y="415.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="385.2" y="309" width="0.2" height="15.0" fill="rgb(206,66,25)" rx="2" ry="2" />
<text text-anchor="" x="388.17" 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="1089.6" y="309" width="0.2" height="15.0" fill="rgb(233,134,1)" rx="2" ry="2" />
<text text-anchor="" x="1092.58" 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="1089.6" y="277" width="0.2" height="15.0" fill="rgb(234,197,40)" rx="2" ry="2" />
<text text-anchor="" x="1092.58" 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="642.2" y="277" width="0.3" height="15.0" fill="rgb(240,107,10)" rx="2" ry="2" />
<text text-anchor="" x="645.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="642.2" y="213" width="0.3" height="15.0" fill="rgb(220,169,2)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal9FieldType3AnyEv (9 samples, 0.05%)</title><rect x="1120.5" y="373" width="0.6" height="15.0" fill="rgb(250,146,13)" rx="2" ry="2" />
<text text-anchor="" x="1123.52" 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>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (3 samples, 0.02%)</title><rect x="816.5" y="373" width="0.2" height="15.0" fill="rgb(215,92,50)" rx="2" ry="2" />
<text text-anchor="" x="819.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]] (2 samples, 0.01%)</title><rect x="611.6" y="325" width="0.1" height="15.0" fill="rgb(237,98,6)" rx="2" ry="2" />
<text text-anchor="" x="614.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>_ZN2v88internal13DoubleToInt32Ed (263 samples, 1.53%)</title><rect x="572.0" y="373" width="18.0" height="15.0" fill="rgb(220,74,28)" rx="2" ry="2" />
<text text-anchor="" x="575.04" 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]] (4 samples, 0.02%)</title><rect x="1148.2" y="53" width="0.3" height="15.0" fill="rgb(245,171,19)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (3 samples, 0.02%)</title><rect x="507.4" y="341" width="0.2" height="15.0" fill="rgb(239,17,6)" rx="2" ry="2" />
<text text-anchor="" x="510.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="479.4" y="293" width="0.2" height="15.0" fill="rgb(209,203,20)" rx="2" ry="2" />
<text text-anchor="" x="482.43" 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="385.1" y="389" width="0.3" height="15.0" fill="rgb(214,170,22)" rx="2" ry="2" />
<text text-anchor="" x="388.10" 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]] (5 samples, 0.03%)</title><rect x="385.0" y="421" width="0.4" height="15.0" fill="rgb(250,76,1)" rx="2" ry="2" />
<text text-anchor="" x="388.03" 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]] (5 samples, 0.03%)</title><rect x="1179.3" y="725" width="0.4" height="15.0" fill="rgb(218,195,27)" rx="2" ry="2" />
<text text-anchor="" x="1182.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 (4 samples, 0.02%)</title><rect x="1189.7" y="821" width="0.3" height="15.0" fill="rgb(226,30,30)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.10%)</title><rect x="646.1" y="261" width="1.2" height="15.0" fill="rgb(223,150,12)" rx="2" ry="2" />
<text text-anchor="" x="649.10" 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>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (4 samples, 0.02%)</title><rect x="1148.2" y="485" width="0.3" height="15.0" fill="rgb(234,104,15)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (13 samples, 0.08%)</title><rect x="646.4" y="213" width="0.9" height="15.0" fill="rgb(251,145,37)" rx="2" ry="2" />
<text text-anchor="" x="649.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="661" width="0.3" height="15.0" fill="rgb(235,57,13)" 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>_ZN2v88internal23OptimizedCompilationJob11FinalizeJobEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="1133.5" y="405" width="0.2" height="15.0" fill="rgb(226,97,14)" rx="2" ry="2" />
<text text-anchor="" x="1136.53" 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>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="818.5" y="405" width="0.2" height="15.0" fill="rgb(247,54,9)" rx="2" ry="2" />
<text text-anchor="" x="821.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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="213" width="0.2" height="15.0" fill="rgb(233,182,33)" rx="2" ry="2" />
<text text-anchor="" x="410.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]] (5 samples, 0.03%)</title><rect x="1179.3" y="613" width="0.4" height="15.0" fill="rgb(248,212,35)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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 (6 samples, 0.03%)</title><rect x="409.7" y="389" width="0.5" height="15.0" fill="rgb(254,25,54)" rx="2" ry="2" />
<text text-anchor="" x="412.74" 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>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (5 samples, 0.03%)</title><rect x="1133.7" y="405" width="0.3" height="15.0" fill="rgb(253,210,15)" rx="2" ry="2" />
<text text-anchor="" x="1136.67" 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="39.0" y="341" width="0.2" height="15.0" fill="rgb(235,185,38)" rx="2" ry="2" />
<text text-anchor="" x="42.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>_ZN2v88internal19SpaceWithLinearArea20InlineAllocationStepEmmmm (2 samples, 0.01%)</title><rect x="826.8" y="373" width="0.1" height="15.0" fill="rgb(244,92,10)" rx="2" ry="2" />
<text text-anchor="" x="829.81" 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="721.0" y="277" width="0.2" height="15.0" fill="rgb(211,85,16)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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="1179.3" y="709" width="0.4" height="15.0" fill="rgb(244,154,12)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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="39.0" y="453" width="0.2" height="15.0" fill="rgb(222,167,45)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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>_ZN2v88internal13PropertyArray3setEiPNS0_6ObjectE (5 samples, 0.03%)</title><rect x="980.5" y="389" width="0.3" height="15.0" fill="rgb(245,199,42)" rx="2" ry="2" />
<text text-anchor="" x="983.48" 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="310.1" y="261" width="0.3" height="15.0" fill="rgb(227,112,19)" rx="2" ry="2" />
<text text-anchor="" x="313.08" 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="1148.2" y="149" width="0.3" height="15.0" fill="rgb(244,105,14)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (7 samples, 0.04%)</title><rect x="1149.6" y="725" width="0.5" height="15.0" fill="rgb(247,48,20)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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]] (29 samples, 0.17%)</title><rect x="645.3" y="357" width="2.0" height="15.0" fill="rgb(236,8,35)" rx="2" ry="2" />
<text text-anchor="" x="648.35" 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="818.5" y="373" width="0.2" height="15.0" fill="rgb(244,168,29)" rx="2" ry="2" />
<text text-anchor="" x="821.52" 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_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="815.1" y="421" width="0.6" height="15.0" fill="rgb(235,76,27)" rx="2" ry="2" />
<text text-anchor="" x="818.10" 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>_ZN2v88internal34Builtin_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (100 samples, 0.58%)</title><rect x="532.3" y="405" width="6.8" height="15.0" fill="rgb(228,27,19)" rx="2" ry="2" />
<text text-anchor="" x="535.27" 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>_ZN2v88internal16LargeObjectSpace8FindPageEm (212 samples, 1.23%)</title><rect x="1162.2" y="725" width="14.5" height="15.0" fill="rgb(210,98,29)" rx="2" ry="2" />
<text text-anchor="" x="1165.21" 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="642.2" y="229" width="0.3" height="15.0" fill="rgb(219,163,23)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal35Builtin_DataViewPrototypeGetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (459 samples, 2.66%)</title><rect x="595.9" y="405" width="31.4" height="15.0" fill="rgb(210,60,3)" rx="2" ry="2" />
<text text-anchor="" x="598.86" y="415.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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="469" width="0.3" height="15.0" fill="rgb(205,228,34)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" y="479.5" font-size="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 (6 samples, 0.03%)</title><rect x="827.5" y="341" width="0.4" height="15.0" fill="rgb(247,170,6)" rx="2" ry="2" />
<text text-anchor="" x="830.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]] (17 samples, 0.10%)</title><rect x="11.1" y="725" width="1.2" height="15.0" fill="rgb(216,139,38)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (218 samples, 1.26%)</title><rect x="627.3" y="405" width="14.9" height="15.0" fill="rgb(206,141,0)" rx="2" ry="2" />
<text text-anchor="" x="630.28" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (39 samples, 0.23%)</title><rect x="593.2" y="389" width="2.7" height="15.0" fill="rgb(240,62,31)" rx="2" ry="2" />
<text text-anchor="" x="596.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>_ZN2v88internal13PropertyArray3setEiPNS0_6ObjectE (53 samples, 0.31%)</title><rect x="1025.7" y="373" width="3.6" height="15.0" fill="rgb(210,108,51)" rx="2" ry="2" />
<text text-anchor="" x="1028.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]] (4 samples, 0.02%)</title><rect x="407.2" y="357" width="0.3" height="15.0" fill="rgb(221,54,10)" rx="2" ry="2" />
<text text-anchor="" x="410.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>_int_free (11 samples, 0.06%)</title><rect x="1148.9" y="789" width="0.7" height="15.0" fill="rgb(251,123,5)" rx="2" ry="2" />
<text text-anchor="" x="1151.86" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (7 samples, 0.04%)</title><rect x="816.7" y="421" width="0.5" height="15.0" fill="rgb(210,138,23)" rx="2" ry="2" />
<text text-anchor="" x="819.68" 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>_ZN2v88internal6Object12BooleanValueEv (11 samples, 0.06%)</title><rect x="536.7" y="373" width="0.8" height="15.0" fill="rgb(234,43,23)" rx="2" ry="2" />
<text text-anchor="" x="539.72" 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_disable_asynccancel (4 samples, 0.02%)</title><rect x="1181.4" y="773" width="0.3" height="15.0" fill="rgb(227,54,19)" rx="2" ry="2" />
<text text-anchor="" x="1184.44" 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>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="157.4" y="437" width="0.8" height="15.0" fill="rgb(208,35,41)" rx="2" ry="2" />
<text text-anchor="" x="160.37" 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]] (4 samples, 0.02%)</title><rect x="406.8" y="325" width="0.3" height="15.0" fill="rgb(236,189,0)" rx="2" ry="2" />
<text text-anchor="" x="409.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="1178.6" y="549" width="0.2" height="15.0" fill="rgb(222,222,49)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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]] (2 samples, 0.01%)</title><rect x="385.2" y="293" width="0.2" height="15.0" fill="rgb(219,153,12)" rx="2" ry="2" />
<text text-anchor="" x="388.24" 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="1148.6" y="693" width="0.3" height="15.0" fill="rgb(206,196,29)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (4 samples, 0.02%)</title><rect x="410.2" y="389" width="0.2" height="15.0" fill="rgb(216,136,27)" rx="2" ry="2" />
<text text-anchor="" x="413.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>_ZN4nodeL16BackgroundRunnerEPv (557 samples, 3.23%)</title><rect x="1151.5" y="789" width="38.1" height="15.0" fill="rgb(233,171,34)" rx="2" ry="2" />
<text text-anchor="" x="1154.46" y="799.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]] (5 samples, 0.03%)</title><rect x="1178.8" y="677" width="0.3" height="15.0" fill="rgb(233,145,44)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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>start_thread (559 samples, 3.24%)</title><rect x="1151.5" y="805" width="38.2" height="15.0" fill="rgb(240,126,36)" rx="2" ry="2" />
<text text-anchor="" x="1154.46" y="815.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>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (282 samples, 1.64%)</title><rect x="1029.3" y="373" width="19.4" height="15.0" fill="rgb(252,39,32)" rx="2" ry="2" />
<text text-anchor="" x="1032.35" 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>_ZN2v88internal8Compiler16CompileOptimizedENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeE (7 samples, 0.04%)</title><rect x="1133.5" y="437" width="0.5" height="15.0" fill="rgb(237,58,36)" rx="2" ry="2" />
<text text-anchor="" x="1136.53" 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>_ZN2v88internal6Object12BooleanValueEv (16 samples, 0.09%)</title><rect x="641.1" y="373" width="1.1" height="15.0" fill="rgb(230,99,37)" rx="2" ry="2" />
<text text-anchor="" x="644.10" 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>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (25 samples, 0.15%)</title><rect x="818.8" y="437" width="1.7" height="15.0" fill="rgb(222,78,5)" rx="2" ry="2" />
<text text-anchor="" x="821.80" 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]] (4 samples, 0.02%)</title><rect x="1148.2" y="117" width="0.3" height="15.0" fill="rgb(212,44,40)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="409.1" y="373" width="0.2" height="15.0" fill="rgb(213,183,48)" rx="2" ry="2" />
<text text-anchor="" x="412.06" 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-30995.map] (4 samples, 0.02%)</title><rect x="407.6" y="357" width="0.2" height="15.0" fill="rgb(209,69,40)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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]] (5 samples, 0.03%)</title><rect x="1178.8" y="693" width="0.3" height="15.0" fill="rgb(247,148,43)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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>_ZN2v88internal8NewSpace12AddFreshPageEv (2 samples, 0.01%)</title><rect x="1047.6" y="277" width="0.2" height="15.0" fill="rgb(252,23,37)" rx="2" ry="2" />
<text text-anchor="" x="1050.63" 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 (2 samples, 0.01%)</title><rect x="1180.4" y="757" width="0.2" height="15.0" fill="rgb(205,47,31)" rx="2" ry="2" />
<text text-anchor="" x="1183.42" 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="1133.4" y="357" width="0.1" height="15.0" fill="rgb(210,157,3)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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 (414 samples, 2.40%)</title><rect x="933.0" y="405" width="28.3" height="15.0" fill="rgb(216,95,52)" rx="2" ry="2" />
<text text-anchor="" x="935.97" y="415.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>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (19 samples, 0.11%)</title><rect x="1146.9" y="469" width="1.3" height="15.0" fill="rgb(217,137,23)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal11interpreter17BytecodeGenerator10VisitBlockEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="405" width="0.3" height="15.0" fill="rgb(218,110,6)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="571.9" y="341" width="0.1" height="15.0" fill="rgb(252,142,13)" rx="2" ry="2" />
<text text-anchor="" x="574.90" 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>_ZN2v88internal14LookupIterator5StartILb0EEEvv (7 samples, 0.04%)</title><rect x="826.3" y="453" width="0.4" height="15.0" fill="rgb(235,164,26)" rx="2" ry="2" />
<text text-anchor="" x="829.26" 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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="406.9" y="261" width="0.2" height="15.0" fill="rgb(251,41,25)" rx="2" ry="2" />
<text text-anchor="" x="409.94" 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 (75 samples, 0.44%)</title><rect x="799.4" y="389" width="5.2" height="15.0" fill="rgb(231,39,39)" rx="2" ry="2" />
<text text-anchor="" x="802.43" 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="818.6" y="293" width="0.1" height="15.0" fill="rgb(245,49,35)" rx="2" ry="2" />
<text text-anchor="" x="821.59" 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="642.2" y="341" width="0.3" height="15.0" fill="rgb(227,14,3)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal13DoubleToInt32Ed (472 samples, 2.74%)</title><rect x="767.1" y="389" width="32.3" height="15.0" fill="rgb(211,81,5)" rx="2" ry="2" />
<text text-anchor="" x="770.12" 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]] (7 samples, 0.04%)</title><rect x="1149.6" y="693" width="0.5" height="15.0" fill="rgb(219,79,6)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (211 samples, 1.22%)</title><rect x="612.8" y="373" width="14.5" height="15.0" fill="rgb(241,213,13)" rx="2" ry="2" />
<text text-anchor="" x="615.83" 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="1176.6" y="709" width="0.1" height="15.0" fill="rgb(232,172,32)" rx="2" ry="2" />
<text text-anchor="" x="1179.58" 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>_ZN2v88internal9Execution4CallEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_iPS6_ (16,600 samples, 96.29%)</title><rect x="12.3" y="709" width="1136.3" height="15.0" fill="rgb(245,166,52)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="719.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]] (7 samples, 0.04%)</title><rect x="1149.6" y="709" width="0.5" height="15.0" fill="rgb(237,18,19)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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="407.2" y="309" width="0.3" height="15.0" fill="rgb(245,30,1)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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="157.6" y="357" width="0.6" height="15.0" fill="rgb(227,51,39)" rx="2" ry="2" />
<text text-anchor="" x="160.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>[[kernel.kallsyms]] (15 samples, 0.09%)</title><rect x="646.3" y="229" width="1.0" height="15.0" fill="rgb(222,139,14)" rx="2" ry="2" />
<text text-anchor="" x="649.31" 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>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (8 samples, 0.05%)</title><rect x="1065.8" y="389" width="0.6" height="15.0" fill="rgb(206,218,25)" rx="2" ry="2" />
<text text-anchor="" x="1068.83" 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="1148.6" y="613" width="0.3" height="15.0" fill="rgb(247,15,19)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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]] (37 samples, 0.21%)</title><rect x="1186.6" y="565" width="2.6" height="15.0" fill="rgb(215,141,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.65" 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]] (23 samples, 0.13%)</title><rect x="645.8" y="293" width="1.5" height="15.0" fill="rgb(216,115,52)" rx="2" ry="2" />
<text text-anchor="" x="648.76" 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>_ZN2v88internal7Factory16CopyArrayAndGrowINS0_13PropertyArrayEEENS0_6HandleIT_EES6_iNS0_13PretenureFlagE (277 samples, 1.61%)</title><rect x="1029.7" y="357" width="19.0" height="15.0" fill="rgb(208,124,36)" rx="2" ry="2" />
<text text-anchor="" x="1032.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>_ZN2v88internal6Bitmap5ClearEv (8 samples, 0.05%)</title><rect x="831.0" y="341" width="0.5" height="15.0" fill="rgb(206,72,23)" rx="2" ry="2" />
<text text-anchor="" x="833.98" 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-30995.map] (6 samples, 0.03%)</title><rect x="407.5" y="373" width="0.4" height="15.0" fill="rgb(211,122,4)" rx="2" ry="2" />
<text text-anchor="" x="410.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="868.8" y="405" width="0.5" height="15.0" fill="rgb(226,139,43)" rx="2" ry="2" />
<text text-anchor="" x="871.84" 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]] (5 samples, 0.03%)</title><rect x="828.9" y="165" width="0.3" height="15.0" fill="rgb(249,16,43)" rx="2" ry="2" />
<text text-anchor="" x="831.86" 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]] (2 samples, 0.01%)</title><rect x="641.0" y="293" width="0.1" height="15.0" fill="rgb(234,100,47)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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="385.1" y="325" width="0.3" height="15.0" fill="rgb(222,194,42)" rx="2" ry="2" />
<text text-anchor="" x="388.10" 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>_ZN2v88internal19TransitionsAccessor10InitializeEv (18 samples, 0.10%)</title><rect x="1066.4" y="389" width="1.2" height="15.0" fill="rgb(251,204,2)" rx="2" ry="2" />
<text text-anchor="" x="1069.38" 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>_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE (13 samples, 0.08%)</title><rect x="1047.8" y="309" width="0.9" height="15.0" fill="rgb(242,54,47)" rx="2" ry="2" />
<text text-anchor="" x="1050.76" 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>_ZN2v88internal6Object12BooleanValueEv (3 samples, 0.02%)</title><rect x="808.9" y="389" width="0.2" height="15.0" fill="rgb(206,113,10)" rx="2" ry="2" />
<text text-anchor="" x="811.87" 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="799.2" y="325" width="0.2" height="15.0" fill="rgb(250,163,34)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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="818.5" y="309" width="0.2" height="15.0" fill="rgb(216,100,45)" rx="2" ry="2" />
<text text-anchor="" x="821.52" 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]] (12 samples, 0.07%)</title><rect x="309.5" y="357" width="0.9" height="15.0" fill="rgb(228,142,50)" rx="2" ry="2" />
<text text-anchor="" x="312.53" 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>__GI___printf_fp_l (4 samples, 0.02%)</title><rect x="10.6" y="757" width="0.3" height="15.0" fill="rgb(253,161,25)" rx="2" ry="2" />
<text text-anchor="" x="13.62" 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>_ZN2v88internal14LookupIterator5StartILb0EEEvv (2 samples, 0.01%)</title><rect x="823.4" y="421" width="0.1" height="15.0" fill="rgb(222,22,10)" rx="2" ry="2" />
<text text-anchor="" x="826.38" 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]] (4 samples, 0.02%)</title><rect x="1189.7" y="613" width="0.3" height="15.0" fill="rgb(247,156,48)" 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>_ZN2v88internal26Runtime_AllocateInNewSpaceEiPPNS0_6ObjectEPNS0_7IsolateE (84 samples, 0.49%)</title><rect x="826.7" y="453" width="5.8" height="15.0" fill="rgb(244,58,41)" rx="2" ry="2" />
<text text-anchor="" x="829.74" 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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1179.4" y="565" width="0.3" height="15.0" fill="rgb(244,116,44)" rx="2" ry="2" />
<text text-anchor="" x="1182.39" 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>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (4 samples, 0.02%)</title><rect x="980.2" y="389" width="0.3" height="15.0" fill="rgb(224,208,41)" rx="2" ry="2" />
<text text-anchor="" x="983.20" 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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="453" width="0.3" height="15.0" fill="rgb(248,183,24)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1105.3" y="341" width="0.2" height="15.0" fill="rgb(211,7,11)" rx="2" ry="2" />
<text text-anchor="" x="1108.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="39.0" y="437" width="0.2" height="15.0" fill="rgb(234,135,37)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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]] (6 samples, 0.03%)</title><rect x="1150.1" y="773" width="0.4" height="15.0" fill="rgb(251,151,51)" rx="2" ry="2" />
<text text-anchor="" x="1153.09" 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>_ZN2v88internal11StoreBuffer4TaskD0Ev (2 samples, 0.01%)</title><rect x="1151.8" y="773" width="0.1" height="15.0" fill="rgb(219,119,19)" rx="2" ry="2" />
<text text-anchor="" x="1154.81" 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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="721.0" y="261" width="0.2" height="15.0" fill="rgb(251,112,52)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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="448.4" y="293" width="0.1" height="15.0" fill="rgb(218,219,22)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (571 samples, 3.31%)</title><rect x="409.4" y="405" width="39.1" height="15.0" fill="rgb(229,215,48)" rx="2" ry="2" />
<text text-anchor="" x="412.40" y="415.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>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="1178.2" y="741" width="0.1" height="15.0" fill="rgb(221,71,13)" rx="2" ry="2" />
<text text-anchor="" x="1181.16" 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]] (4 samples, 0.02%)</title><rect x="1189.7" y="629" width="0.3" height="15.0" fill="rgb(246,61,9)" 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>_ZN2v88internal11interpreter17BytecodeGenerator16GenerateBytecodeEm (4 samples, 0.02%)</title><rect x="1148.2" y="517" width="0.3" height="15.0" fill="rgb(222,183,14)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (998 samples, 5.79%)</title><rect x="1054.7" y="405" width="68.3" height="15.0" fill="rgb(237,218,19)" rx="2" ry="2" />
<text text-anchor="" x="1057.68" y="415.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>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (4 samples, 0.02%)</title><rect x="824.6" y="373" width="0.3" height="15.0" fill="rgb(231,126,18)" rx="2" ry="2" />
<text text-anchor="" x="827.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]] (3 samples, 0.02%)</title><rect x="799.2" y="277" width="0.2" height="15.0" fill="rgb(206,87,34)" rx="2" ry="2" />
<text text-anchor="" x="802.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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="643.0" y="405" width="0.3" height="15.0" fill="rgb(208,211,48)" rx="2" ry="2" />
<text text-anchor="" x="646.02" 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="1178.9" y="629" width="0.2" height="15.0" fill="rgb(222,161,33)" rx="2" ry="2" />
<text text-anchor="" x="1181.91" 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>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (33 samples, 0.19%)</title><rect x="645.1" y="405" width="2.3" height="15.0" fill="rgb(231,9,54)" rx="2" ry="2" />
<text text-anchor="" x="648.14" 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="961.1" y="357" width="0.2" height="15.0" fill="rgb(244,229,21)" rx="2" ry="2" />
<text text-anchor="" x="964.11" 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>_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE (5 samples, 0.03%)</title><rect x="1133.7" y="389" width="0.3" height="15.0" fill="rgb(248,12,34)" rx="2" ry="2" />
<text text-anchor="" x="1136.67" 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 (196 samples, 1.14%)</title><rect x="466.1" y="373" width="13.5" height="15.0" fill="rgb(238,19,33)" rx="2" ry="2" />
<text text-anchor="" x="469.15" 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="818.5" y="325" width="0.2" height="15.0" fill="rgb(206,202,38)" rx="2" ry="2" />
<text text-anchor="" x="821.52" 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="1179.3" y="677" width="0.4" height="15.0" fill="rgb(250,196,17)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (45 samples, 0.26%)</title><rect x="916.1" y="421" width="3.1" height="15.0" fill="rgb(206,131,9)" rx="2" ry="2" />
<text text-anchor="" x="919.13" 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>_ZN2v88internal6Object12BooleanValueEv (46 samples, 0.27%)</title><rect x="590.0" y="373" width="3.2" height="15.0" fill="rgb(208,36,31)" rx="2" ry="2" />
<text text-anchor="" x="593.04" 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>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (4 samples, 0.02%)</title><rect x="642.2" y="373" width="0.3" height="15.0" fill="rgb(209,126,21)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal22HandleScopeImplementer11IterateThisEPNS0_11RootVisitorE (3 samples, 0.02%)</title><rect x="829.4" y="357" width="0.2" height="15.0" fill="rgb(224,20,23)" rx="2" ry="2" />
<text text-anchor="" x="832.41" 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]] (89 samples, 0.52%)</title><rect x="1183.1" y="693" width="6.1" height="15.0" fill="rgb(224,182,8)" rx="2" ry="2" />
<text text-anchor="" x="1186.09" 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-30995.map] (4 samples, 0.02%)</title><rect x="407.6" y="341" width="0.2" height="15.0" fill="rgb(234,33,6)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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]] (13 samples, 0.08%)</title><rect x="309.5" y="405" width="0.9" height="15.0" fill="rgb(240,58,17)" rx="2" ry="2" />
<text text-anchor="" x="312.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>_ZN2v88internal11StoreBuffer19StoreBufferOverflowEPNS0_7IsolateE (36 samples, 0.21%)</title><rect x="645.0" y="421" width="2.5" height="15.0" fill="rgb(227,71,3)" rx="2" ry="2" />
<text text-anchor="" x="648.01" 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]] (3 samples, 0.02%)</title><rect x="507.4" y="293" width="0.2" height="15.0" fill="rgb(211,182,3)" rx="2" ry="2" />
<text text-anchor="" x="510.42" 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]] (3 samples, 0.02%)</title><rect x="1189.0" y="533" width="0.2" height="15.0" fill="rgb(213,14,22)" rx="2" ry="2" />
<text text-anchor="" x="1191.97" 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="407.2" y="261" width="0.3" height="15.0" fill="rgb(254,92,26)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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="641.0" y="373" width="0.1" height="15.0" fill="rgb(233,171,27)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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>_ZN2v88internal20ArrayBufferCollector11FreeingTask11RunInternalEv (2 samples, 0.01%)</title><rect x="1179.7" y="757" width="0.1" height="15.0" fill="rgb(233,71,16)" rx="2" ry="2" />
<text text-anchor="" x="1182.66" 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]] (4 samples, 0.02%)</title><rect x="1148.2" y="85" width="0.3" height="15.0" fill="rgb(235,166,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal8GCTracer15BackgroundScopeC2EPS1_NS2_7ScopeIdE (4 samples, 0.02%)</title><rect x="1177.7" y="741" width="0.3" height="15.0" fill="rgb(254,118,51)" rx="2" ry="2" />
<text text-anchor="" x="1180.75" 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>_ZN2v88internal6Object12BooleanValueEv (10 samples, 0.06%)</title><rect x="725.8" y="405" width="0.7" height="15.0" fill="rgb(233,219,6)" rx="2" ry="2" />
<text text-anchor="" x="728.84" 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>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (23 samples, 0.13%)</title><rect x="1118.9" y="373" width="1.6" height="15.0" fill="rgb(206,176,46)" rx="2" ry="2" />
<text text-anchor="" x="1121.95" 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="1133.4" y="341" width="0.1" height="15.0" fill="rgb(245,23,25)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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="693" width="0.3" height="15.0" fill="rgb(220,179,13)" 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]] (3 samples, 0.02%)</title><rect x="1179.1" y="645" width="0.2" height="15.0" fill="rgb(232,21,1)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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="1178.6" y="613" width="0.2" height="15.0" fill="rgb(206,145,36)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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="427.9" y="277" width="0.3" height="15.0" fill="rgb(215,31,54)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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>_ZN2v88internal13DoubleToInt32Ed (27 samples, 0.16%)</title><rect x="540.6" y="389" width="1.8" height="15.0" fill="rgb(211,100,6)" rx="2" ry="2" />
<text text-anchor="" x="543.55" 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>_ZN2v88internal10JSReceiver13SetPropertiesEPNS0_10HeapObjectE (57 samples, 0.33%)</title><rect x="1021.6" y="373" width="3.9" height="15.0" fill="rgb(234,208,53)" rx="2" ry="2" />
<text text-anchor="" x="1024.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>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (1,218 samples, 7.07%)</title><rect x="721.2" y="421" width="83.4" height="15.0" fill="rgb(213,94,15)" rx="2" ry="2" />
<text text-anchor="" x="724.19" y="431.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1133.4" y="405" width="0.1" height="15.0" fill="rgb(233,112,17)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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="646.2" y="245" width="1.1" height="15.0" fill="rgb(221,122,41)" rx="2" ry="2" />
<text text-anchor="" x="649.24" 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>_ZN2v88internal35Builtin_DataViewPrototypeSetFloat32EiPPNS0_6ObjectEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="815.7" y="421" width="0.6" height="15.0" fill="rgb(218,88,46)" rx="2" ry="2" />
<text text-anchor="" x="818.72" 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="1180.6" y="693" width="0.2" height="15.0" fill="rgb(232,101,9)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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="1089.6" y="325" width="0.2" height="15.0" fill="rgb(233,15,14)" rx="2" ry="2" />
<text text-anchor="" x="1092.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>all (17,239 samples, 100%)</title><rect x="10.0" y="837" width="1180.0" height="15.0" fill="rgb(243,188,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="847.5" font-size="12" font-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="642.2" y="261" width="0.3" height="15.0" fill="rgb(228,169,15)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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="1176.6" y="661" width="0.1" height="15.0" fill="rgb(227,9,34)" rx="2" ry="2" />
<text text-anchor="" x="1179.58" 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="427.9" y="261" width="0.3" height="15.0" fill="rgb(217,170,23)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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="1142.5" y="405" width="0.1" height="15.0" fill="rgb(243,31,36)" rx="2" ry="2" />
<text text-anchor="" x="1145.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]] (4 samples, 0.02%)</title><rect x="1148.6" y="629" width="0.3" height="15.0" fill="rgb(237,21,54)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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>[perf-30995.map] (16,600 samples, 96.29%)</title><rect x="12.3" y="661" width="1136.3" height="15.0" fill="rgb(208,36,13)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="1181.2" y="725" width="0.2" height="15.0" fill="rgb(230,177,42)" rx="2" ry="2" />
<text text-anchor="" x="1184.17" 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>_ZN2v88internal11interpreter17BytecodeGenerator35VisitBlockDeclarationsAndStatementsEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="389" width="0.3" height="15.0" fill="rgb(240,14,49)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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 (1,074 samples, 6.23%)</title><rect x="647.7" y="421" width="73.5" height="15.0" fill="rgb(213,41,31)" rx="2" ry="2" />
<text text-anchor="" x="650.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN2v88i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1148.6" y="645" width="0.3" height="15.0" fill="rgb(233,89,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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="1179.3" y="597" width="0.4" height="15.0" fill="rgb(223,96,10)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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]] (3 samples, 0.02%)</title><rect x="961.1" y="277" width="0.2" height="15.0" fill="rgb(213,173,33)" rx="2" ry="2" />
<text text-anchor="" x="964.11" 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="1176.6" y="693" width="0.1" height="15.0" fill="rgb(227,166,15)" rx="2" ry="2" />
<text text-anchor="" x="1179.58" 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]] (6 samples, 0.03%)</title><rect x="828.8" y="181" width="0.4" height="15.0" fill="rgb(241,95,20)" rx="2" ry="2" />
<text text-anchor="" x="831.79" 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="1142.5" y="357" width="0.1" height="15.0" fill="rgb(230,141,51)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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]] (5 samples, 0.03%)</title><rect x="1149.8" y="613" width="0.3" height="15.0" fill="rgb(207,175,53)" rx="2" ry="2" />
<text text-anchor="" x="1152.75" 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>_ZN2v88internal8NewSpace4FlipEv (2 samples, 0.01%)</title><rect x="831.5" y="357" width="0.2" height="15.0" fill="rgb(227,214,5)" rx="2" ry="2" />
<text text-anchor="" x="834.53" 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]] (6 samples, 0.03%)</title><rect x="309.9" y="293" width="0.5" height="15.0" fill="rgb(253,29,9)" rx="2" ry="2" />
<text text-anchor="" x="312.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>_ZN2v88internal19TransitionsAccessor10InitializeEv (46 samples, 0.27%)</title><rect x="1115.8" y="373" width="3.1" height="15.0" fill="rgb(223,139,27)" rx="2" ry="2" />
<text text-anchor="" x="1118.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>node (17,235 samples, 99.98%)</title><rect x="10.0" y="821" width="1179.7" height="15.0" fill="rgb(251,211,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="831.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>_ZN2v88internal7Isolate7IterateEPNS0_11RootVisitorEPNS0_14ThreadLocalTopE (2 samples, 0.01%)</title><rect x="830.8" y="357" width="0.2" height="15.0" fill="rgb(250,3,17)" rx="2" ry="2" />
<text text-anchor="" x="833.85" 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="720.9" y="341" width="0.3" height="15.0" fill="rgb(232,106,36)" rx="2" ry="2" />
<text text-anchor="" x="723.92" 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>_ZN2v88internal12_GLOBAL__N_123GenerateUnoptimizedCodeEPNS0_9ParseInfoEPNS0_19AccountingAllocatorEPSt12forward_listISt10unique_ptrINS0_25UnoptimizedCompilationJobESt14default_deleteIS8_EESaISB_EE (4 samples, 0.02%)</title><rect x="1148.2" y="565" width="0.3" height="15.0" fill="rgb(210,167,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.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]] (5 samples, 0.03%)</title><rect x="157.9" y="293" width="0.3" height="15.0" fill="rgb(251,119,24)" rx="2" ry="2" />
<text text-anchor="" x="160.85" 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 (2 samples, 0.01%)</title><rect x="1025.5" y="373" width="0.2" height="15.0" fill="rgb(233,131,6)" rx="2" ry="2" />
<text text-anchor="" x="1028.52" 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>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (35 samples, 0.20%)</title><rect x="624.9" y="341" width="2.4" height="15.0" fill="rgb(238,135,42)" rx="2" ry="2" />
<text text-anchor="" x="627.88" 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="571.9" y="293" width="0.1" height="15.0" fill="rgb(236,85,32)" rx="2" ry="2" />
<text text-anchor="" x="574.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>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="611.7" y="373" width="0.3" height="15.0" fill="rgb(235,76,48)" rx="2" ry="2" />
<text text-anchor="" x="614.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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1,140 samples, 6.61%)</title><rect x="726.5" y="405" width="78.1" height="15.0" fill="rgb(243,204,42)" rx="2" ry="2" />
<text text-anchor="" x="729.53" y="415.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>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (5 samples, 0.03%)</title><rect x="826.8" y="389" width="0.3" height="15.0" fill="rgb(227,170,41)" rx="2" ry="2" />
<text text-anchor="" x="829.81" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (726 samples, 4.21%)</title><rect x="543.5" y="389" width="49.7" height="15.0" fill="rgb(206,96,40)" rx="2" ry="2" />
<text text-anchor="" x="546.49" y="399.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]] (7 samples, 0.04%)</title><rect x="868.8" y="421" width="0.5" height="15.0" fill="rgb(235,138,14)" rx="2" ry="2" />
<text text-anchor="" x="871.84" 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]] (5 samples, 0.03%)</title><rect x="1178.8" y="709" width="0.3" height="15.0" fill="rgb(211,140,13)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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="1179.1" y="629" width="0.2" height="15.0" fill="rgb(244,13,28)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="229" width="0.2" height="15.0" fill="rgb(250,229,39)" rx="2" ry="2" />
<text text-anchor="" x="410.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>[perf-30995.map] (16,594 samples, 96.26%)</title><rect x="12.3" y="517" width="1135.9" height="15.0" fill="rgb(219,165,52)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</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="623.8" y="357" width="0.1" height="15.0" fill="rgb(213,39,7)" rx="2" ry="2" />
<text text-anchor="" x="626.79" 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="1148.2" y="181" width="0.3" height="15.0" fill="rgb(219,36,16)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (2 samples, 0.01%)</title><rect x="596.2" y="389" width="0.1" height="15.0" fill="rgb(206,141,22)" rx="2" ry="2" />
<text text-anchor="" x="599.20" 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-30995.map] (7,423 samples, 43.06%)</title><rect x="310.4" y="437" width="508.1" height="15.0" fill="rgb(215,214,47)" rx="2" ry="2" />
<text text-anchor="" x="313.36" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="1133.4" y="373" width="0.1" height="15.0" fill="rgb(241,184,41)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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="1089.6" y="373" width="0.2" height="15.0" fill="rgb(238,53,30)" rx="2" ry="2" />
<text text-anchor="" x="1092.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]] (4 samples, 0.02%)</title><rect x="407.2" y="229" width="0.3" height="15.0" fill="rgb(238,133,9)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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]] (14 samples, 0.08%)</title><rect x="309.4" y="421" width="1.0" height="15.0" fill="rgb(245,210,19)" rx="2" ry="2" />
<text text-anchor="" x="312.40" 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]] (29 samples, 0.17%)</title><rect x="645.3" y="325" width="2.0" height="15.0" fill="rgb(254,145,33)" rx="2" ry="2" />
<text text-anchor="" x="648.35" 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="1178.6" y="693" width="0.2" height="15.0" fill="rgb(249,147,12)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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="427.9" y="357" width="0.3" height="15.0" fill="rgb(227,184,53)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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-30995.map] (16,594 samples, 96.26%)</title><rect x="12.3" y="501" width="1135.9" height="15.0" fill="rgb(233,131,52)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="448.4" y="309" width="0.1" height="15.0" fill="rgb(226,171,14)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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-30995.map] (16,600 samples, 96.29%)</title><rect x="12.3" y="645" width="1136.3" height="15.0" fill="rgb(249,183,46)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="1149.6" y="757" width="0.5" height="15.0" fill="rgb(252,134,4)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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="641.0" y="277" width="0.1" height="15.0" fill="rgb(239,219,8)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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="741" width="0.3" height="15.0" fill="rgb(233,180,48)" 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>_ZN2v88internal6Object15AddDataPropertyEPNS0_14LookupIteratorENS0_6HandleIS1_EENS0_18PropertyAttributesENS0_11ShouldThrowENS1_14StoreFromKeyedE (2,994 samples, 17.37%)</title><rect x="920.2" y="421" width="205.0" height="15.0" fill="rgb(212,183,39)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="431.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>_ZN2v88internal9FieldType3AnyEv (3 samples, 0.02%)</title><rect x="1115.5" y="357" width="0.2" height="15.0" fill="rgb(213,7,42)" rx="2" ry="2" />
<text text-anchor="" x="1118.53" 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>_ZN2v814ScriptCompiler20CompileUnboundScriptEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (2 samples, 0.01%)</title><rect x="407.6" y="101" width="0.2" height="15.0" fill="rgb(236,186,1)" rx="2" ry="2" />
<text text-anchor="" x="410.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>[[kernel.kallsyms]] (84 samples, 0.49%)</title><rect x="1183.4" y="645" width="5.8" height="15.0" fill="rgb(232,199,30)" rx="2" ry="2" />
<text text-anchor="" x="1186.43" 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]] (58 samples, 0.34%)</title><rect x="1185.2" y="597" width="4.0" height="15.0" fill="rgb(234,10,52)" rx="2" ry="2" />
<text text-anchor="" x="1188.21" 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>_ZN2v88internal6Object12BooleanValueEv (8 samples, 0.05%)</title><rect x="627.8" y="389" width="0.5" height="15.0" fill="rgb(213,62,27)" rx="2" ry="2" />
<text text-anchor="" x="630.76" 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="39.0" y="469" width="0.2" height="15.0" fill="rgb(242,72,38)" rx="2" ry="2" />
<text text-anchor="" x="42.02" y="479.5" font-size="12" font-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="1149.6" y="773" width="0.5" height="15.0" fill="rgb(246,16,7)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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>_ZN2v88internal36Runtime_CompileForOnStackReplacementEiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="816.5" y="421" width="0.2" height="15.0" fill="rgb(226,25,24)" rx="2" ry="2" />
<text text-anchor="" x="819.47" 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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="341" width="0.3" height="15.0" fill="rgb(205,46,15)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="39.0" y="389" width="0.2" height="15.0" fill="rgb(231,204,43)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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="961.1" y="373" width="0.2" height="15.0" fill="rgb(233,172,14)" rx="2" ry="2" />
<text text-anchor="" x="964.11" 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="479.4" y="341" width="0.2" height="15.0" fill="rgb(237,97,20)" rx="2" ry="2" />
<text text-anchor="" x="482.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>_ZNK2v88internal3Map14GetBackPointerEv (22 samples, 0.13%)</title><rect x="1051.6" y="389" width="1.5" height="15.0" fill="rgb(209,55,18)" rx="2" ry="2" />
<text text-anchor="" x="1054.60" 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]] (6 samples, 0.03%)</title><rect x="1149.7" y="661" width="0.4" height="15.0" fill="rgb(236,73,17)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="611.6" y="357" width="0.1" height="15.0" fill="rgb(253,222,12)" rx="2" ry="2" />
<text text-anchor="" x="614.60" 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]] (5 samples, 0.03%)</title><rect x="1179.3" y="581" width="0.4" height="15.0" fill="rgb(246,2,35)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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]] (6 samples, 0.03%)</title><rect x="828.8" y="197" width="0.4" height="15.0" fill="rgb(212,69,48)" rx="2" ry="2" />
<text text-anchor="" x="831.79" 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>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (3 samples, 0.02%)</title><rect x="824.7" y="357" width="0.2" height="15.0" fill="rgb(212,124,37)" rx="2" ry="2" />
<text text-anchor="" x="827.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>_ZN2v88internal8GCTracer15BackgroundScopeC2EPS1_NS2_7ScopeIdE (3 samples, 0.02%)</title><rect x="1180.2" y="757" width="0.2" height="15.0" fill="rgb(230,159,23)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" 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>_ZN2v88internal10HeapObject20synchronized_set_mapEPNS0_3MapE (9 samples, 0.05%)</title><rect x="979.6" y="389" width="0.6" height="15.0" fill="rgb(206,125,2)" rx="2" ry="2" />
<text text-anchor="" x="982.59" 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="39.0" y="405" width="0.2" height="15.0" fill="rgb(244,25,32)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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="1089.6" y="341" width="0.2" height="15.0" fill="rgb(217,53,35)" rx="2" ry="2" />
<text text-anchor="" x="1092.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]] (3 samples, 0.02%)</title><rect x="1179.1" y="725" width="0.2" height="15.0" fill="rgb(242,188,17)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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]] (91 samples, 0.53%)</title><rect x="1182.9" y="709" width="6.3" height="15.0" fill="rgb(233,132,14)" rx="2" ry="2" />
<text text-anchor="" x="1185.95" 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="961.2" y="261" width="0.1" height="15.0" fill="rgb(253,112,14)" rx="2" ry="2" />
<text text-anchor="" x="964.17" 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>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (13 samples, 0.08%)</title><rect x="1134.0" y="453" width="0.9" height="15.0" fill="rgb(236,138,21)" rx="2" ry="2" />
<text text-anchor="" x="1137.01" 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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="869.0" y="357" width="0.3" height="15.0" fill="rgb(211,61,6)" rx="2" ry="2" />
<text text-anchor="" x="871.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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="961.1" y="341" width="0.2" height="15.0" fill="rgb(215,11,2)" rx="2" ry="2" />
<text text-anchor="" x="964.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>_ZN2v88internal7Factory24CopyPropertyArrayAndGrowENS0_6HandleINS0_13PropertyArrayEEEiNS0_13PretenureFlagE (9 samples, 0.05%)</title><rect x="980.8" y="389" width="0.6" height="15.0" fill="rgb(252,51,21)" rx="2" ry="2" />
<text text-anchor="" x="983.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="466.0" y="373" width="0.1" height="15.0" fill="rgb(231,150,30)" rx="2" ry="2" />
<text text-anchor="" x="469.01" 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="611.6" y="373" width="0.1" height="15.0" fill="rgb(253,180,19)" rx="2" ry="2" />
<text text-anchor="" x="614.60" 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-30995.map] (16,595 samples, 96.26%)</title><rect x="12.3" y="549" width="1135.9" height="15.0" fill="rgb(208,20,44)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="1181.0" y="741" width="0.4" height="15.0" fill="rgb(238,158,23)" rx="2" ry="2" />
<text text-anchor="" x="1184.03" 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="1178.6" y="725" width="0.2" height="15.0" fill="rgb(229,66,34)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>_ZN4node5StartEiPPc (16,605 samples, 96.32%)</title><rect x="12.3" y="773" width="1136.6" height="15.0" fill="rgb(254,103,45)" rx="2" ry="2" />
<text text-anchor="" x="15.26" y="783.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 (31 samples, 0.18%)</title><rect x="428.2" y="373" width="2.1" height="15.0" fill="rgb(233,163,48)" rx="2" ry="2" />
<text text-anchor="" x="431.16" 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>_ZN4node10contextify16ContextifyScript3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE (2 samples, 0.01%)</title><rect x="407.6" y="117" width="0.2" height="15.0" fill="rgb(215,83,35)" rx="2" ry="2" />
<text text-anchor="" x="410.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>_ZN2v88internal8compiler22PipelineCompilationJob14ExecuteJobImplEv (6 samples, 0.03%)</title><rect x="1179.8" y="725" width="0.4" height="15.0" fill="rgb(211,115,9)" rx="2" ry="2" />
<text text-anchor="" x="1182.80" 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="1176.6" y="677" width="0.1" height="15.0" fill="rgb(213,164,24)" rx="2" ry="2" />
<text text-anchor="" x="1179.58" 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="641.0" y="245" width="0.1" height="15.0" fill="rgb(237,206,33)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (9 samples, 0.05%)</title><rect x="643.3" y="405" width="0.6" height="15.0" fill="rgb(253,26,21)" rx="2" ry="2" />
<text text-anchor="" x="646.29" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (446 samples, 2.59%)</title><rect x="450.7" y="389" width="30.5" height="15.0" fill="rgb(251,10,50)" rx="2" ry="2" />
<text text-anchor="" x="453.68" 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]] (3 samples, 0.02%)</title><rect x="721.0" y="293" width="0.2" height="15.0" fill="rgb(252,175,45)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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>sem_post@@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1180.6" y="757" width="0.2" height="15.0" fill="rgb(208,218,8)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (64 samples, 0.37%)</title><rect x="810.7" y="421" width="4.4" height="15.0" fill="rgb(205,196,27)" rx="2" ry="2" />
<text text-anchor="" x="813.72" 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>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (2 samples, 0.01%)</title><rect x="1048.0" y="245" width="0.1" height="15.0" fill="rgb(223,28,41)" rx="2" ry="2" />
<text text-anchor="" x="1050.97" 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>_ZN2v88internal23OptimizedCompilationJob10ExecuteJobEv (6 samples, 0.03%)</title><rect x="1179.8" y="741" width="0.4" height="15.0" fill="rgb(246,58,44)" rx="2" ry="2" />
<text text-anchor="" x="1182.80" 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>_ZN2v88internal33Builtin_DataViewPrototypeSetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (478 samples, 2.77%)</title><rect x="448.5" y="405" width="32.7" height="15.0" fill="rgb(228,4,26)" rx="2" ry="2" />
<text text-anchor="" x="451.49" y="415.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]] (17 samples, 0.10%)</title><rect x="11.1" y="709" width="1.2" height="15.0" fill="rgb(211,52,24)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>[perf-30995.map] (16,183 samples, 93.87%)</title><rect x="39.2" y="469" width="1107.7" height="15.0" fill="rgb(244,67,34)" rx="2" ry="2" />
<text text-anchor="" x="42.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (17 samples, 0.10%)</title><rect x="11.1" y="741" width="1.2" height="15.0" fill="rgb(223,138,15)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="408.4" y="373" width="0.2" height="15.0" fill="rgb(222,156,11)" rx="2" ry="2" />
<text text-anchor="" x="411.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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (48 samples, 0.28%)</title><rect x="806.5" y="405" width="3.3" height="15.0" fill="rgb(228,191,41)" rx="2" ry="2" />
<text text-anchor="" x="809.48" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="408.3" y="373" width="0.1" height="15.0" fill="rgb(231,226,33)" rx="2" ry="2" />
<text text-anchor="" x="411.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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="869.0" y="341" width="0.3" height="15.0" fill="rgb(225,145,39)" rx="2" ry="2" />
<text text-anchor="" x="871.97" 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="427.9" y="293" width="0.3" height="15.0" fill="rgb(244,2,34)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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="721.1" y="197" width="0.1" height="15.0" fill="rgb(233,223,39)" rx="2" ry="2" />
<text text-anchor="" x="724.05" 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]] (4 samples, 0.02%)</title><rect x="385.1" y="341" width="0.3" height="15.0" fill="rgb(222,4,23)" rx="2" ry="2" />
<text text-anchor="" x="388.10" 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="1142.5" y="373" width="0.1" height="15.0" fill="rgb(209,152,22)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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="961.1" y="325" width="0.2" height="15.0" fill="rgb(218,122,0)" rx="2" ry="2" />
<text text-anchor="" x="964.11" 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>_ZN2v88internal11interpreter17BytecodeGenerator10VisitBlockEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="325" width="0.3" height="15.0" fill="rgb(236,106,42)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEv (6 samples, 0.03%)</title><rect x="1179.8" y="757" width="0.4" height="15.0" fill="rgb(208,190,46)" rx="2" ry="2" />
<text text-anchor="" x="1182.80" 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>_ZN2v88internal4Heap26AllocateRawWithRetryOrFailEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (4 samples, 0.02%)</title><rect x="1040.9" y="341" width="0.3" height="15.0" fill="rgb(232,89,52)" rx="2" ry="2" />
<text text-anchor="" x="1043.92" 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>_ZN2v88internal12_GLOBAL__N_129ExecuteUnoptimizedCompileJobsEPNS0_9ParseInfoEPNS0_15FunctionLiteralEPNS0_19AccountingAllocatorEPSt12forward_listISt10unique_ptrINS0_25UnoptimizedCompilationJobESt14default_deleteISA_EESaISD_EE (4 samples, 0.02%)</title><rect x="1148.2" y="549" width="0.3" height="15.0" fill="rgb(234,59,50)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="427.9" y="309" width="0.3" height="15.0" fill="rgb(240,130,4)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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>_ZN2v88internal8Compiler22GetOptimizedCodeForOSRENS0_6HandleINS0_10JSFunctionEEENS0_9BailoutIdEPNS0_15JavaScriptFrameE (3 samples, 0.02%)</title><rect x="816.5" y="405" width="0.2" height="15.0" fill="rgb(245,162,30)" rx="2" ry="2" />
<text text-anchor="" x="819.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>_ZN2v88internal11interpreter17BytecodeGenerator15VisitStatementsEPNS0_8ZoneListIPNS0_9StatementEEE (4 samples, 0.02%)</title><rect x="1148.2" y="229" width="0.3" height="15.0" fill="rgb(225,36,2)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (5 samples, 0.03%)</title><rect x="1149.8" y="597" width="0.3" height="15.0" fill="rgb(221,71,21)" rx="2" ry="2" />
<text text-anchor="" x="1152.75" 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>_ZNK2v88internal14FeedbackVector7GetKindENS0_12FeedbackSlotE (62 samples, 0.36%)</title><rect x="1142.6" y="453" width="4.3" height="15.0" fill="rgb(212,153,31)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" 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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="869.0" y="325" width="0.3" height="15.0" fill="rgb(225,52,27)" rx="2" ry="2" />
<text text-anchor="" x="871.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>_ZN2v88internal6Object12BooleanValueEv (16 samples, 0.09%)</title><rect x="542.4" y="389" width="1.1" height="15.0" fill="rgb(244,9,30)" rx="2" ry="2" />
<text text-anchor="" x="545.40" 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="479.4" y="325" width="0.2" height="15.0" fill="rgb(223,109,22)" rx="2" ry="2" />
<text text-anchor="" x="482.43" 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="961.1" y="389" width="0.2" height="15.0" fill="rgb(254,201,45)" rx="2" ry="2" />
<text text-anchor="" x="964.11" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (1,020 samples, 5.92%)</title><rect x="651.4" y="405" width="69.8" height="15.0" fill="rgb(217,203,7)" rx="2" ry="2" />
<text text-anchor="" x="654.37" y="415.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="407.2" y="325" width="0.3" height="15.0" fill="rgb(217,26,36)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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>_ZN2v814ScriptCompiler22CompileUnboundInternalEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsENS0_13NoCacheReasonE (2 samples, 0.01%)</title><rect x="407.6" y="85" width="0.2" height="15.0" fill="rgb(242,42,4)" rx="2" ry="2" />
<text text-anchor="" x="410.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="1178.6" y="581" width="0.2" height="15.0" fill="rgb(207,51,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="643.9" y="405" width="0.1" height="15.0" fill="rgb(246,37,30)" rx="2" ry="2" />
<text text-anchor="" x="646.91" 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]] (12 samples, 0.07%)</title><rect x="157.4" y="405" width="0.8" height="15.0" fill="rgb(205,131,53)" rx="2" ry="2" />
<text text-anchor="" x="160.37" 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>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (3 samples, 0.02%)</title><rect x="1029.5" y="357" width="0.2" height="15.0" fill="rgb(241,171,31)" rx="2" ry="2" />
<text text-anchor="" x="1032.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>_ZN2v88internal14LookupIterator5StartILb0EEEvv (330 samples, 1.91%)</title><rect x="877.9" y="437" width="22.6" height="15.0" fill="rgb(246,92,8)" rx="2" ry="2" />
<text text-anchor="" x="880.87" 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]] (3 samples, 0.02%)</title><rect x="721.0" y="213" width="0.2" height="15.0" fill="rgb(246,86,11)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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="721.0" y="229" width="0.2" height="15.0" fill="rgb(252,173,40)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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>_ZN2v88internal13DoubleToInt32Ed (16 samples, 0.09%)</title><rect x="449.0" y="389" width="1.1" height="15.0" fill="rgb(243,133,0)" rx="2" ry="2" />
<text text-anchor="" x="452.03" 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-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="245" width="0.2" height="15.0" fill="rgb(232,125,14)" rx="2" ry="2" />
<text text-anchor="" x="410.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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="385.0" y="405" width="0.4" height="15.0" fill="rgb(245,98,52)" rx="2" ry="2" />
<text text-anchor="" x="388.03" 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]] (7 samples, 0.04%)</title><rect x="828.7" y="261" width="0.5" height="15.0" fill="rgb(234,81,48)" rx="2" ry="2" />
<text text-anchor="" x="831.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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="799.2" y="245" width="0.2" height="15.0" fill="rgb(224,140,29)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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>_ZThn40_N2v88internal14CancelableTask3RunEv (2 samples, 0.01%)</title><rect x="1189.6" y="789" width="0.1" height="15.0" fill="rgb(227,212,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.59" 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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1178.6" y="709" width="0.2" height="15.0" fill="rgb(224,50,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="641.0" y="357" width="0.1" height="15.0" fill="rgb(212,136,46)" rx="2" ry="2" />
<text text-anchor="" x="643.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>[perf-30995.map] (34 samples, 0.20%)</title><rect x="407.1" y="405" width="2.3" height="15.0" fill="rgb(254,33,20)" rx="2" ry="2" />
<text text-anchor="" x="410.08" 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="407.2" y="341" width="0.3" height="15.0" fill="rgb(236,9,25)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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>_ZN2v88internal10CancelableD2Ev (2 samples, 0.01%)</title><rect x="1151.8" y="757" width="0.1" height="15.0" fill="rgb(252,129,34)" rx="2" ry="2" />
<text text-anchor="" x="1154.81" 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>_ZN2v88internal14LookupIterator15UpdateProtectorEv.part.349 (48 samples, 0.28%)</title><rect x="961.3" y="405" width="3.3" height="15.0" fill="rgb(250,199,43)" rx="2" ry="2" />
<text text-anchor="" x="964.31" 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="1148.2" y="165" width="0.3" height="15.0" fill="rgb(246,210,10)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (3 samples, 0.02%)</title><rect x="408.4" y="389" width="0.2" height="15.0" fill="rgb(236,96,8)" rx="2" ry="2" />
<text text-anchor="" x="411.44" 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>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (5 samples, 0.03%)</title><rect x="826.8" y="405" width="0.3" height="15.0" fill="rgb(249,67,45)" rx="2" ry="2" />
<text text-anchor="" x="829.81" 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]] (7 samples, 0.04%)</title><rect x="828.7" y="229" width="0.5" height="15.0" fill="rgb(207,97,21)" rx="2" ry="2" />
<text text-anchor="" x="831.72" 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]] (3 samples, 0.02%)</title><rect x="1089.6" y="357" width="0.2" height="15.0" fill="rgb(223,62,2)" rx="2" ry="2" />
<text text-anchor="" x="1092.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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeSetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (19 samples, 0.11%)</title><rect x="817.2" y="421" width="1.3" height="15.0" fill="rgb(251,193,6)" rx="2" ry="2" />
<text text-anchor="" x="820.16" 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]] (82 samples, 0.48%)</title><rect x="1183.6" y="629" width="5.6" height="15.0" fill="rgb(230,97,47)" rx="2" ry="2" />
<text text-anchor="" x="1186.57" 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="677" width="0.3" height="15.0" fill="rgb(221,48,38)" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="644.4" y="405" width="0.1" height="15.0" fill="rgb(214,33,5)" rx="2" ry="2" />
<text text-anchor="" x="647.39" 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>_ZN2v88internal8GCTracer15BackgroundScopeD1Ev (2 samples, 0.01%)</title><rect x="1178.0" y="741" width="0.2" height="15.0" fill="rgb(240,64,26)" rx="2" ry="2" />
<text text-anchor="" x="1181.02" 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>_ZN2v88internal8NewSpace25ResetLinearAllocationAreaEv (8 samples, 0.05%)</title><rect x="831.0" y="357" width="0.5" height="15.0" fill="rgb(242,171,13)" rx="2" ry="2" />
<text text-anchor="" x="833.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1105.3" y="325" width="0.2" height="15.0" fill="rgb(246,214,41)" rx="2" ry="2" />
<text text-anchor="" x="1108.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]] (7 samples, 0.04%)</title><rect x="828.7" y="309" width="0.5" height="15.0" fill="rgb(244,193,4)" rx="2" ry="2" />
<text text-anchor="" x="831.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]] (3 samples, 0.02%)</title><rect x="507.4" y="325" width="0.2" height="15.0" fill="rgb(235,180,8)" rx="2" ry="2" />
<text text-anchor="" x="510.42" 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 (12 samples, 0.07%)</title><rect x="649.5" y="405" width="0.8" height="15.0" fill="rgb(207,112,42)" rx="2" ry="2" />
<text text-anchor="" x="652.52" 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="507.4" y="373" width="0.2" height="15.0" fill="rgb(247,38,14)" rx="2" ry="2" />
<text text-anchor="" x="510.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1179.4" y="533" width="0.3" height="15.0" fill="rgb(214,162,43)" rx="2" ry="2" />
<text text-anchor="" x="1182.39" 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>_ZN2v88internal6Object12BooleanValueEv (4 samples, 0.02%)</title><rect x="481.7" y="389" width="0.3" height="15.0" fill="rgb(212,192,12)" rx="2" ry="2" />
<text text-anchor="" x="484.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>_ZN2v88internal6Object12BooleanValueEv (5 samples, 0.03%)</title><rect x="595.5" y="373" width="0.4" height="15.0" fill="rgb(208,120,53)" rx="2" ry="2" />
<text text-anchor="" x="598.52" 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="828.7" y="245" width="0.5" height="15.0" fill="rgb(225,69,29)" rx="2" ry="2" />
<text text-anchor="" x="831.72" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (556 samples, 3.23%)</title><rect x="410.4" y="389" width="38.1" height="15.0" fill="rgb(207,101,41)" rx="2" ry="2" />
<text text-anchor="" x="413.43" y="399.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]] (2 samples, 0.01%)</title><rect x="1178.6" y="629" width="0.2" height="15.0" fill="rgb(245,181,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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="647.1" y="181" width="0.2" height="15.0" fill="rgb(209,159,52)" rx="2" ry="2" />
<text text-anchor="" x="650.06" 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>[perf-30995.map] (16,595 samples, 96.26%)</title><rect x="12.3" y="565" width="1135.9" height="15.0" fill="rgb(213,42,44)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="427.9" y="373" width="0.3" height="15.0" fill="rgb(228,96,13)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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-30995.map] (11 samples, 0.06%)</title><rect x="407.2" y="389" width="0.8" height="15.0" fill="rgb(237,17,6)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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>_ZN2v88internal3Map6UpdateENS0_6HandleIS1_EE (16 samples, 0.09%)</title><rect x="1121.9" y="389" width="1.1" height="15.0" fill="rgb(228,141,20)" rx="2" ry="2" />
<text text-anchor="" x="1124.89" 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-30995.map] (16,600 samples, 96.29%)</title><rect x="12.3" y="629" width="1136.3" height="15.0" fill="rgb(207,114,1)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="720.9" y="373" width="0.3" height="15.0" fill="rgb(251,104,34)" rx="2" ry="2" />
<text text-anchor="" x="723.92" 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]] (4 samples, 0.02%)</title><rect x="720.9" y="357" width="0.3" height="15.0" fill="rgb(213,89,23)" rx="2" ry="2" />
<text text-anchor="" x="723.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>_ZN2v88internal6Object12BooleanValueEv (73 samples, 0.42%)</title><rect x="685.5" y="389" width="5.0" height="15.0" fill="rgb(245,165,46)" rx="2" ry="2" />
<text text-anchor="" x="688.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>[perf-30995.map] (16,594 samples, 96.26%)</title><rect x="12.3" y="485" width="1135.9" height="15.0" fill="rgb(241,38,40)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="641.0" y="229" width="0.1" height="15.0" fill="rgb(253,197,27)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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>do_futex_wait.constprop.3 (7 samples, 0.04%)</title><rect x="1149.6" y="789" width="0.5" height="15.0" fill="rgb(208,206,15)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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>_ZN2v88internal8compiler22PipelineCompilationJob15FinalizeJobImplEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="1133.5" y="389" width="0.2" height="15.0" fill="rgb(232,214,29)" rx="2" ry="2" />
<text text-anchor="" x="1136.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>[[kernel.kallsyms]] (11 samples, 0.06%)</title><rect x="157.4" y="373" width="0.8" height="15.0" fill="rgb(220,131,7)" rx="2" ry="2" />
<text text-anchor="" x="160.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>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="823.0" y="437" width="0.2" height="15.0" fill="rgb(205,114,21)" rx="2" ry="2" />
<text text-anchor="" x="826.04" 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]] (2 samples, 0.01%)</title><rect x="479.4" y="277" width="0.2" height="15.0" fill="rgb(229,172,9)" rx="2" ry="2" />
<text text-anchor="" x="482.43" 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-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="165" width="0.2" height="15.0" fill="rgb(230,126,39)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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>_ZN2v88internal35Runtime_DefineDataPropertyInLiteralEiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="642.2" y="405" width="0.3" height="15.0" fill="rgb(228,155,12)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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="1178.6" y="645" width="0.2" height="15.0" fill="rgb(248,148,14)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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="39.0" y="357" width="0.2" height="15.0" fill="rgb(247,98,9)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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>_ZN2v88internal14ScavengingTask13RunInParallelEv (3 samples, 0.02%)</title><rect x="1178.4" y="741" width="0.2" height="15.0" fill="rgb(207,83,33)" rx="2" ry="2" />
<text text-anchor="" x="1181.43" 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>_ZN2v88internal7Factory16AllocateRawArrayEiNS0_13PretenureFlagE (109 samples, 0.63%)</title><rect x="1041.2" y="341" width="7.5" height="15.0" fill="rgb(250,136,26)" rx="2" ry="2" />
<text text-anchor="" x="1044.19" 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>__lll_unlock_wake (5 samples, 0.03%)</title><rect x="1178.8" y="741" width="0.3" height="15.0" fill="rgb(218,128,25)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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>_ZN2v88internal34Builtin_DataViewPrototypeSetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (39 samples, 0.23%)</title><rect x="593.2" y="405" width="2.7" height="15.0" fill="rgb(228,155,6)" rx="2" ry="2" />
<text text-anchor="" x="596.19" 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="799.2" y="293" width="0.2" height="15.0" fill="rgb(217,85,54)" rx="2" ry="2" />
<text text-anchor="" x="802.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>_ZNK2v88internal14FeedbackVector7GetKindENS0_12FeedbackSlotE (2 samples, 0.01%)</title><rect x="825.0" y="437" width="0.1" height="15.0" fill="rgb(234,134,37)" rx="2" ry="2" />
<text text-anchor="" x="827.96" 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>__mpn_mul_1 (2 samples, 0.01%)</title><rect x="10.8" y="741" width="0.1" height="15.0" fill="rgb(250,227,28)" rx="2" ry="2" />
<text text-anchor="" x="13.75" 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="1179.1" y="709" width="0.2" height="15.0" fill="rgb(230,0,4)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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>_ZN2v88internal19TransitionsAccessor16SearchTransitionEPNS0_4NameENS0_12PropertyKindENS0_18PropertyAttributesE (324 samples, 1.88%)</title><rect x="1067.6" y="389" width="22.2" height="15.0" fill="rgb(253,220,7)" rx="2" ry="2" />
<text text-anchor="" x="1070.61" 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="385.1" y="357" width="0.3" height="15.0" fill="rgb(236,85,28)" rx="2" ry="2" />
<text text-anchor="" x="388.10" 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="1133.4" y="389" width="0.1" height="15.0" fill="rgb(254,3,41)" rx="2" ry="2" />
<text text-anchor="" x="1136.39" 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>_ZN2v88internal14CancelableTask3RunEv (421 samples, 2.44%)</title><rect x="1151.9" y="773" width="28.9" height="15.0" fill="rgb(218,17,26)" rx="2" ry="2" />
<text text-anchor="" x="1154.94" y="783.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>__clock_gettime (2 samples, 0.01%)</title><rect x="11.0" y="789" width="0.1" height="15.0" fill="rgb(240,24,43)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>_ZN2v88internal8NewSpace26UpdateLinearAllocationAreaEv (2 samples, 0.01%)</title><rect x="1047.6" y="261" width="0.2" height="15.0" fill="rgb(249,190,3)" rx="2" ry="2" />
<text text-anchor="" x="1050.63" 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="829.1" y="133" width="0.1" height="15.0" fill="rgb(210,171,35)" rx="2" ry="2" />
<text text-anchor="" x="832.07" 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>_ZNK2v88internal9Statement6IsJumpEv (4 samples, 0.02%)</title><rect x="1148.2" y="197" width="0.3" height="15.0" fill="rgb(241,200,54)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (7 samples, 0.04%)</title><rect x="827.4" y="357" width="0.5" height="15.0" fill="rgb(221,227,3)" rx="2" ry="2" />
<text text-anchor="" x="830.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="645" width="0.3" height="15.0" fill="rgb(238,78,52)" 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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="642.2" y="325" width="0.3" height="15.0" fill="rgb(252,36,35)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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="406.7" y="405" width="0.4" height="15.0" fill="rgb(216,211,37)" rx="2" ry="2" />
<text text-anchor="" x="409.73" 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>[perf-30995.map] (9,745 samples, 56.53%)</title><rect x="158.2" y="453" width="667.0" height="15.0" fill="rgb(234,42,38)" rx="2" ry="2" />
<text text-anchor="" x="161.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="818.5" y="389" width="0.2" height="15.0" fill="rgb(221,45,0)" rx="2" ry="2" />
<text text-anchor="" x="821.52" 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>_ZN2v88internal11interpreter17BytecodeGenerator10VisitBlockEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="261" width="0.3" height="15.0" fill="rgb(221,53,35)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (7 samples, 0.04%)</title><rect x="868.8" y="373" width="0.5" height="15.0" fill="rgb(253,68,10)" rx="2" ry="2" />
<text text-anchor="" x="871.84" 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>_ZN2v88internal8GCTracer4StopENS0_16GarbageCollectorE (2 samples, 0.01%)</title><rect x="832.2" y="389" width="0.2" height="15.0" fill="rgb(230,60,38)" rx="2" ry="2" />
<text text-anchor="" x="835.21" 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]] (5 samples, 0.03%)</title><rect x="157.9" y="309" width="0.3" height="15.0" fill="rgb(239,120,36)" rx="2" ry="2" />
<text text-anchor="" x="160.85" 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>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (7 samples, 0.04%)</title><rect x="823.9" y="373" width="0.4" height="15.0" fill="rgb(234,126,46)" rx="2" ry="2" />
<text text-anchor="" x="826.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="1142.5" y="341" width="0.1" height="15.0" fill="rgb(229,52,29)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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="1149.7" y="677" width="0.4" height="15.0" fill="rgb(207,143,3)" rx="2" ry="2" />
<text text-anchor="" x="1152.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]] (3 samples, 0.02%)</title><rect x="799.2" y="341" width="0.2" height="15.0" fill="rgb(225,200,27)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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 (4 samples, 0.02%)</title><rect x="818.5" y="437" width="0.2" height="15.0" fill="rgb(236,174,48)" rx="2" ry="2" />
<text text-anchor="" x="821.46" 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>_ZN2v88internal22SerializerDeserializer7IterateEPNS0_7IsolateEPNS0_11RootVisitorE (17 samples, 0.10%)</title><rect x="829.6" y="357" width="1.2" height="15.0" fill="rgb(236,144,18)" rx="2" ry="2" />
<text text-anchor="" x="832.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>_ZN2v88internalL40Builtin_Impl_DataViewPrototypeGetFloat32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (452 samples, 2.62%)</title><rect x="596.3" y="389" width="31.0" height="15.0" fill="rgb(252,18,47)" rx="2" ry="2" />
<text text-anchor="" x="599.34" 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>__clone (4 samples, 0.02%)</title><rect x="1148.6" y="725" width="0.3" height="15.0" fill="rgb(218,128,48)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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>_ZN2v88internal38Runtime_CompileOptimized_NotConcurrentEiPPNS0_6ObjectEPNS0_7IsolateE (7 samples, 0.04%)</title><rect x="1133.5" y="453" width="0.5" height="15.0" fill="rgb(225,102,48)" rx="2" ry="2" />
<text text-anchor="" x="1136.53" 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>_ZN4node5StartEPN2v87IsolateEPNS_11IsolateDataEiPKPKciS8_ (16,604 samples, 96.32%)</title><rect x="12.3" y="757" width="1136.6" height="15.0" fill="rgb(244,115,39)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="767.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>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (25 samples, 0.15%)</title><rect x="804.6" y="421" width="1.7" height="15.0" fill="rgb(210,225,7)" rx="2" ry="2" />
<text text-anchor="" x="807.56" 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>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (19 samples, 0.11%)</title><rect x="1123.9" y="405" width="1.3" height="15.0" fill="rgb(247,111,16)" rx="2" ry="2" />
<text text-anchor="" x="1126.88" 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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="421" width="0.3" height="15.0" fill="rgb(237,89,29)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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 (3 samples, 0.02%)</title><rect x="408.2" y="389" width="0.2" height="15.0" fill="rgb(227,191,10)" rx="2" ry="2" />
<text text-anchor="" x="411.24" 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="641.0" y="261" width="0.1" height="15.0" fill="rgb(207,7,33)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="181" width="0.2" height="15.0" fill="rgb(241,63,16)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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]] (4 samples, 0.02%)</title><rect x="642.2" y="197" width="0.3" height="15.0" fill="rgb(249,15,21)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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="1178.6" y="565" width="0.2" height="15.0" fill="rgb(254,19,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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]] (5 samples, 0.03%)</title><rect x="1178.8" y="725" width="0.3" height="15.0" fill="rgb(213,79,41)" rx="2" ry="2" />
<text text-anchor="" x="1181.77" 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>_ZN2v88internal4Heap8ScavengeEv (58 samples, 0.34%)</title><rect x="828.0" y="373" width="3.9" height="15.0" fill="rgb(225,34,18)" rx="2" ry="2" />
<text text-anchor="" x="830.97" 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="571.9" y="309" width="0.1" height="15.0" fill="rgb(223,200,30)" rx="2" ry="2" />
<text text-anchor="" x="574.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]] (15 samples, 0.09%)</title><rect x="157.2" y="453" width="1.0" height="15.0" fill="rgb(247,119,24)" rx="2" ry="2" />
<text text-anchor="" x="160.17" 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>__clone (17 samples, 0.10%)</title><rect x="11.1" y="789" width="1.2" height="15.0" fill="rgb(236,209,13)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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>_ZN2v88internal34Builtin_DataViewPrototypeGetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (746 samples, 4.33%)</title><rect x="481.2" y="405" width="51.1" height="15.0" fill="rgb(209,98,31)" rx="2" ry="2" />
<text text-anchor="" x="484.21" y="415.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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (729 samples, 4.23%)</title><rect x="482.4" y="389" width="49.9" height="15.0" fill="rgb(207,19,19)" rx="2" ry="2" />
<text text-anchor="" x="485.37" y="399.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]] (4 samples, 0.02%)</title><rect x="1189.7" y="709" width="0.3" height="15.0" fill="rgb(233,37,50)" 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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="310.0" y="277" width="0.4" height="15.0" fill="rgb(220,85,5)" rx="2" ry="2" />
<text text-anchor="" x="313.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="641.0" y="325" width="0.1" height="15.0" fill="rgb(252,13,4)" rx="2" ry="2" />
<text text-anchor="" x="643.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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="158.0" y="277" width="0.2" height="15.0" fill="rgb(248,222,50)" rx="2" ry="2" />
<text text-anchor="" x="160.99" 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>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (4 samples, 0.02%)</title><rect x="642.2" y="389" width="0.3" height="15.0" fill="rgb(227,159,9)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal16LargeObjectSpace8FindPageEm (15 samples, 0.09%)</title><rect x="1176.7" y="741" width="1.0" height="15.0" fill="rgb(252,51,13)" rx="2" ry="2" />
<text text-anchor="" x="1179.72" 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>_ZNK2v88internal3Map21GetInObjectPropertiesEv (8 samples, 0.05%)</title><rect x="1051.0" y="373" width="0.6" height="15.0" fill="rgb(239,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1054.05" 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>_ZN2v88internalL38Builtin_Impl_DataViewPrototypeGetUint8ENS0_16BuiltinArgumentsEPNS0_7IsolateE (8 samples, 0.05%)</title><rect x="642.5" y="405" width="0.5" height="15.0" fill="rgb(221,181,45)" rx="2" ry="2" />
<text text-anchor="" x="645.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]] (95 samples, 0.55%)</title><rect x="1182.7" y="757" width="6.5" height="15.0" fill="rgb(227,143,9)" rx="2" ry="2" />
<text text-anchor="" x="1185.68" 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]] (4 samples, 0.02%)</title><rect x="1189.7" y="725" width="0.3" height="15.0" fill="rgb(253,211,17)" 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>pthread_cond_signal@@GLIBC_2.3.2 (6 samples, 0.03%)</title><rect x="1150.1" y="789" width="0.4" height="15.0" fill="rgb(231,167,23)" rx="2" ry="2" />
<text text-anchor="" x="1153.09" 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>_ZN4node12NodePlatform22CallOnBackgroundThreadEPN2v84TaskENS1_8Platform15ExpectedRuntimeE (7 samples, 0.04%)</title><rect x="828.7" y="341" width="0.5" height="15.0" fill="rgb(252,117,25)" rx="2" ry="2" />
<text text-anchor="" x="831.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="1149.8" y="629" width="0.3" height="15.0" fill="rgb(234,110,38)" rx="2" ry="2" />
<text text-anchor="" x="1152.75" 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="1178.6" y="677" width="0.2" height="15.0" fill="rgb(248,200,36)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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>_ZN2v88internal9SemiSpace13FixPagesFlagsEll (2 samples, 0.01%)</title><rect x="831.5" y="341" width="0.2" height="15.0" fill="rgb(241,227,51)" rx="2" ry="2" />
<text text-anchor="" x="834.53" 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 (36 samples, 0.21%)</title><rect x="507.6" y="373" width="2.5" height="15.0" fill="rgb(233,205,39)" rx="2" ry="2" />
<text text-anchor="" x="510.63" 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>_ZN2v88internal11interpreter25InterpreterCompilationJob14ExecuteJobImplEv (4 samples, 0.02%)</title><rect x="1148.2" y="533" width="0.3" height="15.0" fill="rgb(245,166,45)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="293" width="0.2" height="15.0" fill="rgb(235,17,30)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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]] (6 samples, 0.03%)</title><rect x="1181.0" y="757" width="0.4" height="15.0" fill="rgb(228,33,45)" rx="2" ry="2" />
<text text-anchor="" x="1184.03" 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>__libc_start_main (16,605 samples, 96.32%)</title><rect x="12.3" y="789" width="1136.6" height="15.0" fill="rgb(250,110,6)" rx="2" ry="2" />
<text text-anchor="" x="15.26" y="799.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="406.9" y="277" width="0.2" height="15.0" fill="rgb(222,170,38)" rx="2" ry="2" />
<text text-anchor="" x="409.94" 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="1148.2" y="133" width="0.3" height="15.0" fill="rgb(220,13,48)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="1179.1" y="677" width="0.2" height="15.0" fill="rgb(214,87,1)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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>_ZN2v88internal11interpreter17BytecodeGenerator20GenerateBytecodeBodyEv (4 samples, 0.02%)</title><rect x="1148.2" y="501" width="0.3" height="15.0" fill="rgb(205,120,7)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="407.6" y="149" width="0.2" height="15.0" fill="rgb(221,92,41)" rx="2" ry="2" />
<text text-anchor="" x="410.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]] (4 samples, 0.02%)</title><rect x="427.9" y="325" width="0.3" height="15.0" fill="rgb(240,2,36)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (7 samples, 0.04%)</title><rect x="1133.5" y="421" width="0.5" height="15.0" fill="rgb(239,97,24)" rx="2" ry="2" />
<text text-anchor="" x="1136.53" 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="1178.6" y="597" width="0.2" height="15.0" fill="rgb(230,27,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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]] (3 samples, 0.02%)</title><rect x="799.2" y="309" width="0.2" height="15.0" fill="rgb(217,219,7)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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]] (20 samples, 0.12%)</title><rect x="646.0" y="277" width="1.3" height="15.0" fill="rgb(225,170,28)" rx="2" ry="2" />
<text text-anchor="" x="648.96" 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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="277" width="0.3" height="15.0" fill="rgb(220,161,6)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="789" width="0.3" height="15.0" fill="rgb(251,43,14)" rx="2" ry="2" />
<text text-anchor="" x="1192.73" 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>_ZN2v88internal19RootScavengeVisitor16VisitRootPointerENS0_4RootEPKcPPNS0_6ObjectE (3 samples, 0.02%)</title><rect x="830.6" y="341" width="0.2" height="15.0" fill="rgb(241,60,27)" rx="2" ry="2" />
<text text-anchor="" x="833.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>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="825.1" y="437" width="0.1" height="15.0" fill="rgb(211,109,23)" rx="2" ry="2" />
<text text-anchor="" x="828.10" 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>_ZN2v88internal8NewSpace26UpdateLinearAllocationAreaEv (2 samples, 0.01%)</title><rect x="827.0" y="357" width="0.1" height="15.0" fill="rgb(205,167,19)" rx="2" ry="2" />
<text text-anchor="" x="830.01" 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>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (69 samples, 0.40%)</title><rect x="827.4" y="389" width="4.7" height="15.0" fill="rgb(228,206,18)" rx="2" ry="2" />
<text text-anchor="" x="830.35" 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]] (16 samples, 0.09%)</title><rect x="309.3" y="437" width="1.1" height="15.0" fill="rgb(223,177,49)" rx="2" ry="2" />
<text text-anchor="" x="312.26" 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>_ZN2v88internal33Builtin_DataViewPrototypeGetUint8EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="408.0" y="389" width="0.2" height="15.0" fill="rgb(210,125,34)" rx="2" ry="2" />
<text text-anchor="" x="410.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>_ZN2v88internal14ScavengingTask13RunInParallelEv (2 samples, 0.01%)</title><rect x="1048.0" y="229" width="0.1" height="15.0" fill="rgb(209,115,21)" rx="2" ry="2" />
<text text-anchor="" x="1050.97" 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="39.0" y="373" width="0.2" height="15.0" fill="rgb(210,198,30)" rx="2" ry="2" />
<text text-anchor="" x="42.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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="437" width="0.3" height="15.0" fill="rgb(244,126,22)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal7Factory15NewFillerObjectEibNS0_15AllocationSpaceE (84 samples, 0.49%)</title><rect x="826.7" y="437" width="5.8" height="15.0" fill="rgb(217,171,13)" rx="2" ry="2" />
<text text-anchor="" x="829.74" 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]] (3 samples, 0.02%)</title><rect x="507.4" y="277" width="0.2" height="15.0" fill="rgb(211,120,20)" rx="2" ry="2" />
<text text-anchor="" x="510.42" 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="1089.6" y="293" width="0.2" height="15.0" fill="rgb(244,109,45)" rx="2" ry="2" />
<text text-anchor="" x="1092.58" 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="828.7" y="213" width="0.5" height="15.0" fill="rgb(231,145,38)" rx="2" ry="2" />
<text text-anchor="" x="831.72" 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>pthread_mutex_unlock (4 samples, 0.02%)</title><rect x="1189.2" y="773" width="0.3" height="15.0" fill="rgb(230,149,43)" rx="2" ry="2" />
<text text-anchor="" x="1192.25" 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>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (9 samples, 0.05%)</title><rect x="828.6" y="357" width="0.6" height="15.0" fill="rgb(206,147,15)" rx="2" ry="2" />
<text text-anchor="" x="831.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>__lll_unlock_wake (7 samples, 0.04%)</title><rect x="1181.0" y="773" width="0.4" height="15.0" fill="rgb(241,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1183.96" 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>[[kernel.kallsyms]] (13 samples, 0.08%)</title><rect x="309.5" y="373" width="0.9" height="15.0" fill="rgb(219,31,5)" rx="2" ry="2" />
<text text-anchor="" x="312.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>_ZN2v88internal14LookupIterator31PrepareTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS5_14StoreFromKeyedE (8 samples, 0.05%)</title><rect x="824.3" y="389" width="0.6" height="15.0" fill="rgb(233,48,13)" rx="2" ry="2" />
<text text-anchor="" x="827.34" 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]] (87 samples, 0.50%)</title><rect x="1183.2" y="677" width="6.0" height="15.0" fill="rgb(252,50,45)" rx="2" ry="2" />
<text text-anchor="" x="1186.22" 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="1179.3" y="645" width="0.4" height="15.0" fill="rgb(251,40,22)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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="799.2" y="357" width="0.2" height="15.0" fill="rgb(206,60,50)" rx="2" ry="2" />
<text text-anchor="" x="802.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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="721.0" y="309" width="0.2" height="15.0" fill="rgb(214,191,15)" rx="2" ry="2" />
<text text-anchor="" x="723.98" 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="1180.6" y="709" width="0.2" height="15.0" fill="rgb(210,19,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="448.4" y="341" width="0.1" height="15.0" fill="rgb(211,167,1)" rx="2" ry="2" />
<text text-anchor="" x="451.35" 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]] (8 samples, 0.05%)</title><rect x="157.6" y="341" width="0.6" height="15.0" fill="rgb(253,41,50)" rx="2" ry="2" />
<text text-anchor="" x="160.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>_ZN2v88internal12_GLOBAL__N_124UpdateDescriptorForValueENS0_6HandleINS0_3MapEEEiNS0_17PropertyConstnessENS2_INS0_6ObjectEEE (150 samples, 0.87%)</title><rect x="1105.5" y="373" width="10.2" height="15.0" fill="rgb(212,6,4)" rx="2" ry="2" />
<text text-anchor="" x="1108.46" 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="385.2" y="277" width="0.2" height="15.0" fill="rgb(241,151,16)" rx="2" ry="2" />
<text text-anchor="" x="388.24" 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_malloc (3 samples, 0.02%)</title><rect x="1150.8" y="805" width="0.3" height="15.0" fill="rgb(227,174,34)" rx="2" ry="2" />
<text text-anchor="" x="1153.85" y="815.5" font-size="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 (108 samples, 0.63%)</title><rect x="1181.8" y="773" width="7.4" height="15.0" fill="rgb(225,64,29)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" 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>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="828.7" y="293" width="0.5" height="15.0" fill="rgb(228,152,5)" rx="2" ry="2" />
<text text-anchor="" x="831.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]] (2 samples, 0.01%)</title><rect x="479.4" y="309" width="0.2" height="15.0" fill="rgb(214,18,27)" rx="2" ry="2" />
<text text-anchor="" x="482.43" 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-30995.map] (16,595 samples, 96.26%)</title><rect x="12.3" y="597" width="1135.9" height="15.0" fill="rgb(247,33,27)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal15TransitionArray13SearchDetailsEiNS0_12PropertyKindENS0_18PropertyAttributesEPi (19 samples, 0.11%)</title><rect x="1119.2" y="357" width="1.3" height="15.0" fill="rgb(243,76,40)" rx="2" ry="2" />
<text text-anchor="" x="1122.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>_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorENS_15GCCallbackFlagsE (12 samples, 0.07%)</title><rect x="1047.8" y="293" width="0.8" height="15.0" fill="rgb(253,227,48)" rx="2" ry="2" />
<text text-anchor="" x="1050.76" 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="1142.5" y="437" width="0.1" height="15.0" fill="rgb(238,161,17)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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>[perf-30995.map] (16,600 samples, 96.29%)</title><rect x="12.3" y="693" width="1136.3" height="15.0" fill="rgb(239,32,13)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_115CompileToplevelEPNS0_9ParseInfoEPNS0_7IsolateE (2 samples, 0.01%)</title><rect x="407.6" y="53" width="0.2" height="15.0" fill="rgb(248,13,10)" rx="2" ry="2" />
<text text-anchor="" x="410.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]] (93 samples, 0.54%)</title><rect x="1182.8" y="725" width="6.4" height="15.0" fill="rgb(210,155,36)" rx="2" ry="2" />
<text text-anchor="" x="1185.81" 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="1089.7" y="261" width="0.1" height="15.0" fill="rgb(212,42,9)" rx="2" ry="2" />
<text text-anchor="" x="1092.65" 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>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (4 samples, 0.02%)</title><rect x="408.7" y="389" width="0.3" height="15.0" fill="rgb(252,37,4)" rx="2" ry="2" />
<text text-anchor="" x="411.72" 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="818.5" y="357" width="0.2" height="15.0" fill="rgb(237,91,36)" rx="2" ry="2" />
<text text-anchor="" x="821.52" 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="961.1" y="309" width="0.2" height="15.0" fill="rgb(207,208,22)" rx="2" ry="2" />
<text text-anchor="" x="964.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>_ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb1EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEESA_NS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EENS0_16BuiltinArgumentsE (2 samples, 0.01%)</title><rect x="407.6" y="133" width="0.2" height="15.0" fill="rgb(221,124,31)" rx="2" ry="2" />
<text text-anchor="" x="410.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>_ZN2v88internal34Builtin_DataViewPrototypeSetUint16EiPPNS0_6ObjectEPNS0_7IsolateE (14 samples, 0.08%)</title><rect x="809.8" y="421" width="0.9" height="15.0" fill="rgb(233,154,0)" rx="2" ry="2" />
<text text-anchor="" x="812.76" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (62 samples, 0.36%)</title><rect x="810.9" y="405" width="4.2" height="15.0" fill="rgb(241,165,1)" rx="2" ry="2" />
<text text-anchor="" x="813.86" 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="571.9" y="373" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text text-anchor="" x="574.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>_ZNK2v88internal13FeedbackNexus17StateFromFeedbackEv (113 samples, 0.66%)</title><rect x="1134.9" y="453" width="7.7" height="15.0" fill="rgb(222,116,33)" rx="2" ry="2" />
<text text-anchor="" x="1137.90" 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>[perf-30995.map] (3,791 samples, 21.99%)</title><rect x="385.4" y="421" width="259.5" height="15.0" fill="rgb(247,82,5)" rx="2" ry="2" />
<text text-anchor="" x="388.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="407.2" y="277" width="0.3" height="15.0" fill="rgb(219,229,19)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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="1148.6" y="661" width="0.3" height="15.0" fill="rgb(246,211,14)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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]] (17 samples, 0.10%)</title><rect x="11.1" y="677" width="1.2" height="15.0" fill="rgb(215,32,0)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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="1176.6" y="645" width="0.1" height="15.0" fill="rgb(233,63,0)" rx="2" ry="2" />
<text text-anchor="" x="1179.58" 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]] (16,662 samples, 96.65%)</title><rect x="10.0" y="805" width="1140.5" height="15.0" fill="rgb(245,151,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="815.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="799.3" y="229" width="0.1" height="15.0" fill="rgb(236,78,54)" rx="2" ry="2" />
<text text-anchor="" x="802.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>_ZN2v88internal4Heap11AllocateRawEiNS0_15AllocationSpaceENS0_19AllocationAlignmentE (7 samples, 0.04%)</title><rect x="1042.7" y="325" width="0.5" height="15.0" fill="rgb(222,109,24)" rx="2" ry="2" />
<text text-anchor="" x="1045.70" 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_DataViewPrototypeGetUint32EiPPNS0_6ObjectEPNS0_7IsolateE (51 samples, 0.30%)</title><rect x="806.3" y="421" width="3.5" height="15.0" fill="rgb(215,96,9)" rx="2" ry="2" />
<text text-anchor="" x="809.27" 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>_ZN2v88internal2V818GetCurrentPlatformEv (2 samples, 0.01%)</title><rect x="647.5" y="421" width="0.2" height="15.0" fill="rgb(209,81,4)" rx="2" ry="2" />
<text text-anchor="" x="650.54" 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 (36 samples, 0.21%)</title><rect x="820.5" y="437" width="2.5" height="15.0" fill="rgb(232,114,51)" rx="2" ry="2" />
<text text-anchor="" x="823.51" 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]] (94 samples, 0.55%)</title><rect x="1182.7" y="741" width="6.5" height="15.0" fill="rgb(236,115,16)" rx="2" ry="2" />
<text text-anchor="" x="1185.74" 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>_ZN2v88internal8JSObject33DefineOwnPropertyIgnoreAttributesEPNS0_14LookupIteratorENS0_6HandleINS0_6ObjectEEENS0_18PropertyAttributesENS0_11ShouldThrowENS1_20AccessorInfoHandlingE (20 samples, 0.12%)</title><rect x="823.5" y="421" width="1.4" height="15.0" fill="rgb(238,65,12)" rx="2" ry="2" />
<text text-anchor="" x="826.52" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeSetUint16ENS0_16BuiltinArgumentsEPNS0_7IsolateE (5 samples, 0.03%)</title><rect x="644.0" y="405" width="0.4" height="15.0" fill="rgb(219,17,11)" rx="2" ry="2" />
<text text-anchor="" x="647.05" 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]] (7 samples, 0.04%)</title><rect x="309.9" y="309" width="0.5" height="15.0" fill="rgb(215,73,24)" rx="2" ry="2" />
<text text-anchor="" x="312.88" 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 (9 samples, 0.05%)</title><rect x="900.5" y="437" width="0.6" height="15.0" fill="rgb(233,71,15)" rx="2" ry="2" />
<text text-anchor="" x="903.46" 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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="309" width="0.2" height="15.0" fill="rgb(251,212,21)" rx="2" ry="2" />
<text text-anchor="" x="410.55" 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="1142.5" y="325" width="0.1" height="15.0" fill="rgb(212,46,32)" rx="2" ry="2" />
<text text-anchor="" x="1145.50" 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="611.6" y="293" width="0.1" height="15.0" fill="rgb(222,223,0)" rx="2" ry="2" />
<text text-anchor="" x="614.60" 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>_ZN2v88internal8compiler31EffectControlLinearizationPhase3RunEPNS1_12PipelineDataEPNS0_4ZoneE (2 samples, 0.01%)</title><rect x="1133.9" y="373" width="0.1" height="15.0" fill="rgb(236,20,15)" rx="2" ry="2" />
<text text-anchor="" x="1136.87" 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="479.4" y="357" width="0.2" height="15.0" fill="rgb(225,33,38)" rx="2" ry="2" />
<text text-anchor="" x="482.43" 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="828.7" y="277" width="0.5" height="15.0" fill="rgb(236,202,44)" rx="2" ry="2" />
<text text-anchor="" x="831.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]] (8 samples, 0.05%)</title><rect x="646.8" y="197" width="0.5" height="15.0" fill="rgb(239,153,42)" rx="2" ry="2" />
<text text-anchor="" x="649.79" 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]] (4 samples, 0.02%)</title><rect x="406.8" y="293" width="0.3" height="15.0" fill="rgb(218,37,0)" rx="2" ry="2" />
<text text-anchor="" x="409.80" 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="1180.6" y="725" width="0.2" height="15.0" fill="rgb(221,148,4)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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>malloc (5 samples, 0.03%)</title><rect x="1151.1" y="805" width="0.4" height="15.0" fill="rgb(228,11,7)" rx="2" ry="2" />
<text text-anchor="" x="1154.12" y="815.5" font-size="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-30995.map] (16,594 samples, 96.26%)</title><rect x="12.3" y="533" width="1135.9" height="15.0" fill="rgb(227,55,37)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN2v88internal12_GLOBAL__N_116GetOptimizedCodeENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_9BailoutIdEPNS0_15JavaScriptFrameE (3 samples, 0.02%)</title><rect x="816.5" y="389" width="0.2" height="15.0" fill="rgb(252,23,44)" rx="2" ry="2" />
<text text-anchor="" x="819.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>_ZN2v88internal9FieldType4castEPNS0_6ObjectE (11 samples, 0.06%)</title><rect x="1121.1" y="373" width="0.8" height="15.0" fill="rgb(216,126,48)" rx="2" ry="2" />
<text text-anchor="" x="1124.14" 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="157.7" y="325" width="0.5" height="15.0" fill="rgb(215,221,48)" rx="2" ry="2" />
<text text-anchor="" x="160.71" 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>__lll_lock_wait (2 samples, 0.01%)</title><rect x="1178.6" y="741" width="0.2" height="15.0" fill="rgb(233,190,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.64" 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 (6 samples, 0.03%)</title><rect x="1179.8" y="709" width="0.4" height="15.0" fill="rgb(223,171,39)" rx="2" ry="2" />
<text text-anchor="" x="1182.80" 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="1148.6" y="709" width="0.3" height="15.0" fill="rgb(244,220,38)" rx="2" ry="2" />
<text text-anchor="" x="1151.59" 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>_ZN2v88internal15ItemParallelJob3RunESt10shared_ptrINS0_8CountersEE (2 samples, 0.01%)</title><rect x="1048.0" y="261" width="0.1" height="15.0" fill="rgb(251,53,13)" rx="2" ry="2" />
<text text-anchor="" x="1050.97" 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>_ZNK2v88internal3Map21GetInObjectPropertiesEv (9 samples, 0.05%)</title><rect x="1054.1" y="389" width="0.6" height="15.0" fill="rgb(212,103,11)" rx="2" ry="2" />
<text text-anchor="" x="1057.06" 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.6" y="645" width="0.2" height="15.0" fill="rgb(210,180,3)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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>_ZN2v88internalL39Builtin_Impl_DataViewPrototypeGetUint32ENS0_16BuiltinArgumentsEPNS0_7IsolateE (98 samples, 0.57%)</title><rect x="532.4" y="389" width="6.7" height="15.0" fill="rgb(253,103,53)" rx="2" ry="2" />
<text text-anchor="" x="535.41" 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>_ZN2v88internal11interpreter17BytecodeGenerator35VisitBlockDeclarationsAndStatementsEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="245" width="0.3" height="15.0" fill="rgb(212,34,10)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="407.2" y="245" width="0.3" height="15.0" fill="rgb(246,40,37)" rx="2" ry="2" />
<text text-anchor="" x="410.21" 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>_ZN2v88internal9Scavenger12ScavengePageEPNS0_11MemoryChunkE (2 samples, 0.01%)</title><rect x="1048.0" y="213" width="0.1" height="15.0" fill="rgb(230,27,19)" rx="2" ry="2" />
<text text-anchor="" x="1050.97" 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>_ZN2v88internal11StoreBuffer4Task11RunInternalEv (386 samples, 2.24%)</title><rect x="1151.9" y="757" width="26.5" height="15.0" fill="rgb(206,185,32)" rx="2" ry="2" />
<text text-anchor="" x="1154.94" 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>_ZN2v88internal4Heap31MonotonicallyIncreasingTimeInMsEv (2 samples, 0.01%)</title><rect x="1177.8" y="725" width="0.2" height="15.0" fill="rgb(223,178,9)" rx="2" ry="2" />
<text text-anchor="" x="1180.82" 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>_ZN2v88internal7Factory9NewNumberEdNS0_13PretenureFlagE (10 samples, 0.06%)</title><rect x="809.1" y="389" width="0.7" height="15.0" fill="rgb(215,81,46)" rx="2" ry="2" />
<text text-anchor="" x="812.08" 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="571.9" y="357" width="0.1" height="15.0" fill="rgb(210,52,33)" rx="2" ry="2" />
<text text-anchor="" x="574.90" 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="642.2" y="309" width="0.3" height="15.0" fill="rgb(250,113,10)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>_ZN2v88internal8JSObject12MigrateToMapENS0_6HandleIS1_EENS2_INS0_3MapEEEi (1,025 samples, 5.95%)</title><rect x="981.4" y="389" width="70.2" height="15.0" fill="rgb(228,37,24)" rx="2" ry="2" />
<text text-anchor="" x="984.43" y="399.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="818.6" y="277" width="0.1" height="15.0" fill="rgb(226,111,47)" rx="2" ry="2" />
<text text-anchor="" x="821.59" 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="961.1" y="293" width="0.2" height="15.0" fill="rgb(247,193,48)" rx="2" ry="2" />
<text text-anchor="" x="964.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>_ZN2v88internal15ItemParallelJob4Task11RunInternalEv (2 samples, 0.01%)</title><rect x="828.6" y="341" width="0.1" height="15.0" fill="rgb(245,213,34)" rx="2" ry="2" />
<text text-anchor="" x="831.59" 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>_ZN2v88internal14ScavengingTaskD0Ev (2 samples, 0.01%)</title><rect x="1180.8" y="773" width="0.1" height="15.0" fill="rgb(213,226,36)" rx="2" ry="2" />
<text text-anchor="" x="1183.76" 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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="406.8" y="357" width="0.3" height="15.0" fill="rgb(253,128,52)" rx="2" ry="2" />
<text text-anchor="" x="409.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]] (2 samples, 0.01%)</title><rect x="1105.3" y="357" width="0.2" height="15.0" fill="rgb(216,156,34)" rx="2" ry="2" />
<text text-anchor="" x="1108.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]] (5 samples, 0.03%)</title><rect x="1179.3" y="661" width="0.4" height="15.0" fill="rgb(242,6,54)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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>[perf-30995.map] (3 samples, 0.02%)</title><rect x="407.6" y="261" width="0.2" height="15.0" fill="rgb(208,152,9)" rx="2" ry="2" />
<text text-anchor="" x="410.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]] (5 samples, 0.03%)</title><rect x="1179.3" y="629" width="0.4" height="15.0" fill="rgb(213,104,25)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" 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="428.0" y="229" width="0.2" height="15.0" fill="rgb(233,150,17)" rx="2" ry="2" />
<text text-anchor="" x="431.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>[[kernel.kallsyms]] (17 samples, 0.10%)</title><rect x="11.1" y="693" width="1.2" height="15.0" fill="rgb(226,133,39)" rx="2" ry="2" />
<text text-anchor="" x="14.10" 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]] (29 samples, 0.17%)</title><rect x="645.3" y="341" width="2.0" height="15.0" fill="rgb(216,91,50)" rx="2" ry="2" />
<text text-anchor="" x="648.35" 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>_ZN4node15LoadEnvironmentEPNS_11EnvironmentE (16,604 samples, 96.32%)</title><rect x="12.3" y="741" width="1136.6" height="15.0" fill="rgb(252,192,19)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="751.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]] (4 samples, 0.02%)</title><rect x="406.8" y="373" width="0.3" height="15.0" fill="rgb(241,94,43)" rx="2" ry="2" />
<text text-anchor="" x="409.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]] (4 samples, 0.02%)</title><rect x="1179.4" y="549" width="0.3" height="15.0" fill="rgb(219,139,44)" rx="2" ry="2" />
<text text-anchor="" x="1182.39" 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]] (2 samples, 0.01%)</title><rect x="641.0" y="341" width="0.1" height="15.0" fill="rgb(229,221,18)" rx="2" ry="2" />
<text text-anchor="" x="643.97" 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-30995.map] (2 samples, 0.01%)</title><rect x="10.1" y="773" width="0.1" height="15.0" fill="rgb(238,62,0)" rx="2" ry="2" />
<text text-anchor="" x="13.07" 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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="406.8" y="341" width="0.3" height="15.0" fill="rgb(250,89,5)" rx="2" ry="2" />
<text text-anchor="" x="409.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>[[kernel.kallsyms]] (4 samples, 0.02%)</title><rect x="1189.7" y="773" width="0.3" height="15.0" fill="rgb(207,209,42)" 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>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="799.2" y="261" width="0.2" height="15.0" fill="rgb(233,61,36)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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>_ZN2v88internal14LookupIterator21LookupInRegularHolderILb0EEENS1_5StateEPNS0_3MapEPNS0_10JSReceiverE (228 samples, 1.32%)</title><rect x="884.9" y="421" width="15.6" height="15.0" fill="rgb(233,100,8)" rx="2" ry="2" />
<text text-anchor="" x="887.85" 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]] (4 samples, 0.02%)</title><rect x="1149.8" y="581" width="0.3" height="15.0" fill="rgb(212,184,26)" rx="2" ry="2" />
<text text-anchor="" x="1152.82" 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>_ZN2v88internal3Map24TransitionToDataPropertyENS0_6HandleIS1_EENS2_INS0_4NameEEENS2_INS0_6ObjectEEENS0_18PropertyAttributesENS0_17PropertyConstnessENS6_14StoreFromKeyedE (13 samples, 0.08%)</title><rect x="1123.0" y="405" width="0.9" height="15.0" fill="rgb(218,54,46)" rx="2" ry="2" />
<text text-anchor="" x="1125.99" 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>_ZNK2v88internal3Map14GetBackPointerEv (22 samples, 0.13%)</title><rect x="1048.7" y="373" width="1.5" height="15.0" fill="rgb(250,34,11)" rx="2" ry="2" />
<text text-anchor="" x="1051.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 (8 samples, 0.05%)</title><rect x="450.1" y="389" width="0.6" height="15.0" fill="rgb(207,26,35)" rx="2" ry="2" />
<text text-anchor="" x="453.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>[[kernel.kallsyms]] (7 samples, 0.04%)</title><rect x="1149.6" y="741" width="0.5" height="15.0" fill="rgb(252,112,1)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" 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="818.5" y="341" width="0.2" height="15.0" fill="rgb(207,84,6)" rx="2" ry="2" />
<text text-anchor="" x="821.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>_ZN2v88internal8NewSpace12AddFreshPageEv (3 samples, 0.02%)</title><rect x="826.9" y="373" width="0.2" height="15.0" fill="rgb(223,211,41)" rx="2" ry="2" />
<text text-anchor="" x="829.94" 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>[[vdso]] (2 samples, 0.01%)</title><rect x="11.0" y="773" width="0.1" height="15.0" fill="rgb(219,101,43)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>[[kernel.kallsyms]] (5 samples, 0.03%)</title><rect x="406.7" y="389" width="0.4" height="15.0" fill="rgb(220,74,0)" rx="2" ry="2" />
<text text-anchor="" x="409.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]] (2 samples, 0.01%)</title><rect x="611.6" y="341" width="0.1" height="15.0" fill="rgb(244,221,13)" rx="2" ry="2" />
<text text-anchor="" x="614.60" 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>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (1,316 samples, 7.63%)</title><rect x="964.6" y="405" width="90.1" height="15.0" fill="rgb(222,66,38)" rx="2" ry="2" />
<text text-anchor="" x="967.60" y="415.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]] (3 samples, 0.02%)</title><rect x="1179.1" y="661" width="0.2" height="15.0" fill="rgb(239,77,6)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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>_ZN2v88Function4CallENS_5LocalINS_7ContextEEENS1_INS_5ValueEEEiPS5_ (16,600 samples, 96.29%)</title><rect x="12.3" y="725" width="1136.3" height="15.0" fill="rgb(243,46,15)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="735.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>[[kernel.kallsyms]] (12 samples, 0.07%)</title><rect x="157.4" y="389" width="0.8" height="15.0" fill="rgb(209,37,7)" rx="2" ry="2" />
<text text-anchor="" x="160.37" 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-30995.map] (16,595 samples, 96.26%)</title><rect x="12.3" y="581" width="1135.9" height="15.0" fill="rgb(239,12,37)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.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="1148.2" y="37" width="0.3" height="15.0" fill="rgb(216,54,49)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (3 samples, 0.02%)</title><rect x="799.2" y="373" width="0.2" height="15.0" fill="rgb(235,105,45)" rx="2" ry="2" />
<text text-anchor="" x="802.22" 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>_ZN2v88internal12_GLOBAL__N_121GetIdentityHashHelperEPNS0_7IsolateEPNS0_10JSReceiverE.isra.363 (37 samples, 0.21%)</title><rect x="1023.0" y="357" width="2.5" height="15.0" fill="rgb(254,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>_ZN2v88internal8NewSpace16EnsureAllocationEiNS0_19AllocationAlignmentE (2 samples, 0.01%)</title><rect x="1047.6" y="293" width="0.2" height="15.0" fill="rgb(217,5,21)" rx="2" ry="2" />
<text text-anchor="" x="1050.63" 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>_ZNK2v88internal9Statement6IsJumpEv (4 samples, 0.02%)</title><rect x="1148.2" y="213" width="0.3" height="15.0" fill="rgb(230,33,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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]] (5 samples, 0.03%)</title><rect x="1149.8" y="645" width="0.3" height="15.0" fill="rgb(246,223,45)" rx="2" ry="2" />
<text text-anchor="" x="1152.75" 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="1180.6" y="741" width="0.2" height="15.0" fill="rgb(210,165,21)" rx="2" ry="2" />
<text text-anchor="" x="1183.62" 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="869.2" y="277" width="0.1" height="15.0" fill="rgb(239,4,9)" rx="2" ry="2" />
<text text-anchor="" x="872.18" 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>_ZN2v88internal8Compiler30GetSharedFunctionInfoForScriptENS0_6HandleINS0_6StringEEERKNS1_13ScriptDetailsENS_19ScriptOriginOptionsEPNS_9ExtensionEPNS0_10ScriptDataENS_14ScriptCompiler14CompileOptionsENSD_13NoCacheReasonENS0_11NativesFlagE (2 samples, 0.01%)</title><rect x="407.6" y="69" width="0.2" height="15.0" fill="rgb(243,77,9)" rx="2" ry="2" />
<text text-anchor="" x="410.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>_ZN2v88internal11StoreBuffer26MoveEntriesToRememberedSetEi (362 samples, 2.10%)</title><rect x="1151.9" y="741" width="24.8" height="15.0" fill="rgb(223,163,36)" rx="2" ry="2" />
<text text-anchor="" x="1154.94" 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]] (7 samples, 0.04%)</title><rect x="868.8" y="437" width="0.5" height="15.0" fill="rgb(205,12,3)" rx="2" ry="2" />
<text text-anchor="" x="871.84" 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>_ZN2v88internal14LookupIterator29ApplyTransitionToDataPropertyENS0_6HandleINS0_10JSReceiverEEE (8 samples, 0.05%)</title><rect x="823.8" y="389" width="0.5" height="15.0" fill="rgb(212,38,19)" rx="2" ry="2" />
<text text-anchor="" x="826.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>_ZN2v88internal11interpreter17BytecodeGenerator35VisitBlockDeclarationsAndStatementsEPNS0_5BlockE (4 samples, 0.02%)</title><rect x="1148.2" y="309" width="0.3" height="15.0" fill="rgb(249,151,36)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="507.4" y="357" width="0.2" height="15.0" fill="rgb(251,61,14)" rx="2" ry="2" />
<text text-anchor="" x="510.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>[perf-30995.map] (16,600 samples, 96.29%)</title><rect x="12.3" y="677" width="1136.3" height="15.0" fill="rgb(206,71,3)" rx="2" ry="2" />
<text text-anchor="" x="15.33" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[perf-30995.map]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.02%)</title><rect x="507.4" y="309" width="0.2" height="15.0" fill="rgb(246,0,39)" rx="2" ry="2" />
<text text-anchor="" x="510.42" 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="1148.2" y="101" width="0.3" height="15.0" fill="rgb(247,31,21)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>[[kernel.kallsyms]] (13 samples, 0.08%)</title><rect x="309.5" y="389" width="0.9" height="15.0" fill="rgb(251,44,6)" rx="2" ry="2" />
<text text-anchor="" x="312.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>[[kernel.kallsyms]] (2 samples, 0.01%)</title><rect x="10.1" y="757" width="0.1" height="15.0" fill="rgb(253,106,16)" rx="2" ry="2" />
<text text-anchor="" x="13.07" 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="39.0" y="421" width="0.2" height="15.0" fill="rgb(215,18,13)" rx="2" ry="2" />
<text text-anchor="" x="42.02" 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]] (4 samples, 0.02%)</title><rect x="1148.2" y="69" width="0.3" height="15.0" fill="rgb(252,97,36)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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>_ZN2v88internal11interpreter17BytecodeGenerator16VisitIfStatementEPNS0_11IfStatementE (4 samples, 0.02%)</title><rect x="1148.2" y="357" width="0.3" height="15.0" fill="rgb(237,123,50)" rx="2" ry="2" />
<text text-anchor="" x="1151.25" 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="1181.2" y="709" width="0.2" height="15.0" fill="rgb(210,172,38)" rx="2" ry="2" />
<text text-anchor="" x="1184.24" y="719.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